: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;
}
