:root{
  --bg0:#050712; --bg1:#070B17; --bg2:#0A1230;
  --txt:#EAF2FF; --mut:rgba(234,242,255,.70);
  --line:rgba(255,255,255,.10); --grid:rgba(255,255,255,.05);

  --cyan:#37D6FF; --cyan2:#4AA3FF;
  --orange:#FF6B3D; --orange2:#FF9A4D;
  --good:#29d07f;

  --r:16px; --r2:22px;
  --sh:0 34px 110px rgba(0,0,0,.52);
  --sh2:0 16px 46px rgba(0,0,0,.34);

  --w-hero:780;
  --w-h:720;
  --w-ui:600;
  --w-body:430;
}

*{box-sizing:border-box}
html,body{height:100%}
html{ text-rendering: geometricPrecision; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans";
  color:var(--txt);
  background:
    radial-gradient(900px 560px at 14% 12%, rgba(55,214,255,.14), transparent 60%),
    radial-gradient(860px 520px at 82% 10%, rgba(255,107,61,.12), transparent 60%),
    radial-gradient(780px 480px at 50% 112%, rgba(74,163,255,.10), transparent 55%),
    linear-gradient(180deg, var(--bg0), var(--bg1) 45%, var(--bg2));
  overflow-x:hidden;
  font-weight: var(--w-body);
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a{color:inherit;text-decoration:none}
a:hover{opacity:.97}

.container{max-width:1320px;margin:0 auto;padding:0 24px}
@media(max-width:520px){.container{padding:0 16px}}

.bggrid:before{
  content:""; position:fixed; inset:0; pointer-events:none; opacity:.42;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(closest-side at 50% 25%, rgba(0,0,0,.94), transparent 72%);
}

.glow:after{
  content:""; position:fixed; inset:-30vh -30vw auto -30vw;
  height:70vh; pointer-events:none;
  background:
    radial-gradient(closest-side at 30% 20%, rgba(55,214,255,.18), transparent 70%),
    radial-gradient(closest-side at 75% 10%, rgba(255,107,61,.14), transparent 70%);
  filter: blur(2px);
  opacity:.75;
  animation: drift 10s ease-in-out infinite alternate;
}
@keyframes drift{
  from{ transform: translate3d(-1%,0,0) scale(1); }
  to{ transform: translate3d(2%,1%,0) scale(1.03); }
}

.nav{
  position:sticky; top:0; z-index:80;
  background: rgba(5,7,18,.66);
  backdrop-filter: blur(12px);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.nav .in{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:14px 0}
.brand{display:flex;align-items:center;gap:12px;min-width:240px}
.logo{
  width:40px;height:40px;border-radius:14px;
  background: linear-gradient(135deg,var(--cyan),var(--cyan2));
  box-shadow: 0 18px 34px rgba(55,214,255,.18);
}
.brand b{display:block;font-weight:760;letter-spacing:-0.02em;line-height:1.05}
.brand .meta{
  font-size:11px;color:rgba(234,242,255,.58);
  font-weight:520;letter-spacing:.14em;text-transform:uppercase
}

.menu{display:flex;gap:14px;flex-wrap:wrap;align-items:center;justify-content:flex-end}
.link{
  font-weight:540;
  color:rgba(234,242,255,.82);
  padding:8px 10px;
  border-radius:10px;
}
.link:hover{background: rgba(255,255,255,.04)}

.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:10px 14px;border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  font-weight:640;font-size:13px;
}
.btn.primary{
  border-color: rgba(255,107,61,.55);
  background: linear-gradient(90deg, rgba(255,107,61,.98), rgba(255,154,77,.98));
  color:#160A06;
}
.btn.ghost{background:transparent}
.btn:hover{opacity:.98}

.hamb{display:none}
@media(max-width:980px){
  .menu{display:none}
  .hamb{display:inline-flex}
  .menu.open{display:flex; width:100%; justify-content:flex-start}
  .nav .in{flex-wrap:wrap}
}

/* dropdown */
.drop{position:relative}
.dropbtn{cursor:pointer}
.drop .panelDrop{
  position:absolute; left:0; top:44px; min-width:560px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(5,7,18,.86);
  backdrop-filter: blur(14px);
  box-shadow: var(--sh2);
  padding:12px;
  display:none;
}
.drop:hover .panelDrop,
.drop:focus-within .panelDrop{display:block}
@media(max-width:980px){
  .drop .panelDrop{position:static; min-width:unset; width:100%; margin-top:8px}
}
.ddGrid{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.ddItem{
  border-radius:16px; padding:12px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}
.ddItem b{display:block;font-weight:720}
.ddItem span{display:block;margin-top:6px;color:var(--mut);font-size:12px;font-weight:470;line-height:1.45}
.ddItem:hover{border-color: rgba(55,214,255,.22)}
.ddCTA{display:flex;gap:10px;flex-wrap:wrap;margin-top:10px}
.accent{color:var(--orange2)}

.kicker{
  font-weight:700;letter-spacing:.18em;text-transform:uppercase;
  font-size:12px;color:rgba(234,242,255,.78)
}
.pretitle{
  display:inline-flex;align-items:center;gap:10px;
  padding:7px 12px;border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color:rgba(234,242,255,.82);
  font-weight:560;font-size:12px;
}
.pretitle .dot{width:8px;height:8px;border-radius:99px;background:var(--good)}

.h1{
  font-size: clamp(38px, 4.1vw, 62px);
  line-height:1.02;
  font-weight: var(--w-hero);
  letter-spacing:-0.045em;
  margin:12px 0 0;
}
.sub{
  margin:14px 0 0;
  color:var(--mut);
  font-size:15px;
  max-width:740px;
  line-height:1.78;
  font-weight:460
}

.hero{
  padding: 52px 0 18px;
  min-height: calc(100vh - 74px);
  display:flex;
  align-items:center;
}
.heroGrid{
  width:100%;
  display:grid;
  grid-template-columns:1.12fr .88fr;
  gap:22px;
  align-items:start;
}
@media(max-width:980px){
  .hero{min-height:auto;padding:42px 0 16px}
  .heroGrid{grid-template-columns:1fr}
}

.cta{display:flex;gap:10px;flex-wrap:wrap;margin-top:18px}

.trust{margin-top:18px;display:flex;gap:10px;flex-wrap:wrap}
.chip{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 12px;border-radius:999px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  font-weight:560;font-size:12px;color:rgba(234,242,255,.82);
}
.dot{width:8px;height:8px;border-radius:99px;background:var(--cyan)}
.dot.o{background:var(--orange)}
.dot.g{background:var(--good)}

.panel{
  border-radius: 24px;
  border:1px solid rgba(255,255,255,.11);
  background:
    radial-gradient(520px 240px at 30% 0%, rgba(55,214,255,.12), transparent 60%),
    radial-gradient(520px 240px at 100% 30%, rgba(255,107,61,.10), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: var(--sh);
  overflow:hidden;
}
.panel .hd{
  display:flex;align-items:center;justify-content:space-between;gap:10px;
  padding:14px 14px;border-bottom:1px solid rgba(255,255,255,.08)
}
.tabs{display:flex;gap:8px;flex-wrap:wrap}
.tab{
  padding:7px 11px;border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  font-weight:600;font-size:12px;color:rgba(234,242,255,.86)
}
.tab.on{border-color: rgba(55,214,255,.35);background: rgba(55,214,255,.08)}
.panel .body{padding:12px 14px 14px}

.qo{display:grid;gap:10px}
.qo a{
  display:flex;justify-content:space-between;align-items:center;gap:10px;
  padding:10px 12px;border-radius:14px;
  background: rgba(0,0,0,.20);
  border:1px solid rgba(255,255,255,.09)
}
.qo a b{font-weight:720}
.qo a:hover{border-color: rgba(255,107,61,.24)}

.snap{
  margin-top:14px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.09);
  background: rgba(255,255,255,.02);
  padding:12px;
}
.snapTitle{display:flex;justify-content:space-between;align-items:center;gap:10px}
.snapTitle b{font-weight:720}
.snapGrid{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:10px}
@media(max-width:520px){.snapGrid{grid-template-columns:1fr}}
.metric{
  border-radius:16px;border:1px solid rgba(255,255,255,.09);
  background: rgba(0,0,0,.18);
  padding:10px 12px;
}
.metric .k{font-weight:800;font-size:18px;letter-spacing:-0.02em}
.metric .t{color:var(--mut);font-weight:470;font-size:12px;margin-top:4px;line-height:1.4}
.metric .tag{
  display:inline-flex;margin-top:10px;padding:6px 10px;border-radius:999px;
  border:1px solid rgba(55,214,255,.18);
  background: rgba(55,214,255,.06);
  font-weight:600;font-size:11px;color:rgba(234,242,255,.86)
}
.metric .tag.o{border-color: rgba(255,107,61,.18);background: rgba(255,107,61,.06)}
.metric .tag.g{border-color: rgba(41,208,127,.18);background: rgba(41,208,127,.06)}

.section{padding:26px 0 52px}
.h2{
  font-size:13px;font-weight:760;letter-spacing:.16em;text-transform:uppercase;
  color:rgba(234,242,255,.78);margin:0 0 12px
}
.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
@media(max-width:980px){.grid{grid-template-columns:1fr}}

.card{
  position:relative;
  border-radius: 24px;
  border:1px solid rgba(255,255,255,.11);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.028));
  box-shadow: var(--sh2);
  padding:16px;
  overflow:hidden;
  transition: transform .16s ease, border-color .16s ease;
  min-height: 240px;
}
.card:before{
  content:""; position:absolute; inset:-2px;
  background: radial-gradient(520px 200px at 30% 0%, rgba(55,214,255,.15), transparent 60%),
              radial-gradient(520px 240px at 100% 15%, rgba(255,107,61,.11), transparent 60%);
  opacity:.78; pointer-events:none;
}
.card > *{position:relative}
.card:hover{transform: translateY(-3px);border-color: rgba(55,214,255,.20)}
.badge{
  display:inline-flex;align-items:center;gap:8px;padding:6px 10px;border-radius:999px;
  border:1px solid rgba(55,214,255,.24);background: rgba(55,214,255,.08);
  font-weight:600;font-size:11px
}
.badge.orange{border-color: rgba(255,107,61,.26); background: rgba(255,107,61,.08)}
.title{font-weight:720;font-size:16px;margin-top:10px;letter-spacing:-0.015em}
.price{font-size:34px;font-weight:820;margin:10px 0 0;letter-spacing:-0.02em}
.term{color:var(--mut);font-weight:560;font-size:12px;margin-top:2px}
.note{color:var(--mut);font-weight:450;font-size:13px;margin-top:8px;line-height:1.6}
.ul{margin:12px 0 0;padding:0;list-style:none;display:grid;gap:8px}
.ul li{display:flex;gap:10px;color:rgba(234,242,255,.84);font-size:13px;font-weight:450}
.ul li:before{content:"";width:18px;height:18px;margin-top:1px;flex:0 0 18px;border-radius:6px;background: rgba(55,214,255,.08);border:1px solid rgba(55,214,255,.14)}
.actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}

.two{display:grid;grid-template-columns:1.1fr .9fr;gap:14px;align-items:stretch}
@media(max-width:980px){.two{grid-template-columns:1fr}}
.feature{
  border-radius: 24px;
  border:1px solid rgba(255,255,255,.11);
  background: rgba(255,255,255,.03);
  padding:16px;
  box-shadow: var(--sh2);
}
.feature b{display:block;font-weight:720}
.feature p{margin:8px 0 0;color:var(--mut);font-weight:450;line-height:1.65;font-size:13px}

.light{
  background: linear-gradient(180deg, rgba(234,242,255,.96), rgba(255,255,255,.98));
  color:#070A12;
  border-top:1px solid rgba(255,255,255,.10);
}
.light .h2{color:rgba(7,10,18,.70)}
.faq{display:grid;gap:10px}
details{border-radius:16px;border:1px solid rgba(2,6,23,.10);background:#fff;box-shadow:0 12px 30px rgba(2,6,23,.07);padding:12px 14px}
summary{cursor:pointer;font-weight:650}
details div{color:rgba(7,10,18,.70);line-height:1.6}

.footer{padding:26px 0;border-top:1px solid rgba(255,255,255,.08);color:rgba(234,242,255,.62);font-size:12px}
.fcols{display:grid;grid-template-columns:1.2fr 1fr 1fr 1fr;gap:16px}
@media(max-width:980px){.fcols{grid-template-columns:1fr 1fr}}
@media(max-width:520px){.fcols{grid-template-columns:1fr}}
.fcols b{color:rgba(234,242,255,.88)}
.fcols a{color:rgba(234,242,255,.72)}
.fcols a:hover{color:#fff}

.reveal{opacity:0;transform:translateY(10px);transition:opacity .55s ease, transform .55s ease}
.reveal.on{opacity:1;transform:none}
@media (prefers-reduced-motion: reduce){
  .glow:after{animation:none}
  .reveal{opacity:1;transform:none;transition:none}
  .card{transition:none}
}

/* PRH_EFFECTS_START */
/* Blink/Glow hover + click, and FAQ dark fix */
@keyframes prhBlink {
  0%   { box-shadow: var(--sh2, 0 16px 46px rgba(0,0,0,.34)); filter:saturate(1); }
  35%  { box-shadow: var(--sh2, 0 16px 46px rgba(0,0,0,.34)), 0 0 0 1px rgba(55,214,255,.28), 0 0 34px rgba(55,214,255,.18); filter:saturate(1.06); }
  70%  { box-shadow: var(--sh2, 0 16px 46px rgba(0,0,0,.34)), 0 0 0 1px rgba(255,107,61,.22), 0 0 34px rgba(255,107,61,.14); }
  100% { box-shadow: var(--sh2, 0 16px 46px rgba(0,0,0,.34)), 0 0 0 1px rgba(255,255,255,.10); filter:saturate(1.02); }
}

/* Apply “smart blink” to all boxes */
.card, .feature, .panel, .metric, .ddItem, details{
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
  will-change: transform, box-shadow;
}

/* hover (mouse pass) */
.card:hover, .feature:hover, .panel:hover, .metric:hover, .ddItem:hover, details:hover{
  animation: prhBlink .65s ease both;
  transform: translateY(-2px);
  border-color: rgba(55,214,255,.20) !important;
}

/* click (mouse click) */
.card:active, .feature:active, .panel:active, .metric:active, .ddItem:active, details:active{
  transform: translateY(0px) scale(.995);
  box-shadow: var(--sh2, 0 16px 46px rgba(0,0,0,.34)), 0 0 0 1px rgba(255,107,61,.26), 0 0 24px rgba(255,107,61,.16) !important;
}

/* keyboard focus (also feels “dynamic”) */
.card:focus-within, .feature:focus-within, .panel:focus-within, .metric:focus-within, .ddItem:focus-within, details:focus-within{
  box-shadow: var(--sh2, 0 16px 46px rgba(0,0,0,.34)), 0 0 0 1px rgba(55,214,255,.26), 0 0 30px rgba(55,214,255,.14) !important;
}

/* Make cards a bit more “smart glass” */
.card, .feature, .panel{
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.022)) !important;
  backdrop-filter: blur(10px);
}

/* ===== FAQ FIX (remove weird white strip + make boxes consistent) ===== */
.light{
  background: transparent !important;
  color: var(--txt, #EAF2FF) !important;
  border-top: 1px solid rgba(255,255,255,.08) !important;
}
.light .h2{ color: rgba(234,242,255,.78) !important; }

/* FAQ boxes like other dark cards */
details{
  border-radius: 18px !important;
  border: 1px solid rgba(255,255,255,.10) !important;
  background: rgba(255,255,255,.03) !important;
  box-shadow: var(--sh2, 0 16px 46px rgba(0,0,0,.34)) !important;
}
summary{
  font-weight: 650 !important;
  color: rgba(234,242,255,.90) !important;
}
details div{
  color: rgba(234,242,255,.72) !important;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce){
  .card:hover, .feature:hover, .panel:hover, .metric:hover, .ddItem:hover, details:hover{ animation:none !important; }
  .card, .feature, .panel, .metric, .ddItem, details{ transition:none !important; }
}
/* PRH_EFFECTS_END */

/* PRH_FAQ_SLIM_START */
/* Make FAQ section slim + remove white band look */
#faqWrap{ background: transparent !important; }
.light{
  background: transparent !important;
  border-top: 1px solid rgba(255,255,255,.08) !important;
}
.light .container.section{
  padding-top: 14px !important;
  padding-bottom: 16px !important;
}
.light .h2{ margin: 0 0 10px !important; }
.light .faq{ gap: 8px !important; }

/* Slim FAQ boxes */
.light details{
  padding: 10px 12px !important;
  border-radius: 16px !important;
}
.light summary{ font-size: 13px !important; }
.light details div{ margin-top: 6px !important; font-size: 13px !important; }
/* PRH_FAQ_SLIM_END */

/* PRH_FAQ_FORCE_SLIM_START */
/* Force FAQ section to be slim (ONLY faqWrap) + kill white band */
#faqWrap{
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  border-top: 1px solid rgba(255,255,255,.08) !important;
}
#faqWrap.light{
  background: transparent !important;
}
#faqWrap .container.section{
  padding-top: 10px !important;
  padding-bottom: 14px !important;
}
#faqWrap .h2{
  margin: 0 0 10px !important;
  padding: 0 !important;
}
#faqWrap .faq{ gap: 8px !important; }

/* slim FAQ boxes */
#faqWrap details{
  padding: 10px 12px !important;
  border-radius: 16px !important;
}
#faqWrap summary{
  font-size: 13px !important;
  line-height: 1.35 !important;
}
#faqWrap details div{
  margin-top: 6px !important;
  font-size: 13px !important;
  line-height: 1.6 !important;
}
/* PRH_FAQ_FORCE_SLIM_END */

/* PRH_ONLY_REQUESTED_START */
/* 1) Smart blink/pulse on hover/click (subtle, premium) */
@keyframes prhPulse {
  0%   { box-shadow: var(--sh2, 0 16px 46px rgba(0,0,0,.34)); filter:saturate(1); }
  55%  { box-shadow: var(--sh2, 0 16px 46px rgba(0,0,0,.34)), 0 0 0 1px rgba(55,214,255,.22), 0 0 26px rgba(55,214,255,.12); filter:saturate(1.04); }
  100% { box-shadow: var(--sh2, 0 16px 46px rgba(0,0,0,.34)), 0 0 0 1px rgba(255,255,255,.10); }
}
.card, .feature, .panel, .metric, .ddItem, details{
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease, background .16s ease;
  will-change: transform, box-shadow;
}
.card:hover, .feature:hover, .panel:hover, .metric:hover, .ddItem:hover, details:hover{
  animation: prhPulse .45s ease both;
  transform: translateY(-2px);
  border-color: rgba(55,214,255,.18) !important;
}
.card:active, .feature:active, .panel:active, .metric:active, .ddItem:active, details:active{
  transform: translateY(0px) scale(.995);
  box-shadow: var(--sh2, 0 16px 46px rgba(0,0,0,.34)), 0 0 0 1px rgba(255,107,61,.20), 0 0 20px rgba(255,107,61,.10) !important;
}

/* 2) FAQ slim + same dark theme (remove white strip) */
#faqWrap, #faqWrap.light{
  background: transparent !important;
  border-top: 1px solid rgba(255,255,255,.08) !important;
}
#faqWrap .container.section{
  padding-top: 12px !important;
  padding-bottom: 16px !important;
}
#faqWrap .h2{ margin: 0 0 10px !important; }
#faqWrap .faq{ gap: 8px !important; }

#faqWrap details{
  border-radius: 16px !important;
  border: 1px solid rgba(255,255,255,.10) !important;
  background: rgba(255,255,255,.03) !important;
  padding: 10px 12px !important;
}
#faqWrap summary{ font-weight: 650 !important; }
#faqWrap details div{ margin-top: 6px !important; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .card:hover, .feature:hover, .panel:hover, .metric:hover, .ddItem:hover, details:hover{ animation:none !important; }
  .card, .feature, .panel, .metric, .ddItem, details{ transition:none !important; }
}
/* PRH_ONLY_REQUESTED_END */

/* PRH_LOGO_AUTO_V1_START */
:root{ --prhLogo: url("/assets/prh-logo.png"), url("/assets/prh-logo.svg"); }

header .brand .mark,
header a.brand .mark,
.nav .brand .mark,
.navbar .brand .mark{
  position: relative;
  overflow: hidden;
  background: transparent;
  background-image: var(--prhLogo);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

header .brand .mark svg,
header a.brand .mark svg,
.nav .brand .mark svg,
.navbar .brand .mark svg{
  opacity: 0;
}
/* PRH_LOGO_AUTO_V1_END */

/* PRH_QUICKORDER_V1 */
#quick .qCard{
  border-radius:18px;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.16);
  box-shadow: 0 18px 46px rgba(0,0,0,.18);
  padding:14px;
}
#quick .qHead{
  font-weight:1000;
  font-size:14px;
  margin:0 0 10px;
}
#quick .qList a{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:10px 12px;
  margin-top:8px;
  border-radius:14px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
}
#quick .qList a b{font-weight:1000}

/* PRH_NAV_DD_V1 (Solutions/Features/Company dropdowns) */
.menu{display:flex;align-items:center;gap:16px;flex-wrap:wrap}
.dd{position:relative;display:inline-flex;align-items:center}
.dd .chev{opacity:.8;font-weight:1000;margin-left:6px}
.ddMenu{
  position:absolute; top:calc(100% + 10px); left:0;
  min-width:260px; z-index:99;
  padding:10px; border-radius:16px;
  background: rgba(7,26,29,.92);
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  box-shadow: 0 22px 60px rgba(0,0,0,.30);
  display:none;
}
.dd:hover .ddMenu,
.dd:focus-within .ddMenu{display:block}
.ddMenu .ddItem{
  display:flex; justify-content:space-between; gap:12px;
  padding:10px 12px; border-radius:14px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  margin-top:8px;
}
.ddMenu .ddItem:first-child{margin-top:0}
.ddMenu .ddItem b{font-weight:1000}
.ddMenu .ddItem span{opacity:.78;font-size:12px}
@media(max-width:900px){
  .ddMenu{position:static; display:block; min-width:unset; margin-top:8px}
}

/* PRH_SOLUTIONS_SECTIONS_V1 */
.prhSec{margin-top:18px}
.prhSec .secHead{font-weight:1000;font-size:18px;margin:0 0 12px}
.prhGrid2{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
@media(max-width:980px){.prhGrid2{grid-template-columns:1fr}}
.prhK{font-weight:950;font-size:14px;margin:0}
.prhP{color:rgba(234,246,255,.78);font-size:13px;line-height:1.6;margin:8px 0 0}
.prhUl{margin:10px 0 0;padding-left:18px;color:rgba(234,246,255,.90);font-size:13px;line-height:1.7}

/* PRH_FEATURES_SECTIONS_V1 */
.prhSec{margin-top:18px}
.prhSec .secHead{font-weight:1000;font-size:18px;margin:0 0 12px}
.prhGrid2{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
@media(max-width:980px){.prhGrid2{grid-template-columns:1fr}}
.prhK{font-weight:950;font-size:14px;margin:0}
.prhP{color:rgba(234,246,255,.78);font-size:13px;line-height:1.65;margin:8px 0 0}
.prhUl{margin:10px 0 0;padding-left:18px;color:rgba(234,246,255,.90);font-size:13px;line-height:1.75}
.prhNote{color:rgba(234,246,255,.72);font-size:12px;line-height:1.6}

/* PRH_FEATURES_OFFICIAL_V1 */
.featWrap{max-width:1180px;margin:0 auto;padding:0 20px}
.featHero{padding:34px 0 10px}
.featHero .k{font-weight:950;letter-spacing:.18em;text-transform:uppercase;font-size:12px;color:rgba(234,246,255,.78)}
.featHero .t{font-size:46px;line-height:1.05;font-weight:1000;margin:10px 0 0}
@media(max-width:520px){.featHero .t{font-size:36px}}
.featHero .p{margin:12px 0 0;color:rgba(234,246,255,.72);font-size:15px;max-width:760px}
.featGrid3{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
@media(max-width:980px){.featGrid3{grid-template-columns:1fr}}
.featGrid2{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
@media(max-width:980px){.featGrid2{grid-template-columns:1fr}}
.featCard{
border-radius:var(--r);
background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.06));
border:1px solid rgba(255,255,255,.14);
padding:16px;
box-shadow: 0 18px 46px rgba(0,0,0,.22);
}
.featCard b{font-weight:1000;font-size:14px}
.featCard .m{color:rgba(234,246,255,.72);font-size:12px;margin-top:8px;line-height:1.6}
.featCard ul{margin:10px 0 0;padding-left:18px;font-size:12px;line-height:1.7;color:rgba(234,246,255,.88)}

/* PRH_FEATURES_EXPAND_V1 */
.featDivider{height:1px;background:rgba(255,255,255,.10);margin:18px 0}
.featCallout{
  border-radius:22px;
  background: radial-gradient(700px 320px at 20% 20%, rgba(56,189,248,.18), transparent 55%),
              linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.06));
  border:1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 46px rgba(0,0,0,.22);
  padding:18px;
}
.featMini{color:rgba(234,246,255,.72);font-size:12px;line-height:1.7;margin-top:8px}
.featTwoCol{display:grid;grid-template-columns:1.2fr .8fr;gap:14px;align-items:start}
@media(max-width:980px){.featTwoCol{grid-template-columns:1fr}}

/* PRH_FEATURES_CHARM_BLINK_V1 (features page only) */
body[data-page="features"] .featCard,
body[data-page="features"] .featCallout{
  position:relative;
  overflow:hidden;
  transform: translateZ(0);
}

/* subtle neon edge + shimmer */
body[data-page="features"] .featCard::before,
body[data-page="features"] .featCallout::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(500px 240px at 15% 20%, rgba(56,189,248,.28), transparent 60%),
    radial-gradient(420px 220px at 85% 30%, rgba(45,212,191,.18), transparent 60%),
    linear-gradient(90deg, rgba(56,189,248,.30), rgba(96,165,250,.18), rgba(45,212,191,.24));
  filter: blur(14px);
  opacity:.25;
  pointer-events:none;
}

body[data-page="features"] .featCard::after,
body[data-page="features"] .featCallout::after{
  content:"";
  position:absolute;
  top:-40%;
  left:-60%;
  width:60%;
  height:180%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.10), transparent);
  transform: rotate(18deg);
  opacity:.0;
  pointer-events:none;
}

/* hover lift + stronger glow */
body[data-page="features"] .featCard:hover,
body[data-page="features"] .featCallout:hover{
  transform: translateY(-3px);
  border-color: rgba(56,189,248,.30) !important;
  box-shadow:
    0 22px 70px rgba(0,0,0,.35),
    0 0 0 1px rgba(56,189,248,.18) inset !important;
}
body[data-page="features"] .featCard:hover::after,
body[data-page="features"] .featCallout:hover::after{
  opacity:.8;
  animation: prhShimmer 1.4s ease-in-out 1;
}

/* “blink” = soft pulse (not harsh) */
@keyframes prhPulse{
  0%,100%{ box-shadow: 0 18px 46px rgba(0,0,0,.22); border-color: rgba(255,255,255,.14); }
  50%{
    box-shadow:
      0 22px 70px rgba(0,0,0,.34),
      0 0 0 1px rgba(56,189,248,.22) inset;
    border-color: rgba(56,189,248,.28);
  }
}
@keyframes prhShimmer{
  0%{ transform: translateX(0) rotate(18deg); }
  100%{ transform: translateX(240%) rotate(18deg); }
}

/* apply pulse to feature cards only (staggered) */
body[data-page="features"] .featGrid3 .featCard,
body[data-page="features"] .featGrid2 .featCard{
  animation: prhPulse 3.8s ease-in-out infinite;
}
body[data-page="features"] .featGrid3 .featCard:nth-child(2),
body[data-page="features"] .featGrid2 .featCard:nth-child(2){ animation-delay: .4s; }
body[data-page="features"] .featGrid3 .featCard:nth-child(3),
body[data-page="features"] .featGrid2 .featCard:nth-child(3){ animation-delay: .8s; }
body[data-page="features"] .featGrid3 .featCard:nth-child(4),
body[data-page="features"] .featGrid2 .featCard:nth-child(4){ animation-delay: 1.2s; }
body[data-page="features"] .featGrid3 .featCard:nth-child(5),
body[data-page="features"] .featGrid2 .featCard:nth-child(5){ animation-delay: 1.6s; }
body[data-page="features"] .featGrid3 .featCard:nth-child(6),
body[data-page="features"] .featGrid2 .featCard:nth-child(6){ animation-delay: 2.0s; }

/* accessibility */
@media (prefers-reduced-motion: reduce){
  body[data-page="features"] .featCard,
  body[data-page="features"] .featCallout{
    animation:none !important;
    transition:none !important;
  }
  body[data-page="features"] .featCard::after,
  body[data-page="features"] .featCallout::after{ display:none !important; }
}

/* PRH_COMPANY_WOW_V1 (company page only) */
body[data-page="company"] .coWrap{max-width:1180px;margin:0 auto;padding:0 20px}
body[data-page="company"] .coHero{padding:36px 0 12px}
body[data-page="company"] .coK{
  font-weight:950;letter-spacing:.18em;text-transform:uppercase;font-size:12px;
  color:rgba(234,246,255,.78)
}
body[data-page="company"] .coT{
  font-size:46px;line-height:1.05;font-weight:1000;margin:10px 0 0
}
@media(max-width:520px){body[data-page="company"] .coT{font-size:36px}}
body[data-page="company"] .coP{
  margin:12px 0 0;color:rgba(234,246,255,.72);font-size:15px;max-width:860px
}
body[data-page="company"] .coGrid3{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
body[data-page="company"] .coGrid2{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
@media(max-width:980px){
  body[data-page="company"] .coGrid3{grid-template-columns:1fr}
  body[data-page="company"] .coGrid2{grid-template-columns:1fr}
}
body[data-page="company"] .coCard{
  border-radius:22px;
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.06));
  border:1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 46px rgba(0,0,0,.22);
  padding:16px;
  position:relative;
  overflow:hidden;
  transform:translateZ(0);
}
body[data-page="company"] .coCard b{font-weight:1000;font-size:14px}
body[data-page="company"] .coCard .m{color:rgba(234,246,255,.72);font-size:12px;line-height:1.65;margin-top:8px}
body[data-page="company"] .coCard ul{margin:10px 0 0;padding-left:18px;color:rgba(234,246,255,.90);font-size:12px;line-height:1.75}
body[data-page="company"] .coDivider{height:1px;background:rgba(255,255,255,.10);margin:18px 0}
body[data-page="company"] .coSection{padding:18px 0 10px}
body[data-page="company"] .coH2{font-size:18px;font-weight:1000;margin:0 0 12px}

/* subtle charm pulse */
@keyframes prhCoPulse{
  0%,100%{ box-shadow: 0 18px 46px rgba(0,0,0,.22); border-color: rgba(255,255,255,.14); }
  50%{
    box-shadow: 0 24px 78px rgba(0,0,0,.32), 0 0 0 1px rgba(56,189,248,.18) inset;
    border-color: rgba(56,189,248,.26);
  }
}
body[data-page="company"] .coCard{
  animation: prhCoPulse 4.6s ease-in-out infinite;
}
body[data-page="company"] .coGrid3 .coCard:nth-child(2),
body[data-page="company"] .coGrid2 .coCard:nth-child(2){animation-delay:.45s}
body[data-page="company"] .coGrid3 .coCard:nth-child(3){animation-delay:.9s}

body[data-page="company"] .coCard:hover{
  transform: translateY(-3px);
  border-color: rgba(56,189,248,.30);
  box-shadow: 0 26px 90px rgba(0,0,0,.35), 0 0 0 1px rgba(56,189,248,.18) inset;
}
@media (prefers-reduced-motion: reduce){
  body[data-page="company"] .coCard{animation:none !important; transition:none !important;}
}

/* PRH_COMPANY_GROOM_LONG_V2 (company page only) */
body[data-page="company"] .coWrap{max-width:1180px;margin:0 auto;padding:0 20px}
body[data-page="company"] .coHero{padding:38px 0 12px}
body[data-page="company"] .coK{font-weight:950;letter-spacing:.18em;text-transform:uppercase;font-size:12px;color:rgba(234,246,255,.78)}
body[data-page="company"] .coT{font-size:46px;line-height:1.05;font-weight:1000;margin:10px 0 0}
@media(max-width:520px){body[data-page="company"] .coT{font-size:36px}}
body[data-page="company"] .coP{margin:12px 0 0;color:rgba(234,246,255,.72);font-size:15px;max-width:900px}

body[data-page="company"] .coSection{padding:18px 0 8px}
body[data-page="company"] .coH2{font-size:18px;font-weight:1000;margin:0 0 12px}
body[data-page="company"] .coDivider{height:1px;background:rgba(255,255,255,.10);margin:18px 0}

body[data-page="company"] .coGrid3{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
body[data-page="company"] .coGrid2{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
@media(max-width:980px){
  body[data-page="company"] .coGrid3{grid-template-columns:1fr}
  body[data-page="company"] .coGrid2{grid-template-columns:1fr}
}

body[data-page="company"] .coCard{
  border-radius:22px;
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.06));
  border:1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 46px rgba(0,0,0,.22);
  padding:16px;
  position:relative;
  overflow:hidden;
  transform:translateZ(0);
}
body[data-page="company"] .coCard b{font-weight:1000;font-size:14px}
body[data-page="company"] .coCard .m{color:rgba(234,246,255,.72);font-size:12px;line-height:1.65;margin-top:8px}
body[data-page="company"] .coCard ul{margin:10px 0 0;padding-left:18px;color:rgba(234,246,255,.90);font-size:12px;line-height:1.75}

body[data-page="company"] .coProse{
  border-radius:22px;
  background: radial-gradient(700px 320px at 15% 20%, rgba(56,189,248,.14), transparent 58%),
              linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.06));
  border:1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 46px rgba(0,0,0,.22);
  padding:18px;
}
body[data-page="company"] .coProse p{margin:10px 0 0;color:rgba(234,246,255,.80);font-size:13px;line-height:1.8;max-width:980px}
body[data-page="company"] .coProse p:first-child{margin-top:0}
body[data-page="company"] .coTOC{
  display:flex;gap:10px;flex-wrap:wrap;margin-top:14px
}
body[data-page="company"] .coTOC a{
  display:inline-flex;align-items:center;justify-content:center;
  padding:8px 12px;border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  font-weight:900;font-size:12px;text-decoration:none;
}
body[data-page="company"] .coTOC a:hover{border-color:rgba(56,189,248,.35)}

/* subtle charm pulse */
@keyframes prhCoPulse{
  0%,100%{ box-shadow: 0 18px 46px rgba(0,0,0,.22); border-color: rgba(255,255,255,.14); }
  50%{
    box-shadow: 0 24px 78px rgba(0,0,0,.32), 0 0 0 1px rgba(56,189,248,.18) inset;
    border-color: rgba(56,189,248,.26);
  }
}
body[data-page="company"] .coCard{animation: prhCoPulse 4.8s ease-in-out infinite}
body[data-page="company"] .coGrid3 .coCard:nth-child(2),
body[data-page="company"] .coGrid2 .coCard:nth-child(2){animation-delay:.45s}
body[data-page="company"] .coGrid3 .coCard:nth-child(3){animation-delay:.9s}
@media (prefers-reduced-motion: reduce){
  body[data-page="company"] .coCard{animation:none !important; transition:none !important;}
}

/* PRH_COMPANY_SCROLL_CLEAN_V1 (company page only) */
body[data-page="company"] .coWrap{max-width:1180px;margin:0 auto;padding:0 20px}
body[data-page="company"] .coHero{padding:38px 0 10px}
body[data-page="company"] .coK{font-weight:950;letter-spacing:.18em;text-transform:uppercase;font-size:12px;color:rgba(234,246,255,.78)}
body[data-page="company"] .coT{font-size:46px;line-height:1.05;font-weight:1000;margin:10px 0 0}
@media(max-width:520px){body[data-page="company"] .coT{font-size:36px}}
body[data-page="company"] .coP{margin:12px 0 0;color:rgba(234,246,255,.72);font-size:15px;max-width:900px}

body[data-page="company"] .coSection{padding:18px 0 8px}
body[data-page="company"] .coH2{font-size:18px;font-weight:1000;margin:0 0 12px}
body[data-page="company"] .coDivider{height:1px;background:rgba(255,255,255,.10);margin:18px 0}

body[data-page="company"] .coGrid3{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
body[data-page="company"] .coGrid2{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
@media(max-width:980px){
  body[data-page="company"] .coGrid3{grid-template-columns:1fr}
  body[data-page="company"] .coGrid2{grid-template-columns:1fr}
}

body[data-page="company"] .coCard{
  border-radius:22px;
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.06));
  border:1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 46px rgba(0,0,0,.22);
  padding:16px;
  position:relative;
  overflow:hidden;
}
body[data-page="company"] .coCard b{font-weight:1000;font-size:14px}
body[data-page="company"] .coCard .m{color:rgba(234,246,255,.72);font-size:12px;line-height:1.65;margin-top:8px}
body[data-page="company"] .coCard ul{margin:10px 0 0;padding-left:18px;color:rgba(234,246,255,.90);font-size:12px;line-height:1.75}

body[data-page="company"] .coProse{
  border-radius:22px;
  background: radial-gradient(700px 320px at 15% 20%, rgba(56,189,248,.14), transparent 58%),
              linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.06));
  border:1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 46px rgba(0,0,0,.22);
  padding:18px;
}
body[data-page="company"] .coProse p{margin:10px 0 0;color:rgba(234,246,255,.80);font-size:13px;line-height:1.85;max-width:980px}
body[data-page="company"] .coProse p:first-child{margin-top:0}

/* hide ONLY company-page hero CTA buttons (View plans / Talk to sales) inside content (NOT header nav) */
body[data-page="company"] .container.hero .cta,
body[data-page="company"] .container.hero .ctaRow{
  display:none !important;
}

/* PRH_COMPANY_GROOM_V3 (company page only) */
body[data-page="company"] .coWrap{max-width:1180px;margin:0 auto;padding:0 20px}
body[data-page="company"] .coHero{padding:38px 0 8px}
body[data-page="company"] .coK{font-weight:950;letter-spacing:.18em;text-transform:uppercase;font-size:12px;color:rgba(234,246,255,.78)}
body[data-page="company"] .coT{font-size:46px;line-height:1.05;font-weight:1000;margin:10px 0 0}
@media(max-width:520px){body[data-page="company"] .coT{font-size:36px}}
body[data-page="company"] .coP{margin:12px 0 0;color:rgba(234,246,255,.72);font-size:15px;max-width:900px}

body[data-page="company"] .coH2{font-size:18px;font-weight:1000;margin:0 0 12px}
body[data-page="company"] .coSep{height:1px;background:rgba(255,255,255,.10);margin:18px 0}
body[data-page="company"] .coGrid3{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
body[data-page="company"] .coGrid2{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
@media(max-width:980px){body[data-page="company"] .coGrid3,.coGrid2{grid-template-columns:1fr}}
body[data-page="company"] .coLead{color:rgba(234,246,255,.78);font-size:13px;line-height:1.8;max-width:980px}
body[data-page="company"] .coNote{color:rgba(234,246,255,.70);font-size:12px;line-height:1.7}

/* remove hero CTAs inside company content (NOT header nav) */
body[data-page="company"] .container.hero a.pill.primary,
body[data-page="company"] .container.hero a.pill,
body[data-page="company"] .container.hero a.btn,
body[data-page="company"] .container.hero .cta{
  display:none !important;
}

/* PRH_COMPANY_GROOM_V4 (company page only) */
body[data-page="company"] .coWrap{max-width:1180px;margin:0 auto;padding:0 20px}
body[data-page="company"] .coLead{color:rgba(234,246,255,.78);font-size:13px;line-height:1.85;max-width:980px}
body[data-page="company"] .coSep{height:1px;background:rgba(255,255,255,.10);margin:18px 0}
body[data-page="company"] .coGrid3{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
body[data-page="company"] .coGrid2{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
@media(max-width:980px){body[data-page="company"] .coGrid3,body[data-page="company"] .coGrid2{grid-template-columns:1fr}}
body[data-page="company"] .coNote{color:rgba(234,246,255,.70);font-size:12px;line-height:1.7}
body[data-page="company"] .coTOC{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}
body[data-page="company"] .coTOC a{
  display:inline-flex;align-items:center;justify-content:center;
  padding:8px 12px;border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  font-weight:900;font-size:12px;text-decoration:none;
}
body[data-page="company"] .coTOC a:hover{border-color:rgba(56,189,248,.35)}

/* PRH_COMPANY_TYPE_SCALE_V1 (company page only) */
body[data-page="company"] .kicker{
  font-size:13px !important;
  letter-spacing:.20em !important;
  color:rgba(234,246,255,.82) !important;
}
body[data-page="company"] .h1{
  font-size:58px !important;
  line-height:1.03 !important;
}
@media(max-width:720px){
  body[data-page="company"] .h1{font-size:42px !important;}
}
body[data-page="company"] .sub{
  font-size:17px !important;
  line-height:1.75 !important;
  color:rgba(234,246,255,.78) !important;
  max-width:920px !important;
}

/* Section headings */
body[data-page="company"] .h2{
  font-size:20px !important;
  margin-bottom:16px !important;
}

/* Cards readability */
body[data-page="company"] .plan{
  padding:20px !important;
}
body[data-page="company"] .badge{
  font-size:12px !important;
  padding:6px 12px !important;
}
body[data-page="company"] .note{
  font-size:14px !important;
  line-height:1.7 !important;
  color:rgba(234,246,255,.78) !important;
}
body[data-page="company"] .ul{
  font-size:13.5px !important;
  line-height:1.85 !important;
  color:rgba(234,246,255,.92) !important;
}

/* TOC chips */
body[data-page="company"] .coTOC a{
  font-size:13px !important;
  padding:10px 14px !important;
  background: rgba(255,255,255,.07) !important;
  border-color: rgba(255,255,255,.18) !important;
}

/* PRH_COMPANY_HALF_HEADING_FIX_V1 */
/* Sticky header offset so section headings don't get hidden */
html{ scroll-padding-top: 96px; } /* safe global */
body[data-page="company"] [id]{ scroll-margin-top: 96px; } /* company anchors */
body[data-page="company"] .coWrap.section{ padding-top: 6px; } /* small breathing room */

/* PRH_COMPANY_HEADING_CUT_FIX_V2 */
/* Make headings fully visible (no top clipping) + correct sticky offset */
body[data-page="company"]{
  scroll-padding-top: 110px;
}
body[data-page="company"] [id]{
  scroll-margin-top: 110px;
}
body[data-page="company"] .h2{
  line-height: 1.25 !important;
  padding-top: 12px !important;
  padding-bottom: 8px !important;
  margin-top: 6px !important;
  overflow: visible !important;
}
body[data-page="company"] .coWrap.section,
body[data-page="company"] .container.section{
  padding-top: 24px !important;
}

/* PRH_TICK_CROSS_V1 */
:root{
  --prh-tick: #22c55e;
  --prh-cross:#ef4444;
}

/* apply to common lists used in cards/sections */
.ul li,
.plan ul li,
.featCard ul li,
.coCard ul li{
  list-style:none !important;
  position:relative;
  padding-left:26px;
  margin:8px 0;
}

/* default = tick */
.ul li::before,
.plan ul li::before,
.featCard ul li::before,
.coCard ul li::before{
  content:"";
  position:absolute;
  left:0; top:.28em;
  width:16px; height:16px;
  border-radius:6px;
  background: rgba(34,197,94,.14);
  border:1px solid rgba(34,197,94,.35);
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2322c55e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:center;
  background-size:14px 14px;
}

/* cross items */
.prh-no::before{
  background: rgba(239,68,68,.14) !important;
  border-color: rgba(239,68,68,.35) !important;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ef4444' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M18 6L6 18M6 6l12 12'/%3E%3C/svg%3E") !important;
}

/* PRH_PLANS_DD_DEMO_V1 */
.ddMenu{max-height:70vh; overflow:auto}
.ddList{
  margin:8px 0 12px;
  padding:8px;
  border-radius:14px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
}
.ddRow{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:8px 10px;
  border-radius:12px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  margin-top:8px;
}
.ddRow:first-child{margin-top:0}
.ddRow b{font-weight:1000}
.ddRow .n{font-weight:950}
.ddRow .s{display:block;opacity:.75;font-size:11px;margin-top:2px;line-height:1.35}

/* PRH_PLANS_DD_FIX_V2 */
#menu{position:relative}
#menu .ddMenu{
  display:none;
  position:absolute;
  top:calc(100% + 10px);
  left:0;
  min-width:320px;
  z-index:200;
  padding:10px;
  border-radius:16px;
  background: rgba(7,26,29,.92);
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  box-shadow: 0 22px 60px rgba(0,0,0,.30);
  max-height:70vh;
  overflow:auto;
}
/* IMPORTANT: ddMenu opens on hover of the Plans link (adjacent sibling) */
#menu a.dropbtn:hover + .ddMenu,
#menu a.dropbtn:focus + .ddMenu,
#menu .ddMenu:hover{ display:block; }

#menu .ddItem{
  display:flex;justify-content:space-between;gap:12px;
  padding:10px 12px;border-radius:14px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  margin-top:8px;
}
#menu .ddItem:first-child{margin-top:0}
#menu .ddItem b{font-weight:1000}
#menu .ddItem span{opacity:.78;font-size:12px}

#menu .ddList{
  margin:8px 0 10px;
  padding:8px;
  border-radius:14px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
}
#menu .ddRow{
  display:flex;justify-content:space-between;gap:12px;
  padding:8px 10px;border-radius:12px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  margin-top:8px;
}
#menu .ddRow:first-child{margin-top:0}
#menu .ddRow .n{font-weight:950}
#menu .ddRow .s{display:block;opacity:.75;font-size:11px;margin-top:2px;line-height:1.35}
#menu .ddRow b{font-weight:1000}

/* mobile: dropdown becomes static block */
@media(max-width:900px){
  #menu .ddMenu{position:static;display:block;min-width:unset;margin-top:8px}
}

/* PRH_HOSTING_RATES_V1 (hosting page rates list) */
body[data-page="hosting"] .rates{
  border-radius:22px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  padding:14px;
  box-shadow: 0 18px 46px rgba(0,0,0,.20);
}
body[data-page="hosting"] .rateHead{
  display:grid;
  grid-template-columns: 1.2fr .5fr 1.6fr .5fr;
  gap:12px;
  padding:10px 12px;
  border-radius:16px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  color: rgba(234,246,255,.72);
  font-weight:900;
  font-size:12px;
}
body[data-page="hosting"] .rateRow{
  display:grid;
  grid-template-columns: 1.2fr .5fr 1.6fr .5fr;
  gap:12px;
  padding:12px 12px;
  border-radius:16px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  margin-top:10px;
}
@media(max-width:980px){
  body[data-page="hosting"] .rateHead{display:none}
  body[data-page="hosting"] .rateRow{
    grid-template-columns: 1fr;
  }
}
body[data-page="hosting"] .rateName{font-weight:1000}
body[data-page="hosting"] .rateNote{margin-top:4px;color:rgba(234,246,255,.72);font-size:12px;line-height:1.5}
body[data-page="hosting"] .ratePrice{font-weight:1100;font-size:18px}
body[data-page="hosting"] .rateTerm{color:rgba(234,246,255,.70);font-size:12px;font-weight:900}
body[data-page="hosting"] .rateInc ul{margin:0;padding-left:18px}
body[data-page="hosting"] .rateInc li{margin:6px 0}
body[data-page="hosting"] .rateBtn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:10px 14px;border-radius:999px;
  font-weight:950;font-size:13px;
  border:1px solid rgba(56,189,248,.55);
  background: linear-gradient(90deg, rgba(56,189,248,.95), rgba(96,165,250,.95));
  color:#05243b;
  white-space:nowrap;
}
/* PRH_HOSTING_DEMO_STYLE_V1 (hosting plans grid official look) */
body[data-page="hosting"] #plansGrid{
grid-template-columns:repeat(4,minmax(0,1fr)) !important;
gap:14px !important;
}
@media(max-width:1100px){
body[data-page="hosting"] #plansGrid{grid-template-columns:repeat(2,minmax(0,1fr)) !important;}
}
@media(max-width:640px){
body[data-page="hosting"] #plansGrid{grid-template-columns:1fr !important;}
}

/* Plan card polish (hosting only) */
body[data-page="hosting"] #plansGrid .plan{
border-radius:22px !important;
background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.06)) !important;
border:1px solid rgba(255,255,255,.14) !important;
box-shadow: 0 18px 46px rgba(0,0,0,.22) !important;
padding:16px !important;
position:relative;
overflow:hidden;
}
body[data-page="hosting"] #plansGrid .plan:hover{
transform: translateY(-3px);
border-color: rgba(56,189,248,.30) !important;
box-shadow: 0 26px 90px rgba(0,0,0,.35), 0 0 0 1px rgba(56,189,248,.18) inset !important;
}

/* Highlight 4th plan (Digital) like screenshot “featured” */
body[data-page="hosting"] #plansGrid .plan:nth-child(4){
background: radial-gradient(700px 320px at 20% 15%, rgba(34,197,94,.16), transparent 55%),
linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.07)) !important;
border-color: rgba(34,197,94,.35) !important;
}

/* Tick list look (hosting only) */
body[data-page="hosting"] #plansGrid ul.ul li{
list-style:none !important;
position:relative;
padding-left:26px;
margin:8px 0;
}
body[data-page="hosting"] #plansGrid ul.ul li::before{
content:"✓";
position:absolute;left:0;top:0;
width:18px;height:18px;
display:inline-flex;align-items:center;justify-content:center;
border-radius:6px;
background: rgba(34,197,94,.14);
border:1px solid rgba(34,197,94,.35);
color:#22c55e;
font-weight:1000;
line-height:1;
}
/* PRH_DD_HOSTING_PACKAGES_V1 */
#quick .qCard{
border-radius:18px;
background: rgba(255,255,255,.08);
border:1px solid rgba(255,255,255,.16);
box-shadow: 0 18px 46px rgba(0,0,0,.18);
padding:14px;
}
#quick .qHead{font-weight:1000;font-size:14px;margin:0 0 10px}
#quick .qList a{
display:flex;justify-content:space-between;gap:12px;
padding:10px 12px;margin-top:8px;border-radius:14px;
background: rgba(255,255,255,.06);
border:1px solid rgba(255,255,255,.10);
}
#quick .qList a b{font-weight:1000}

/* Dropdown plan list under Web Hosting */
#menu .ddList{
margin:8px 0 10px;
padding:8px;
border-radius:14px;
background: rgba(255,255,255,.04);
border:1px solid rgba(255,255,255,.10);
}
#menu .ddRow{
display:flex;justify-content:space-between;gap:12px;
padding:8px 10px;border-radius:12px;
background: rgba(255,255,255,.05);
border:1px solid rgba(255,255,255,.10);
margin-top:8px;
}
#menu .ddRow:first-child{margin-top:0}
#menu .ddRow .n{font-weight:950}
#menu .ddRow .s{display:block;opacity:.75;font-size:11px;margin-top:2px;line-height:1.35}
#menu .ddRow b{font-weight:1000}
/* PRH_HOSTING_GRID4_V1 */
body[data-page="hosting"] #plansGrid{
grid-template-columns:repeat(4,minmax(0,1fr)) !important;
gap:14px !important;
}
@media(max-width:1100px){ body[data-page="hosting"] #plansGrid{grid-template-columns:repeat(2,minmax(0,1fr)) !important;} }
@media(max-width:640px){ body[data-page="hosting"] #plansGrid{grid-template-columns:1fr !important;} }
/* PRH_HOSTING_GRID4_V2 */
body[data-page="hosting"] #plansGrid{grid-template-columns:repeat(4,minmax(0,1fr)) !important; gap:14px !important;}
@media(max-width:1100px){body[data-page="hosting"] #plansGrid{grid-template-columns:repeat(2,minmax(0,1fr)) !important;}}
@media(max-width:640px){body[data-page="hosting"] #plansGrid{grid-template-columns:1fr !important;}}
/* highlight 4th plan */
body[data-page="hosting"] #plansGrid .plan:nth-child(4){
border-color: rgba(34,197,94,.35) !important;
background: radial-gradient(700px 320px at 20% 15%, rgba(34,197,94,.16), transparent 55%),
linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.07)) !important;
}
/* PRH_HOSTING_GRID4_FORCE_V1 */
body[data-page="hosting"] #plansGrid{grid-template-columns:repeat(4,minmax(0,1fr)) !important; gap:14px !important;}
@media(max-width:1100px){body[data-page="hosting"] #plansGrid{grid-template-columns:repeat(2,minmax(0,1fr)) !important;}}
@media(max-width:640px){body[data-page="hosting"] #plansGrid{grid-template-columns:1fr !important;}}
/* PRH_HOSTING_STATIC_GRID_CSS_V1 */
body[data-page="hosting"] #prhHostingStaticGrid{grid-template-columns:repeat(4,minmax(0,1fr)) !important; gap:14px !important;}
@media(max-width:1100px){body[data-page="hosting"] #prhHostingStaticGrid{grid-template-columns:repeat(2,minmax(0,1fr)) !important;}}
@media(max-width:640px){body[data-page="hosting"] #prhHostingStaticGrid{grid-template-columns:1fr !important;}}
body[data-page="hosting"] #prhHostingStaticGrid .plan:nth-child(4){
border-color: rgba(34,197,94,.35) !important;
background: radial-gradient(700px 320px at 20% 15%, rgba(34,197,94,.16), transparent 55%),
linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.07)) !important;
}
/* PRH_HOSTING_STATIC_GRID_CSS_V2 */
body[data-page="hosting"] #prhHostingStaticGrid{grid-template-columns:repeat(4,minmax(0,1fr)) !important; gap:14px !important;}
@media(max-width:1100px){body[data-page="hosting"] #prhHostingStaticGrid{grid-template-columns:repeat(2,minmax(0,1fr)) !important;}}
@media(max-width:640px){body[data-page="hosting"] #prhHostingStaticGrid{grid-template-columns:1fr !important;}}
body[data-page="hosting"] #prhHostingStaticGrid .plan:nth-child(4){
border-color: rgba(34,197,94,.35) !important;
background: radial-gradient(700px 320px at 20% 15%, rgba(34,197,94,.16), transparent 55%),
linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.07)) !important;
}
body[data-page="hosting"] #plansGrid:empty{display:none !important;}
/* PRH_HOSTING_PREMIUM_LAYOUT_V1 */
body[data-page="hosting"] #hostingPackages .prhPkgHead{
display:flex;align-items:flex-end;justify-content:space-between;
gap:14px;margin-bottom:14px;
}
@media(max-width:900px){
body[data-page="hosting"] #hostingPackages .prhPkgHead{flex-direction:column;align-items:flex-start}
}
body[data-page="hosting"] #hostingPackages .prhPkgMeta{display:flex;gap:10px;flex-wrap:wrap}
body[data-page="hosting"] #hostingPackages .chip{
display:inline-flex;align-items:center;justify-content:center;
padding:8px 12px;border-radius:999px;
border:1px solid rgba(255,255,255,.16);
background: rgba(255,255,255,.06);
font-weight:900;font-size:12px;
}
body[data-page="hosting"] #prhHostingStaticGrid{
grid-template-columns:repeat(4,minmax(0,1fr)) !important;
gap:14px !important;
align-items:stretch;
}
@media(max-width:1100px){body[data-page="hosting"] #prhHostingStaticGrid{grid-template-columns:repeat(2,minmax(0,1fr)) !important;}}
@media(max-width:640px){body[data-page="hosting"] #prhHostingStaticGrid{grid-template-columns:1fr !important;}}

body[data-page="hosting"] #prhHostingStaticGrid .plan{
display:flex;flex-direction:column;
min-height:520px;
border-radius:22px;
}
body[data-page="hosting"] #prhHostingStaticGrid .plan .cta{margin-top:auto}
body[data-page="hosting"] #prhHostingStaticGrid .plan .badge{
display:inline-flex;align-items:center;justify-content:center;
gap:8px;
}
/* Recommended (4th card) */
body[data-page="hosting"] #prhHostingStaticGrid .plan:nth-child(4){
border-color: rgba(34,197,94,.35) !important;
background: radial-gradient(700px 320px at 20% 15%, rgba(34,197,94,.16), transparent 55%),
linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.07)) !important;
}
/* PRH_HOSTING_AFTER_HERO_CSS_V1 */
body[data-page="hosting"] #hostingPackages{scroll-margin-top:110px}
body[data-page="hosting"] #hostingPackages .prhPkgHead{display:flex;align-items:flex-end;justify-content:space-between;gap:14px;margin-bottom:14px}
@media(max-width:900px){body[data-page="hosting"] #hostingPackages .prhPkgHead{flex-direction:column;align-items:flex-start}}
body[data-page="hosting"] #hostingPackages .prhPkgMeta{display:flex;gap:10px;flex-wrap:wrap}
body[data-page="hosting"] #hostingPackages .chip{padding:8px 12px;border-radius:999px;border:1px solid rgba(255,255,255,.16);background: rgba(255,255,255,.06);font-weight:900;font-size:12px}
body[data-page="hosting"] #prhHostingStaticGrid{grid-template-columns:repeat(4,minmax(0,1fr)) !important;gap:14px !important;align-items:stretch}
@media(max-width:1100px){body[data-page="hosting"] #prhHostingStaticGrid{grid-template-columns:repeat(2,minmax(0,1fr)) !important;}}
@media(max-width:640px){body[data-page="hosting"] #prhHostingStaticGrid{grid-template-columns:1fr !important;}}
body[data-page="hosting"] #prhHostingStaticGrid .plan{display:flex;flex-direction:column;min-height:520px}
body[data-page="hosting"] #prhHostingStaticGrid .plan .cta{margin-top:auto}
body[data-page="hosting"] #prhHostingStaticGrid .plan:nth-child(4){
border-color: rgba(34,197,94,.35) !important;
background: radial-gradient(700px 320px at 20% 15%, rgba(34,197,94,.16), transparent 55%),
linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.07)) !important;
}
/* PRH_HOSTING_AFTER_HERO_GRID_V1 */
body[data-page="hosting"] #prhHostingStaticGrid{grid-template-columns:repeat(4,minmax(0,1fr)) !important;gap:14px !important;align-items:stretch}
@media(max-width:1100px){body[data-page="hosting"] #prhHostingStaticGrid{grid-template-columns:repeat(2,minmax(0,1fr)) !important;}}
@media(max-width:640px){body[data-page="hosting"] #prhHostingStaticGrid{grid-template-columns:1fr !important;}}
body[data-page="hosting"] #prhHostingStaticGrid .plan{display:flex;flex-direction:column;min-height:520px}
body[data-page="hosting"] #prhHostingStaticGrid .plan .cta{margin-top:auto}
body[data-page="hosting"] #prhHostingStaticGrid .plan:nth-child(4){
border-color: rgba(34,197,94,.35) !important;
background: radial-gradient(700px 320px at 20% 15%, rgba(34,197,94,.16), transparent 55%),
linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.07)) !important;
}
/* PRH_HOSTING_FULLWIDTH_V1 */
body[data-page="hosting"] #hostingPackages{
width: calc(100vw - 56px);
max-width: 1520px;
margin-left:auto;margin-right:auto;
padding-left:0;padding-right:0;
}
@media(max-width:720px){
body[data-page="hosting"] #hostingPackages{width: calc(100vw - 32px);}
}
body[data-page="hosting"] #hostingPackages .h2{font-size:22px !important}
body[data-page="hosting"] #prhHostingStaticGrid{
grid-template-columns:repeat(4,minmax(0,1fr)) !important;
gap:16px !important;
}
@media(max-width:1100px){body[data-page="hosting"] #prhHostingStaticGrid{grid-template-columns:repeat(2,minmax(0,1fr)) !important;}}
@media(max-width:640px){body[data-page="hosting"] #prhHostingStaticGrid{grid-template-columns:1fr !important;}}
body[data-page="hosting"] #prhHostingStaticGrid .plan{min-height:560px}
/* PRH_HOSTING_HERO_PRICING_CSS_V1 */
body[data-page="hosting"] .heroGrid{grid-template-columns: 1.08fr .92fr !important;}
@media(max-width:980px){body[data-page="hosting"] .heroGrid{grid-template-columns:1fr !important;}}

body[data-page="hosting"] .prhHeroPricing{
width:100%;
border-radius:22px;
background: rgba(255,255,255,.06);
border:1px solid rgba(255,255,255,.12);
padding:16px;
box-shadow: 0 18px 46px rgba(0,0,0,.20);
}
body[data-page="hosting"] .prhHeroTitle{font-weight:1000;letter-spacing:.14em;text-transform:uppercase;font-size:12px;opacity:.85}
body[data-page="hosting"] .prhHeroSub{margin-top:6px;font-size:13px;opacity:.78;line-height:1.6}
body[data-page="hosting"] .prhHeroPricingGrid{
margin-top:12px;
display:grid;
grid-template-columns:repeat(2,minmax(0,1fr));
gap:12px;
}
@media(max-width:980px){
body[data-page="hosting"] .prhHeroPricingGrid{grid-template-columns:1fr;}
}

body[data-page="hosting"] .prhPCard{
border-radius:18px;
background: rgba(255,255,255,.06);
border:1px solid rgba(255,255,255,.10);
padding:12px;
min-height:240px;
display:flex;flex-direction:column;
}
body[data-page="hosting"] .prhPCard.prhRec{
border-color: rgba(34,197,94,.35) !important;
background: radial-gradient(600px 260px at 20% 15%, rgba(34,197,94,.16), transparent 55%),
rgba(255,255,255,.06);
}
body[data-page="hosting"] .prhTop{display:flex;flex-direction:column;gap:6px}
body[data-page="hosting"] .prhBadge{
display:inline-flex;align-self:flex-start;
padding:6px 10px;border-radius:999px;
border:1px solid rgba(56,189,248,.25);
background: rgba(56,189,248,.08);
font-size:11px;font-weight:950;
}
body[data-page="hosting"] .prhName{font-weight:1000;font-size:14px}
body[data-page="hosting"] .prhPrice{margin-top:8px;font-weight:1100;font-size:30px}
body[data-page="hosting"] .prhPrice span{font-size:12px;opacity:.75;margin-left:6px;font-weight:900}
body[data-page="hosting"] .prhNote{margin-top:6px;font-size:12px;opacity:.78;line-height:1.5}
body[data-page="hosting"] .prhUl{margin-top:10px}
body[data-page="hosting"] .prhBtn{margin-top:auto; width:100%; justify-content:center;}
/* PRH_HOSTING_WOW_STYLE_V1 (hosting page pricing wow) */
body[data-page="hosting"] .prhHeroPricing{
background:
radial-gradient(900px 420px at 18% 10%, rgba(56,189,248,.14), transparent 55%),
radial-gradient(700px 380px at 88% 15%, rgba(34,197,94,.10), transparent 55%),
rgba(255,255,255,.05) !important;
border:1px solid rgba(255,255,255,.14) !important;
box-shadow: 0 24px 80px rgba(0,0,0,.35) !important;
}

/* cards */
body[data-page="hosting"] .prhPCard{
position:relative;
overflow:hidden;
background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.05)) !important;
border:1px solid rgba(255,255,255,.14) !important;
box-shadow: 0 18px 48px rgba(0,0,0,.22) !important;
transform: translateZ(0);
transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

/* glow edge */
body[data-page="hosting"] .prhPCard::before{
content:"";
position:absolute; inset:-2px;
background:
radial-gradient(520px 240px at 15% 20%, rgba(56,189,248,.28), transparent 60%),
radial-gradient(520px 240px at 85% 30%, rgba(45,212,191,.16), transparent 60%),
linear-gradient(90deg, rgba(56,189,248,.22), rgba(96,165,250,.14), rgba(34,197,94,.18));
filter: blur(18px);
opacity:.22;
pointer-events:none;
}

/* shimmer on hover */
body[data-page="hosting"] .prhPCard::after{
content:"";
position:absolute;
top:-40%; left:-70%;
width:60%; height:180%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,.10), transparent);
transform: rotate(18deg);
opacity:0;
pointer-events:none;
}
@keyframes prhShimmer{0%{transform:translateX(0) rotate(18deg)}100%{transform:translateX(260%) rotate(18deg)}}

body[data-page="hosting"] .prhPCard:hover{
transform: translateY(-4px);
border-color: rgba(56,189,248,.30) !important;
box-shadow: 0 30px 110px rgba(0,0,0,.45), 0 0 0 1px rgba(56,189,248,.18) inset !important;
}
body[data-page="hosting"] .prhPCard:hover::after{
opacity:.85;
animation: prhShimmer 1.25s ease-in-out 1;
}

/* recommended card stronger */
body[data-page="hosting"] .prhPCard.prhRec{
border-color: rgba(34,197,94,.38) !important;
background:
radial-gradient(700px 320px at 20% 15%, rgba(34,197,94,.18), transparent 55%),
linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.06)) !important;
}

/* badge premium */
body[data-page="hosting"] .prhBadge{
border:1px solid rgba(255,255,255,.18) !important;
background: rgba(255,255,255,.06) !important;
backdrop-filter: blur(10px);
}

/* typography polish */
body[data-page="hosting"] .prhName{font-size:15px !important; letter-spacing:.02em}
body[data-page="hosting"] .prhPrice{font-size:34px !important}
body[data-page="hosting"] .prhNote{opacity:.80 !important}

/* button full width + nicer */
body[data-page="hosting"] .prhBtn{
border-radius:999px !important;
padding:12px 14px !important;
}

/* reduced motion */
@media (prefers-reduced-motion: reduce){
body[data-page="hosting"] .prhPCard{transition:none !important;}
body[data-page="hosting"] .prhPCard::after{display:none !important;}
}
/* PRH_HOSTING_PACKAGES_BELOW_CSS_V1 */
body[data-page="hosting"] .heroGrid{grid-template-columns:1fr !important;}
body[data-page="hosting"] .heroGrid .media{display:none !important;} /* keep top like before */

body[data-page="hosting"] #prhHostingPackagesGrid{
grid-template-columns:repeat(4,minmax(0,1fr)) !important;
gap:16px !important;
align-items:stretch;
}
@media(max-width:1100px){body[data-page="hosting"] #prhHostingPackagesGrid{grid-template-columns:repeat(2,minmax(0,1fr)) !important;}}
@media(max-width:640px){body[data-page="hosting"] #prhHostingPackagesGrid{grid-template-columns:1fr !important;}}

body[data-page="hosting"] .prhPkgCard{
border-radius:22px;
background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.06));
border:1px solid rgba(255,255,255,.14);
box-shadow: 0 18px 46px rgba(0,0,0,.22);
padding:16px;
display:flex;
flex-direction:column;
min-height:560px;
}
body[data-page="hosting"] .prhPkgBadge{
display:inline-flex;align-self:flex-start;
padding:6px 10px;border-radius:999px;
border:1px solid rgba(56,189,248,.25);
background: rgba(56,189,248,.08);
font-size:11px;font-weight:950;
}
body[data-page="hosting"] .prhPkgName{margin-top:10px;font-weight:1000;font-size:16px}
body[data-page="hosting"] .prhPkgPrice{margin-top:10px;font-weight:1100;font-size:38px}
body[data-page="hosting"] .prhPkgPrice span{font-size:12px;opacity:.75;margin-left:6px;font-weight:900}
body[data-page="hosting"] .prhPkgNote{margin-top:6px;font-size:13px;opacity:.80}
body[data-page="hosting"] .prhPkgUl{margin-top:12px}
body[data-page="hosting"] .prhPkgCta{margin-top:auto}
body[data-page="hosting"] .prhOrderBtn{
width:100%;
justify-content:center;
padding:12px 14px;
border-radius:999px;
}
body[data-page="hosting"] .prhPkgCard.prhRec{
border-color: rgba(34,197,94,.38);
background: radial-gradient(700px 320px at 20% 15%, rgba(34,197,94,.16), transparent 55%),
linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.07));
}
/* PRH_HOSTING_BIG_ORANGE_V1 */
body[data-page="hosting"] #prhHostingPackagesGrid{gap:18px !important}
body[data-page="hosting"] .prhPkgCard{
padding:20px !important;
border-radius:24px !important;
min-height:620px !important;
}
body[data-page="hosting"] .prhPkgBadge{
font-size:12px !important;
padding:7px 12px !important;
}
body[data-page="hosting"] .prhPkgName{font-size:17px !important}
body[data-page="hosting"] .prhPkgPrice{font-size:44px !important}
body[data-page="hosting"] .prhPkgNote{font-size:13.5px !important}

/* Order Now = View plans style (orange) */
body[data-page="hosting"] .prhOrderBtn{
background: linear-gradient(90deg, #fb923c, #f97316) !important;
border:1px solid rgba(251,146,60,.55) !important;
color:#1b0c00 !important;
font-weight:1000 !important;
box-shadow: 0 18px 46px rgba(0,0,0,.24) !important;
}
body[data-page="hosting"] .prhOrderBtn:hover{
filter: brightness(1.03);
transform: translateY(-1px);
box-shadow: 0 26px 70px rgba(0,0,0,.35) !important;
}
/* PRH_HOSTING_HERO_BIG_V1 */
body[data-page="hosting"] .container.hero .heroGrid{display:block !important;}
body[data-page="hosting"] .container.hero .h1{font-size:88px !important; line-height:1.02 !important;}
body[data-page="hosting"] .container.hero .sub{font-size:16px !important; line-height:1.75 !important; max-width:760px !important;}
@media(max-width:980px){ body[data-page="hosting"] .container.hero .h1{font-size:62px !important;} }
@media(max-width:520px){ body[data-page="hosting"] .container.hero .h1{font-size:46px !important;} }
/* make sure footer is visible */
body[data-page="hosting"] .container.footer{display:block !important; opacity:1 !important;}
/* PRH_HOSTING_REBUILD_V1 */
body[data-page="hosting"] #prhHostingPackagesGrid{
grid-template-columns:repeat(4,minmax(0,1fr)) !important;
gap:18px !important;
align-items:stretch;
}
@media(max-width:1100px){body[data-page="hosting"] #prhHostingPackagesGrid{grid-template-columns:repeat(2,minmax(0,1fr)) !important;}}
@media(max-width:640px){body[data-page="hosting"] #prhHostingPackagesGrid{grid-template-columns:1fr !important;}}

body[data-page="hosting"] .prhPkgCard{
border-radius:24px;
background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.06));
border:1px solid rgba(255,255,255,.14);
box-shadow: 0 18px 46px rgba(0,0,0,.22);
padding:20px;
display:flex;flex-direction:column;
min-height:640px;
}
body[data-page="hosting"] .prhPkgBadge{
display:inline-flex;align-self:flex-start;
padding:7px 12px;border-radius:999px;
border:1px solid rgba(56,189,248,.25);
background: rgba(56,189,248,.08);
font-size:12px;font-weight:950;
}
body[data-page="hosting"] .prhPkgName{margin-top:10px;font-weight:1000;font-size:17px}
body[data-page="hosting"] .prhPkgPrice{margin-top:10px;font-weight:1100;font-size:44px}
body[data-page="hosting"] .prhPkgPrice span{font-size:12px;opacity:.75;margin-left:6px;font-weight:900}
body[data-page="hosting"] .prhPkgNote{margin-top:6px;font-size:13.5px;opacity:.82}
body[data-page="hosting"] .prhPkgUl{margin-top:12px}
body[data-page="hosting"] .prhPkgCta{margin-top:auto}

/* Order Now = View plans orange style */
body[data-page="hosting"] .prhOrderBtn{
width:100%;
justify-content:center;
padding:12px 14px;
border-radius:999px;
background: linear-gradient(90deg, #fb923c, #f97316) !important;
border:1px solid rgba(251,146,60,.55) !important;
color:#1b0c00 !important;
font-weight:1000 !important;
box-shadow: 0 18px 46px rgba(0,0,0,.24) !important;
}
body[data-page="hosting"] .prhPkgCard.prhRec{
border-color: rgba(34,197,94,.38);
background: radial-gradient(700px 320px at 20% 15%, rgba(34,197,94,.16), transparent 55%),
linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.07));
}
/* PRH_VPS_REBUILD_V3_CSS */
body[data-page="vps"] #prhVpsPackagesGrid{
grid-template-columns:repeat(4,minmax(0,1fr)) !important;
gap:18px !important;
align-items:stretch;
}
@media(max-width:1100px){body[data-page="vps"] #prhVpsPackagesGrid{grid-template-columns:repeat(2,minmax(0,1fr)) !important;}}
@media(max-width:640px){body[data-page="vps"] #prhVpsPackagesGrid{grid-template-columns:1fr !important;}}

body[data-page="vps"] .prhPkgCard{
border-radius:24px;
background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.06));
border:1px solid rgba(255,255,255,.14);
box-shadow: 0 18px 46px rgba(0,0,0,.22);
padding:20px;
display:flex;flex-direction:column;
min-height:640px;
}
body[data-page="vps"] .prhPkgBadge{
display:inline-flex;align-self:flex-start;
padding:7px 12px;border-radius:999px;
border:1px solid rgba(56,189,248,.25);
background: rgba(56,189,248,.08);
font-size:12px;font-weight:950;
}
body[data-page="vps"] .prhPkgName{margin-top:10px;font-weight:1000;font-size:17px}
body[data-page="vps"] .prhPkgPrice{margin-top:10px;font-weight:1100;font-size:44px}
body[data-page="vps"] .prhPkgPrice span{font-size:12px;opacity:.75;margin-left:6px;font-weight:900}
body[data-page="vps"] .prhPkgNote{margin-top:6px;font-size:13.5px;opacity:.82}
body[data-page="vps"] .prhPkgUl{margin-top:12px}
body[data-page="vps"] .prhPkgCta{margin-top:auto}
body[data-page="vps"] .prhOrderBtn{
width:100%;
justify-content:center;
padding:12px 14px;
border-radius:999px;
background: linear-gradient(90deg, #fb923c, #f97316) !important;
border:1px solid rgba(251,146,60,.55) !important;
color:#1b0c00 !important;
font-weight:1000 !important;
box-shadow: 0 18px 46px rgba(0,0,0,.24) !important;
}
body[data-page="vps"] .prhPkgCard.prhRec{
border-color: rgba(34,197,94,.38);
background: radial-gradient(700px 320px at 20% 15%, rgba(34,197,94,.16), transparent 55%),
linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.07));
}
/* PRH_VPS_TIGHT_HERO_V1 */
body[data-page="vps"] .container.hero{
padding-top: 18px !important;
padding-bottom: 10px !important;
min-height: auto !important;
}
body[data-page="vps"] .container.hero .heroGrid{
min-height: auto !important;
padding-bottom: 0 !important;
}
body[data-page="vps"] .container.hero .h1{
font-size: 64px !important;
line-height: 1.03 !important;
margin-top: 10px !important;
}
@media(max-width:980px){
body[data-page="vps"] .container.hero .h1{font-size:52px !important;}
}
@media(max-width:520px){
body[data-page="vps"] .container.hero .h1{font-size:42px !important;}
}
/* pull packages a bit upward */
body[data-page="vps"] #vpsPackages{
margin-top: -8px !important;
padding-top: 10px !important;
}
/* PRH_PKG_HOVER_BLINK_V1 (hosting + vps package cards hover blink) */
@keyframes prhBlinkPulse{
0%{transform:translateY(0); box-shadow: 0 18px 46px rgba(0,0,0,.22); border-color: rgba(255,255,255,.14);}
50%{transform:translateY(-5px); box-shadow: 0 34px 120px rgba(0,0,0,.55), 0 0 0 1px rgba(56,189,248,.22) inset; border-color: rgba(56,189,248,.42);}
100%{transform:translateY(-3px); box-shadow: 0 26px 90px rgba(0,0,0,.40), 0 0 0 1px rgba(56,189,248,.18) inset; border-color: rgba(56,189,248,.30);}
}
@keyframes prhBlinkShimmer{
0%{transform:translateX(-20%) rotate(18deg); opacity:0;}
10%{opacity:.9;}
100%{transform:translateX(240%) rotate(18deg); opacity:0;}
}

body[data-page="hosting"] .prhPkgCard,
body[data-page="vps"] .prhPkgCard{
position:relative;
overflow:hidden;
transform:translateZ(0);
transition: border-color .18s ease, box-shadow .18s ease;
}

/* shimmer layer */
body[data-page="hosting"] .prhPkgCard::after,
body[data-page="vps"] .prhPkgCard::after{
content:"";
position:absolute;
top:-40%;
left:-70%;
width:60%;
height:180%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
transform: rotate(18deg);
opacity:0;
pointer-events:none;
}

/* hover = blink */
body[data-page="hosting"] .prhPkgCard:hover,
body[data-page="vps"] .prhPkgCard:hover{
animation: prhBlinkPulse .85s ease-in-out 1;
border-color: rgba(56,189,248,.30) !important;
}

/* shimmer on hover */
body[data-page="hosting"] .prhPkgCard:hover::after,
body[data-page="vps"] .prhPkgCard:hover::after{
animation: prhBlinkShimmer .85s ease-in-out 1;
}

/* recommended card: greener glow on hover */
body[data-page="hosting"] .prhPkgCard.prhRec:hover,
body[data-page="vps"] .prhPkgCard.prhRec:hover{
border-color: rgba(34,197,94,.45) !important;
box-shadow: 0 34px 120px rgba(0,0,0,.55), 0 0 0 1px rgba(34,197,94,.20) inset !important;
}

/* accessibility */
@media (prefers-reduced-motion: reduce){
body[data-page="hosting"] .prhPkgCard:hover,
body[data-page="vps"] .prhPkgCard:hover{animation:none !important;}
body[data-page="hosting"] .prhPkgCard::after,
body[data-page="vps"] .prhPkgCard::after{display:none !important;}
}
/* PRH_HOSTING_TIGHT_HERO_V1 */
body[data-page="hosting"] .container.hero{
padding-top: 18px !important;
padding-bottom: 10px !important;
min-height: auto !important;
}
body[data-page="hosting"] .container.hero .heroGrid{
min-height: auto !important;
padding-bottom: 0 !important;
}
body[data-page="hosting"] .container.hero .h1{
font-size: 64px !important;
line-height: 1.03 !important;
margin-top: 10px !important;
}
@media(max-width:980px){
body[data-page="hosting"] .container.hero .h1{font-size:52px !important;}
}
@media(max-width:520px){
body[data-page="hosting"] .container.hero .h1{font-size:42px !important;}
}
/* bring packages a bit upward */
body[data-page="hosting"] #hostingPackages{
margin-top: -8px !important;
padding-top: 10px !important;
}
/* PRH_DEDICATED_REBUILD_CSS_V1 */
body[data-page="dedicated"] .container.hero{
padding-top:18px !important; padding-bottom:10px !important; min-height:auto !important;
}
body[data-page="dedicated"] .container.hero .heroGrid{min-height:auto !important; padding-bottom:0 !important;}
body[data-page="dedicated"] #dedPackages{margin-top:-8px !important; padding-top:10px !important;}

body[data-page="dedicated"] #prhDedPackagesGrid{
grid-template-columns:repeat(4,minmax(0,1fr)) !important;
gap:18px !important;
align-items:stretch;
}
@media(max-width:1100px){body[data-page="dedicated"] #prhDedPackagesGrid{grid-template-columns:repeat(2,minmax(0,1fr)) !important;}}
@media(max-width:640px){body[data-page="dedicated"] #prhDedPackagesGrid{grid-template-columns:1fr !important;}}

body[data-page="dedicated"] .prhPkgCard{
border-radius:24px;
background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.06));
border:1px solid rgba(255,255,255,.14);
box-shadow: 0 18px 46px rgba(0,0,0,.22);
padding:20px;
display:flex;flex-direction:column;
min-height:640px;
position:relative; overflow:hidden; transform:translateZ(0);
}
body[data-page="dedicated"] .prhPkgBadge{
display:inline-flex;align-self:flex-start;
padding:7px 12px;border-radius:999px;
border:1px solid rgba(56,189,248,.25);
background: rgba(56,189,248,.08);
font-size:12px;font-weight:950;
}
body[data-page="dedicated"] .prhPkgName{margin-top:10px;font-weight:1000;font-size:17px}
body[data-page="dedicated"] .prhPkgPrice{margin-top:10px;font-weight:1100;font-size:44px}
body[data-page="dedicated"] .prhPkgPrice span{font-size:12px;opacity:.75;margin-left:6px;font-weight:900}
body[data-page="dedicated"] .prhPkgNote{margin-top:6px;font-size:13.5px;opacity:.82}
body[data-page="dedicated"] .prhPkgUl{margin-top:12px}
body[data-page="dedicated"] .prhPkgCta{margin-top:auto}

/* Order Now = View plans orange */
body[data-page="dedicated"] .prhOrderBtn{
width:100%;
justify-content:center;
padding:12px 14px;
border-radius:999px;
background: linear-gradient(90deg, #fb923c, #f97316) !important;
border:1px solid rgba(251,146,60,.55) !important;
color:#1b0c00 !important;
font-weight:1000 !important;
box-shadow: 0 18px 46px rgba(0,0,0,.24) !important;
}

body[data-page="dedicated"] .prhPkgCard.prhRec{
border-color: rgba(34,197,94,.38);
background: radial-gradient(700px 320px at 20% 15%, rgba(34,197,94,.16), transparent 55%),
linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.07));
}

/* hover blink + shimmer */
@keyframes prhDedPulse{
0%{transform:translateY(0); box-shadow: 0 18px 46px rgba(0,0,0,.22);}
50%{transform:translateY(-5px); box-shadow: 0 34px 120px rgba(0,0,0,.55), 0 0 0 1px rgba(56,189,248,.22) inset;}
100%{transform:translateY(-3px); box-shadow: 0 26px 90px rgba(0,0,0,.40), 0 0 0 1px rgba(56,189,248,.18) inset;}
}
@keyframes prhDedShimmer{
0%{transform:translateX(-20%) rotate(18deg); opacity:0;}
10%{opacity:.9;}
100%{transform:translateX(240%) rotate(18deg); opacity:0;}
}
body[data-page="dedicated"] .prhPkgCard::after{
content:""; position:absolute; top:-40%; left:-70%;
width:60%; height:180%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
transform: rotate(18deg);
opacity:0; pointer-events:none;
}
body[data-page="dedicated"] .prhPkgCard:hover{
animation: prhDedPulse .85s ease-in-out 1;
border-color: rgba(56,189,248,.30) !important;
}
body[data-page="dedicated"] .prhPkgCard:hover::after{
opacity:1;
animation: prhDedShimmer .85s ease-in-out 1;
}
@media (prefers-reduced-motion: reduce){
body[data-page="dedicated"] .prhPkgCard:hover{animation:none !important;}
body[data-page="dedicated"] .prhPkgCard::after{display:none !important;}
}
/* PRH_HOME_PACKAGES_INTRO_CSS_V1 */
body[data-page="home"] .prhHomePkgGrid{grid-template-columns:repeat(3,minmax(0,1fr)) !important; gap:16px !important;}
@media(max-width:980px){body[data-page="home"] .prhHomePkgGrid{grid-template-columns:1fr !important;}}
body[data-page="home"] .prhHomePkgCard{
border-radius:24px;
background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.06));
border:1px solid rgba(255,255,255,.14);
box-shadow: 0 18px 46px rgba(0,0,0,.22);
padding:18px;
transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
body[data-page="home"] .prhHomePkgCard:hover{
transform: translateY(-3px);
border-color: rgba(56,189,248,.28);
box-shadow: 0 26px 90px rgba(0,0,0,.35), 0 0 0 1px rgba(56,189,248,.16) inset;
}
body[data-page="home"] .prhHomePkgTitle{margin-top:10px;font-weight:1000;font-size:16px}
body[data-page="home"] .prhHomePkgFrom{margin-top:10px;font-size:14px;opacity:.85}
body[data-page="home"] .prhHomePkgUl{margin-top:12px}
/* PRH_CONTACT_REBUILD_V1_CSS */
body[data-page="contact"] .prhSupportGrid{grid-template-columns:1fr 1fr !important; gap:18px}
@media(max-width:980px){body[data-page="contact"] .prhSupportGrid{grid-template-columns:1fr !important;}}
body[data-page="contact"] .prhSupportHero{padding-top:22px !important; padding-bottom:14px !important}

body[data-page="contact"] .prhSupportBtns{display:flex;gap:12px;flex-wrap:wrap;margin-top:16px;align-items:center}
body[data-page="contact"] .prhBtnWa, body[data-page="contact"] .prhBtnWa2{display:inline-flex;gap:10px;align-items:center;justify-content:center}
body[data-page="contact"] .prhBtnWa svg, body[data-page="contact"] .prhBtnWa2 svg{opacity:.95}

body[data-page="contact"] .prhSupportMedia{
height:320px; border-radius:26px;
background:
radial-gradient(900px 420px at 18% 10%, rgba(56,189,248,.18), transparent 55%),
radial-gradient(700px 380px at 88% 15%, rgba(34,197,94,.12), transparent 55%),
linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.05));
border:1px solid rgba(255,255,255,.14);
box-shadow: 0 26px 90px rgba(0,0,0,.35);
position:relative; overflow:hidden;
}
body[data-page="contact"] .prhMediaTag{
position:absolute; left:16px; top:16px;
padding:8px 12px; border-radius:999px;
border:1px solid rgba(255,255,255,.16);
background: rgba(0,0,0,.20);
backdrop-filter: blur(10px);
font-weight:950;font-size:12px;
}

body[data-page="contact"] .prhContact3{grid-template-columns:repeat(3,minmax(0,1fr)) !important; gap:16px !important;}
@media(max-width:980px){body[data-page="contact"] .prhContact3{grid-template-columns:1fr !important;}}
body[data-page="contact"] .prhContact2{grid-template-columns:repeat(2,minmax(0,1fr)) !important; gap:16px !important;}
@media(max-width:980px){body[data-page="contact"] .prhContact2{grid-template-columns:1fr !important;}}

body[data-page="contact"] .prhContactCard, body[data-page="contact"] .prhBigTile{
border-radius:24px;
background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.06));
border:1px solid rgba(255,255,255,.14);
box-shadow: 0 18px 46px rgba(0,0,0,.22);
}
body[data-page="contact"] .prhBigTile{padding:22px !important;}
/* PRH_CONTACT_TICKET_CSS_V1 */
body[data-page="contact"] .prhTicketGrid{grid-template-columns:1fr 1.2fr !important; gap:16px !important;}
@media(max-width:980px){body[data-page="contact"] .prhTicketGrid{grid-template-columns:1fr !important;}}
body[data-page="contact"] .prhTicketForm label{display:block;margin-top:10px;font-weight:900;font-size:12px;opacity:.85}
body[data-page="contact"] .prhTicketForm input,
body[data-page="contact"] .prhTicketForm textarea,
body[data-page="contact"] .prhTicketForm select{
width:100%;
margin-top:6px;
border-radius:14px;
background: rgba(255,255,255,.08);
border:1px solid rgba(255,255,255,.16);
color: rgba(234,246,255,.95);
padding:12px 12px;
outline:none;
}
body[data-page="contact"] .prhTicketForm textarea{resize:vertical;min-height:120px}
body[data-page="contact"] .prhTicketBtns{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}
body[data-page="contact"] .prhTicketSend{cursor:pointer}
/* PRH_CONTACT_TICKET_CENTER_WOW_V1 */
body[data-page="contact"] .prhTicketShell{
max-width: 1180px;
margin-left:auto;margin-right:auto;
}
body[data-page="contact"] .prhTicketShell{
border-radius: 26px;
padding: 26px !important;
background: linear-gradient(180deg, rgba(9,64,74,.92), rgba(7,46,54,.92)) !important;
border:1px solid rgba(255,255,255,.10) !important;
box-shadow: 0 30px 110px rgba(0,0,0,.45) !important;
}
body[data-page="contact"] .prhTicketShell .plan{
background: rgba(255,255,255,.06) !important;
border:1px solid rgba(255,255,255,.12) !important;
}
body[data-page="contact"] .prhTicketShell .prhTicketGrid{
grid-template-columns:1fr 1.15fr !important;
gap:16px !important;
}
@media(max-width:980px){
body[data-page="contact"] .prhTicketShell .prhTicketGrid{grid-template-columns:1fr !important;}
}
body[data-page="contact"] .prhTicketShell .prhTicketBtns{
justify-content:flex-start;
}

/* WOW hover for all contact boxes */
@keyframes prhWowPulse{
0%{transform:translateY(0); box-shadow:0 18px 46px rgba(0,0,0,.22); border-color:rgba(255,255,255,.14);}
50%{transform:translateY(-4px); box-shadow:0 34px 120px rgba(0,0,0,.55), 0 0 0 1px rgba(56,189,248,.18) inset; border-color:rgba(56,189,248,.32);}
100%{transform:translateY(-2px); box-shadow:0 26px 90px rgba(0,0,0,.40), 0 0 0 1px rgba(56,189,248,.12) inset; border-color:rgba(56,189,248,.24);}
}
@keyframes prhWowShimmer{
0%{transform:translateX(-20%) rotate(18deg); opacity:0;}
10%{opacity:.9;}
100%{transform:translateX(240%) rotate(18deg); opacity:0;}
}
body[data-page="contact"] .prhTile,
body[data-page="contact"] .prhContactCard,
body[data-page="contact"] .prhBigTile,
body[data-page="contact"] .prhTicketShell .plan{
position:relative; overflow:hidden; transform:translateZ(0);
}
body[data-page="contact"] .prhTile::after,
body[data-page="contact"] .prhContactCard::after,
body[data-page="contact"] .prhBigTile::after,
body[data-page="contact"] .prhTicketShell .plan::after{
content:""; position:absolute; top:-40%; left:-70%;
width:60%; height:180%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,.10), transparent);
transform: rotate(18deg);
opacity:0; pointer-events:none;
}
body[data-page="contact"] .prhTile:hover,
body[data-page="contact"] .prhContactCard:hover,
body[data-page="contact"] .prhBigTile:hover,
body[data-page="contact"] .prhTicketShell .plan:hover{
animation: prhWowPulse .85s ease-in-out 1;
}
body[data-page="contact"] .prhTile:hover::after,
body[data-page="contact"] .prhContactCard:hover::after,
body[data-page="contact"] .prhBigTile:hover::after,
body[data-page="contact"] .prhTicketShell .plan:hover::after{
opacity:1;
animation: prhWowShimmer .85s ease-in-out 1;
}

@media (prefers-reduced-motion: reduce){
body[data-page="contact"] .prhTile:hover,
body[data-page="contact"] .prhContactCard:hover,
body[data-page="contact"] .prhBigTile:hover,
body[data-page="contact"] .prhTicketShell .plan:hover{animation:none !important;}
body[data-page="contact"] .prhTile::after,
body[data-page="contact"] .prhContactCard::after,
body[data-page="contact"] .prhBigTile::after,
body[data-page="contact"] .prhTicketShell .plan::after{display:none !important;}
}
/* PRH_CONTACT_POLISH_V1 (contact page only) */
body[data-page="contact"] .container.section{padding-top:26px;padding-bottom:26px}

/* unify cards look */
body[data-page="contact"] .prhTile,
body[data-page="contact"] .prhContactCard,
body[data-page="contact"] .prhBigTile{
border-radius:26px !important;
padding:20px !important;
border:1px solid rgba(255,255,255,.14) !important;
background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.06)) !important;
box-shadow: 0 20px 60px rgba(0,0,0,.28) !important;
}
body[data-page="contact"] .prhTileH{
font-size:20px !important;
font-weight:1100 !important;
letter-spacing:.01em;
margin-bottom:14px !important;
}
body[data-page="contact"] .note,
body[data-page="contact"] .prhFormSmall,
body[data-page="contact"] .prhLocNote,
body[data-page="contact"] .prhMapNote{
font-size:13px !important;
line-height:1.75 !important;
opacity:.80 !important;
}

/* WOW hover (clean, not noisy) */
body[data-page="contact"] .prhTile:hover,
body[data-page="contact"] .prhContactCard:hover,
body[data-page="contact"] .prhBigTile:hover{
transform: translateY(-3px);
border-color: rgba(56,189,248,.30) !important;
box-shadow: 0 30px 110px rgba(0,0,0,.40), 0 0 0 1px rgba(56,189,248,.16) inset !important;
}

/* Ticket shell: center + breathing room */
body[data-page="contact"] .prhTicketShell{
max-width:1180px;
margin-left:auto;margin-right:auto;
margin-top:10px;
border-radius:28px !important;
padding:26px !important;
background: linear-gradient(180deg, rgba(9,64,74,.92), rgba(7,46,54,.92)) !important;
border:1px solid rgba(255,255,255,.10) !important;
box-shadow: 0 34px 120px rgba(0,0,0,.55) !important;
}
body[data-page="contact"] .prhTicketShell .prhTicketGrid{
grid-template-columns:1fr 1.15fr !important;
gap:16px !important;
align-items:start;
}
@media(max-width:980px){
body[data-page="contact"] .prhTicketShell .prhTicketGrid{grid-template-columns:1fr !important;}
}

/* Ticket form: spacing + full-width fields + nice checkbox row */
body[data-page="contact"] .prhTicketForm label{
margin-top:12px !important;
font-weight:950 !important;
font-size:12px !important;
opacity:.90 !important;
}
body[data-page="contact"] .prhTicketForm input,
body[data-page="contact"] .prhTicketForm textarea,
body[data-page="contact"] .prhTicketForm select{
padding:12px 14px !important;
border-radius:14px !important;
}
body[data-page="contact"] .prhTicketForm textarea{min-height:140px !important;}
body[data-page="contact"] .prhTicketForm .prhCheck{
display:flex !important;
align-items:center !important;
gap:10px !important;
margin-top:14px !important;
}
body[data-page="contact"] .prhTicketForm .prhCheck input{transform:scale(1.05);}

/* Send ticket button (orange like View plans) */
body[data-page="contact"] .prhTicketSend{
background: linear-gradient(90deg, #fb923c, #f97316) !important;
border:1px solid rgba(251,146,60,.55) !important;
color:#1b0c00 !important;
font-weight:1000 !important;
border-radius:999px !important;
padding:12px 14px !important;
}
/* PRH_CONTACT_TICKET_OFFICIAL_GLASS_V1 */
body[data-page="contact"] #supportTicket.prhTicketShell{
/* glass panel */
background:
radial-gradient(900px 420px at 18% 10%, rgba(56,189,248,.16), transparent 60%),
radial-gradient(700px 380px at 88% 18%, rgba(34,197,94,.10), transparent 60%),
rgba(6, 28, 36, .55) !important;
border:1px solid rgba(255,255,255,.12) !important;
backdrop-filter: blur(14px);
-webkit-backdrop-filter: blur(14px);
box-shadow: 0 34px 120px rgba(0,0,0,.55) !important;
padding:28px !important;
}

/* inner cards */
body[data-page="contact"] #supportTicket .prhTicketInfo,
body[data-page="contact"] #supportTicket .prhTicketBox{
background: rgba(255,255,255,.05) !important;
border:1px solid rgba(255,255,255,.12) !important;
border-radius:22px !important;
box-shadow: 0 18px 46px rgba(0,0,0,.22) !important;
padding:18px !important;
}

/* headings/text look */
body[data-page="contact"] #supportTicket .badge{
background: rgba(56,189,248,.10) !important;
border:1px solid rgba(56,189,248,.25) !important;
font-weight:1000 !important;
letter-spacing:.12em !important;
text-transform:uppercase !important;
}
body[data-page="contact"] #supportTicket h3,
body[data-page="contact"] #supportTicket .prhTicketInfo > div[style*="font-size:18px"],
body[data-page="contact"] #supportTicket .prhTicketBox > div[style*="font-size:16px"]{
font-size:20px !important;
font-weight:1100 !important;
letter-spacing:.01em !important;
}
body[data-page="contact"] #supportTicket .note{
font-size:13.5px !important;
line-height:1.8 !important;
opacity:.82 !important;
}

/* form controls */
body[data-page="contact"] #supportTicket .prhTicketForm label{
font-weight:1000 !important;
letter-spacing:.08em !important;
text-transform:uppercase !important;
font-size:11px !important;
opacity:.85 !important;
}
body[data-page="contact"] #supportTicket .prhTicketForm input,
body[data-page="contact"] #supportTicket .prhTicketForm textarea,
body[data-page="contact"] #supportTicket .prhTicketForm select{
background: rgba(255,255,255,.06) !important;
border:1px solid rgba(255,255,255,.14) !important;
border-radius:16px !important;
padding:12px 14px !important;
transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
body[data-page="contact"] #supportTicket .prhTicketForm input:focus,
body[data-page="contact"] #supportTicket .prhTicketForm textarea:focus,
body[data-page="contact"] #supportTicket .prhTicketForm select:focus{
outline:none !important;
border-color: rgba(56,189,248,.38) !important;
box-shadow: 0 0 0 4px rgba(56,189,248,.10) !important;
background: rgba(255,255,255,.07) !important;
}
body[data-page="contact"] #supportTicket .prhTicketForm textarea{min-height:150px !important;}

/* buttons row */
body[data-page="contact"] #supportTicket .prhTicketBtns{
margin-top:16px !important;
gap:12px !important;
align-items:center !important;
}
body[data-page="contact"] #supportTicket .prhTicketSend{
background: linear-gradient(90deg, #fb923c, #f97316) !important;
border:1px solid rgba(251,146,60,.55) !important;
color:#1b0c00 !important;
font-weight:1100 !important;
border-radius:999px !important;
padding:12px 16px !important;
box-shadow: 0 18px 46px rgba(0,0,0,.24) !important;
}
body[data-page="contact"] #supportTicket .prhTicketBtns .pill{
border-radius:999px !important;
padding:12px 16px !important;
}

/* keep it centered + breathing space */
body[data-page="contact"] #supportTicket{
margin-top:18px !important;
margin-bottom:18px !important;
}
/* PRH_CONTACT_MEDIA_CENTER_CSS_V1 */
body[data-page="contact"] .prhSupportMedia{
display:flex;
align-items:center;
justify-content:center;
padding:22px;
}
body[data-page="contact"] .prhMediaCenter{
width:100%;
max-width:560px;
position:relative;
z-index:2;
}
body[data-page="contact"] .prhMediaTitle{
font-weight:1100;
font-size:18px;
letter-spacing:.01em;
}
body[data-page="contact"] .prhMediaSub{
margin-top:8px;
opacity:.78;
font-size:13px;
line-height:1.6;
}
body[data-page="contact"] .prhMediaGrid{
margin-top:14px;
display:grid;
grid-template-columns:1fr;
gap:10px;
}
body[data-page="contact"] .prhMini{
border-radius:18px;
background: rgba(255,255,255,.06);
border:1px solid rgba(255,255,255,.12);
padding:12px;
}
body[data-page="contact"] .prhMini b{font-weight:1100}
body[data-page="contact"] .prhMini .t{margin-top:6px;font-weight:950}
body[data-page="contact"] .prhMini .m{margin-top:4px;opacity:.72;font-size:12px;line-height:1.5}
body[data-page="contact"] .prhMediaBtns{
margin-top:14px;
display:flex;
gap:10px;
flex-wrap:wrap;
}
/* PRH_CONTACT_LIVE_DASH_CSS_V1 */
body[data-page="contact"] .prhSupportMedia{
padding:18px !important;
display:block !important;
height:auto !important;
}
body[data-page="contact"] .prhLiveDash{width:100%}
body[data-page="contact"] .prhLiveHead{margin-bottom:12px}
body[data-page="contact"] .prhLiveTitle{font-weight:1100;font-size:18px}
body[data-page="contact"] .prhLiveSub{margin-top:6px;opacity:.78;font-size:13px;line-height:1.5}

body[data-page="contact"] .prhDashGrid{
display:grid;
grid-template-columns:repeat(2,minmax(0,1fr));
gap:12px;
}
@media(max-width:980px){
body[data-page="contact"] .prhDashGrid{grid-template-columns:1fr;}
}
body[data-page="contact"] .prhDashCard{
border-radius:18px;
background: rgba(255,255,255,.06);
border:1px solid rgba(255,255,255,.12);
padding:12px;
}
body[data-page="contact"] .prhDashH{font-weight:1000;font-size:13px;letter-spacing:.12em;text-transform:uppercase;opacity:.9}
body[data-page="contact"] .prhSmall{margin-top:6px;font-size:12px;opacity:.75}
body[data-page="contact"] .prhRow{
display:flex;justify-content:space-between;gap:12px;
padding:8px 10px;margin-top:8px;
border-radius:14px;
background: rgba(255,255,255,.05);
border:1px solid rgba(255,255,255,.10);
}
body[data-page="contact"] .prhRow b{font-weight:950}
body[data-page="contact"] .prhVal{font-weight:950;opacity:.92}

body[data-page="contact"] .prhDashMap{padding:0;overflow:hidden}
body[data-page="contact"] .prhDashMap .prhDashH{padding:12px 12px 0}
body[data-page="contact"] .prhDashMapFrame{width:100%;height:240px;border:0;display:block;border-radius:0 0 18px 18px}
/* PRH_CONTACT_TIGHT_LIVE_BLINK_V1 */

/* HERO tight (contact only) */
body[data-page="contact"] .container.hero{
padding-top: 14px !important;
padding-bottom: 10px !important;
min-height: auto !important;
}
body[data-page="contact"] .container.hero .heroGrid{
min-height:auto !important;
padding-bottom:0 !important;
}
body[data-page="contact"] .container.hero .h1{
margin-top: 10px !important;
line-height: 1.04 !important;
}

/* LIVE badge + blink light */
@keyframes prhLiveDot{
0%,100%{opacity:.35; transform:scale(.95); box-shadow:0 0 0 rgba(34,197,94,0);}
50%{opacity:1; transform:scale(1.05); box-shadow:0 0 22px rgba(34,197,94,.35);}
}
body[data-page="contact"] .prhLiveTitle{
position:relative;
padding-right:92px;
}
body[data-page="contact"] .prhLiveTitle::after{
content:"LIVE";
position:absolute;
right:0; top:0;
font-weight:1000;
font-size:11px;
letter-spacing:.14em;
opacity:.9;
padding:6px 10px;
border-radius:999px;
border:1px solid rgba(34,197,94,.35);
background: rgba(34,197,94,.10);
}
body[data-page="contact"] .prhLiveTitle::before{
content:"";
position:absolute;
right:62px; top:8px;
width:10px; height:10px;
border-radius:999px;
background:#22c55e;
animation: prhLiveDot .95s ease-in-out infinite;
}

/* dashboard cards subtle pulse (blink lights feel) */
@keyframes prhDashPulse{
0%,100%{border-color: rgba(255,255,255,.12); box-shadow: 0 18px 46px rgba(0,0,0,.22);}
50%{border-color: rgba(56,189,248,.26); box-shadow: 0 28px 92px rgba(0,0,0,.38), 0 0 0 1px rgba(56,189,248,.14) inset;}
}
body[data-page="contact"] .prhDashCard{
animation: prhDashPulse 3.6s ease-in-out infinite;
}
body[data-page="contact"] .prhDashGrid .prhDashCard:nth-child(2){animation-delay:.4s}
body[data-page="contact"] .prhDashGrid .prhDashCard:nth-child(3){animation-delay:.8s}
body[data-page="contact"] .prhDashGrid .prhDashCard:nth-child(4){animation-delay:1.2s}

/* rows get a tiny blinking status light */
body[data-page="contact"] .prhRow{
position:relative;
padding-left:26px !important;
}
body[data-page="contact"] .prhRow::before{
content:"";
position:absolute;
left:10px; top:50%;
transform:translateY(-50%);
width:7px; height:7px;
border-radius:999px;
background: rgba(34,197,94,.85);
animation: prhLiveDot 1.15s ease-in-out infinite;
opacity:.9;
}

/* reduce motion accessibility */
@media (prefers-reduced-motion: reduce){
body[data-page="contact"] .prhDashCard{animation:none !important;}
body[data-page="contact"] .prhLiveTitle::before{animation:none !important;}
body[data-page="contact"] .prhRow::before{animation:none !important;}
}
/* PRH_CONTACT_DASH_POLISH_V1 */

/* remove old floating tags that overlap dashboard */
body[data-page="contact"] .prhSupportMedia .prhMediaTag{display:none !important;}

/* dashboard container */
body[data-page="contact"] .prhSupportMedia{
padding:18px !important;
position:relative;
}
body[data-page="contact"] .prhLiveDash{
max-width: 920px;
margin: 0 auto;
}
body[data-page="contact"] .prhLiveHead{margin-bottom:14px}
body[data-page="contact"] .prhLiveTitle{
font-size:18px !important;
font-weight:1100 !important;
letter-spacing:.01em;
}
body[data-page="contact"] .prhLiveSub{
margin-top:6px;
opacity:.80;
font-size:13px;
line-height:1.55;
}

/* grid */
body[data-page="contact"] .prhDashGrid{
grid-template-columns:repeat(2,minmax(0,1fr)) !important;
gap:14px !important;
}
@media(max-width:980px){
body[data-page="contact"] .prhDashGrid{grid-template-columns:1fr !important;}
}

/* cards */
body[data-page="contact"] .prhDashCard{
border-radius:20px !important;
padding:14px !important;
background: rgba(255,255,255,.06) !important;
border:1px solid rgba(255,255,255,.12) !important;
box-shadow: 0 18px 46px rgba(0,0,0,.22);
animation: none !important; /* keep clean */
}
body[data-page="contact"] .prhDashH{
font-size:12px !important;
letter-spacing:.16em !important;
text-transform:uppercase !important;
font-weight:1100 !important;
opacity:.92 !important;
}

/* rows */
body[data-page="contact"] .prhRow{
margin-top:10px !important;
padding:10px 12px !important;
padding-left:28px !important;
border-radius:16px !important;
}
body[data-page="contact"] .prhRow b{font-size:13px}
body[data-page="contact"] .prhVal{font-size:13px}

/* map */
body[data-page="contact"] .prhDashMapFrame{height:260px !important;}
/* PRH_CONTACT_SELECT_FOCUS_FIX_V1 */
body[data-page="contact"] #supportTicket select,
body[data-page="contact"] #supportTicket input,
body[data-page="contact"] #supportTicket textarea{
appearance:none;
-webkit-appearance:none;
outline:none !important;
box-shadow:none;
}

body[data-page="contact"] #supportTicket select:focus,
body[data-page="contact"] #supportTicket input:focus,
body[data-page="contact"] #supportTicket textarea:focus{
outline:none !important;
border-color: rgba(56,189,248,.35) !important;
box-shadow: 0 0 0 4px rgba(56,189,248,.10) !important;
background: rgba(255,255,255,.07) !important;
}

/* remove any white highlight on active */
body[data-page="contact"] #supportTicket select:active,
body[data-page="contact"] #supportTicket input:active,
body[data-page="contact"] #supportTicket textarea:active{
outline:none !important;
}

/* option list (limited control per browser, but helps) */
body[data-page="contact"] #supportTicket select option{
background: #081a22;
color: rgba(234,246,255,.95);
}
/* PRH_SALES_PAGE_V2 */
body[data-page="sales"] .container.hero{padding-top:16px !important; padding-bottom:10px !important;}
body[data-page="sales"] .prhSalesTicketWrap{margin-top:-6px}
body[data-page="sales"] .prhSalesTicketGrid{grid-template-columns:1fr 1.2fr !important; gap:16px !important;}
@media(max-width:980px){body[data-page="sales"] .prhSalesTicketGrid{grid-template-columns:1fr !important;}}
body[data-page="sales"] .prhSalesTicketWrap .plan{
border-radius:26px;
background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.06));
border:1px solid rgba(255,255,255,.14);
box-shadow: 0 20px 60px rgba(0,0,0,.28);
padding:20px;
}
body[data-page="sales"] .prhTicketForm label{display:block;margin-top:12px;font-weight:1000;font-size:11px;letter-spacing:.08em;text-transform:uppercase;opacity:.86}
body[data-page="sales"] .prhTicketForm input,
body[data-page="sales"] .prhTicketForm textarea,
body[data-page="sales"] .prhTicketForm select{
width:100%;
margin-top:6px;
border-radius:16px;
background: rgba(255,255,255,.06);
border:1px solid rgba(255,255,255,.14);
color: rgba(234,246,255,.95);
padding:12px 14px;
outline:none;
}
body[data-page="sales"] .prhTicketForm textarea{min-height:150px}
body[data-page="sales"] .prhTicketBtns{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}
body[data-page="sales"] .prhTicketSend{
background: linear-gradient(90deg, #fb923c, #f97316) !important;
border:1px solid rgba(251,146,60,.55) !important;
color:#1b0c00 !important;
font-weight:1100 !important;
border-radius:999px !important;
padding:12px 16px !important;
}
/* PRH_LEGAL_PAGES_V1 */
body[data-page="legal"] .prhLegalHero{padding-top:18px !important;padding-bottom:12px !important;}
body[data-page="legal"] .prhLegalProse{
line-height:1.85;
font-size:13.5px;
color: rgba(234,246,255,.84);
}
body[data-page="legal"] .prhLegalProse p{margin:10px 0 0}
body[data-page="legal"] .prhLegalProse p:first-child{margin-top:0}
/* PRH_FOOTER_LEGAL_LINKS_V1 */
.prhFooterLegal{
display:flex;
gap:14px;
flex-wrap:wrap;
margin-top:10px;
}
.prhFooterLegal a{
opacity:.82;
font-weight:900;
text-decoration:none;
border-bottom:1px solid rgba(255,255,255,.18);
padding-bottom:2px;
}
.prhFooterLegal a:hover{opacity:1;border-bottom-color:rgba(56,189,248,.45)}
/* PRH_FOOTER_LEGAL_LINKS_V2 */
.container.footer #prhFooterLegal{
display:flex;
gap:14px;
flex-wrap:wrap;
margin-top:12px;
}
.container.footer #prhFooterLegal a{
color: rgba(234,246,255,.92) !important;
opacity:.88;
font-weight:950;
text-decoration:none;
border-bottom:1px solid rgba(255,255,255,.20);
padding-bottom:2px;
}
.container.footer #prhFooterLegal a:hover{
opacity:1;
border-bottom-color: rgba(56,189,248,.50);
}


/* PRH_MOBILE_FIX_V1
   Mobile-only safety patch: fixes overflow, spacing, responsive stacking, readable text/buttons/tables.
*/
@media (max-width: 900px){
  html, body{ overflow-x: hidden !important; }
  img, svg, video, iframe{ max-width:100% !important; height:auto !important; }

  /* global spacing */
  body{ padding-left:0 !important; padding-right:0 !important; }
  .container, .wrap, .wrapper, .content, .section, section{
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* headings scale */
  h1{ font-size: 26px !important; line-height: 1.15 !important; }
  h2{ font-size: 22px !important; line-height: 1.2 !important; }
  h3{ font-size: 18px !important; line-height: 1.25 !important; }

  /* buttons full width on mobile */
  .btn, button, .button, a.btn, a.button{
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* tables scroll instead of breaking layout */
  table{ display:block !important; width:100% !important; overflow-x:auto !important; -webkit-overflow-scrolling:touch; }

  /* common flex/grid stacks */
  .row, .rows, .flex, .d-flex, .grid, .columns{
    flex-wrap: wrap !important;
  }
  .row > *, .flex > *, .columns > *{
    width: 100% !important;
    max-width: 100% !important;
  }
}


/* PRH_MOBILE_HEADER_FIX_V1
   Fix mobile header/nav stacking: keep nav inside header, prevent "Plans" coming in front.
*/
@media (max-width: 900px){

  /* Header must stay on top */
  header, .header, .site-header, .navbar, .nav-header, .topbar{
    position: sticky !important;
    top: 0 !important;
    z-index: 999999 !important;
    background: rgba(6,11,22,.88) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  /* Make nav wrap nicely (no spill) */
  header nav, .navbar nav, .site-header nav{
    width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  header nav ul, .navbar nav ul, .site-header nav ul,
  header .nav, header .menu, header .nav-links,
  .navbar .nav, .navbar .menu, .navbar .nav-links{
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 10px 12px !important;
    margin: 0 !important;
    list-style: none !important;
    max-width: 100% !important;
  }

  header nav a, .navbar nav a, .site-header nav a,
  header .nav a, header .menu a, header .nav-links a{
    display: inline-flex !important;
    white-space: nowrap !important;
    padding: 10px 12px !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,.06) !important;
    border: 1px solid rgba(255,255,255,.10) !important;
    text-decoration: none !important;
  }

  /* Prevent any section/cards from overlaying header */
  main, section, .section, .content, .container, .wrap,
  .pricing, .plans, .pricing-cards, .plan-cards, .cards{
    position: relative !important;
    z-index: 1 !important;
  }

  /* Improve tap/scroll spacing */
  body{ scroll-padding-top: 90px; }
}

/* PRH_MOBILE_HEADER_FIX_V2
   Force mobile header/nav to stay inside header and above plans/cards.
*/
@media (max-width: 900px){
  /* any header-ish element on top */
  header, .header, .site-header, .navbar, .nav-header, .topbar,
  [id*="header"], [class*="header"], [id*="navbar"], [class*="navbar"]{
    position: sticky !important;
    top: 0 !important;
    z-index: 2147483000 !important;
    background: rgba(6,11,22,.90) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  /* keep menus inside header, allow wrap/scroll */
  nav, .nav, .menu, .nav-links,
  [id*="nav"], [class*="nav"], [id*="menu"], [class*="menu"]{
    max-width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  nav ul, .menu ul, .nav ul, .nav-links,
  nav .menu, nav .nav, nav .nav-links{
    display:flex !important;
    flex-wrap:wrap !important;
    justify-content:center !important;
    align-items:center !important;
    gap:8px !important;
    padding:10px 12px !important;
    margin:0 !important;
    list-style:none !important;
  }

  nav a, .menu a, .nav a, .nav-links a{
    display:inline-flex !important;
    white-space:nowrap !important;
    padding:10px 12px !important;
    border-radius:999px !important;
    background: rgba(255,255,255,.06) !important;
    border: 1px solid rgba(255,255,255,.10) !important;
    text-decoration:none !important;
  }

  /* force content below header */
  main, section, .section, .content, .container, .wrap,
  .pricing, .plans, .pricing-cards, .plan-cards, .cards,
  [id*="plan"], [class*="plan"], [id*="pricing"], [class*="pricing"]{
    position: relative !important;
    z-index: 1 !important;
  }

  body{ scroll-padding-top: 90px; }
}

/* PRH_MOBILE_NAV_DROPDOWN_FIX_V1
   Fix: mobile par Plans/submenu auto-open (hover/touch bug) band.
   - Disable hover-open on touch devices
   - Show submenu only via .prh-open or :focus-within
*/
@media (max-width: 900px){

  /* Submenus default hidden */
  header nav ul ul,
  .navbar nav ul ul,
  .site-header nav ul ul,
  header .menu ul ul,
  header .nav ul ul{
    display:none !important;
    position:absolute !important;
    top: calc(100% + 8px) !important;
    left: 0 !important;
    width: min(92vw, 360px) !important;
    padding: 10px !important;
    margin: 0 !important;
    background: rgba(6,11,22,.96) !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    border-radius: 14px !important;
    box-shadow: 0 22px 70px rgba(0,0,0,.55) !important;
    z-index: 2147483001 !important;
  }

  /* Parent li relative so dropdown attaches correctly */
  header nav ul li,
  .navbar nav ul li,
  .site-header nav ul li,
  header .menu ul li,
  header .nav ul li{
    position: relative !important;
  }

  /* Open state: via class or focus-within */
  header nav ul li.prh-open > ul,
  .navbar nav ul li.prh-open > ul,
  .site-header nav ul li.prh-open > ul,
  header nav ul li:focus-within > ul,
  .navbar nav ul li:focus-within > ul,
  .site-header nav ul li:focus-within > ul{
    display:block !important;
  }

  /* IMPORTANT: Touch devices par hover-open disable (root bug) */
  @media (hover: none){
    header nav ul li:hover > ul,
    .navbar nav ul li:hover > ul,
    .site-header nav ul li:hover > ul{
      display:none !important;
    }
  }

  /* submenu links readable */
  header nav ul ul a,
  .navbar nav ul ul a,
  .site-header nav ul ul a{
    display:block !important;
    padding: 10px 12px !important;
    border-radius: 12px !important;
    color: rgba(255,255,255,.92) !important;
    background: rgba(255,255,255,.04) !important;
    border: 1px solid rgba(255,255,255,.08) !important;
    text-decoration: none !important;
  }
  header nav ul ul a:hover,
  .navbar nav ul ul a:hover,
  .site-header nav ul ul a:hover{
    background: rgba(34,197,94,.14) !important;
    border-color: rgba(34,197,94,.22) !important;
  }
}

/* PRH_MOBILE_NAV_DROPDOWN_FIX_V1 */
@media (max-width: 900px){

  /* Header always top */
  header, .header, .site-header, .navbar, .nav-header, .topbar,
  [id*="header"], [class*="header"], [id*="navbar"], [class*="navbar"]{
    position: sticky !important;
    top: 0 !important;
    z-index: 2147483000 !important;
    background: rgba(6,11,22,.90) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  /* Submenus default hidden */
  header nav ul ul,
  .navbar nav ul ul,
  .site-header nav ul ul,
  header .menu ul ul,
  header .nav ul ul{
    display:none !important;
    position:absolute !important;
    top: calc(100% + 8px) !important;
    left: 0 !important;
    width: min(92vw, 360px) !important;
    padding: 10px !important;
    margin: 0 !important;
    background: rgba(6,11,22,.96) !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    border-radius: 14px !important;
    box-shadow: 0 22px 70px rgba(0,0,0,.55) !important;
    z-index: 2147483001 !important;
  }

  /* Parent li relative */
  header nav ul li,
  .navbar nav ul li,
  .site-header nav ul li{
    position: relative !important;
  }

  /* Open state via class (JS toggles) */
  header nav ul li.prh-open > ul,
  .navbar nav ul li.prh-open > ul,
  .site-header nav ul li.prh-open > ul{
    display:block !important;
  }

  /* Disable hover-open on touch devices */
  @media (hover: none){
    header nav ul li:hover > ul,
    .navbar nav ul li:hover > ul,
    .site-header nav ul li:hover > ul{
      display:none !important;
    }
  }
}

/* PRH_MOBILE_PLANS_DROPDOWN_FIX_V2
   Mobile: Plans dropdown only opens on tap, closes on scroll/outside, never floats randomly.
*/
@media (max-width: 900px){

  /* keep header above everything */
  header, .site-header, .navbar, .topbar,
  [id*="header"], [class*="header"], [id*="navbar"], [class*="navbar"]{
    position: sticky !important;
    top: 0 !important;
    z-index: 2147483000 !important;
    background: rgba(6,11,22,.90) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  /* hide submenus by default (JS toggles li.prh-open) */
  nav ul ul, .menu ul ul, .nav ul ul{
    display:none !important;
    position:absolute !important;
    top: calc(100% + 8px) !important;
    left: 0 !important;
    width: min(92vw, 360px) !important;
    padding: 10px !important;
    margin: 0 !important;
    background: rgba(6,11,22,.96) !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    border-radius: 14px !important;
    box-shadow: 0 22px 70px rgba(0,0,0,.55) !important;
    z-index: 2147483001 !important;
  }
  nav ul li{ position:relative !important; }

  /* open state */
  nav ul li.prh-open > ul{ display:block !important; }

  /* IMPORTANT: touch devices par hover open disable */
  @media (hover: none){
    nav ul li:hover > ul{ display:none !important; }
  }

  /* submenu links */
  nav ul ul a{
    display:block !important;
    padding:10px 12px !important;
    border-radius: 12px !important;
    background: rgba(255,255,255,.04) !important;
    border: 1px solid rgba(255,255,255,.08) !important;
    text-decoration:none !important;
  }
}

/* PRH_MOBILE_MENU_DRAWER_FIX_V1
   Mobile: nav/menu container default hidden; open only via body.prhMenuOpen.
*/
@media (max-width: 900px){
  /* Toggle button (top-right) */
  #prhMobileMenuToggle{
    position: fixed;
    top: 14px;
    right: 14px;
    z-index: 2147483646;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(6,11,22,.70);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: rgba(255,255,255,.92);
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 18px 60px rgba(0,0,0,.40);
  }

  /* Overlay */
  #prhMobileMenuOverlay{
    position: fixed;
    inset: 0;
    z-index: 2147483645;
    display: none;
    background: rgba(0,0,0,.40);
  }
  body.prhMenuOpen #prhMobileMenuOverlay{ display:block; }

  /* The detected menu container */
  .prhMobileNavContainer{
    display: none;
    position: fixed;
    left: 14px;
    right: 14px;
    top: 64px;
    max-height: calc(100vh - 92px);
    overflow: auto;
    z-index: 2147483646;

    padding: 14px;
    border-radius: 18px;
    background: rgba(6,11,22,.92);
    border: 1px solid rgba(255,255,255,.14);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 22px 75px rgba(0,0,0,.55);
  }
  body.prhMenuOpen .prhMobileNavContainer{ display:block; }

  /* IMPORTANT: stop hover-open on touch */
  @media (hover: none){
    .prhMobileNavContainer li:hover > ul{ display:none !important; }
  }

  /* Submenus closed by default (only JS opens by adding .prh-open) */
  .prhMobileNavContainer ul ul{ display:none !important; }
  .prhMobileNavContainer li.prh-open > ul{ display:block !important; }

  /* Make buttons/links inside menu look consistent */
  .prhMobileNavContainer a,
  .prhMobileNavContainer button{
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
}

/* PRH_MOBILE_MENU_CLEAN_V3
   Mobile: hide original menu block, show ONE clean drawer menu (no duplicates).
*/
@media (max-width: 900px){

  /* hide original detected menu container */
  .prhMobileNavOriginal{ display:none !important; }

  /* Toggle button (fixed) */
  #prhMobileMenuToggle{
    position: fixed;
    top: 14px;
    right: 14px;
    z-index: 2147483646;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(6,11,22,.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: rgba(255,255,255,.92);
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 18px 60px rgba(0,0,0,.40);
  }

  /* Overlay */
  #prhMobileMenuOverlay{
    position: fixed;
    inset: 0;
    z-index: 2147483645;
    display: none;
    background: rgba(0,0,0,.42);
  }
  body.prhMenuOpen #prhMobileMenuOverlay{ display:block; }

  /* Drawer */
  #prhMobileDrawer{
    display:none;
    position: fixed;
    left: 14px;
    right: 14px;
    top: 64px;
    max-height: calc(100vh - 92px);
    overflow: auto;
    z-index: 2147483646;

    padding: 14px;
    border-radius: 18px;
    background: rgba(6,11,22,.92);
    border: 1px solid rgba(255,255,255,.14);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 22px 75px rgba(0,0,0,.55);
  }
  body.prhMenuOpen #prhMobileDrawer{ display:block; }

  #prhMobileDrawer .prhTitle{
    display:flex; align-items:center; justify-content:space-between;
    gap:10px; padding:4px 2px 12px;
    border-bottom: 1px solid rgba(255,255,255,.10);
    margin-bottom: 12px;
    color: rgba(255,255,255,.92);
    font-weight: 900;
  }
  #prhMobileDrawer .prhClose{
    width: 38px; height: 38px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.06);
    color:#fff; font-weight: 900;
    cursor:pointer;
  }

  .prhNavList{ display:flex; flex-direction:column; gap:10px; margin-top:12px; }
  .prhNavItem{
    display:flex; align-items:center; justify-content:space-between; gap:12px;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.92);
    text-decoration:none;
    font-weight: 850;
  }
  .prhNavItem:active{ transform: translateY(1px); }

  .prhSub{
    display:none;
    margin-top:8px;
    padding-left: 10px;
    border-left: 2px solid rgba(255,255,255,.10);
  }
  .prhSub a{ margin-top:8px; }
  .prhPlansOpen .prhSub{ display:block; }

  .prhArrow{ opacity:.75; font-weight: 900; }
}

/* PRH_MOBILE_100_HEADER_V1
   Mobile: hide original header/nav to prevent duplicate menus.
   Injected header id: #prhM100Top
*/
@media (max-width: 900px){

  /* 1) HARD HIDE ORIGINAL HEADER/NAV (this kills duplicate menus) */
  header, .site-header, .navbar, .topbar,
  #masthead, .main-navigation, nav.main-navigation,
  [class*="header"], [id*="header"], [class*="navbar"], [id*="navbar"]{
    display: none !important;
  }

  /* 2) Give room for our fixed topbar */
  body{ padding-top: 64px !important; }

  /* 3) Our Topbar */
  #prhM100Top{
    position: fixed;
    left: 0; right: 0; top: 0;
    z-index: 2147483646;
    background: linear-gradient(90deg, rgba(76,29,149,.70), rgba(3,105,161,.55));
    border-bottom: 1px solid rgba(255,255,255,.10);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
  #prhM100Top .in{
    max-width: 1180px;
    margin: 0 auto;
    padding: 12px 14px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 12px;
  }
  #prhM100Brand{
    display:flex; align-items:center; gap:10px;
    color: rgba(255,255,255,.92);
    text-decoration:none;
    font-weight: 950;
    letter-spacing:.2px;
  }
  #prhM100Brand .logo{
    width: 30px; height: 30px;
    border-radius: 10px;
    background: rgba(59,130,246,.25);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 14px 50px rgba(0,0,0,.35);
  }
  #prhM100Burger{
    width: 42px; height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(6,11,22,.55);
    color: rgba(255,255,255,.92);
    font-weight: 950;
    cursor: pointer;
  }

  /* Overlay */
  #prhM100Overlay{
    position: fixed;
    inset: 0;
    z-index: 2147483645;
    display:none;
    background: rgba(0,0,0,.45);
  }
  body.prhM100Open #prhM100Overlay{ display:block; }

  /* Drawer */
  #prhM100Drawer{
    position: fixed;
    left: 14px;
    right: 14px;
    top: 68px;
    max-height: calc(100vh - 90px);
    overflow:auto;
    z-index: 2147483646;
    display:none;

    padding: 14px;
    border-radius: 18px;
    background: rgba(6,11,22,.92);
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 22px 75px rgba(0,0,0,.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
  body.prhM100Open #prhM100Drawer{ display:block; }

  #prhM100Drawer .hdr{
    display:flex; align-items:center; justify-content:space-between;
    gap:12px; padding: 4px 2px 12px;
    border-bottom: 1px solid rgba(255,255,255,.10);
    margin-bottom: 12px;
    color: rgba(255,255,255,.92);
    font-weight: 950;
  }
  #prhM100Close{
    width: 38px; height: 38px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.06);
    color:#fff;
    font-weight: 950;
    cursor:pointer;
  }

  /* Smart stylish text list */
  #prhM100List{ display:flex; flex-direction:column; gap:0; }
  #prhM100List a.item{
    display:flex; align-items:center; justify-content:space-between; gap:12px;
    padding: 14px 10px;
    text-decoration:none;
    color: rgba(255,255,255,.92);
    font-weight: 850;
    border-bottom: 1px solid rgba(255,255,255,.08);
    background: transparent;
  }
  #prhM100List a.item .arr{ opacity:.7; font-weight: 950; }
  #prhM100List a.item:active{ transform: translateY(1px); }

  .prhM100Sub{ display:none; padding: 8px 0 8px 10px; border-left:2px solid rgba(255,255,255,.08); }
  .prhM100PlansOpen .prhM100Sub{ display:block; }
}

/* PRH_MOBILE_SIDE_MENU_SIMPLE_V1
   Mobile: hide ALL visible menus; only left-side button opens drawer.
*/
@media (max-width: 900px){

  /* A) Kill any existing nav/menu blocks on mobile (prevents 2 menus) */
  nav, header nav, .site-header nav, .navbar nav,
  .main-navigation, nav.main-navigation,
  .menu, .nav, .nav-links,
  [class*="menu"], [id*="menu"], [class*="nav"], [id*="nav"]{
    display:none !important;
  }

  /* Also hide our older injected PRH menu elements if they exist */
  #prhMobileMenuToggle, #prhMobileMenuOverlay, #prhMobileDrawer,
  #prhMobileMenuToggleV4, #prhMobileMenuOverlayV4, #prhMobileDrawerV4,
  #prhMTopbar, #prhMainHeaderBridge, #prhM100Top, #prhM100Overlay, #prhM100Drawer,
  #prhMTopbar, #prhMOverlay, #prhMDrawer{
    display:none !important;
  }

  /* B) Our left-side tab button */
  #prhSideMenuBtn{
    position: fixed;
    left: 10px;
    top: 92px;
    z-index: 2147483646;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(6,11,22,.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: rgba(255,255,255,.92);
    font-weight: 950;
    cursor: pointer;
    box-shadow: 0 18px 60px rgba(0,0,0,.40);
  }

  /* C) Overlay + Drawer (left) */
  #prhSideMenuOverlay{
    position: fixed;
    inset: 0;
    z-index: 2147483645;
    display:none;
    background: rgba(0,0,0,.45);
  }
  body.prhSideMenuOpen #prhSideMenuOverlay{ display:block; }

  #prhSideMenuDrawer{
    position: fixed;
    top: 0;
    left: -360px;
    height: 100vh;
    width: 320px;
    max-width: 86vw;
    z-index: 2147483646;
    background: rgba(6,11,22,.92);
    border-right: 1px solid rgba(255,255,255,.14);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 22px 75px rgba(0,0,0,.55);
    transition: left .22s ease;
    display:flex;
    flex-direction:column;
  }
  body.prhSideMenuOpen #prhSideMenuDrawer{ left: 0; }

  #prhSideMenuDrawer .hdr{
    padding: 14px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,.10);
    color: rgba(255,255,255,.92);
    font-weight: 950;
  }
  #prhSideMenuClose{
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.06);
    color: #fff;
    font-weight: 950;
    cursor: pointer;
  }

  #prhSideMenuList{
    padding: 10px 14px 18px;
    overflow:auto;
    flex:1;
    min-height:0;
  }

  /* Smart stylish text list */
  #prhSideMenuList a{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 12px;
    padding: 14px 10px;
    text-decoration:none;
    color: rgba(255,255,255,.92);
    font-weight: 850;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  #prhSideMenuList a .arr{ opacity:.7; font-weight: 950; }
}

/* PRH_SIDE_MENU_BTN_TUNE_V1
   Mobile: make side menu button bigger and pinned to left corner (not center).
*/
@media (max-width: 900px){

  /* Bigger + pinned left corner */
  #prhSideMenuBtn{
    position: fixed !important;
    left: 12px !important;
    top: 110px !important;          /* adjust if you want higher/lower */
    right: auto !important;
    bottom: auto !important;

    width: 56px !important;
    height: 56px !important;
    border-radius: 18px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    font-size: 22px !important;
    line-height: 1 !important;

    z-index: 2147483646 !important;
    margin: 0 !important;

    border: 1px solid rgba(255,255,255,.14) !important;
    background: rgba(6,11,22,.78) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 20px 70px rgba(0,0,0,.45) !important;
  }

  /* Drawer a bit wider (more official) */
  #prhSideMenuDrawer{
    width: 340px !important;
    max-width: 88vw !important;
  }
}

/* PRH_MOBILE_SIDE_MENU_POLISH_V2
   Mobile: make side-menu button+drawer look official, consistent spacing/typography.
*/
@media (max-width: 900px){

  /* Side button (bigger + official) */
  #prhSideMenuBtn{
    position: fixed !important;
    left: calc(12px + env(safe-area-inset-left, 0px)) !important;
    top: 96px !important;
    z-index: 2147483646 !important;

    width: 54px !important;
    height: 54px !important;
    border-radius: 16px !important;

    display:flex !important;
    align-items:center !important;
    justify-content:center !important;

    font-size: 22px !important;
    line-height: 1 !important;

    border: 1px solid rgba(255,255,255,.14) !important;
    background: rgba(6,11,22,.80) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 18px 60px rgba(0,0,0,.45) !important;
  }

  /* Overlay */
  #prhSideMenuOverlay{
    background: rgba(0,0,0,.55) !important;
  }

  /* Drawer (official) */
  #prhSideMenuDrawer{
    width: 340px !important;
    max-width: 88vw !important;
    border-right: 1px solid rgba(255,255,255,.12) !important;
    background: rgba(6,11,22,.94) !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  /* Drawer header */
  #prhSideMenuDrawer .hdr{
    padding: 14px 14px 12px !important;
    border-bottom: 1px solid rgba(255,255,255,.10) !important;
    font-weight: 950 !important;
    letter-spacing: .2px !important;
  }
  #prhSideMenuClose{
    width: 40px !important;
    height: 40px !important;
    border-radius: 14px !important;
    border: 1px solid rgba(255,255,255,.14) !important;
    background: rgba(255,255,255,.06) !important;
  }

  /* Nav list = clean text rows (no zigzag) */
  #prhSideMenuList{
    padding: 6px 10px 14px !important;
  }
  #prhSideMenuList a{
    padding: 14px 10px !important;
    border-bottom: 1px solid rgba(255,255,255,.08) !important;
    font-weight: 850 !important;
    letter-spacing: .1px !important;
  }
  #prhSideMenuList a .arr{ opacity: .65 !important; }

  /* Small UX: keep content under button clean */
  body{ overflow-x: hidden !important; }
}

/* PRH_MOVE_TRIGGER_TOPRIGHT_V1
   Mobile: move side menu trigger (≡) to top-right corner (arrow position).
*/
@media (max-width: 900px){
  #prhSideMenuBtn{
    position: fixed !important;

    /* TOP-RIGHT corner */
    left: auto !important;
    right: calc(12px + env(safe-area-inset-right, 0px)) !important;

    /* Adjust vertical position to match your arrow */
    top: 96px !important;

    bottom: auto !important;
    margin: 0 !important;

    z-index: 2147483646 !important;
  }
}

/* PRH_TRIGGER_AUTOTOP_MENUHEADING_V1
   Mobile:
   - Trigger auto-top using safe-area (all mobiles)
   - Remove "Menu" heading inside drawer (keep close button)
*/
@media (max-width: 900px){

  /* Trigger position: top-right, auto for all mobiles */
  #prhSideMenuBtn{
    left: auto !important;
    right: calc(12px + env(safe-area-inset-right, 0px)) !important;

    /* AUTO TOP: safe-area + small padding */
    top: calc(env(safe-area-inset-top, 0px) + 14px) !important;

    bottom: auto !important;
    margin: 0 !important;
    z-index: 2147483646 !important;
  }

  /* Drawer header: hide "Menu" text, keep close button */
  #prhSideMenuDrawer .hdr span{ display:none !important; }
  #prhSideMenuDrawer .hdr{
    justify-content: flex-end !important;
    padding: 10px 14px 8px !important;
  }
}


/* PRH_PLANS_DROPDOWN_STYLE_V1 */
@media (min-width: 901px){
  #menu{ position:relative; overflow:visible; }
  #menu .prh-dd-wrap{ position:relative; display:inline-flex; align-items:center; }
  #menu .prh-dd-wrap > .ddMenu{
    position:absolute !important;
    top: calc(100% + 12px) !important;
    left: 0 !important;
    right: auto !important;

    min-width: 560px;
    max-width: min(780px, calc(100vw - 24px));
    padding: 10px;

    display:none;
    background: rgba(6,11,22,.96);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 16px;
    box-shadow: 0 18px 44px rgba(0,0,0,.45);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 2147483000;
  }

  #menu .prh-dd-wrap:hover > .ddMenu,
  #menu .prh-dd-wrap:focus-within > .ddMenu{ display:block; }

  /* small arrow */
  #menu .prh-dd-wrap > .ddMenu::before{
    content:"";
    position:absolute;
    top:-8px;
    left: 34px;
    width:16px;height:16px;
    background: rgba(6,11,22,.96);
    border-left: 1px solid rgba(255,255,255,.14);
    border-top:  1px solid rgba(255,255,255,.14);
    transform: rotate(45deg);
  }
}

/* PRH_PLANS_DROPDOWN_STYLE_V2 (smaller + clearer boxes) */
@media (min-width: 901px){
  /* dropdown container */
  #menu .prh-dd-wrap > .ddMenu{
    min-width: 460px !important;
    max-width: 620px !important;
    padding: 8px !important;
    border-radius: 14px !important;
    max-height: 60vh !important;
    overflow:auto !important;
    border-color: rgba(255,255,255,.18) !important;
    box-shadow: 0 18px 44px rgba(0,0,0,.55) !important;
  }

  /* little arrow align */
  #menu .prh-dd-wrap > .ddMenu::before{
    left: 26px !important;
  }

  /* main rows (Web Hosting / VPS / Dedicated) */
  #menu .prh-dd-wrap > .ddMenu .ddItem{
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
    padding: 10px 12px !important;
    margin: 6px 0 0 0 !important;
    border-radius: 12px !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    background: rgba(255,255,255,.05) !important;
  }
  #menu .prh-dd-wrap > .ddMenu .ddItem:first-child{ margin-top: 0 !important; }

  #menu .prh-dd-wrap > .ddMenu .ddItem b{
    font-size: 14px !important;
    font-weight: 950 !important;
    letter-spacing: .2px !important;
  }
  #menu .prh-dd-wrap > .ddMenu .ddItem span{
    font-size: 11px !important;
    opacity: .78 !important;
  }

  #menu .prh-dd-wrap > .ddMenu .ddItem:hover{
    border-color: rgba(255,122,26,.35) !important;
    background: rgba(255,255,255,.07) !important;
  }

  /* packages list under each category (if populated) */
  #menu .prh-dd-wrap > .ddMenu .ddList{
    margin: 6px 0 2px 0 !important;
    padding: 0 6px 6px 6px !important;
    display:grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 6px !important;
  }
  #menu .prh-dd-wrap > .ddMenu .ddRow{
    padding: 8px 10px !important;
    border-radius: 12px !important;
    border: 1px solid rgba(255,255,255,.10) !important;
    background: rgba(255,255,255,.04) !important;
  }
  #menu .prh-dd-wrap > .ddMenu .ddRow .n{ font-size: 12px !important; font-weight: 900 !important; }
  #menu .prh-dd-wrap > .ddMenu .ddRow .s{ font-size: 11px !important; opacity: .78 !important; }
}

/* PRH_PLANS_DROPDOWN_STYLE_V3_STANDARD (more compact) */
@media (min-width: 901px){
  #menu .prh-dd-wrap > .ddMenu{
    min-width: 360px !important;
    max-width: 520px !important;
    padding: 6px !important;
    border-radius: 12px !important;
    max-height: 52vh !important;
  }

  #menu .prh-dd-wrap > .ddMenu::before{
    left: 22px !important;
    width: 14px !important;
    height: 14px !important;
    top: -7px !important;
  }

  #menu .prh-dd-wrap > .ddMenu .ddItem{
    padding: 8px 10px !important;
    border-radius: 10px !important;
    margin-top: 5px !important;
  }

  #menu .prh-dd-wrap > .ddMenu .ddItem b{
    font-size: 13px !important;
    font-weight: 950 !important;
  }
  #menu .prh-dd-wrap > .ddMenu .ddItem span{
    font-size: 10px !important;
    opacity: .75 !important;
  }

  #menu .prh-dd-wrap > .ddMenu .ddList{
    padding: 0 4px 6px 4px !important;
    gap: 5px !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  #menu .prh-dd-wrap > .ddMenu .ddRow{
    padding: 7px 9px !important;
    border-radius: 10px !important;
  }
  #menu .prh-dd-wrap > .ddMenu .ddRow .n{
    font-size: 12px !important;
    font-weight: 900 !important;
  }
  #menu .prh-dd-wrap > .ddMenu .ddRow .s{
    font-size: 10.5px !important;
    opacity: .78 !important;
  }
}

/* PRH_PLANS_DROPDOWN_STYLE_V4_COMPACT (minor bigger than text) */
@media (min-width: 901px){
  #menu .prh-dd-wrap > .ddMenu{
    min-width: 320px !important;
    max-width: 460px !important;
    padding: 5px !important;
    border-radius: 12px !important;
  }

  #menu .prh-dd-wrap > .ddMenu .ddItem{
    padding: 7px 9px !important;
    border-radius: 10px !important;
    margin-top: 4px !important;
  }

  #menu .prh-dd-wrap > .ddMenu .ddItem b{
    font-size: 12.5px !important;
    font-weight: 950 !important;
    line-height: 1.1 !important;
  }

  #menu .prh-dd-wrap > .ddMenu .ddItem span{
    font-size: 10px !important;
    opacity: .76 !important;
  }

  #menu .prh-dd-wrap > .ddMenu .ddList{
    margin-top: 5px !important;
    padding: 0 3px 5px 3px !important;
    gap: 4px !important;
  }

  #menu .prh-dd-wrap > .ddMenu .ddRow{
    padding: 6px 8px !important;
    border-radius: 10px !important;
  }

  #menu .prh-dd-wrap > .ddMenu .ddRow .n{
    font-size: 11.5px !important;
    line-height: 1.15 !important;
  }

  #menu .prh-dd-wrap > .ddMenu .ddRow .s{
    font-size: 10px !important;
    line-height: 1.2 !important;
  }
}

/* PRH_LOGO_BG_ONLY_V1 (safe: does NOT change layout) */
.nav .brand .logo{
  background-image: url("/assets/prh-mark.svg?v=2026") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: contain !important;
}

/* PRH_LOGO_APPLY_V3 (logo only; no layout changes) */
.nav .brand .logo,
#prhM100Brand .logo{
  background: none !important;
  background-image: url("/assets/prh-mark.svg?v=1771756575") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: contain !important;
}

/* PRH_MAIN_LOGO_RESTORE_GRADIENT_V1 (logo only; does not touch layout/menu) */
.nav .brand .logo,
#prhM100Brand .logo{
  background-image: none !important;
  background: linear-gradient(135deg,var(--cyan),var(--cyan2)) !important;
}

/* PRH_LOGO_FINAL_MAIN_V1 (logo only) */
.nav .brand .logo,
#prhM100Brand .logo{
  background: url("/assets/prh-logo.svg?cb=1771763492") center/contain no-repeat !important;
}

/* PRH_HEADER_LOGO_FORCE_V2 (logo only; no layout/menu changes) */
.brand .logo,
.nav .brand .logo,
#prhM100Brand .logo{
  background: none !important;
  background-image: url("/assets/prh-logo.svg?cb=1771763640") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: contain !important;
}

/* PRH_PRIVACY_CHECKBOX_FIX_V1 (forms only; no layout changes) */
#prhTicketForm .prhPrivacy,
#prhSalesTicketForm .prhPrivacy{
  cursor: pointer !important;
  user-select: none !important;
}

/* Force checkbox to render normally + show tick */
#prhTicketForm .prhPrivacy input[type="checkbox"],
#prhSalesTicketForm .prhPrivacy input[type="checkbox"]{
  -webkit-appearance: auto !important;
  appearance: auto !important;
  accent-color: #ff7a1a !important;
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  min-height: 18px !important;
  cursor: pointer !important;
  pointer-events: auto !important;
  opacity: 1 !important;
  position: relative !important;
  z-index: 5 !important;
}

#prhTicketForm .prhPrivacy input[type="checkbox"]:focus,
#prhSalesTicketForm .prhPrivacy input[type="checkbox"]:focus{
  outline: 2px solid rgba(255,122,26,.55) !important;
  outline-offset: 3px !important;
}
