/* ==========================================================================
   PK DOMAIN — Component layer
   Media-forward pieces: announcement bar, browser mockups, illustrated cards,
   TLD tiles, coverage map, charts, testimonials, newsletter, cookie bar, tabs.
   Loaded after styles.css.
   ========================================================================== */

/* ANNOUNCEMENT BAR ======================================================== */
.announce {
  background: var(--gold-50);
  border-bottom: 1px solid #ecdcb0;
  color: #5c4c22;
  font-size: var(--t-sm);
}
.announce .container { display: flex; align-items: center; gap: var(--s3); min-height: 40px; padding-block: .4rem; }
.announce svg.a-icon { width: 17px; height: 17px; color: var(--gold-700); flex-shrink: 0; }
.announce p { flex: 1; line-height: 1.4; }
.announce strong { color: #3d3110; }
.announce a { text-decoration: underline; text-underline-offset: 2px; font-weight: 600; white-space: nowrap; }
.announce button.a-close { width: 26px; height: 26px; display: grid; place-items: center; border-radius: var(--r-xs); color: var(--gold-700); flex-shrink: 0; }
.announce button.a-close:hover { background: #f4e7c4; }
.announce button.a-close svg { width: 15px; height: 15px; }

/* SEARCH FLYOUT IN HEADER ================================================= */
.nav-search { position: relative; }
.icon-btn {
  width: 42px; height: 42px; display: grid; place-items: center;
  border: 1px solid var(--line-strong); border-radius: var(--r-sm); color: var(--navy-800);
  transition: all .15s var(--ease); background: var(--bg);
}
.icon-btn:hover { border-color: var(--blue-600); color: var(--blue-700); background: var(--blue-50); }
.icon-btn svg { width: 19px; height: 19px; }
.search-flyout {
  position: absolute; top: calc(100% + 8px); right: 0; width: min(460px, 80vw);
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--sh-lg); padding: var(--s4); z-index: 120;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .16s var(--ease), transform .16s var(--ease), visibility .16s;
}
.nav-search.is-open .search-flyout { opacity: 1; visibility: visible; transform: none; }
.search-flyout p { font-size: var(--t-sm); color: var(--ink-muted); margin-bottom: var(--s3); }

/* BROWSER / DEVICE MOCKUPS ================================================ */
.mockup {
  background: var(--bg); border: 1px solid var(--line-strong);
  border-radius: var(--r-md); box-shadow: var(--sh-lg); overflow: hidden;
}
.mockup__bar {
  display: flex; align-items: center; gap: var(--s3);
  padding: .6rem .85rem; background: var(--bg-alt2); border-bottom: 1px solid var(--line);
}
.mockup__dots { display: flex; gap: 6px; flex-shrink: 0; }
.mockup__dots i { width: 10px; height: 10px; border-radius: 50%; background: #c8d2e0; display: block; }
.mockup__dots i:first-child { background: #f0a9a4; }
.mockup__dots i:nth-child(2) { background: #f3d08a; }
.mockup__dots i:nth-child(3) { background: #a9d9b4; }
.mockup__url {
  flex: 1; background: var(--bg); border: 1px solid var(--line); border-radius: 20px;
  padding: .25rem .7rem; font-family: var(--font-mono); font-size: .72rem;
  color: var(--ink-subtle); display: flex; align-items: center; gap: .4em;
  overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
}
.mockup__url svg { width: 11px; height: 11px; color: var(--green-600); flex-shrink: 0; }
.mockup__body { padding: var(--s4); }

/* Availability result rows inside a mockup */
.avail { display: grid; gap: 0; }
.avail__q { display: flex; align-items: center; gap: .5rem; padding: .55rem .7rem; background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--r-sm); margin-bottom: var(--s3); }
.avail__q svg { width: 15px; height: 15px; color: var(--ink-subtle); }
.avail__q span { font-family: var(--font-mono); font-size: .92rem; color: var(--navy-900); }
.avail__q .caret { width: 8px; height: 17px; background: var(--blue-600); animation: caret 1.1s steps(2) infinite; margin-left: -2px; }
@keyframes caret { 0%,100% { opacity: 1 } 50% { opacity: 0 } }

.avail__row {
  display: grid; grid-template-columns: 1fr auto auto; gap: var(--s3);
  align-items: center; padding: .7rem .7rem; border-bottom: 1px solid var(--line);
}
.avail__row:last-child { border-bottom: 0; }
.avail__row .a-dom { font-family: var(--font-mono); font-size: .95rem; color: var(--navy-900); }
.avail__row .a-dom b { font-weight: 700; }
.avail__row .a-dom em { font-style: normal; color: var(--blue-700); font-weight: 700; }
.avail__row .a-state { display: inline-flex; align-items: center; gap: .3em; font-size: var(--t-xs); font-weight: 700; font-family: var(--font-head); letter-spacing: .03em; text-transform: uppercase; }
.avail__row .a-state svg { width: 13px; height: 13px; }
.avail__row .a-state--ok { color: var(--green-600); }
.avail__row .a-state--no { color: var(--ink-subtle); }
.avail__row .a-price { font-family: var(--font-num); font-size: var(--t-sm); font-weight: 600; font-variant-numeric: tabular-nums; color: var(--navy-900); text-align: right; white-space: nowrap; }
.avail__row .a-price s { display: block; font-weight: 400; font-size: .7rem; color: var(--ink-subtle); }
.avail__row--taken { background: var(--bg-alt); }
.avail__row--taken .a-dom { color: var(--ink-subtle); }
.mockup__foot { padding: var(--s4); border-top: 1px solid var(--line); background: var(--bg-alt); display: flex; align-items: center; justify-content: space-between; gap: var(--s3); flex-wrap: wrap; }
.mockup__foot .m-total { font-size: var(--t-sm); color: var(--ink-muted); }
.mockup__foot .m-total b { font-family: var(--font-num); color: var(--navy-900); font-size: var(--t-md); display: block; }

/* Floating proof chip attached to a mockup */
.mockup-wrap { position: relative; }
.proof-chip {
  position: absolute; background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--r-sm); box-shadow: var(--sh-md); padding: .6rem .8rem;
  display: flex; align-items: center; gap: .6rem; max-width: 230px;
}
.proof-chip svg { width: 26px; height: 26px; flex-shrink: 0; }
.proof-chip .p-k { display: block; font-family: var(--font-head); font-weight: 700; font-size: var(--t-sm); color: var(--navy-900); line-height: 1.2; }
.proof-chip .p-v { display: block; font-size: var(--t-xs); color: var(--ink-muted); line-height: 1.3; }
.proof-chip--tl { top: -18px; left: -22px; }
.proof-chip--br { bottom: -20px; right: -18px; }

/* TLD TILES =============================================================== */
.tld-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: var(--s4); }
.tld-tile {
  display: flex; flex-direction: column; gap: var(--s3);
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: var(--s5) var(--s4); text-align: center; align-items: center;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease), transform .18s var(--ease);
}
.tld-tile:hover { border-color: var(--blue-500); box-shadow: var(--sh-md); transform: translateY(-2px); }
.tld-tile__emblem { width: 62px; height: 62px; }
.tld-tile__ext { font-family: var(--font-num); font-weight: 700; font-size: 1.28rem; color: var(--navy-900); letter-spacing: -.02em; }
.tld-tile__price { font-family: var(--font-num); font-weight: 600; font-size: var(--t-md); color: var(--blue-700); font-variant-numeric: tabular-nums; }
.tld-tile__price small { display: block; font-family: var(--font-body); font-weight: 400; font-size: var(--t-xs); color: var(--ink-subtle); }
.tld-tile__desc { font-size: var(--t-sm); color: var(--ink-muted); line-height: 1.45; }
.tld-tile .btn { width: 100%; margin-top: auto; }

/* ILLUSTRATED FEATURE CARD =============================================== */
.illus-card {
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-md);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
a.illus-card:hover { border-color: var(--blue-500); box-shadow: var(--sh-md); }
.illus-card__art {
  aspect-ratio: 16 / 9; background: var(--bg-alt); border-bottom: 1px solid var(--line);
  display: grid; place-items: center; overflow: hidden; position: relative;
}
.illus-card__art svg { width: 100%; height: 100%; display: block; }
.illus-card__body { padding: var(--s5); display: flex; flex-direction: column; flex: 1; }
.illus-card__body h3 { font-size: var(--t-lg); }
.illus-card__body p { margin-top: var(--s2); color: var(--ink-muted); font-size: var(--t-base); flex: 1; }
.illus-card__body .link { margin-top: var(--s4); }

/* SPLIT MEDIA SECTION ==================================================== */
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.split--reverse .split__media { order: -1; }
.split__media figure { margin: 0; }
/* keep the media in view while a long text column scrolls past it */
@media (min-width: 901px) { .split__media { position: sticky; top: 96px; } }
.split__media figcaption { margin-top: var(--s3); font-size: var(--t-sm); color: var(--ink-subtle); }
.split__body h2 { margin-top: var(--s2); }
.split__body > p { margin-top: var(--s4); color: var(--ink-muted); }
.feature-list { display: grid; gap: var(--s4); margin-top: var(--s5); }
.feature-list li { display: flex; gap: var(--s3); }
.feature-list .f-icon {
  width: 40px; height: 40px; border-radius: var(--r-sm); flex-shrink: 0;
  display: grid; place-items: center; background: var(--blue-50); border: 1px solid var(--blue-100); color: var(--blue-700);
}
.feature-list .f-icon svg { width: 20px; height: 20px; }
.feature-list b { display: block; font-family: var(--font-head); font-size: var(--t-base); color: var(--navy-900); }
.feature-list span { font-size: var(--t-sm); color: var(--ink-muted); line-height: 1.5; }

/* COVERAGE MAP =========================================================== */
.map-panel { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
.map-figure { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-md); padding: var(--s5); box-shadow: var(--sh-sm); }
.map-figure svg { width: 100%; height: auto; }
.map-legend { display: flex; flex-wrap: wrap; gap: var(--s3) var(--s5); margin-top: var(--s4); padding-top: var(--s4); border-top: 1px solid var(--line); }
.map-legend li { display: flex; align-items: center; gap: .5em; font-size: var(--t-sm); color: var(--ink-muted); }
.map-legend i { width: 11px; height: 11px; border-radius: 2px; display: block; flex-shrink: 0; }
.region-list { display: grid; gap: .5rem; margin-top: var(--s5); }
.region-list li {
  display: grid; grid-template-columns: 92px 1fr auto; gap: var(--s3); align-items: center;
  padding: .65rem .85rem; background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-sm);
  transition: border-color .15s var(--ease);
}
.region-list li:hover { border-color: var(--blue-500); }
.region-list .r-ext { font-family: var(--font-num); font-weight: 700; font-size: var(--t-sm); color: var(--blue-700); }
.region-list .r-name { font-size: var(--t-sm); color: var(--navy-800); }
.region-list .r-price { font-family: var(--font-num); font-size: var(--t-sm); color: var(--ink-muted); font-variant-numeric: tabular-nums; }

/* CHART ================================================================== */
.chart-card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-md); padding: var(--s5); }
.chart-card header { display: flex; justify-content: space-between; align-items: flex-start; gap: var(--s4); margin-bottom: var(--s5); flex-wrap: wrap; }
.chart-card h3 { font-size: var(--t-lg); }
.chart-card header p { font-size: var(--t-sm); color: var(--ink-muted); margin-top: .2rem; }
.chart-card svg { width: 100%; height: auto; overflow: visible; }
.chart-legend { display: flex; gap: var(--s5); flex-wrap: wrap; margin-top: var(--s4); padding-top: var(--s4); border-top: 1px solid var(--line); }
.chart-legend li { display: flex; align-items: center; gap: .5em; font-size: var(--t-sm); color: var(--ink-muted); }
.chart-legend i { width: 12px; height: 12px; border-radius: 2px; display: block; }

/* PROCESS DIAGRAM ======================================================== */
.diagram { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-md); padding: var(--s5); }
.diagram svg { width: 100%; height: auto; }
.diagram figcaption { margin-top: var(--s4); padding-top: var(--s4); border-top: 1px solid var(--line); font-size: var(--t-sm); color: var(--ink-muted); }

/* STEP CARDS WITH ART ==================================================== */
.step__art { aspect-ratio: 3 / 2; background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--r-sm); margin-bottom: var(--s4); overflow: hidden; }
.step__art svg { width: 100%; height: 100%; }
.step__no--inline { position: absolute; top: var(--s5); right: var(--s5); }

/* LOGO / CERTIFICATION WALL ============================================== */
.cert-wall { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: var(--s4); }
.cert {
  display: flex; align-items: center; gap: var(--s3); padding: var(--s4);
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-sm);
}
.cert svg { width: 38px; height: 38px; flex-shrink: 0; }
.cert b { display: block; font-family: var(--font-head); font-size: var(--t-sm); color: var(--navy-900); line-height: 1.25; }
.cert span { display: block; font-size: var(--t-xs); color: var(--ink-subtle); line-height: 1.3; }

/* TESTIMONIALS =========================================================== */
.quote-card { display: flex; flex-direction: column; background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-md); padding: var(--s5); }
.quote-card > svg.q-mark { width: 30px; height: 30px; color: var(--blue-100); margin-bottom: var(--s3); }
.quote-card blockquote { font-size: var(--t-md); color: var(--navy-800); line-height: 1.6; flex: 1; }
.quote-card figcaption { display: flex; align-items: center; gap: var(--s3); margin-top: var(--s5); padding-top: var(--s4); border-top: 1px solid var(--line); }
.avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; background: var(--navy-800); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: var(--t-base); letter-spacing: -.02em;
}
.quote-card .q-name { display: block; font-family: var(--font-head); font-weight: 600; font-size: var(--t-base); color: var(--navy-900); }
.quote-card .q-role { display: block; font-size: var(--t-sm); color: var(--ink-subtle); }
.placeholder-note {
  display: flex; gap: var(--s3); padding: var(--s4); border: 1px dashed var(--line-strong);
  border-radius: var(--r-sm); background: var(--bg-alt); font-size: var(--t-sm); color: var(--ink-muted);
}
.placeholder-note svg { width: 18px; height: 18px; color: var(--ink-subtle); flex-shrink: 0; margin-top: 2px; }

/* SUPPORT / CONTACT BAND ================================================= */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s4); }
.contact-card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-md); padding: var(--s5);
  display: flex; flex-direction: column; gap: var(--s3);
}
.contact-card__icon { width: 44px; height: 44px; border-radius: var(--r-sm); display: grid; place-items: center; }
.contact-card__icon svg { width: 22px; height: 22px; }
.contact-card__icon--wa { background: var(--green-50); border: 1px solid #bfe3cd; color: var(--green-700); }
.contact-card__icon--ph { background: var(--blue-50); border: 1px solid var(--blue-100); color: var(--blue-700); }
.contact-card__icon--tk { background: var(--gold-50); border: 1px solid #ecdcb0; color: var(--gold-700); }
.contact-card h3 { font-size: var(--t-lg); }
.contact-card p { font-size: var(--t-sm); color: var(--ink-muted); flex: 1; }
.contact-card .c-value { font-family: var(--font-num); font-size: var(--t-md); color: var(--navy-900); font-weight: 600; }

/* NEWSLETTER ============================================================= */
.newsletter { display: grid; grid-template-columns: 1fr auto; gap: var(--s5); align-items: center; }
.newsletter h4 { color: #fff; font-size: var(--t-lg); letter-spacing: normal; text-transform: none; margin-bottom: .3rem; }
.newsletter p { font-size: var(--t-sm); color: #a8b8ce; }
.newsletter form { display: flex; gap: var(--s2); min-width: min(420px, 100%); }
.newsletter input {
  flex: 1; min-width: 0; padding: .75rem 1rem; border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.07); color: #fff;
  font-size: var(--t-base);
}
.newsletter input::placeholder { color: #8298b5; }
.newsletter input:focus { outline: none; border-color: var(--blue-500); background: rgba(255,255,255,.12); }
.form-msg { font-size: var(--t-sm); margin-top: var(--s2); display: none; }
.form-msg.is-shown { display: block; }
.form-msg--ok { color: #7fd3a0; }
.form-msg--err { color: #f3a4a4; }

/* COOKIE CONSENT ======================================================== */
.cookie {
  position: fixed; left: 16px; bottom: 16px; z-index: 200; width: min(420px, calc(100vw - 32px));
  background: var(--bg); border: 1px solid var(--line-strong); border-radius: var(--r-md);
  box-shadow: var(--sh-lg); padding: var(--s5);
}
.cookie[hidden] { display: none; }
.cookie h4 { font-family: var(--font-head); font-size: var(--t-base); color: var(--navy-900); margin-bottom: var(--s2); letter-spacing: normal; text-transform: none; }
.cookie p { font-size: var(--t-sm); color: var(--ink-muted); }
.cookie p a { color: var(--blue-700); text-decoration: underline; }
.cookie__actions { display: flex; gap: var(--s2); margin-top: var(--s4); flex-wrap: wrap; }

/* BACK TO TOP =========================================================== */
.to-top {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 44px; height: 44px; border-radius: var(--r-sm);
  background: var(--navy-900); color: #fff; display: grid; place-items: center;
  box-shadow: var(--sh-md); opacity: 0; pointer-events: none;
  transition: opacity .2s var(--ease), transform .2s var(--ease);
  transform: translateY(8px);
}
.to-top.is-shown { opacity: 1; pointer-events: auto; transform: none; }
.to-top:hover { background: var(--blue-600); }
.to-top svg { width: 20px; height: 20px; }

/* RESPONSIVE ============================================================ */
@media (max-width: 1100px) {
  .map-panel, .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .newsletter { grid-template-columns: 1fr; }
  .proof-chip--tl { top: -12px; left: 0; }
  .proof-chip--br { bottom: -12px; right: 0; }
}
@media (max-width: 620px) {
  .proof-chip { position: static; max-width: none; margin-top: var(--s3); }
  .newsletter form { flex-direction: column; min-width: 0; }
  .cookie { left: 8px; right: 8px; bottom: 8px; width: auto; }
  .to-top { right: 12px; bottom: 12px; }
}

/* ==========================================================================
   FLOATING CONTACT RAIL  +  MOBILE QUICK-NAV BAR   (site-wide)
   ========================================================================== */
.fab-rail {
  position: fixed; right: 16px; bottom: 84px; z-index: 95;
  display: flex; flex-direction: column; gap: 12px;
}
.fab {
  position: relative; width: 50px; height: 50px; border-radius: 14px;
  display: grid; place-items: center; color: #fff;
  box-shadow: var(--sh-md);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), filter .18s var(--ease);
  animation: fabIn .5s var(--ease) both;
}
.fab:nth-child(1) { animation-delay: .05s; }
.fab:nth-child(2) { animation-delay: .13s; }
.fab:nth-child(3) { animation-delay: .21s; }
.fab svg { width: 23px; height: 23px; }
.fab:hover, .fab:focus-visible { transform: translateY(-2px) scale(1.05); box-shadow: var(--sh-lg); filter: brightness(1.04); }
.fab:focus-visible { outline: 2px solid var(--navy-900); outline-offset: 3px; }
.fab--wa   { background: var(--green-600); }
.fab--call { background: var(--blue-600); }
.fab--form { background: var(--navy-900); }

/* slide-out label */
.fab__label {
  position: absolute; right: calc(100% + 10px); top: 50%; transform: translateY(-50%) translateX(6px);
  white-space: nowrap; font-family: var(--font-head); font-weight: 600; font-size: var(--t-sm);
  color: #fff; background: var(--navy-900); padding: .4em .7em; border-radius: var(--r-xs);
  box-shadow: var(--sh-md); opacity: 0; pointer-events: none;
  transition: opacity .16s var(--ease), transform .16s var(--ease);
}
.fab__label::after {
  content: ""; position: absolute; left: 100%; top: 50%; transform: translateY(-50%);
  border: 5px solid transparent; border-left-color: var(--navy-900);
}
.fab:hover .fab__label, .fab:focus-visible .fab__label { opacity: 1; transform: translateY(-50%) translateX(0); }

/* pulsing ring on the WhatsApp button */
.fab--wa::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: var(--green-600); z-index: -1;
  animation: fabPulse 2.6s var(--ease) infinite;
}

@keyframes fabIn   { from { opacity: 0; transform: translateX(24px); } to { opacity: 1; transform: none; } }
@keyframes fabPulse { 0% { transform: scale(1); opacity: .55; } 70%, 100% { transform: scale(1.9); opacity: 0; } }

/* mobile quick-nav bar — phones only */
.mobile-bar { display: none; }
@media (max-width: 640px) {
  .mobile-bar {
    display: grid; grid-template-columns: repeat(3, 1fr);
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 96;
    background: var(--bg); border-top: 1px solid var(--line);
    box-shadow: 0 -4px 16px rgba(10, 31, 61, .08);
    animation: barUp .4s var(--ease) both;
  }
  .mobile-bar a {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
    padding: .55rem .3rem calc(.55rem + env(safe-area-inset-bottom, 0px));
    font-family: var(--font-head); font-weight: 600; font-size: .68rem; line-height: 1.15;
    color: var(--navy-900); text-align: center;
  }
  .mobile-bar a + a { border-left: 1px solid var(--line); }
  .mobile-bar a svg { width: 20px; height: 20px; color: var(--blue-600); }
  .mobile-bar a:active { background: var(--blue-50); }

  body { padding-bottom: 60px; }
  .fab-rail { right: 12px; bottom: 74px; gap: 10px; }
  .fab { width: 46px; height: 46px; border-radius: 13px; }
  .fab svg { width: 21px; height: 21px; }
  .to-top { display: none; }
  .cookie { bottom: 68px; }
}
@keyframes barUp { from { transform: translateY(100%); } to { transform: none; } }

@media (prefers-reduced-motion: reduce) {
  .fab, .mobile-bar { animation: none !important; }
  .fab--wa::before { animation: none !important; opacity: 0 !important; }
  .fab:hover, .fab:focus-visible { transform: none !important; }
}

/* ==========================================================================
   MEGA MENU — full-bleed panel anchored to the header
   ========================================================================== */
.nav-list > li.has-mega { position: static; }
.mega {
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--bg); border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line-strong);
  box-shadow: var(--sh-lg);
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-4px);
  transition: opacity .16s var(--ease), transform .16s var(--ease), visibility .16s;
  z-index: 110;
}
.nav-list > li.is-open .mega { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
.mega__inner {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)) 300px;
  gap: 0; align-items: stretch;
}
.mega__col { padding: var(--s6) var(--s5); border-left: 1px solid var(--line); }
.mega__col:first-child { border-left: 0; padding-left: 0; }
.mega__col h5 {
  font-family: var(--font-head); font-size: var(--t-xs); font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink-subtle);
  margin-bottom: var(--s4); padding-bottom: var(--s3); border-bottom: 1px solid var(--line);
}
.mega__list { display: grid; gap: 1px; }
.mega__list a {
  display: grid; grid-template-columns: auto 1fr auto; gap: .8rem;
  align-items: center; padding: .55rem .6rem; border-radius: var(--r-xs);
  transition: background .14s var(--ease);
}
.mega__list a:hover { background: var(--bg-alt); }
.mega__list .m-ext {
  font-family: var(--font-num); font-weight: 700; font-size: .9rem;
  color: var(--blue-700); min-width: 68px; font-variant-numeric: tabular-nums;
}
.mega__list .m-txt { font-size: var(--t-sm); color: var(--navy-800); line-height: 1.35; }
.mega__list .m-txt small { display: block; color: var(--ink-subtle); font-size: var(--t-xs); }
.mega__list .m-price {
  font-family: var(--font-num); font-size: var(--t-xs); font-weight: 600;
  color: var(--ink-muted); font-variant-numeric: tabular-nums; white-space: nowrap;
}
.mega__feature {
  padding: var(--s6) var(--s5); background: var(--bg-alt); border-left: 1px solid var(--line);
  display: flex; flex-direction: column; gap: var(--s3);
}
.mega__feature svg.mf-art { width: 100%; height: auto; border-radius: var(--r-sm); }
.mega__feature h5 {
  font-family: var(--font-head); font-size: var(--t-base); font-weight: 600;
  color: var(--navy-900); border: 0; padding: 0; margin: 0;
  letter-spacing: normal; text-transform: none;
}
.mega__feature p { font-size: var(--t-sm); color: var(--ink-muted); line-height: 1.5; }
.mega__feature .btn { margin-top: auto; }

/* ==========================================================================
   HOSTING PACKAGES — plan selector + shared inclusions
   ========================================================================== */
.pkg-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: var(--s4); }
.pkg {
  display: flex; flex-direction: column; position: relative;
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: var(--s5) var(--s4) var(--s4);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease), transform .18s var(--ease);
}
.pkg:hover { border-color: var(--blue-500); box-shadow: var(--sh-md); transform: translateY(-2px); }
.pkg--featured { border-color: var(--blue-600); border-width: 2px; box-shadow: var(--sh-md); }
.pkg__flag {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--blue-600); color: #fff; border-radius: var(--r-xs);
  font-family: var(--font-head); font-size: .68rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; padding: .3em .7em; white-space: nowrap;
}
.pkg__art { width: 54px; height: 54px; margin-bottom: var(--s4); }
.pkg h3 { font-size: var(--t-lg); }
.pkg__for { font-size: var(--t-sm); color: var(--ink-muted); margin-top: .3rem; line-height: 1.45; min-height: 2.6em; }
.pkg__price {
  font-family: var(--font-num); font-variant-numeric: tabular-nums;
  font-weight: 700; font-size: 1.6rem; color: var(--navy-900);
  margin-top: var(--s4); padding-top: var(--s4); border-top: 1px solid var(--line); line-height: 1.1;
}
.pkg__price--quote { font-size: var(--t-lg); color: var(--blue-700); font-weight: 600; }
.pkg__price small { display: block; font-family: var(--font-body); font-weight: 400; font-size: var(--t-sm); color: var(--ink-subtle); margin-top: .25rem; }
.pkg__spec { display: flex; align-items: center; gap: .45em; font-size: var(--t-sm); color: var(--navy-800); margin-top: var(--s4); }
.pkg__spec svg { width: 15px; height: 15px; color: var(--blue-600); flex-shrink: 0; }
.pkg .btn { margin-top: var(--s5); }

.included {
  margin-top: var(--s6); background: var(--navy-900); color: #cfdaea;
  border-radius: var(--r-md); padding: var(--s5) var(--s6);
}
.included__head { display: flex; align-items: baseline; gap: var(--s3); flex-wrap: wrap; margin-bottom: var(--s5); }
.included__head h3 { color: #fff; font-size: var(--t-lg); }
.included__head p { font-size: var(--t-sm); color: #8fa3c0; }
.included__grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: var(--s4); }
.included__grid li { display: flex; flex-direction: column; gap: .45rem; }
.included__grid svg { width: 24px; height: 24px; color: #6fd396; }
.included__grid b { font-family: var(--font-head); font-size: var(--t-sm); font-weight: 600; color: #fff; line-height: 1.3; }
.included__grid span { font-size: var(--t-xs); color: #8fa3c0; line-height: 1.4; }

@media (max-width: 1100px) {
  .mega__inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mega__feature { grid-column: 1 / -1; border-left: 0; border-top: 1px solid var(--line); }
  .mega__col:nth-child(3) { border-left: 0; padding-left: 0; }
  .pkg-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .included__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 1240px) {
  .nav-list.is-open > li.has-mega { position: relative; }
  /* mega panels are an ACCORDION on mobile — collapsed until the row is tapped */
  .nav-list.is-open .mega {
    position: static; opacity: 1; visibility: visible; pointer-events: auto;
    transform: none; box-shadow: none; border: 0; background: transparent;
    display: none;
  }
  .nav-list.is-open > li.is-open .mega { display: block; }
  .nav-list.is-open .mega .container { padding: 0; }
  .mega__inner { grid-template-columns: 1fr; }
  .nav-list.is-open .mega__col,
  .nav-list.is-open .mega__feature { padding: var(--s3) 0 var(--s4); border-left: 0; border-top: 1px solid var(--line); }
  .nav-list.is-open .mega__col:first-child { border-top: 0; padding-top: var(--s2); }
  .nav-list.is-open .mega__feature { background: transparent; }
  .nav-list.is-open .mega__feature svg.mf-art { display: none; }
  .nav-list.is-open .mega__list a { padding: .7rem .5rem; }
}
@media (max-width: 720px) {
  .pkg-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .included__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .included { padding: var(--s5) var(--s4); }
}
@media (max-width: 480px) {
  .pkg-grid { grid-template-columns: 1fr; }
  .included__grid { grid-template-columns: 1fr; }
}

/* Package spec list ----------------------------------------------------- */
.pkg-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.pkg__specs { display: grid; gap: 0; margin-top: var(--s4); padding-top: var(--s2); border-top: 1px solid var(--line); }
.pkg__specs li {
  display: grid; grid-template-columns: 18px 1fr auto; gap: .55rem; align-items: center;
  padding: .5rem 0; border-bottom: 1px solid var(--line); font-size: var(--t-sm);
}
.pkg__specs li:last-child { border-bottom: 0; }
.pkg__specs .ps-ico { width: 18px; height: 18px; color: var(--blue-600); }
.pkg--featured .pkg__specs .ps-ico { color: var(--blue-700); }
.pkg__specs .ps-ico svg { width: 100%; height: 100%; }
.pkg__specs .ps-k { color: var(--ink-muted); }
.pkg__specs .ps-v {
  font-family: var(--font-head); font-weight: 600; color: var(--navy-900);
  text-align: right; font-variant-numeric: tabular-nums;
}
.pkg__specs .ps-v.is-unlimited { color: var(--green-700); }
.pkg__specs li.ps-muted .ps-k, .pkg__specs li.ps-muted .ps-v { color: var(--ink-subtle); }
.pkg__specs li.ps-muted .ps-ico { color: var(--line-strong); }

/* small print under the grid noting specs need confirming */
.pkg-note {
  margin-top: var(--s5); display: flex; gap: .6rem; align-items: flex-start;
  padding: var(--s4); background: var(--blue-50); border: 1px solid var(--blue-100);
  border-radius: var(--r-sm); font-size: var(--t-sm); color: var(--navy-800);
}
.pkg-note svg { width: 18px; height: 18px; color: var(--blue-700); flex-shrink: 0; margin-top: 2px; }

@media (max-width: 1100px) { .pkg-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px)  { .pkg-grid--4 { grid-template-columns: 1fr; } }

/* ==========================================================================
   BREADCRUMB (inner pages)
   ========================================================================== */
.breadcrumb { background: var(--bg-alt); border-bottom: 1px solid var(--line); }
.breadcrumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; padding-block: .8rem;
  font-size: var(--t-sm); font-family: var(--font-head); }
.breadcrumb li { display: flex; align-items: center; gap: .5rem; color: var(--ink-muted); }
.breadcrumb li a:hover { color: var(--blue-700); }
.breadcrumb li[aria-current] { color: var(--navy-900); font-weight: 600; }
.breadcrumb svg { width: 13px; height: 13px; color: var(--ink-subtle); }

/* ==========================================================================
   PLATFORM / SPECIALISED-HOSTING GRID
   ========================================================================== */
.platform-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: var(--s3); }
.platform-grid a {
  display: flex; align-items: center; gap: .7rem; padding: .85rem 1rem;
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-sm);
  font-family: var(--font-head); font-weight: 500; font-size: var(--t-sm); color: var(--navy-800);
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease), transform .15s var(--ease);
}
.platform-grid a:hover { border-color: var(--blue-500); box-shadow: var(--sh-sm); transform: translateY(-2px); color: var(--blue-700); }
.platform-grid a svg { width: 20px; height: 20px; color: var(--blue-600); flex-shrink: 0; }
@media (max-width: 900px) { .platform-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 520px) { .platform-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   OS COMPARE (Linux vs Windows)
   ========================================================================== */
.os-compare { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s4); }
.os-card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-md); padding: var(--s5); }
.os-card__head { display: flex; align-items: center; gap: .7rem; padding-bottom: var(--s4); border-bottom: 1px solid var(--line); }
.os-card__head svg { width: 30px; height: 30px; }
.os-card__head h3 { font-size: var(--t-lg); }
.os-card__head span { font-size: var(--t-xs); color: var(--ink-subtle); display: block; }
.os-card ul { display: grid; gap: .6rem; margin-top: var(--s4); }
.os-card li { display: flex; gap: .55em; font-size: var(--t-sm); color: var(--ink-muted); }
.os-card li svg { width: 15px; height: 15px; color: var(--green-600); flex-shrink: 0; margin-top: 3px; }
.os-card .os-for { margin-top: var(--s4); padding-top: var(--s4); border-top: 1px solid var(--line);
  font-size: var(--t-sm); color: var(--navy-800); }
.os-card .os-for b { font-family: var(--font-head); }
@media (max-width: 720px) { .os-compare { grid-template-columns: 1fr; } }

/* Same-rate note strip */
.same-rate {
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  margin-top: var(--s4); padding: var(--s4); border-radius: var(--r-sm);
  background: var(--blue-50); border: 1px solid var(--blue-100);
  font-family: var(--font-head); font-weight: 600; font-size: var(--t-sm); color: var(--blue-700);
  text-align: center;
}
.same-rate svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ==========================================================================
   FEATURE CARD (icon + heading + text) — 3-up grid
   ========================================================================== */
.fbox-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: var(--s4); }
.fbox {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-md); padding: var(--s5);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.fbox:hover { border-color: var(--blue-500); box-shadow: var(--sh-sm); }
.fbox__ico {
  width: 44px; height: 44px; border-radius: var(--r-sm); display: grid; place-items: center;
  background: var(--blue-50); border: 1px solid var(--blue-100); color: var(--blue-700); margin-bottom: var(--s4);
}
.fbox__ico svg { width: 22px; height: 22px; }
.fbox h4 { font-size: var(--t-base); }
.fbox p { margin-top: var(--s2); font-size: var(--t-sm); color: var(--ink-muted); line-height: 1.55; }
@media (max-width: 900px) { .fbox-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 560px) { .fbox-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   DATACENTER LOCATION STRIP
   ========================================================================== */
.dc-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--s3); }
.dc {
  display: flex; flex-direction: column; align-items: center; gap: .5rem; text-align: center;
  padding: var(--s4); background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-sm);
}
.dc svg { width: 30px; height: 30px; }
.dc b { font-family: var(--font-head); font-size: var(--t-sm); color: var(--navy-900); }
.dc span { font-size: var(--t-xs); color: var(--ink-subtle); }
@media (max-width: 800px) { .dc-strip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 460px) { .dc-strip { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   ARTICLE FEATURE ROWS — alternating illustration + long-form copy
   ========================================================================== */
.afeat-wrap { display: grid; gap: clamp(2.5rem, 5vw, 4.5rem); }
.afeat { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
.afeat:nth-child(even) .afeat__media { order: 2; }

.afeat__media { position: relative; }
.afeat__panel {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--sh-md); padding: clamp(1.25rem, 3vw, 2rem); overflow: hidden;
}
.afeat__panel svg { width: 100%; height: auto; display: block; }
.afeat__tag {
  position: absolute; top: -14px; left: 22px;
  display: inline-flex; align-items: center; gap: .4em;
  background: var(--navy-900); color: #fff; border-radius: var(--r-xs);
  font-family: var(--font-head); font-weight: 600; font-size: .72rem;
  letter-spacing: .08em; text-transform: uppercase; padding: .4em .8em;
}
.afeat__tag svg { width: 13px; height: 13px; }
.afeat:nth-child(even) .afeat__tag { left: auto; right: 22px; }

.afeat__body .eyebrow { color: var(--blue-600); }
.afeat__body h2, .afeat__body h3 { font-size: var(--t-2xl); margin-top: var(--s2); }
.afeat__lead {
  font-size: var(--t-lg); color: var(--navy-800); font-weight: 600;
  line-height: 1.5; margin-top: var(--s4);
}
.afeat__body > p { color: var(--ink-muted); margin-top: var(--s4); max-width: 62ch; }
.afeat__body > p strong { color: var(--navy-800); font-weight: 600; }
.afeat__chip {
  display: inline-flex; align-items: center; gap: .5em; margin-top: var(--s5);
  padding: .55em .9em; border-radius: var(--r-pill, 999px);
  background: var(--green-50); border: 1px solid #bfe3cd; color: var(--green-700);
  font-family: var(--font-head); font-weight: 600; font-size: var(--t-sm);
}
.afeat__chip svg { width: 16px; height: 16px; flex-shrink: 0; }
.afeat__chip.is-blue { background: var(--blue-50); border-color: var(--blue-100); color: var(--blue-700); }

@media (max-width: 960px) {
  .afeat { grid-template-columns: 1fr; }
  .afeat:nth-child(even) .afeat__media { order: 0; }
  .afeat:nth-child(even) .afeat__tag { left: 22px; right: auto; }
}

/* ==========================================================================
   QUALITY OVERVIEW — editorial panel: fact strip + iconed sub-sections
   ========================================================================== */
.qpanel {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--sh-md); overflow: hidden;
}
.qpanel__head {
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
  background:
    radial-gradient(600px 200px at 100% 0%, rgba(0,87,184,.06), transparent 70%),
    var(--bg-alt);
  border-bottom: 1px solid var(--line);
}
.qpanel__head .eyebrow { color: var(--blue-600); }
.qpanel__head h2 { font-size: var(--t-2xl); margin-top: var(--s2); max-width: 24ch; }
.qpanel__facts {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s4);
  margin-top: var(--s6);
}
.qfact { display: flex; flex-direction: column; gap: .3rem; }
.qfact__ico { width: 34px; height: 34px; border-radius: var(--r-sm); display: grid; place-items: center;
  background: var(--bg); border: 1px solid var(--line); color: var(--blue-700); }
.qfact__ico svg { width: 17px; height: 17px; }
.qfact b { font-family: var(--font-head); font-weight: 700; font-size: var(--t-md); color: var(--navy-900); line-height: 1.15; }
.qfact span { font-size: var(--t-xs); color: var(--ink-muted); line-height: 1.35; }

.qpanel__body { padding: clamp(1.25rem, 3vw, 2.5rem); }
.qsec {
  display: grid; grid-template-columns: 52px minmax(0,1fr) 264px;
  gap: var(--s4) var(--s6); padding-block: var(--s7); border-top: 1px solid var(--line);
  align-items: start;
}
.qsec:first-child { border-top: 0; padding-top: var(--s2); }
.qsec:last-child { padding-bottom: var(--s2); }
.qsec__ico {
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  background: var(--blue-50); border: 1px solid var(--blue-100); color: var(--blue-700);
}
.qsec__ico svg { width: 24px; height: 24px; }
.qsec__text h3 { font-size: var(--t-xl); }
.qsec__text > p { color: var(--ink-muted); margin-top: var(--s3); }

/* aside panel that fills the space beside the copy */
.qsec__aside {
  background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: var(--s4);
}
.qsec__aside h4 {
  font-family: var(--font-head); font-size: var(--t-xs); font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink-subtle);
  margin-bottom: var(--s3); padding-bottom: var(--s3); border-bottom: 1px solid var(--line);
}
.qaside-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s2); }
.qaside-grid.is-list { grid-template-columns: 1fr; }
.qaside-tile {
  display: flex; align-items: center; gap: .55rem;
  padding: .5rem .55rem; background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-sm);
  font-family: var(--font-head); font-weight: 600; font-size: var(--t-xs); color: var(--navy-900);
  line-height: 1.25;
}
.qaside-tile .lm {
  width: 24px; height: 24px; border-radius: 5px; flex-shrink: 0; overflow: hidden;
  display: grid; place-items: center;
}
.qaside-tile .lm svg { width: 100%; height: 100%; display: block; }
.qaside-tile .lm.is-flag { border: 1px solid rgba(0,0,0,.1); }

@media (max-width: 1000px) {
  .qsec { grid-template-columns: 52px minmax(0,1fr); }
  .qsec__aside { grid-column: 1 / -1; }
  .qaside-grid { grid-template-columns: repeat(4, 1fr); }
  .qaside-grid.is-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 800px) {
  .qpanel__facts { grid-template-columns: repeat(2, 1fr); }
  .qsec { grid-template-columns: 1fr; gap: var(--s3); }
  .qsec__ico { width: 44px; height: 44px; }
  .qaside-grid, .qaside-grid.is-list { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   LOGO CHIPS — flag / product marks inside the quality panel
   ========================================================================== */
.qsec__logos { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: var(--s4); }
.logo-chip {
  display: inline-flex; align-items: center; gap: .5em;
  padding: .34em .7em .34em .38em; border-radius: var(--r-sm);
  background: var(--bg); border: 1px solid var(--line-strong);
  font-family: var(--font-head); font-weight: 600; font-size: var(--t-xs); color: var(--navy-900);
}
.logo-chip .lm {
  width: 22px; height: 22px; border-radius: 5px; flex-shrink: 0; overflow: hidden;
  display: grid; place-items: center;
}
.logo-chip .lm svg { width: 100%; height: 100%; display: block; }
.logo-chip .lm.is-flag { border: 1px solid rgba(0,0,0,.08); }

/* ==========================================================================
   FACT GRID — .pk registry factsheet cards (key/value tables, styled)
   ========================================================================== */
.fact-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: var(--s4); }
.fact-card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden;
}
.fact-card__head {
  display: flex; align-items: center; gap: .6rem;
  padding: .9rem 1.1rem; background: var(--navy-900); color: #fff;
}
.fact-card__head svg { width: 18px; height: 18px; color: #8fb4f0; flex-shrink: 0; }
.fact-card__head h3 { font-size: var(--t-base); color: #fff; }
.fact-card dl { display: grid; }
.fact-card div {
  display: grid; grid-template-columns: 1fr auto; gap: var(--s3);
  padding: .7rem 1.1rem; border-top: 1px solid var(--line); align-items: baseline;
}
.fact-card div:first-child { border-top: 0; }
.fact-card dt { font-size: var(--t-sm); color: var(--ink-muted); }
.fact-card dd {
  font-family: var(--font-head); font-weight: 600; font-size: var(--t-sm);
  color: var(--navy-900); text-align: right;
}
.fact-card dd.is-yes { color: var(--green-700); }
.fact-card dd.is-no { color: var(--ink-subtle); }
.fact-card.is-req dl { grid-template-columns: 1fr 1fr; }
.fact-card.is-req div { grid-template-columns: 1fr; border-left: 1px solid var(--line); }
.fact-card.is-req div:nth-child(2n+1) { border-left: 0; }
.fact-card.is-req dt {
  display: flex; align-items: center; gap: .5em; color: var(--navy-800);
  font-family: var(--font-head); font-weight: 500;
}
.fact-card.is-req dt::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--blue-500); flex-shrink: 0;
}
@media (max-width: 900px) { .fact-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 600px) { .fact-grid { grid-template-columns: 1fr; } .fact-card.is-req dl { grid-template-columns: 1fr; } .fact-card.is-req div { border-left: 0; } }

/* ==========================================================================
   DOC CARDS — downloadable sample letters / affidavits
   ========================================================================== */
.doc-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: var(--s4); }
.doc-card {
  display: flex; flex-direction: column; gap: var(--s3);
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-md); padding: var(--s5);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.doc-card:hover { border-color: var(--blue-500); box-shadow: var(--sh-sm); }
.doc-card__ico {
  width: 44px; height: 44px; border-radius: var(--r-sm); display: grid; place-items: center;
  background: var(--blue-50); border: 1px solid var(--blue-100); color: var(--blue-700);
}
.doc-card__ico svg { width: 22px; height: 22px; }
.doc-card h4 { font-size: var(--t-base); }
.doc-card p { font-size: var(--t-sm); color: var(--ink-muted); flex: 1; line-height: 1.5; }
.doc-card .link { font-size: var(--t-sm); }
.doc-card .doc-type { font-family: var(--font-mono); font-size: .7rem; color: var(--ink-subtle); text-transform: uppercase; letter-spacing: .06em; }
@media (max-width: 860px) { .doc-grid { grid-template-columns: 1fr; } }

/* Big TLD emblem for the hero */
.tld-hero {
  position: relative; background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--sh-md); padding: clamp(1.5rem, 3vw, 2.25rem);
}
.tld-hero__badge {
  font-family: var(--font-head); font-weight: 700; letter-spacing: -.03em;
  font-size: clamp(2.4rem, 2rem + 3vw, 3.6rem); color: var(--navy-900); line-height: 1;
}
.tld-hero__badge em { font-style: normal; color: var(--blue-600); }
.tld-hero__row {
  display: grid; grid-template-columns: 1fr auto auto; gap: var(--s3); align-items: center;
  padding: .7rem 0; border-bottom: 1px solid var(--line); font-size: var(--t-sm);
}
.tld-hero__row:last-of-type { border-bottom: 0; }
.tld-hero__row code { font-family: var(--font-mono); color: var(--navy-900); }
.tld-hero__row .ok { display: inline-flex; align-items: center; gap: .3em; color: var(--green-600); font-family: var(--font-head); font-weight: 700; font-size: var(--t-xs); text-transform: uppercase; letter-spacing: .03em; }
.tld-hero__row .ok svg { width: 13px; height: 13px; }
.tld-hero__row .pr { font-family: var(--font-num); font-weight: 600; font-variant-numeric: tabular-nums; color: var(--navy-900); }

/* TLD select inside the search form (domains.html hero) */
.search-form .tld-select {
  border: 0; border-left: 1px solid var(--line); background: var(--bg-alt);
  font-family: var(--font-num); font-weight: 600; color: var(--navy-900);
  padding: 0 1rem; cursor: pointer; min-width: 96px;
}
.search-form .tld-select:focus { outline: none; background: var(--blue-50); }
@media (max-width: 620px) {
  .search-form .tld-select { border-left: 0; border-top: 1px solid var(--line); padding-block: .7rem; width: 100%; }
}

/* ==========================================================================
   INCLUDED / CAPABILITY GRID — grouped feature cards
   ========================================================================== */
.incl-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: var(--s4); }
.incl-card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: var(--s5);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.incl-card:hover { border-color: var(--line-strong); box-shadow: var(--sh-sm); }
.incl-card__head { display: flex; align-items: center; gap: .7rem; padding-bottom: var(--s4);
  margin-bottom: var(--s4); border-bottom: 1px solid var(--line); }
.incl-card__ico {
  width: 38px; height: 38px; border-radius: var(--r-sm); flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--blue-50); border: 1px solid var(--blue-100); color: var(--blue-700);
}
.incl-card__ico svg { width: 19px; height: 19px; }
.incl-card__head h3 { font-size: var(--t-base); line-height: 1.25; }
.incl-card ul { display: grid; gap: .7rem; }
.incl-card li { display: grid; grid-template-columns: 16px 1fr; gap: .55rem; align-items: start;
  font-size: var(--t-sm); color: var(--ink-muted); line-height: 1.4; }
.incl-card li svg { width: 15px; height: 15px; color: var(--green-600); margin-top: 3px; }
@media (max-width: 1000px) { .incl-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 520px) { .incl-grid { grid-template-columns: 1fr; } }

/* highlighted row in a domain price table (the current extension) */
.data-table tr.is-current { background: var(--blue-50) !important; }
.data-table tr.is-current .c-ext { color: var(--blue-700); }
.data-table tr.is-current .c-here {
  font-family: var(--font-head); font-weight: 600; font-size: var(--t-xs);
  letter-spacing: .04em; text-transform: uppercase; color: var(--blue-700);
}

/* ==========================================================================
   DETAIL ROWS — alternating illustration + verbatim explainer
   (used for the per-extension "In detail" section)
   ========================================================================== */
.dtl-wrap { display: grid; gap: clamp(2.5rem, 5vw, 4rem); }
.dtl-row { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.dtl-row:nth-child(even) .dtl-row__art { order: 2; }
@media (min-width: 901px) { .dtl-row__art { position: sticky; top: 96px; } }
.dtl-row__art {
  position: relative;
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--sh-md); padding: clamp(1rem, 2.5vw, 1.75rem); overflow: hidden;
}
.dtl-row__art::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: var(--blue-600);
}
.dtl-row__art svg { width: 100%; height: auto; display: block; }
.dtl-row__body .eyebrow { color: var(--blue-600); }
.dtl-row__body h3 { font-size: var(--t-xl); margin-top: var(--s2); }
.dtl-row__body > p { color: var(--ink-muted); margin-top: var(--s4); }
.dtl-facts { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: var(--s5); }
.dtl-facts span {
  display: inline-flex; align-items: center; gap: .45em;
  padding: .4em .8em; border-radius: var(--r-pill, 999px);
  background: var(--blue-50); border: 1px solid var(--blue-100); color: var(--blue-700);
  font-family: var(--font-head); font-weight: 600; font-size: var(--t-xs);
}
.dtl-facts span svg { width: 14px; height: 14px; flex-shrink: 0; }
.dtl-facts span.is-green { background: var(--green-50); border-color: #bfe3cd; color: var(--green-700); }
@media (max-width: 940px) {
  .dtl-row { grid-template-columns: 1fr; }
  .dtl-row:nth-child(even) .dtl-row__art { order: 0; }
}

/* ==========================================================================
   CONTACT FORM
   ========================================================================== */
.contact-form { margin-top: var(--s5); }
.contact-form .cf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s4); }
.cf-field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: var(--s4); }
.cf-field label { font-family: var(--font-head); font-weight: 600; font-size: var(--t-sm); color: var(--navy-900); }
.cf-field label span { color: var(--red-600); }
.cf-field input, .cf-field textarea {
  border: 1px solid var(--line-strong); border-radius: var(--r-sm);
  padding: .7rem .85rem; font-size: var(--t-base); color: var(--ink); background: var(--bg);
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.cf-field input:focus, .cf-field textarea:focus {
  outline: none; border-color: var(--blue-600); box-shadow: 0 0 0 3px var(--blue-100);
}
.cf-field input[aria-invalid="true"], .cf-field textarea[aria-invalid="true"] {
  border-color: var(--red-600); background: var(--red-50);
}
.cf-field textarea { resize: vertical; min-height: 120px; }
.contact-form .g-recaptcha { margin-top: var(--s4); min-height: 78px; }
@media (max-width: 560px) { .contact-form .cf-grid { grid-template-columns: 1fr; } }

/* ===== Digital marketing — hero topic chips + article lead ===== */
.hero-chips {
  list-style: none; display: flex; flex-wrap: wrap; gap: .5rem;
  margin: 1.5rem 0 0; padding: 0;
}
.hero-chips li {
  font-family: var(--font-head); font-size: .78rem; font-weight: 500;
  color: var(--ink-muted); background: var(--bg-alt);
  border: 1px solid var(--line); border-radius: 999px;
  padding: .3em .8em;
}
.prose .lead-para {
  font-size: var(--t-lg); line-height: 1.65; color: var(--ink);
  margin-bottom: var(--s6);
}

/* ============================================================
   cloud-host.html — SSD plan comparison table
   ============================================================ */
.ssd-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-md);
  background: var(--bg); -webkit-overflow-scrolling: touch; }
.ssd-table { width: 100%; border-collapse: collapse; min-width: 720px; font-size: var(--t-sm); }
.ssd-table caption { text-align: left; }
.ssd-table th, .ssd-table td { padding: .7rem .85rem; text-align: center; border-bottom: 1px solid var(--line); }
.ssd-table thead th { vertical-align: bottom; background: var(--bg-alt); border-bottom: 2px solid var(--line-strong); }
.ssd-table tbody th[scope="row"] { text-align: left; font-weight: 500; color: var(--ink);
  white-space: nowrap; display: flex; align-items: center; gap: .5rem; }
.ssd-table tbody th[scope="row"] svg { width: 16px; height: 16px; color: var(--blue-600); flex: none; }
.ssd-table td { font-variant-numeric: tabular-nums; font-family: var(--font-num); color: var(--ink-muted); }
.ssd-table .tick { color: var(--green-600); }
.ssd-table .pl-name { display: block; font-family: var(--font-head); font-weight: 700;
  font-size: var(--t-base); color: var(--navy-900); letter-spacing: -.01em; }
.ssd-table .pl-price { display: block; font-family: var(--font-num); font-weight: 700;
  font-size: 1.15rem; color: var(--blue-700); margin-top: .3rem; }
.ssd-table .pl-price small { font-weight: 500; font-size: .7rem; color: var(--ink-subtle); }
.ssd-table .pl-reg { display: block; font-size: .72rem; color: var(--ink-subtle);
  text-decoration: line-through; margin-top: .1rem; }
.ssd-table th.is-featured, .ssd-table td.is-featured { background: var(--blue-50); }
.ssd-table thead th.is-featured { box-shadow: inset 0 3px 0 var(--blue-600); }
.ssd-table__buy td { padding-top: 1rem; padding-bottom: 1rem; }
.ssd-fineprint { margin-top: 1rem; font-size: var(--t-sm); color: var(--ink-subtle); }
.ssd-upsell { margin-top: 2rem; display: flex; align-items: center; gap: 1.1rem;
  padding: 1.25rem 1.4rem; background: var(--bg); border: 1px solid var(--line);
  border-left: 3px solid var(--blue-600); border-radius: var(--r-sm); }
.ssd-upsell svg { width: 26px; height: 26px; color: var(--blue-600); flex: none; }
.ssd-upsell p { margin: 0; font-size: var(--t-sm); color: var(--ink-muted); }
.ssd-upsell .btn { flex: none; }
@media (max-width: 720px) { .ssd-upsell { flex-wrap: wrap; } }

/* ============================================================
   cloud-host.html — .scale-cta  (new closing section)
   a light panel: copy + a bordered "resources follow traffic"
   chart, then three outcome items. Distinct from .cta-card.
   ============================================================ */
.scale-cta { padding: var(--s10) 0; background: var(--bg-alt);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.scale-cta__inner { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center; }
.scale-cta__head h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); line-height: 1.12;
  letter-spacing: -.02em; color: var(--navy-900); margin: .4rem 0 0; }
.scale-cta__head p { margin: 1rem 0 0; color: var(--ink-muted); max-width: 44ch; }
.scale-cta__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.75rem; }
.scale-cta__viz { margin: 0; }
.scale-cta__viz svg { width: 100%; height: auto; display: block;
  border: 1px solid var(--line); border-radius: var(--r-md); background: var(--bg);
  box-shadow: var(--sh-sm); }
.scale-cta__viz figcaption { margin-top: .7rem; font-size: var(--t-sm); color: var(--ink-subtle);
  text-align: center; }
.scale-cta__out { list-style: none; margin: var(--s8) 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.scale-cta__out li { padding: 1.25rem 1.3rem; background: var(--bg);
  border: 1px solid var(--line); border-radius: var(--r-sm); }
.scale-cta__out .sc-ico { display: grid; place-items: center; width: 38px; height: 38px;
  border-radius: var(--r-xs); background: var(--green-50); color: var(--green-600); margin-bottom: .7rem; }
.scale-cta__out .sc-ico svg { width: 20px; height: 20px; }
.scale-cta__out b { display: block; font-family: var(--font-head); font-size: var(--t-base);
  color: var(--navy-900); margin-bottom: .3rem; }
.scale-cta__out span { font-size: var(--t-sm); color: var(--ink-muted); line-height: 1.55; }
@media (max-width: 900px) {
  .scale-cta__inner { grid-template-columns: 1fr; }
  .scale-cta__out { grid-template-columns: 1fr; gap: .8rem; }
}
