/* /branding/pricing — light theme */

/* Light backdrop applied to the React mount only, so site chrome stays unaffected. */
.bg-brand-scope { background: #EEF3F9; color: #122036; font-family: var(--font-sans); }

/* Hero band padding — only on this page (pricing-light.css loads only here). */
.bg-brand-scope .hero-band { padding: 180px 0 84px; }

/* Guarantee breathing room between the feature list and the CTA. The card's
   flex `margin-top:auto` on the button resolves to 0 when cards are equal
   height, leaving the button butted against the last item (it reads as the CTA
   sitting on top of the list text). This forces a real gap regardless. */
.bg-brand-scope .pkg-card .pkg-list { margin-bottom: 24px; }

/* Solid checkmark tick — fully self-contained so it can't half-inherit the
   bg-shared base. A blue disc with a centred white check. */
.bg-brand-scope .pkg-list li { align-items: flex-start; }
.bg-brand-scope .tick {
  display: inline-block;
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}
.bg-brand-scope .tick::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 4px;
  width: 5px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

/* Stretch the .calc-summary aside to the row track height so the JS pinning in
   pricing-calculator.jsx has slack to translate the quote card within while
   the user scrolls #calculator. CSS position:sticky is unreliable here because
   the bundle sets body { overflow: hidden }, which breaks sticky in the chain. */
@media (min-width: 981px) {
  .bg-brand-scope .calc-grid { align-items: stretch !important; }
  .bg-brand-scope .calc-summary { height: 100%; position: relative; }
}

/* --- Package & monthly grid --- */
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 1080px) { .package-grid { grid-template-columns: 1fr; } }

.pkg-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}
.pkg-card.glow {
  border-color: var(--border-blue);
  box-shadow: var(--shadow-pop);
  transform: translateY(-6px);
}
@media (max-width: 1080px) { .pkg-card.glow { transform: none; } }

.pkg-premium {
  border-color: rgba(251, 122, 46, 0.40);
  box-shadow: 0 24px 60px -30px rgba(251, 122, 46, 0.28), var(--shadow-sm);
}

.pkg-ribbon {
  position: absolute;
  top: -1px; right: 28px;
  transform: translateY(-50%);
  padding: 7px 14px;
  background: var(--blue);
  color: #ffffff;
  font: 700 11px/1 var(--font-sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 22px -10px rgba(46,139,255,0.7);
}
.pkg-ribbon .dot { width: 5px; height: 5px; border-radius: 50%; background: #ffffff; }
.pkg-ribbon-amber { background: var(--orange); color: #fff; box-shadow: 0 10px 22px -10px rgba(251,122,46,0.7); }
.pkg-ribbon-amber .dot { background: #fff; }

/* --- Calculator --- */
.calc-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}
@media (max-width: 980px) {
  .calc-grid { grid-template-columns: 1fr; }
  .calc-summary .card { position: static !important; }
}

.calc-options { display: grid; gap: 18px; }

.calc-opt {
  width: 100%;
  text-align: left;
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 14px 16px;
  border-radius: 11px;
  cursor: pointer;
  font: 500 14px/1.3 var(--font-sans);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: border-color .15s ease, background .15s ease;
}
.calc-opt:hover { border-color: rgba(46, 139, 255, 0.5); }
.calc-opt.selected {
  background: rgba(46, 139, 255, 0.07);
  border-color: var(--blue);
  box-shadow: inset 0 0 0 1px rgba(46, 139, 255, 0.30);
}

.radio { width: 17px; height: 17px; border-radius: 50%; border: 1.5px solid var(--line-2); position: relative; flex-shrink: 0; transition: border-color .15s ease; }
.calc-opt:hover .radio { border-color: var(--blue); }
.radio.on { border-color: var(--blue); }
.radio.on::after { content: ''; position: absolute; inset: 3px; border-radius: 50%; background: var(--blue); }

/* --- Checkout drawer (light) --- */
.drawer-scrim {
  position: fixed; inset: 0;
  background: rgba(15, 27, 48, 0.45);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 90;
}
.drawer-scrim.open { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(620px, 100%);
  background: var(--page);
  border-left: 1px solid var(--line);
  box-shadow: -40px 0 80px -24px rgba(15, 27, 48, 0.35);
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 100;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.drawer.open { transform: translateX(0); }
.drawer header { background: var(--card); }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

/* legal checkboxes */
.legal-check {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  cursor: pointer;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--card);
  transition: border-color .15s ease, background .15s ease;
}
.legal-check:hover { border-color: rgba(46, 139, 255, 0.5); }
.legal-check input { position: absolute; opacity: 0; pointer-events: none; }
.legal-box { width: 19px; height: 19px; border-radius: 5px; border: 1.5px solid var(--line-2); margin-top: 1px; position: relative; flex-shrink: 0; transition: all .15s ease; }
.legal-check input:checked + .legal-box { background: var(--blue); border-color: var(--blue); }
.legal-check input:checked + .legal-box::after {
  content: '';
  position: absolute;
  left: 6px; top: 2px;
  width: 5px; height: 9px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg);
}

@media (max-width: 600px) { .notes-grid { grid-template-columns: 1fr !important; } }

@media (max-width: 600px) {
  .pkg-card { padding: 24px 22px; }
  .calc-opt { padding: 12px 14px; font-size: 13px; }
  .drawer { width: 100%; }
  .calc-options { gap: 14px; }
}

.hide-sm { display: inline; }
@media (max-width: 760px) { .hide-sm { display: none; } }

.bg-brand-scope .print-action-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 10px;
}
.bg-brand-scope .print-action-grid.has-contract {
  grid-template-columns: 1fr 1fr;
}
.bg-brand-scope .print-action-grid .btn {
  width: 100%;
  justify-content: center;
}
.bg-brand-scope .contract-mode-note {
  margin: 12px 0 0;
  text-align: center;
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media (max-width: 520px) {
  .bg-brand-scope .print-action-grid.has-contract { grid-template-columns: 1fr; }
}

/* ============================================================
   WEB-SERVICES PRICING ADDITIONS
   ============================================================ */
.bg-brand-scope .sec-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: 40px; }
.bg-brand-scope .pricing-inline-link { display: inline-block; margin-top: 10px; color: var(--blue-deep); font-size: 14px; font-weight: 700; text-decoration: underline; text-decoration-color: rgba(30, 111, 224, 0.35); text-underline-offset: 4px; }
.bg-brand-scope .pricing-inline-link:hover, .bg-brand-scope .pricing-inline-link:focus-visible { color: var(--navy); text-decoration-color: currentColor; }

/* hero flag */
.bg-brand-scope .hero-flag { margin-top: 26px; display: inline-flex; align-items: center; gap: 10px; padding: 8px 14px; border-radius: 999px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #FFE2CC; }
.bg-brand-scope .hero-flag .dot { width: 6px; height: 6px; border-radius: 50%; background: #FFD9B8; }

/* plan price block */
.bg-brand-scope .plan-price { margin-top: 18px; }
.bg-brand-scope .plan-setup { display: flex; align-items: baseline; gap: 8px; }
.bg-brand-scope .plan-cur { font-family: var(--font-mono); font-size: 13px; color: var(--blue); letter-spacing: 0.08em; }
.bg-brand-scope .pkg-premium .plan-cur { color: var(--orange); }
.bg-brand-scope .plan-amt { font-size: 44px; font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.bg-brand-scope .plan-unit { margin-left: 4px; color: var(--muted); }
.bg-brand-scope .plan-monthly { margin-top: 8px; font-family: var(--font-mono); font-size: 14px; color: var(--text-2); }
.bg-brand-scope .pkg-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.bg-brand-scope .pkg-list li { display: flex; gap: 10px; font-size: 14px; color: var(--text-2); line-height: 1.4; }

/* one-time banner */
.bg-brand-scope .onetime { display: flex; align-items: center; gap: 24px; padding: 28px 32px; flex-wrap: wrap; background:
  radial-gradient(600px 200px at 100% 0%, rgba(46,139,255,0.06), transparent 70%), #fff; }
.bg-brand-scope .onetime-ic { width: 60px; height: 60px; border-radius: 14px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: #fff; background: var(--navy); }
.bg-brand-scope .onetime-body { flex: 1; min-width: 240px; }
.bg-brand-scope .onetime-price { text-align: right; flex-shrink: 0; }
.bg-brand-scope .onetime-amt { font-size: 30px; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); }
@media (max-width: 640px) { .bg-brand-scope .onetime-price { text-align: left; width: 100%; } }

/* comparison table */
.bg-brand-scope .cmp-wrap { overflow-x: auto; }
.bg-brand-scope table.cmp { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 560px; }
.bg-brand-scope table.cmp th { background: var(--navy-2); color: #fff; font-weight: 600; padding: 14px 14px; text-align: center; font-size: 13px; letter-spacing: 0.02em; }
.bg-brand-scope table.cmp th:first-child { text-align: left; border-top-left-radius: var(--r-lg); }
.bg-brand-scope table.cmp th:last-child { border-top-right-radius: var(--r-lg); }
.bg-brand-scope table.cmp th.hi { background: var(--blue); }
.bg-brand-scope table.cmp td { border-bottom: 1px solid var(--line); padding: 13px 14px; text-align: center; color: var(--ink-2); }
.bg-brand-scope table.cmp td:first-child { text-align: left; font-weight: 500; color: var(--text-2); }
.bg-brand-scope table.cmp tr:last-child td { border-bottom: none; }
.bg-brand-scope table.cmp tr:nth-child(even) td { background: #FAFBFD; }
.bg-brand-scope table.cmp .cmp-hicol { background: rgba(46,139,255,0.05) !important; font-weight: 600; color: var(--ink); }
.bg-brand-scope .cmp-yes { display: inline-flex; width: 22px; height: 22px; border-radius: 50%; background: rgba(46,139,255,0.12); color: var(--blue); align-items: center; justify-content: center; }
.bg-brand-scope .cmp-yes svg { width: 13px; height: 13px; }
.bg-brand-scope .cmp-no { color: #C2C8D0; }
.bg-brand-scope .cmp-fine { margin-top: 18px; font-size: 12.5px; color: var(--muted); line-height: 1.5; max-width: 80ch; }

/* add-ons */
.bg-brand-scope .addon-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 820px) { .bg-brand-scope .addon-cols { grid-template-columns: 1fr; } }
.bg-brand-scope .addon-card { overflow: hidden; }
.bg-brand-scope .addon-head { padding: 16px 22px; font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--ink); border-bottom: 1px solid var(--line); background: var(--card-2); }
.bg-brand-scope .addon-table { width: 100%; border-collapse: collapse; }
.bg-brand-scope .addon-table tr { border-bottom: 1px solid var(--line); }
.bg-brand-scope .addon-table tr:last-child { border-bottom: none; }
.bg-brand-scope .addon-table td { padding: 14px 22px; font-size: 14px; color: var(--text-2); }
.bg-brand-scope .addon-n { font-family: var(--font-mono); font-size: 11px; color: var(--blue); margin-right: 12px; }
.bg-brand-scope .addon-price { font-family: var(--font-mono); font-size: 13px; color: var(--ink); text-align: right; white-space: nowrap; }
.bg-brand-scope .addon-price.free { color: var(--green); }

/* notes */
.bg-brand-scope .notes-card { padding: clamp(28px, 4vw, 48px); background: radial-gradient(600px 200px at 100% 0%, rgba(251,122,46,0.06), transparent 70%), #fff; }
.bg-brand-scope .notes-grid { display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: start; }
@media (max-width: 600px) { .bg-brand-scope .notes-grid { grid-template-columns: 1fr; } }
.bg-brand-scope .notes-ic { width: 56px; height: 56px; border-radius: 12px; border: 1px solid rgba(251,122,46,0.32); background: rgba(251,122,46,0.06); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-family: var(--font-mono); font-weight: 600; font-size: 20px; color: var(--orange); }
.bg-brand-scope .notes-italic { margin-top: 14px; font-size: 12.5px; color: var(--muted); font-style: italic; line-height: 1.55; max-width: 72ch; }

/* calculator blocks */
.bg-brand-scope .calc-block { padding: 22px; background: #F4F8FC; }
.bg-brand-scope .calc-block-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.bg-brand-scope .calc-plan-opts, .bg-brand-scope .calc-toggles { display: grid; gap: 8px; }
.bg-brand-scope .checkbox { width: 18px; height: 18px; border-radius: 5px; border: 1.5px solid var(--line-2); position: relative; flex-shrink: 0; transition: all .15s ease; }
.bg-brand-scope .calc-opt:hover .checkbox { border-color: var(--blue); }
.bg-brand-scope .checkbox.on { background: var(--blue); border-color: var(--blue); }
.bg-brand-scope .checkbox.on::after { content: ''; position: absolute; left: 5px; top: 1.5px; width: 5px; height: 9px; border-right: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(45deg); }
.bg-brand-scope .calc-units { display: grid; gap: 14px; }
.bg-brand-scope .calc-unit { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.bg-brand-scope .calc-unit-l { font-size: 14px; font-weight: 500; color: var(--ink); }
.bg-brand-scope .calc-unit-n { font-family: var(--font-mono); font-size: 11.5px; color: var(--muted); margin-top: 3px; }
.bg-brand-scope .stepper { display: flex; align-items: center; gap: 2px; border: 1px solid var(--line); border-radius: 10px; background: #fff; padding: 3px; flex-shrink: 0; }
.bg-brand-scope .stepper button { width: 32px; height: 32px; border: none; background: transparent; color: var(--blue); font-size: 20px; line-height: 1; cursor: pointer; border-radius: 8px; transition: background .15s ease; }
.bg-brand-scope .stepper button:hover:not(:disabled) { background: rgba(46,139,255,0.1); }
.bg-brand-scope .stepper button:disabled { color: var(--line-2); cursor: not-allowed; }
.bg-brand-scope .stepper-v { min-width: 26px; text-align: center; font-family: var(--font-mono); font-size: 15px; font-weight: 600; color: var(--ink); }
.bg-brand-scope .calc-vat { padding: 18px 20px; display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.bg-brand-scope .vat-toggle { width: 52px; height: 28px; border-radius: 999px; border: 1px solid var(--line); position: relative; cursor: pointer; flex-shrink: 0; transition: background .15s ease; }
.bg-brand-scope .vat-toggle span { position: absolute; top: 3px; width: 20px; height: 20px; border-radius: 50%; transition: left .15s ease, background .15s ease; }
.bg-brand-scope .calc-card { padding: 26px; position: sticky; top: 96px; }
.bg-brand-scope .calc-due { display: grid; gap: 10px; }
.bg-brand-scope .calc-due-row { display: flex; justify-content: space-between; padding: 12px 14px; border-radius: 8px; font-size: 13px; }
.bg-brand-scope .calc-due-row.blue { background: rgba(46,139,255,0.06); border: 1px solid rgba(46,139,255,0.22); }
.bg-brand-scope .calc-due-row.blue strong { font-family: var(--font-mono); color: var(--blue); }
.bg-brand-scope .calc-due-row.dash { border: 1px dashed var(--line-2); color: var(--muted); }
.bg-brand-scope .calc-due-row.dash strong { font-family: var(--font-mono); color: var(--muted); }
.bg-brand-scope .calc-est { margin-top: 16px; font-size: 11px; color: var(--muted); font-family: var(--font-mono); letter-spacing: 0.08em; text-align: center; }
@media (max-width: 980px) { .bg-brand-scope .calc-card { position: static; } }

/* drawer extras */
.bg-brand-scope .drawer-head { padding: 22px 28px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; background: var(--card); }
.bg-brand-scope .drawer-x { width: 36px; height: 36px; border-radius: 8px; border: 1px solid var(--line); background: transparent; color: var(--text-2); cursor: pointer; position: relative; flex-shrink: 0; }
.bg-brand-scope .drawer-x span { position: absolute; left: 10px; top: 17px; width: 16px; height: 1.5px; background: currentColor; }
.bg-brand-scope .drawer-x span:first-child { transform: rotate(45deg); }
.bg-brand-scope .drawer-x span:last-child { transform: rotate(-45deg); }
.bg-brand-scope .drawer-x:disabled { opacity: 0.4; cursor: not-allowed; }
.bg-brand-scope .drawer-body { padding: 28px; display: grid; gap: 22px; }
.bg-brand-scope .order-sum { padding: 20px; background: #F4F8FC; }
.bg-brand-scope .order-items { margin: 12px 0 0; padding: 0; list-style: none; display: grid; gap: 6px; }
.bg-brand-scope .order-items li { font-size: 12.5px; color: var(--text-2); display: flex; gap: 8px; }
.bg-brand-scope .order-items li span { color: var(--blue); }
.bg-brand-scope .order-row { display: flex; justify-content: space-between; }
.bg-brand-scope .order-row.blue { color: var(--blue); } .bg-brand-scope .order-row.blue strong { font-family: var(--font-mono); }
.bg-brand-scope .order-row.muted { color: var(--muted); } .bg-brand-scope .order-row.muted strong { font-family: var(--font-mono); }
.bg-brand-scope .wa-cta { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 18px; border-radius: 12px; border: 1px solid rgba(37,211,102,0.3); background: rgba(37,211,102,0.05); flex-wrap: wrap; }
.bg-brand-scope .wa-cta strong { font-size: 14px; color: var(--ink); }
.bg-brand-scope .wa-cta p { font-size: 12.5px; color: var(--text-2); margin: 4px 0 0; }
.bg-brand-scope .pay-note { padding: 16px; border-radius: 10px; background: rgba(46,139,255,0.05); border: 1px solid rgba(46,139,255,0.18); }
.bg-brand-scope .pay-secure { margin-top: 8px; font-size: 11px; color: var(--muted); font-family: var(--font-mono); letter-spacing: 0.06em; }
.bg-brand-scope .spinner { width: 15px; height: 15px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.4); border-top-color: #fff; display: inline-block; margin-right: 9px; animation: spin 0.7s linear infinite; vertical-align: -2px; }
@keyframes spin { to { transform: rotate(360deg); } }
.bg-brand-scope .success-panel { padding: 48px 40px; display: grid; gap: 18px; place-items: center; text-align: center; }
.bg-brand-scope .success-ring { width: 76px; height: 76px; border-radius: 50%; border: 1px solid var(--border-blue); background: radial-gradient(circle, rgba(46,139,255,0.18), transparent 70%); display: flex; align-items: center; justify-content: center; box-shadow: 0 0 40px rgba(46,139,255,0.35); }
.bg-brand-scope .success-tick { width: 26px; height: 13px; border-left: 3px solid var(--blue); border-bottom: 3px solid var(--blue); transform: rotate(-45deg); margin-top: -5px; }

/* ============================================================
   PRICING HERO GRAPHIC (live quote card)
   ============================================================ */
.bg-brand-scope .ph-stage { position: relative; width: 100%; max-width: 380px; margin: 0 auto; min-height: 360px; color: var(--ink); }
.bg-brand-scope .ph-card { border-radius: 18px; background: #fff; }
.bg-brand-scope .ph-behind { position: absolute; right: -16px; top: 30px; width: 88%; height: 84%; z-index: 1; background: rgba(255,255,255,0.4); transform: rotate(3.5deg); box-shadow: 0 30px 60px -30px rgba(8,24,52,0.5); }
.bg-brand-scope .ph-main { position: relative; z-index: 3; padding: 26px 26px 24px; box-shadow: 0 40px 80px -30px rgba(8,24,52,0.55); }
.bg-brand-scope .ph-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.bg-brand-scope .ph-ribbon { display: inline-flex; align-items: center; gap: 7px; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; background: var(--blue); padding: 6px 11px; border-radius: 999px; }
.bg-brand-scope .ph-ribbon .dot { width: 5px; height: 5px; border-radius: 50%; background: #fff; }
.bg-brand-scope .ph-plan { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--ink); }
.bg-brand-scope .ph-price { margin-top: 18px; display: flex; align-items: baseline; gap: 7px; }
.bg-brand-scope .ph-cur { font-family: var(--font-mono); font-size: 13px; color: var(--blue); letter-spacing: 0.06em; }
.bg-brand-scope .ph-amt { font-size: 42px; font-weight: 700; letter-spacing: -0.03em; line-height: 1; color: var(--ink); }
.bg-brand-scope .ph-u { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.bg-brand-scope .ph-mo { margin-top: 7px; font-family: var(--font-mono); font-size: 13px; color: var(--text-2); }
.bg-brand-scope .ph-line { height: 1px; background: var(--line); margin: 18px 0; }
.bg-brand-scope .ph-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.bg-brand-scope .ph-list li { display: flex; align-items: center; gap: 10px; font-size: 12.5px; color: var(--text-2); }
.bg-brand-scope .ph-tick { width: 17px; height: 17px; border-radius: 50%; background: var(--blue); position: relative; flex-shrink: 0; }
.bg-brand-scope .ph-tick::after { content: ''; position: absolute; left: 5px; top: 4px; width: 5px; height: 8px; border-right: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(45deg); }
.bg-brand-scope .ph-cta { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; margin-top: 20px; font-family: var(--font-display); font-weight: 700; font-size: 13px; color: #fff; background: var(--blue); border: none; cursor: pointer; border-radius: 999px; padding: 13px; box-shadow: 0 14px 28px -12px rgba(46,139,255,0.8); transition: background .15s ease, transform .15s ease; }
.bg-brand-scope .ph-cta:hover { background: #3F97FF; transform: translateY(-1px); }
.bg-brand-scope .ph-cta-ic { font-size: 16px; }
.bg-brand-scope .ph-chip { position: absolute; z-index: 5; display: inline-flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 600; color: var(--ink); background: #fff; border-radius: 999px; padding: 8px 13px; box-shadow: 0 14px 30px -12px rgba(8,24,52,0.45); }
.bg-brand-scope .ph-chip b { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }
/* float above the card's top-left, clear of the price text (was top:30%,
   which sat on top of the pricing). */
.bg-brand-scope .ph-chip-1 { left: -4%; top: -5%; }
.bg-brand-scope .ph-chip-2 { right: -6%; bottom: 16%; }
.bg-brand-scope .ph-chip-2 b { background: var(--green); }
.bg-brand-scope .ph-pilot { position: absolute; left: -8%; bottom: -4%; z-index: 6; }
.bg-brand-scope .ph-pilot img { width: 92px; height: 92px; filter: drop-shadow(0 18px 30px rgba(8,24,52,0.5)); }
@media (max-width: 940px) {
  .bg-brand-scope .ph-stage { max-width: 340px; margin: 6px auto 0; }
}
@media (max-width: 520px) {
  .bg-brand-scope .ph-pilot img { width: 68px; height: 68px; }
  .bg-brand-scope .ph-chip { font-size: 10px; padding: 6px 10px; }
}

/* ============================================================
   SCROLL REVEAL (transform-only — opacity always 1, never invisible)
   ============================================================ */
.reveal-ready .rv { opacity: 1; transform: translateY(14px); transition: transform .6s cubic-bezier(.2,.7,.3,1); will-change: transform; }
.reveal-ready .rv.in { transform: none; }
.reveal-ready .pkg-card.rv:nth-child(2) { transition-delay: .07s; }
.reveal-ready .pkg-card.rv:nth-child(3) { transition-delay: .14s; }
@media (prefers-reduced-motion: reduce) {
  .reveal-ready .rv { transform: none !important; transition: none !important; }
}

/* hosting (light) */
.bg-brand-scope .host-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 700px) { .bg-brand-scope .host-grid { grid-template-columns: 1fr; } }
.bg-brand-scope .host-card { overflow: hidden; padding: 0; }
.bg-brand-scope .host-h { padding: 16px 24px; font-family: var(--font-display); font-weight: 700; font-size: 16px; color: #fff; background: linear-gradient(110deg, #1E66E6, #2E8BFF 55%, #18B6E0); }
.bg-brand-scope .host-card.alt .host-h { background: linear-gradient(110deg, #0c2747, #15406e); }
.bg-brand-scope .host-rows { padding: 6px 24px 16px; }
.bg-brand-scope .host-rows > div { display: flex; justify-content: space-between; align-items: center; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 14px; color: var(--text-2); }
.bg-brand-scope .host-rows > div:last-child { border-bottom: none; }
.bg-brand-scope .host-rows b { font-family: var(--font-display); font-weight: 700; color: var(--ink); }
.bg-brand-scope .host-note { display: flex; gap: 18px; align-items: flex-start; padding: 24px; margin-top: 24px; }
.bg-brand-scope .host-note-ic { width: 50px; height: 50px; border-radius: 12px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: var(--orange); background: rgba(251,122,46,0.08); border: 1px solid rgba(251,122,46,0.28); }
.bg-brand-scope .host-note-t { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--ink); margin-bottom: 6px; }
.bg-brand-scope .host-note p { margin: 0; font-size: 13.5px; line-height: 1.6; color: var(--text-2); }
