/* Server Surgeon — design system
   Tokens, base elements, components. One file by design.
   See DESIGN_SPEC.md §2–§5. */

/* -------- 0. Fonts: self-hosted Inter (variable, latin subset) --------
   The font-family stacks below already lead with "Inter"; this @font-face
   activates it. font-display:swap shows the system fallback instantly and
   swaps in Inter when it loads (preloaded in base.njk, so the swap is fast). */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;   /* variable weight axis — covers 400–800 used across the site */
  font-display: swap;
  src: url('/images/fonts/inter-latin-wght-normal.woff2') format('woff2');
}

/* -------- 1. Tokens -------- */
:root {
  --bg:           #FFFFFF;
  --bg-alt:       #F7F8FA;
  --bg-dark:      #0F1A2B;
  --ink:          #1A2233;
  --ink-soft:     #54606F;
  --ink-muted:    #6B7280; /* darkened for WCAG AA on light bg (4.5:1); was #8A92A0 */
  --ink-on-dark:  #8A92A0; /* muted grey for text on the dark hero/terminal */
  --rule:         #E5E8EE;
  --brand:        #2F5D8D;
  --brand-strong: #1F3F65;
  --accent:       #0EA5A5;
  --accent-ink:   #0A7373; /* darker teal for small text / tints on light bg — meets WCAG AA (4.5:1) where --accent (3:1) fails */
  --success:      #16A34A;
  --warn:         #F59E0B;

  --radius-sm:   2px;  /* buttons, inputs              */
  --radius-md:   0;    /* containers / cards (square)  */
  --radius-lg:   0;    /* large containers (square)    */
  --radius-pill: 2px;  /* squared "tag" badges / chips */
  --shadow-sm: 0 1px 3px rgba(15,26,43,.08), 0 6px 16px -4px rgba(15,26,43,.10);
  --shadow-md: 0 2px 4px rgba(15,26,43,.06), 0 12px 32px -8px rgba(15,26,43,.16);
  --shadow-lg: 0 4px 8px rgba(15,26,43,.08), 0 30px 60px -16px rgba(15,26,43,.25);
  --shadow-brand: 0 1px 2px rgba(15,26,43,.10), 0 6px 16px -4px rgba(47,93,141,.35);

  --container: 1200px;
  --pad-x:     24px;
  --section-y: 96px;
}

@media (max-width: 768px) {
  :root { --pad-x: 16px; --section-y: 64px; }
}

/* -------- 2. Reset / base -------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-strong); text-decoration: underline; }
/* WCAG 1.4.1 — links inside running text must be distinguishable by more than color */
.lead a, .container-narrow p a, .order-foot-help a, .deep-dive-prose a,
.includes-card p a, .problem-fix a, .cfg-backup-note a, .cbf-wide a { text-decoration: underline; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

/* Skip link for screen readers */
.skip-link {
  position: absolute; left: -9999px; top: 8px;
  background: var(--brand); color: #fff; padding: 8px 16px;
  border-radius: var(--radius-sm); z-index: 9999;
}
.skip-link:focus { left: 8px; }

/* -------- 3. Typography --------
   Fluid scale (§14.5): clamp() replaces the old breakpoint jumps so H1/H2
   scale smoothly from small phones through desktops. Display polish (§14.1):
   tighter tracking + 750 weight so big headlines feel considered; Inter is
   variable-weight and falls back cleanly to 700 on system fonts. */
h1, h2, h3, h4 { color: var(--ink); margin: 0 0 .5em; line-height: 1.2; }
h1, h2 { letter-spacing: -0.02em; font-weight: 750; }
h1 { font-size: clamp(2rem, 1.5rem + 3vw, 3.5rem); line-height: 1.1; }
h2 { font-size: clamp(1.75rem, 1.25rem + 2vw, 2.25rem); }
h3 { font-size: 1.5rem; font-weight: 600; line-height: 1.3; }
h4 { font-size: 1.125rem; font-weight: 600; line-height: 1.4; }
p  { margin: 0 0 1em; color: var(--ink-soft); }
.eyebrow {
  display: inline-block;
  font-size: 0.8125rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--accent-ink); margin: 0 0 12px;
}
.lead { font-size: 1.1875rem; color: var(--ink-soft); max-width: 720px; }

/* §14.2 — global :focus-visible ring using the accent.
   Keyboard users get a clearly branded outline everywhere. */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

/* §15.4 — Viewport-enter motion for section headers. JS toggles .in-view
   on intersection; CSS handles the 8px rise + opacity ramp. Respects
   prefers-reduced-motion by disabling the initial offset + transition. */
.reveal {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .5s ease, transform .5s ease;
  will-change: opacity, transform;
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* -------- 4. Layout -------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad-x); }
.section { padding: var(--section-y) 0; background: var(--bg); }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--bg-dark); color: #DBE0E8; }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }
.section-header { text-align: center; max-width: 760px; margin: 0 auto var(--section-y); }
.section-header.tight { margin-bottom: 48px; }

.grid { display: grid; gap: 32px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.grid-5 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

/* -------- 5. Buttons -------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600; font-size: 1rem; line-height: 1;
  border: 1.5px solid transparent;
  transition: background .15s, color .15s, border-color .15s, transform .15s, box-shadow .15s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn-primary  { background: var(--brand); color: #fff; box-shadow: var(--shadow-brand); }
.btn-primary:hover  { background: var(--brand-strong); color: #fff; transform: translateY(-1px); box-shadow: 0 2px 4px rgba(15,26,43,.12), 0 10px 24px -6px rgba(47,93,141,.45); }
.btn-outline  { background: transparent; color: var(--brand); border-color: var(--brand); }
.btn-outline:hover  { background: var(--brand); color: #fff; box-shadow: var(--shadow-brand); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* -------- Breadcrumb (§9.2) -------- */
/* Rendered in base.njk directly under the header when the page frontmatter
   defines `breadcrumb`. Muted styling — orientation aid, not a CTA. The
   JSON-LD BreadcrumbList is emitted separately in the base layout. */
.crumb {
  background: #fff;
  border-bottom: 1px solid var(--rule);
  font-size: 0.875rem;
}
.crumb ol {
  list-style: none; margin: 0 auto; padding: 10px var(--pad-x);
  display: flex; flex-wrap: wrap; gap: 4px 8px;
  max-width: var(--container);
}
.crumb li { display: inline-flex; align-items: center; color: var(--ink-soft); }
.crumb li + li::before {
  content: "\203A";
  margin-right: 8px;
  color: var(--ink-muted);
  font-size: 1rem; line-height: 1;
}
.crumb a { color: var(--ink-soft); text-decoration: none; }
.crumb a:hover { color: var(--brand); text-decoration: underline; }
.crumb [aria-current="page"] { color: var(--ink); font-weight: 500; }

/* -------- 6. Header / nav -------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--rule);
}
@media (min-width: 900px) {
  .site-header {
    background: rgba(255,255,255,0.96);
    backdrop-filter: saturate(180%) blur(8px);
  }
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 72px; gap: 20px;
}
.site-header .logo { flex: 0 0 auto; }
.site-header .logo img { height: 43px; width: auto; max-width: none; display: block; }
.nav-toggle {
  display: none;
  flex: 0 0 auto;
  background: transparent; border: 1px solid var(--rule);
  padding: 11px 15px; min-height: 50px; border-radius: var(--radius-sm); color: var(--ink);
}
.nav-toggle svg { width: 28px; height: 28px; }
.nav-toggle:hover { border-color: var(--brand); color: var(--brand); }
.primary-nav { display: flex; align-items: center; gap: 6px; }
.primary-nav > ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; align-items: center; gap: 4px;
}
.primary-nav a {
  display: inline-block; padding: 10px 11px;
  color: var(--ink); font-weight: 500; font-size: 0.9375rem;
  border-radius: var(--radius-sm);
  position: relative;
  white-space: nowrap;
}
.primary-nav a:hover { background: var(--bg-alt); color: var(--brand); text-decoration: none; }
/* §14.2 — accent-teal underline on nav hover.
   Pairs the pre-existing accent-tint background on active links with a
   keyboard/mouse hover cue in the same teal. */
.primary-nav > ul > li > a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: left center;
  transition: transform .18s ease;
}
.primary-nav > ul > li > a:hover::after,
.primary-nav > ul > li > a:focus-visible::after,
.primary-nav > ul > li > a[aria-current="page"]::after { transform: scaleX(1); }
.primary-nav a[aria-current="page"] {
  color: var(--brand);
  background: rgba(14,165,165,0.10);
  font-weight: 600;
}
.has-dropdown { position: relative; }
.dropdown-toggle::after {
  content: ''; display: inline-block; margin-left: 6px;
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}
.dropdown {
  position: absolute; top: 100%; left: 0; min-width: 280px;
  background: #fff; border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 8px; margin-top: 8px;
  list-style: none;
  opacity: 0; visibility: hidden;
  transform: translateY(-4px);
  transition: opacity .15s, transform .15s, visibility .15s;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown a {
  display: block; padding: 10px 14px;
  font-size: 0.9375rem;
  border-radius: var(--radius-sm);
}

/* Mega-menu variant for the Server Management dropdown */
.mega-menu {
  min-width: 660px;
  padding: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(3, auto);
  gap: 4px;
}
/* Six spokes (cPanel, Plesk, DirectAdmin, Virtualmin, AWS, Cloud) auto-flow
   row-by-row into the 2-column grid above → 3 even rows. */
.mega-menu-item {
  display: flex !important;
  flex-direction: column;     /* logo on top, text beneath */
  align-items: flex-start;
  gap: 10px;
  padding: 14px !important;
  border-radius: var(--radius-sm);
  text-decoration: none;
}
.mega-menu-item:hover { background: var(--bg-alt); text-decoration: none; }
.mega-menu-item[aria-current="page"] {
  background: rgba(14,165,165,0.08);
  box-shadow: inset 3px 0 0 var(--accent);
}
.mega-menu-item img {
  height: 38px; width: auto; max-width: 180px; object-fit: contain;
}
/* cPanel is a pure wordmark (no icon/tagline), so at the shared height its
   letters read larger than the others — bring it down to match their size. */
.mega-menu-item img[src*="cpanel"] { height: 27px; }
.mega-menu-text { display: block; line-height: 1.35; min-width: 0; }
.mega-menu-title {
  display: block;
  color: var(--ink); font-weight: 600; font-size: 0.9375rem;
  margin-bottom: 2px;
}
.mega-menu-item[aria-current="page"] .mega-menu-title { color: var(--brand); }
.mega-menu-desc {
  display: block;
  color: var(--ink-soft); font-size: 0.8125rem;
  white-space: normal;
}
.header-cta { display: flex; gap: 8px; align-items: center; }

@media (max-width: 899px) {
  /* order:1 pushes the hamburger to the far right; the logo (left) and the
     header CTA (now just "Order Now") fall left/centre via space-between, so
     the row reads logo · Order Now · ☰ (owner direction 2026-06-17). */
  .nav-toggle { display: inline-flex; align-items: center; gap: 8px; order: 1; }
  .primary-nav {
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    flex-direction: column; align-items: stretch;
    background: #fff;
    padding: 16px;
    overflow-y: auto;
    border-top: 1px solid var(--rule);
    transform: translateY(-12px);
    opacity: 0; visibility: hidden;
    /* Closed drawer must not intercept taps. The .dropdown below sets
       visibility:visible (to stay expanded when open), which would
       otherwise override this parent's visibility:hidden and leave the
       invisible mega-menu links clickable over the whole page on mobile.
       pointer-events:none is inherited by those children and blocks it. */
    pointer-events: none;
    transition: opacity .15s, transform .15s, visibility .15s;
  }
  .primary-nav.open { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
  .primary-nav > ul {
    flex-direction: column; align-items: stretch; gap: 0; width: 100%;
  }
  .primary-nav a { padding: 14px 16px; border-bottom: 1px solid var(--rule); border-radius: 0; }
  .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; margin: 0; padding: 0 0 0 16px;
    min-width: 0;
  }
  .mega-menu { display: block; gap: 0; padding: 0 0 0 16px; min-width: 0; }
  .mega-menu-item { flex-direction: row; align-items: center; gap: 12px; padding: 12px 16px !important; }
  .mega-menu-item img { height: 20px; width: auto; max-width: 80px; flex: 0 0 auto; }
  .mega-menu-text { flex: 1; min-width: 0; white-space: normal; }
  .mega-menu-desc { display: none; }
}
/* §9.1 — Desktop nav degradation. The full bar is:
     logo · Server Management · Backups · Pricing · About · Contact · Support ·
     FAQ · [Contact Sales] [Order Now].
   As the viewport narrows it sheds gracefully before collapsing (owner
   direction 2026-06-17); breakpoints measured against the live layout so each
   tier keeps a single uncramped row up to the next step:
     1) ≤1199  drop the "Contact Sales" button (the full bar with both buttons +
               the +20% logo only fits in the 1200px-capped container)
     2)  ≤989  compact tier — tighter link padding / gaps / type, same links
     ≤899     collapse to the hamburger drawer (covers phones + portrait
              tablets; all links — incl. the .nav-* ones — return in the drawer).
   The earlier per-link shed (FAQ→About→Contact) was removed when the drawer was
   raised to 899px: those links only needed dropping below ~809px, which is now
   inside drawer territory. Each nav link also lives in the footer. */

/* Step 1 — shed the secondary CTA first. */
@media (max-width: 1199px) {
  .header-cta .btn-outline { display: none; }
}

/* Step 2 — compact tier: same set of links, tightened metrics. Floored at
   900px so it never fights the hamburger drawer (≤899). */
@media (min-width: 900px) and (max-width: 989px) {
  .site-header .container { gap: 12px; }
  .primary-nav > ul { gap: 0; }
  .primary-nav a { padding: 10px 8px; font-size: 0.875rem; }
  .primary-nav > ul > li > a::after { left: 10px; right: 10px; }
}
/* §9.2 — Phones: keep the wordmark crisp and undistorted by making room for
   it rather than letting it squeeze. Step the logo down to a still-legible
   size, tighten the row gap/padding, and collapse the hamburger to its icon
   (its accessible name is preserved by the button's aria-label) so the logo +
   Order Now + toggle fit without compressing the logo. */
@media (max-width: 480px) {
  .site-header .container { gap: 12px; padding-left: 14px; padding-right: 14px; }
  .site-header .logo img { height: 36px; }
  .nav-toggle { padding: 12px; }      /* icon-only square ~52px — comfortable thumb target */
  .nav-toggle span { display: none; }
}
/* §9.3 — Ultra-narrow (small folds, deep desktop drags): the logo + Order Now
   + hamburger can no longer share the row, so drop the header Order Now button
   (ordering is still reachable via the in-page CTAs) and give the logo +
   hamburger the row. The hamburger's flex:0 0 auto guarantees it never
   shrinks, so it stays a full tap target down to the narrowest widths. */
@media (max-width: 340px) {
  .site-header .header-cta { display: none; }
}

/* §13.2 — Mobile: stack final-CTA buttons full-width so they read as
   definitive touch targets instead of cramped 45% columns. */
@media (max-width: 480px) {
  .final-cta .btn-row { flex-direction: column; align-items: stretch; gap: 10px; }
  .final-cta .btn-row .btn { width: 100%; justify-content: center; }
}

@keyframes hero-status-pulse {
  0%, 100% { opacity: 0.95; }
  50%      { opacity: 0.35; }
}

/* Live pulse dot inside the eyebrow — used by `.hero-navy-eyebrow` in the
   management-page hero. Reuses the @keyframes hero-status-pulse animation
   defined above. aria-hidden in the template. */
.hero-live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent) 25%, transparent);
  animation: hero-status-pulse 2.4s ease-in-out infinite;
}

/* -------- 8b. HERO — navy (management pages; markup inlined in mgmt-page.njk) --------
   Two-column navy hero shared by all 5 management pages: brand intro + white
   panel logo on the left, the $65 offer (price, discounts, "what's included"
   checklist, CTAs, phone) on the right — no card, separated by a divider rule.
   Compressed padding/spacing keeps it above the fold on desktop. The feature
   checklist is column-major: first three items fill the left column top-to-
   bottom, the next three the right (see .hero-navy-features). */
.hero-navy {
  position: relative;
  background:
    radial-gradient(120% 95% at 84% 0%, rgba(14,165,165,0.16), transparent 60%),
    radial-gradient(90% 80% at 0% 100%, rgba(47,93,141,0.32), transparent 55%),
    var(--bg-dark);
  color: #C7D0DC;
  padding: 54px 0 50px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
.hero-navy .container { max-width: 1180px; }
.hero-navy-grid {
  display: grid;
  grid-template-columns: 1fr 1.02fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-navy-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* left column — light-on-navy */
.hero-navy-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 0 0 14px;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent);
}
.hero-navy-h1 {
  font-size: clamp(2.1rem, 3.4vw, 3rem);
  margin: 0 0 14px; line-height: 1.07; letter-spacing: -0.025em;
  color: #fff;
}
.hero-navy-lead {
  font-size: 1.125rem; color: #aab4c2;
  margin: 0 0 26px; line-height: 1.5;
  max-width: 520px;
}
.hero-navy-mark {
  width: auto; max-width: 290px; max-height: 56px;
  height: auto; object-fit: contain; display: block; margin: 0;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.35));
}

/* right offer — no card, divider rule, light-on-navy */
.hero-navy-offer {
  align-self: center;
  padding: 2px 0 2px 44px;
  border-left: 1px solid rgba(255,255,255,0.14);
  color: #C7D0DC;
}
@media (max-width: 980px) {
  .hero-navy-offer { padding-left: 0; border-left: 0; }
}
.hero-navy-price { display: flex; align-items: baseline; gap: 8px; margin: 0 0 8px; }
.hero-navy-price-amount {
  font-size: 2.75rem; font-weight: 800; line-height: 1; letter-spacing: -0.02em;
  color: #fff;
}
.hero-navy-price-period { font-size: 0.9375rem; font-weight: 500; color: #9aa6b6; }
.hero-navy-discount { margin: 0 0 18px; font-size: 0.875rem; line-height: 1.5; color: #cdd5e0; }
.hero-navy-discount strong { font-weight: 700; color: var(--warn); }
.hero-navy-discount a { color: #fff; font-weight: 600; text-decoration: underline; white-space: nowrap; }
.hero-navy-offer-subhead {
  margin: 0 0 12px;
  font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent);
}
/* Column-major: 2 columns × 3 rows, filled down column 1 (items 1-3) then
   column 2 (items 4-6). Collapses to a single ordered column on small screens. */
.hero-navy-features {
  list-style: none; padding: 0; margin: 0 0 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, auto);
  grid-auto-flow: column;
  gap: 9px 18px;
}
@media (max-width: 520px) {
  .hero-navy-features { grid-template-columns: 1fr; grid-template-rows: none; grid-auto-flow: row; }
}
.hero-navy-features li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 0.875rem; line-height: 1.4; color: #dbe0e8;
}
.hero-navy-features svg {
  width: 15px; height: 15px; color: var(--accent);
  flex-shrink: 0; margin-top: 3px;
}
.hero-navy-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 0 0 14px; }
.hero-navy-actions .btn { flex: 1 1 auto; justify-content: center; }
.hero-navy-phone { margin: 0; font-size: 0.875rem; color: #9aa6b6; }
.hero-navy-phone a { font-weight: 600; text-decoration: none; color: #fff; }
/* Masked phone number (partials/phone-link.njk) — keep the split spans on one line. */
.tel-num { white-space: nowrap; }
/* on-navy button treatment (white primary, white-outline secondary) */
.hero-navy-offer .btn-primary {
  background: #fff; color: var(--brand-strong);
  box-shadow: 0 1px 2px rgba(0,0,0,0.10), 0 10px 24px -8px rgba(0,0,0,0.40);
}
.hero-navy-offer .btn-primary:hover { transform: translateY(-1px); color: var(--brand-strong); }
.hero-navy-offer .btn-outline {
  color: #fff; border-color: rgba(255,255,255,0.28); background: transparent;
}
.hero-navy-offer .btn-outline:hover {
  color: #fff; border-color: #fff; background: rgba(255,255,255,0.08);
}

/* -------- 8c. INTRO — post-hero "what this service is" band (management pages)
   Left-aligned lead + a row of service chips on a section-alt band, shared by
   all 5 management pages (markup in mgmt-page.njk; per-panel h2/lead from
   panels.<key>.hero.intro). -------- */
.intro-b-h2 { max-width: 760px; }
.intro-b-lead { max-width: 760px; margin-bottom: 0; }
.intro-chips {
  list-style: none; padding: 0; margin: 22px 0 0;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.intro-chips li {
  font-size: 0.875rem; font-weight: 600; color: var(--brand-strong);
  background: #fff; border: 1px solid var(--rule);
  border-radius: var(--radius-pill); padding: 8px 16px;
}

/* -------- 9. Stat block -------- */
/* §2.3 — Compressed top/bottom padding so the band reads as part of the hero
   pitch rather than floating in a half-empty gray panel between sections. */
.stats-section { padding: 48px 0; }
@media (max-width: 768px) { .stats-section { padding: 40px 0; } }

.stats-band {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 40px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 820px) {
  .stats-band { grid-template-columns: repeat(2, 1fr); padding: 40px 24px; gap: 40px 24px; }
}
@media (max-width: 480px) {
  .stats-band { grid-template-columns: 1fr; padding: 32px 24px; gap: 32px; }
}
.stat {
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.stat-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(14,165,165,0.12);
  color: var(--accent);
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.stat-icon svg { width: 22px; height: 22px; }
.stat .num {
  font-size: 2.25rem; font-weight: 800; color: var(--brand);
  line-height: 1.05; letter-spacing: -0.015em;
  display: block; margin-bottom: 6px;
}
/* `.num-phrase` was a smaller-type override for legacy phrase-style stats
   ("Onyx & Obsidian"). Current stat values ("30-day", "Off-Host", etc.)
   are short enough to render at the default `.num` size, so the override
   was making them look orphaned. Class kept as a no-op so existing
   `phrase: true` flags in panels.js / backup.js don't need cleanup. */
.stat .num.num-phrase { /* inherit .stat .num */ }
.stat .lbl {
  display: block;
  font-size: 0.875rem; color: var(--ink-soft);
  font-weight: 500;
}

/* -------- 10. Cards -------- */
.card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.section-alt .card { background: #fff; }
.card h3 { margin-bottom: 8px; color: var(--ink); }
.card p { margin: 0; }
.card .icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(14,165,165,0.12);
  color: var(--accent);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.card .icon svg { width: 24px; height: 24px; }

/* Order callout band — used on service pages to tie long-form feature copy
   to the Order Now CTA with a visible price + discount note. */
.order-callout {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 340px);
  gap: 48px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
}
.order-callout h2 { margin-top: 0; }
.order-callout p { color: var(--ink-soft); margin: 0 0 16px; }
.order-callout .order-price {
  display: flex; align-items: baseline; gap: 8px;
  margin: 0 0 8px;
}
.order-callout .order-price-amount {
  font-size: 2.5rem; font-weight: 800; color: var(--brand);
  letter-spacing: -0.02em; line-height: 1;
}
.order-callout .order-price-period {
  font-size: 1rem; color: var(--ink-soft); font-weight: 500;
}
/* §4.2 — discount pills replace the single-line buried "save 20% / 15%" body
   copy. Amber warn-tint reads as "deal" and visually contrasts the navy
   $65 + Order Now button stack. Placed between price and buttons so the
   eye runs price → savings → CTA. */
.order-callout .order-discount-pills {
  list-style: none; padding: 0; margin: 0 0 20px;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.order-callout .order-discount-pills li {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(245,158,11,0.14);
  color: #8a5a08;
  border: 1px solid rgba(245,158,11,0.40);
  font-size: 0.8125rem; font-weight: 700;
  letter-spacing: 0.02em;
  padding: 4px 12px; border-radius: var(--radius-pill);
  text-transform: uppercase;
}
.order-callout .order-discount-pills li strong {
  color: #6b4406;
  font-weight: 800;
}

/* §4.3 — phone tel link in the CTA row. Styled as a flat text-link with
   an icon so it doesn't compete visually with the primary Order Now +
   outline Talk to Sales buttons, but is still obviously tappable. */
.order-callout .btn-tel {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--brand); font-weight: 600; font-size: 0.9375rem;
  padding: 12px 10px; border-radius: var(--radius-sm);
  text-decoration: none;
  align-self: center;
}
.order-callout .btn-tel:hover { color: var(--brand-strong); text-decoration: underline; }
.order-callout .btn-tel svg { width: 16px; height: 16px; color: var(--accent); }

/* §4.4 — trust line below CTA row, mirrors hero-meta pattern. */
.order-callout .order-meta {
  display: flex; flex-wrap: wrap; gap: 10px 22px;
  margin-top: 18px;
  font-size: 0.875rem; color: var(--ink-soft);
}
.order-callout .order-meta span { display: inline-flex; align-items: center; gap: 6px; }
.order-callout .order-meta svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }

/* §4.1 — drop the gray tile wrapper; PNG has its own whitespace. Accepts
   either an <img> (panel pages, reuses the hero logo) or an inline <svg>
   (backup page, small vault icon). */
.order-callout .order-image {
  max-width: 340px; margin: 0 auto;
}
.order-callout .order-image img,
.order-callout .order-image svg { width: 100%; height: auto; display: block; }

/* §4.5 — tiny helper footer below the callout with FAQ / contact links,
   moved out of the section lead so the lead can land short and punchy. */
.order-foot-help {
  text-align: center; margin: 20px 0 0;
  font-size: 0.9375rem; color: var(--ink-soft);
}

/* "Migrating to a new server?" reassurance near the order CTA (partials/migration-note.njk). */
.order-migration-note {
  display: flex; gap: 10px; align-items: flex-start;
  text-align: left;
  max-width: 680px; margin: 20px auto 0;
  padding: 14px 18px;
  background: var(--bg-alt);
  border: 1px solid var(--rule);
  border-radius: 12px;
  font-size: 0.9375rem; line-height: 1.55;
  color: var(--ink-soft);
}
.order-migration-note svg { flex-shrink: 0; color: var(--brand); margin-top: 3px; }
.order-migration-note strong { color: var(--ink); font-weight: 600; }

@media (max-width: 820px) {
  .order-callout { grid-template-columns: 1fr; padding: 32px; gap: 24px; }
  .order-callout .order-image { order: -1; }
}
.order-calc-count {
  width: 72px; height: 48px; border: 0;
  border-left: 1px solid var(--rule); border-right: 1px solid var(--rule);
  background: #fff; text-align: center;
  font-size: 1.25rem; font-weight: 700;
  font-feature-settings: "tnum"; color: var(--ink-strong);
}
.order-calc-count:focus { outline: 2px solid var(--brand); outline-offset: -2px; }
/* Strip number-input spinners */
.order-calc-count::-webkit-outer-spin-button,
.order-calc-count::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.order-calc-count[type=number] { -moz-appearance: textfield; }
.order-calc-term {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 14px 8px;
  background: #fff; border: 1.5px solid var(--rule);
  border-radius: var(--radius-md); cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
  font-family: inherit;
}
.order-calc-term:hover {
  border-color: color-mix(in oklab, var(--brand) 35%, var(--rule));
}
.order-calc-term:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }
.order-calc-term.is-active {
  border-color: var(--brand);
  background: color-mix(in oklab, var(--brand) 8%, #fff);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--brand) 12%, transparent);
}
.order-calc-per-server {
  font-size: 1.125rem; font-weight: 700; color: var(--ink);
  font-feature-settings: "tnum";
}
.order-calc-total {
  font-size: 2rem; font-weight: 800; color: var(--brand-strong);
  font-feature-settings: "tnum"; letter-spacing: -0.02em;
}
.order-calc-savings {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 14px 0 0; padding: 10px 14px;
  background: color-mix(in oklab, var(--accent) 12%, #fff);
  border-radius: var(--radius-sm);
  font-size: 0.875rem; color: var(--accent-strong); font-weight: 600;
}
.order-calc-savings svg { width: 16px; height: 16px; color: var(--accent); }
.order-calc-savings strong { color: var(--accent-strong); font-weight: 800; }
.order-calc-savings[hidden] { display: none; }

/* --- Variant 3: billing-term CARDS (Plesk) ----------------------------------
   4 side-by-side cards (Monthly / Quarterly / Semi-annual / Annual), with
   Annual flagged Best Value. Pricing math pre-resolved server-side; volume
   discount called out in the footer note. */
.order-terms {
  display: flex; flex-direction: column; gap: 24px;
}
.order-terms-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  align-items: stretch;
}
.order-terms-card {
  position: relative;
  display: flex; flex-direction: column; gap: 12px;
  padding: 28px 22px 22px;
  background: #fff;
  border: 1.5px solid var(--rule); border-radius: var(--radius-md);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.order-terms-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in oklab, var(--brand) 25%, var(--rule));
  box-shadow: var(--shadow-md);
}
.order-terms-card.is-recommended {
  border-color: var(--brand); border-width: 2px;
  background:
    linear-gradient(180deg,
      color-mix(in oklab, var(--brand) 7%, #fff) 0%,
      #fff 60%);
  box-shadow: 0 12px 28px -16px color-mix(in oklab, var(--brand) 35%, transparent);
}
.order-terms-card-flag {
  position: absolute; top: -14px; left: 50%;
  transform: translateX(-50%);
  padding: 5px 14px;
  background: var(--brand); color: #fff;
  font-size: 0.6875rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em;
  border-radius: var(--radius-pill); white-space: nowrap;
  box-shadow: 0 2px 6px -1px color-mix(in oklab, var(--brand) 45%, transparent);
}
.order-terms-card-name {
  font-size: 0.75rem; font-weight: 800; color: var(--ink-soft);
  text-transform: uppercase; letter-spacing: 0.1em;
}
.order-terms-card-price { display: flex; align-items: baseline; gap: 4px; flex-wrap: wrap; }
.order-terms-card-amount {
  font-size: 2.125rem; font-weight: 800; color: var(--brand-strong);
  font-feature-settings: "tnum"; letter-spacing: -0.02em; line-height: 1;
}
.order-terms-card-period {
  font-size: 0.75rem; color: var(--ink-soft); font-weight: 500;
}
.order-terms-card-tag {
  display: inline-block; width: max-content;
  padding: 3px 10px;
  background: color-mix(in oklab, var(--accent) 14%, #fff);
  color: var(--accent-strong);
  font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.05em;
  border-radius: var(--radius-pill);
}
.order-terms-card-tag-neutral {
  background: var(--paper); color: var(--ink-soft); /* was --ink-muted; WCAG AA on the light paper chip */
}
.order-terms-card-tag-strong {
  background: var(--accent-ink); color: #fff; /* darker teal so white text meets WCAG AA */
}
.order-terms-card-note {
  margin: 0; font-size: 0.875rem; color: var(--ink); line-height: 1.5;
  flex-grow: 1;
}
.order-terms-card-cta {
  margin-top: auto; justify-content: center; width: 100%;
}

.order-terms-foot {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 20px 24px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  text-align: center;
}
.order-terms-stack {
  margin: 0; font-size: 0.9375rem; color: var(--ink); line-height: 1.5;
}
.order-terms-stack strong { color: var(--brand-strong); }
.order-terms-trust {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px 22px; align-items: center;
  font-size: 0.875rem; color: var(--ink-soft);
}
.order-terms-trust > span {
  display: inline-flex; align-items: center; gap: 6px;
}
.order-terms-trust svg {
  width: 16px; height: 16px; color: var(--accent); flex-shrink: 0;
}
.order-terms-phone {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--brand); font-weight: 600; font-size: 0.9375rem;
  text-decoration: none;
}
.order-terms-phone:hover { text-decoration: underline; color: var(--brand-strong); }
.order-terms-phone svg { width: 16px; height: 16px; color: var(--accent); }

@media (max-width: 1000px) {
  .order-terms-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .order-terms-grid { grid-template-columns: 1fr; }
}

.plan-pricing-note {
  text-align: center;
  max-width: 620px;
  margin: 16px auto 0;
  font-size: 0.9375rem;
  color: var(--ink-soft);
}

/* -------- 10c. Pricing table (Linux Server Backup) --------
   Two-column tier table with right-aligned prices. Width-capped and centered
   so it reads as a focused price chart rather than a stretched-out table. */
.pricing-table-wrap {
  max-width: 720px;
  margin: 0 auto;
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.pricing-table thead {
  background: var(--bg-alt);
}
.pricing-table th {
  text-align: left;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft); /* was --ink-muted; raised for WCAG AA on the light table head */
  padding: 14px 20px;
  border-bottom: 1px solid var(--rule);
}
.pricing-table th:last-child { text-align: right; }
.pricing-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
  font-size: 1rem;
}
.pricing-table td:last-child {
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.pricing-table td strong {
  font-size: 1.0625rem;
  color: var(--ink);
  font-weight: 700;
}
.pricing-table tbody tr:last-child td { border-bottom: 0; }
.pricing-table tbody tr:hover { background: var(--bg-alt); }
.pricing-table-quote-row td:first-child { color: var(--ink-soft); font-style: italic; }
.pricing-table-quote-row td a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
}
.pricing-table-quote-row td a:hover { text-decoration: underline; color: var(--brand-strong); }
.pricing-table-note {
  text-align: center;
  margin: 18px auto 0;
  font-size: 0.9375rem;
  color: var(--ink-soft);
}
@media (max-width: 540px) {
  .pricing-table th, .pricing-table td { padding: 12px 14px; font-size: 0.9375rem; }
}

.contact-list {
  list-style: none; padding: 0; margin: 6px 0 0;
  display: flex; flex-direction: column; gap: 8px;
}
.contact-list li {
  display: flex; align-items: baseline; gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--rule);
}
.contact-list li:last-child { border-bottom: 0; }
.contact-list-label {
  flex: 0 0 130px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.contact-list a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
  font-variant-numeric: tabular-nums;
}
.contact-list a:hover { text-decoration: underline; color: var(--brand-strong); }

@media (max-width: 720px) {
  .contact-list-label { flex-basis: 100%; }
  .contact-list li { flex-wrap: wrap; gap: 4px; padding: 8px 0; }
}
.field-optional {
  font-weight: 400;
  font-size: 0.8125rem;
  color: var(--ink-muted);
}
.field-checkbox-group {
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  padding: 12px 14px 8px;
  margin: 0;
}
.field-checkbox-group legend {
  padding: 0 6px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink-strong);
}
.field-checkbox-group label {
  display: inline-flex; align-items: center; gap: 6px;
  margin: 4px 14px 4px 0;
  font-size: 0.9375rem;
  color: var(--ink);
  cursor: pointer;
}
.field-checkbox-group input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--brand);
}
.field-checkbox {
  display: flex; align-items: center; gap: 10px;
  margin-top: 14px;
}
.field-checkbox input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--brand);
}
.field-checkbox label {
  font-size: 0.9375rem;
  color: var(--ink);
  cursor: pointer;
}

.faq-search-wrap {
  position: relative;
  margin: 24px auto 0;
  max-width: 640px;
}
.faq-search-icon {
  position: absolute;
  left: 18px; top: 50%;
  transform: translateY(-50%);
  color: var(--ink-muted);
  pointer-events: none;
}
.faq-search {
  width: 100%;
  padding: 16px 56px 16px 50px;
  font-size: 1rem;
  border: 2px solid var(--rule);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--ink);
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.faq-search:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(47,93,141,.15);
}
.faq-search::-webkit-search-cancel-button { display: none; }
.faq-search-clear {
  position: absolute;
  right: 12px; top: 50%;
  transform: translateY(-50%);
  width: 32px; height: 32px;
  border: 0; background: transparent;
  color: var(--ink-muted);
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
}
.faq-search-clear:hover, .faq-search-clear:focus-visible {
  background: var(--bg-alt); color: var(--ink);
}
/* Respect the `hidden` attribute JS toggles (display above would override it),
   so the clear button only shows once there's a query. */
.faq-search-clear[hidden] { display: none; }
.faq-search-stats {
  margin: 12px 0 0;
  font-size: 0.875rem;
  color: var(--ink-muted);
}

/* Sticky category-jump bar */
.faq-jump-sticky {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(150%) blur(8px);
  border-bottom: 1px solid var(--rule);
  padding: 10px 0;
}
.faq-jump-sticky .container {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 8px;
}
.faq-jump-sticky .faq-jump-label {
  color: var(--ink-muted);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-right: 4px;
}
.faq-jump-sticky .faq-jump-chip {
  background: var(--bg-alt);
  color: var(--brand);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--rule);
  white-space: nowrap;
  transition: background .12s ease, color .12s ease, border-color .12s ease;
}
.faq-jump-sticky .faq-jump-chip:hover,
.faq-jump-sticky .faq-jump-chip:focus-visible {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  text-decoration: none;
}
.faq-jump-sticky .faq-jump-chip--accent {
  background: rgba(14,165,165,0.12);
  color: var(--accent-ink);
  border-color: rgba(14,165,165,0.25);
  margin-left: auto;
}
.faq-jump-sticky .faq-jump-chip--accent:hover {
  background: var(--accent); color: #fff; border-color: var(--accent);
}
@media (max-width: 720px) {
  .faq-jump-sticky .faq-jump-chip--accent { margin-left: 0; }
  .faq-jump-sticky { font-size: 0.8125rem; }
}

/* FAQ section + items rendered for the master FAQ page (different from the
   short Quick FAQs on the panel pages). Reuses .faq-list / .faq-item
   styles from §11 below. */
.faq-section[hidden] { display: none; }

.faq-no-results .section-header { text-align: center; }

/* -------- 10f. Legal pages (Privacy Policy / Terms of Service) --------
   Long-form legal copy. Hero is reduced (no image, no CTA). Body width
   capped for readability. Single column, comfortable line-height. */
.hero-legal {
  padding-top: 32px;
  padding-bottom: 24px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--rule);
}
.hero-legal .container { display: block; max-width: 760px; }
.hero-legal h1 { margin: 0 0 8px; }
.hero-legal .legal-meta {
  margin: 0 0 8px;
  font-size: 0.9375rem;
  color: var(--ink-soft);
}
.hero-legal .legal-meta + .legal-meta {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
}

.legal-body { padding: 48px 0 64px; }
.legal-body .container { max-width: 760px; }
.legal-body h2 {
  font-size: 1.25rem;
  margin: 32px 0 12px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
}
.legal-body h2:first-of-type { padding-top: 0; border-top: 0; margin-top: 0; }
.legal-body p {
  margin: 0 0 14px;
  color: var(--ink);
  line-height: 1.7;
}
.legal-body ol, .legal-body ul { margin: 0 0 14px; padding-left: 24px; }
.legal-body li { margin-bottom: 6px; line-height: 1.65; }
.legal-body a { color: var(--brand); font-weight: 500; }
.legal-body a:hover { color: var(--brand-strong); }

/* -------- 11. FAQ (always-open dl) -------- */
/* §5.2 — jump-chip navigation row above the FAQ list. Renders when the
   template passes `faqJumpChips`. Gives scanners a ladder into a long
   always-open FAQ and preserves crawlability (no JS, no accordion). */
.faq-jump {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  max-width: 880px; margin: 0 auto 32px;
  padding: 14px 20px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
}
.faq-jump-label {
  font-size: 0.875rem; font-weight: 700; color: var(--ink-soft);
  letter-spacing: 0.04em; text-transform: uppercase;
  margin-right: 6px;
}
.faq-jump-chip {
  display: inline-flex; align-items: center;
  background: rgba(14,165,165,0.08);
  color: var(--brand-strong);
  font-size: 0.8125rem; font-weight: 600;
  padding: 6px 12px; border-radius: var(--radius-pill);
  border: 1px solid rgba(14,165,165,0.30);
  text-decoration: none;
  transition: background .15s, color .15s, border-color .15s;
}
.faq-jump-chip:hover,
.faq-jump-chip:focus-visible {
  background: rgba(14,165,165,0.16);
  border-color: rgba(14,165,165,0.55);
  color: var(--brand-strong);
  text-decoration: none;
}
@media (min-width: 1024px) {
  .faq-jump { max-width: none; }
}
/* §5.2 — scroll-margin so chip jumps don't leave the target dt tucked
   under the sticky header. */
.faq-list dt[id] { scroll-margin-top: 96px; }

.faq-list {
  margin: 0 auto; padding: 0;
  max-width: 880px;
}
.faq-item { margin: 0; }
.faq-list dt {
  font-weight: 600; font-size: 1.125rem; color: var(--ink);
  margin: 0 0 10px;
  padding-left: 30px; position: relative;
  line-height: 1.35;
}
.faq-list dt::before {
  content: 'Q';
  position: absolute; left: 0; top: 1px;
  width: 22px; height: 22px;
  background: var(--accent); color: #fff;
  border-radius: 50%;
  font-size: 0.75rem; font-weight: 700;
  display: grid; place-items: center;
  line-height: 1;
}
.faq-list dd {
  margin: 0 0 36px 10px;
  padding-left: 20px;
  border-left: 2px solid var(--rule);
  color: var(--ink-soft);
  line-height: 1.6;
}
.faq-item:last-child dd { margin-bottom: 0; }

/* Inline links in FAQ answers — always-on underline for discoverability */
.faq-list dd a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* 2-column layout at desktop widths */
@media (min-width: 1024px) {
  .faq-list {
    max-width: none;
    column-count: 2;
    column-gap: 56px;
  }
  .faq-item {
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    margin-bottom: 0;
  }
}

/* ===========================================================================
   "Frequently Asked" block styles — the featured-cards + accordion treatment
   used by partials/faq-featured.njk (the sitewide Quick FAQ on the home and
   management pages).
   =========================================================================== */

/* --- Accordion ("More questions") -----------------------------------------
   Each Q is a native <details><summary>; the answer stays in the DOM but is
   visually hidden until clicked (SEO-safe — all answer text remains in static
   HTML). Same pattern as the "Includes" accordion higher on the panel pages. */
.faq-accordion {
  max-width: 880px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 10px;
}
@media (min-width: 1024px) {
  .faq-accordion { max-width: none; }
}
.faq-accordion-item {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  scroll-margin-top: 96px;
}
.faq-accordion-item:hover {
  border-color: color-mix(in oklab, var(--brand) 30%, var(--rule));
  box-shadow: var(--shadow-sm);
}
.faq-accordion-item[open] {
  border-color: color-mix(in oklab, var(--brand) 50%, var(--rule));
  box-shadow: var(--shadow-md);
}
.faq-accordion-q {
  position: relative;
  padding: 18px 56px 18px 24px;
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center;
  font-weight: 600; font-size: 1.0625rem;
  color: var(--ink-strong);
  line-height: 1.4;
  user-select: none;
  transition: color 0.18s ease;
}
.faq-accordion-q::-webkit-details-marker { display: none; }
.faq-accordion-q::marker { content: ""; }
.faq-accordion-q:focus-visible {
  outline: 2px solid var(--brand); outline-offset: -2px;
  border-radius: var(--radius-md);
}
.faq-accordion-item:hover .faq-accordion-q,
.faq-accordion-item[open] .faq-accordion-q { color: var(--brand-strong); }
.faq-accordion-chevron {
  position: absolute; right: 22px; top: 50%;
  transform: translateY(-50%);
  color: var(--brand);
  display: inline-flex;
  transition: transform 0.2s ease;
}
.faq-accordion-item[open] .faq-accordion-chevron {
  transform: translateY(-50%) rotate(180deg);
}
.faq-accordion-a {
  padding: 0 24px 22px;
  color: var(--ink-soft); line-height: 1.6;
  animation: faq-accordion-in 0.22s ease;
}
@keyframes faq-accordion-in {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .faq-accordion-a, .faq-accordion-chevron, .faq-accordion-item { animation: none; transition: none; }
}
.faq-accordion-a a {
  color: var(--brand-strong);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.faq-accordion-a a:hover { text-decoration-thickness: 2px; }

/* --- Featured top-3 cards --------------------------------------------------
   The most-asked Q&As get a card treatment with a "Most Asked" eyebrow; the
   rest sit in the accordion above. Combines info-density (top 3 expanded)
   with compactness (the rest collapsed). */
.faq-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0 auto 36px;
}
@media (max-width: 900px) {
  .faq-featured-grid { grid-template-columns: 1fr; gap: 12px; }
}
.faq-featured-card {
  display: flex; flex-direction: column; gap: 10px;
  padding: 24px 26px;
  background:
    linear-gradient(180deg,
      color-mix(in oklab, var(--brand) 5%, #fff) 0%,
      #fff 50%);
  border: 1.5px solid color-mix(in oklab, var(--brand) 20%, var(--rule));
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  scroll-margin-top: 96px;
}
.faq-featured-label {
  font-size: 0.6875rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--brand);
}
.faq-featured-q {
  margin: 0;
  font-size: 1rem; font-weight: 700;
  color: var(--ink-strong);
  line-height: 1.35;
}
.faq-featured-a {
  margin: 0;
  font-size: 0.9375rem; line-height: 1.6; color: var(--ink-soft);
}
.faq-featured-a a {
  color: var(--brand-strong);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.faq-featured-a a:hover { text-decoration-thickness: 2px; }

.faq-featured-more {
  max-width: 880px; margin: 0 auto;
}
@media (min-width: 1024px) {
  .faq-featured-more { max-width: none; }
}
.faq-featured-more-label {
  margin: 0 0 12px;
  font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--ink-soft);
}

.faq-cta {
  text-align: center; margin-top: 48px;
  font-size: 0.9375rem; color: var(--ink-soft);
}

/* -------- 12. Testimonials -------- */
.testimonial {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.testimonial:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: color-mix(in srgb, var(--accent) 35%, var(--rule));
}
.testimonial .stars {
  margin: 0;
  color: #F59E0B;
  font-size: 1.125rem;
  letter-spacing: 3px;
  line-height: 1;
}
.testimonial blockquote {
  margin: 0; font-size: 1rem; color: var(--ink);
  line-height: 1.55;
}
.testimonial .who {
  margin: 0; font-size: 0.875rem; color: var(--ink-soft);
  display: flex; align-items: center; gap: 12px;
  padding-top: 14px; border-top: 1px solid var(--rule);
}
.testimonial .who-text {
  display: flex; flex-direction: column; gap: 2px;
  line-height: 1.3;
}
.testimonial .who strong { color: var(--ink); font-weight: 600; }
.testimonial .who-badge {
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-ink);
}
.testimonial .avatar {
  flex-shrink: 0;
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--brand); color: #fff;
  font-weight: 700; font-size: 0.9375rem;
  line-height: 1;
  letter-spacing: 0;
}
.testimonial .avatar[data-palette="1"] { background: var(--accent); }
.testimonial .avatar[data-palette="2"] { background: #B45309; }
.testimonial .avatar[data-palette="3"] { background: #6D28D9; }

/* --- Variant C: "Pull-Quote Cards" (DirectAdmin) ---------------------------
   3-card grid where each card has internal visual hierarchy. The
   editorial `badge` ("Fabulous Support", "Backup Investment", etc.) is
   promoted to a brand-color pull-quote headline at the top of each card.
   Buyer scans the headline first, reads the quote second. */
.testimonial-pullquote-grid {
  align-items: stretch;
}
.testimonial-pullquote-card {
  display: flex; flex-direction: column; gap: 14px;
  padding: 28px 28px 22px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.testimonial-pullquote-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: color-mix(in oklab, var(--brand) 35%, var(--rule));
}
.testimonial-pullquote-headline {
  font-size: 1.375rem; font-weight: 800;
  color: var(--brand-strong);
  line-height: 1.2; letter-spacing: -0.01em;
}
.testimonial-pullquote-card .stars {
  margin: 0;
  color: #F59E0B;
  font-size: 1rem; letter-spacing: 3px; line-height: 1;
}
.testimonial-pullquote-body {
  margin: 0; flex-grow: 1;
  font-size: 0.9375rem; line-height: 1.55; color: var(--ink-soft);
}
.testimonial-pullquote-card .who {
  display: flex; align-items: center; gap: 12px;
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
  font-size: 0.875rem; color: var(--ink-soft);
}
.testimonial-pullquote-card .who-text {
  display: flex; flex-direction: column; gap: 2px;
  line-height: 1.3;
}
.testimonial-pullquote-card .who strong {
  color: var(--ink-strong);
  font-weight: 700;
}
.testimonial-pullquote-card .who-badge {
  font-size: 0.6875rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--accent-ink);
}
.testimonial-pullquote-card .avatar {
  flex-shrink: 0;
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--brand); color: #fff;
  font-weight: 700; font-size: 0.9375rem; line-height: 1;
}
.testimonial-pullquote-card .avatar[data-palette="1"] { background: var(--accent); }
.testimonial-pullquote-card .avatar[data-palette="2"] { background: #B45309; }
.testimonial-pullquote-card .avatar[data-palette="3"] { background: #6D28D9; }

@media (max-width: 900px) {
  .testimonial-pullquote-grid { grid-template-columns: 1fr; gap: 16px; }
  .testimonial-pullquote-headline { font-size: 1.25rem; }
}

/* Inline "Facebook" link in the testimonials subheader — underlined and bold
   so it reads clearly as a link on the muted section copy. */
.link-strong {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.link-strong:hover { text-decoration-thickness: 2px; }

/* Pill-style "Read all customer reviews →" CTA under the testimonial grid */
.testimonials-readall {
  margin: 28px auto 0;
  display: flex; justify-content: center;
}
.testimonials-readall .btn-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  background: #fff;
  font-weight: 600;
  color: var(--brand);
  text-decoration: none;
  transition: border-color .15s, color .15s, background .15s, transform .15s;
}
.testimonials-readall .btn-pill:hover {
  border-color: var(--brand);
  background: color-mix(in srgb, var(--brand) 4%, #fff);
  transform: translateY(-1px);
  text-decoration: none;
}

/* /reviews/ page — summary line under the H1 */
.reviews-summary {
  display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap;
  justify-content: center;
  font-size: 1rem; color: var(--ink-soft);
}
.reviews-summary .fb-stars {
  color: #F59E0B; font-size: 1.125rem; letter-spacing: 3px;
}
.reviews-summary strong { color: var(--ink); font-weight: 700; }
.reviews-grid { margin-top: 40px; }

/* -------- 13. About + form section -------- */
.about-grid {
  display: grid; gap: 48px;
  /* default `align-items: stretch` so the right-side contact card matches
     the left column's height. Inside the card, the textarea grows to
     absorb the leftover space — see `.contact-card` rule below. */
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1.1fr 1fr; }
}
.fb-stars {
  color: #F59E0B;
  font-size: 1.125rem;
  letter-spacing: 3px;
  line-height: 1;
}

/* --- Variant C: "Three Promises" (DirectAdmin) -----------------------------
   3 stacked tiles, each a specific commitment (experience / people /
   risk). Icon + title + 1-line proof. Most spec-sheet-y of the three. */
.about-promises-intro {
  margin: 16px 0 22px;
  font-size: 0.9375rem; line-height: 1.6;
  color: var(--ink);
}
/* Per-page "about" narrative, rendered after the promise tiles when a page
   sets `aboutExtra` (panels, Linux, AWS, Cloud). */
.about-promises-extra {
  margin: 22px 0 0;
  font-size: 0.9375rem; line-height: 1.6;
  color: var(--ink-soft);
}
.about-promises-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.about-promises-tile {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.about-promises-tile:hover {
  border-color: color-mix(in oklab, var(--brand) 30%, var(--rule));
  transform: translateX(2px);
  box-shadow: var(--shadow-sm);
}
.about-promises-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: color-mix(in oklab, var(--accent) 12%, #fff);
  color: var(--accent);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.about-promises-icon svg { width: 22px; height: 22px; }
.about-promises-body { min-width: 0; }
.about-promises-title {
  margin: 0 0 4px;
  font-size: 1rem; font-weight: 700;
  color: var(--ink-strong);
  line-height: 1.3;
}
.about-promises-body p {
  margin: 0;
  font-size: 0.875rem; line-height: 1.55;
  color: var(--ink-soft);
}
.about-promises-body a {
  color: var(--brand); font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.about-promises-body a:hover {
  color: var(--brand-strong); text-decoration-thickness: 2px;
}
.about-promises-more {
  display: inline-block;
  margin-top: 18px;
  font-size: 0.9375rem; font-weight: 600;
  color: var(--brand);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.about-promises-more:hover {
  color: var(--brand-strong); text-decoration-thickness: 2px;
}
@media (max-width: 540px) {
  .about-promises-tile { grid-template-columns: 44px 1fr; gap: 12px; padding: 14px 16px; }
  .about-promises-icon { width: 38px; height: 38px; }
  .about-promises-icon svg { width: 18px; height: 18px; }
}

/* --- "Split" about layout — heading block (left) + promise tiles (right),
   no contact form, full width. Used on /contact-us/. Reuses .about-promises-*
   for the tiles; stacks to one column below 900px. --- */
.about-split { display: grid; gap: 40px; align-items: start; }
@media (min-width: 900px) { .about-split { grid-template-columns: 0.82fr 1.18fr; gap: 56px; } }
.about-split-head h2 { margin: 0 0 14px; }
.about-split-head .about-promises-intro { font-size: 1.0625rem; margin: 0 0 22px; }
.about-split-head .btn { margin-top: 4px; }

.contact-card {
  background: #fff; border: 1px solid var(--rule);
  border-radius: var(--radius-md); padding: 28px;
  box-shadow: var(--shadow-sm);
  /* Flex column so the form fills the card's full height when the
     parent grid stretches it to match the left column. The textarea
     row inside is the one that grows. */
  display: flex; flex-direction: column;
}
.contact-card h3 { margin-bottom: 16px; }
.contact-card form { display: flex; flex-direction: column; flex: 1; }
.contact-card .field:has(textarea) { flex: 1; display: flex; flex-direction: column; }
.contact-card .field:has(textarea) textarea {
  flex: 1; min-height: 120px;
}
.field { display: grid; gap: 6px; margin-bottom: 16px; }
.field label { font-size: 0.875rem; font-weight: 600; color: var(--ink); }
.field input, .field select, .field textarea {
  padding: 12px 14px;
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(14,165,165,0.20);
}
.field textarea { resize: vertical; min-height: 120px; }

/* Honeypot field — off-screen so humans never see/tab to it,
   but bots that auto-fill every input will populate it and flag themselves as spam. */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* Full-width submit button inside the contact card */
.contact-submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

/* §10.2 — Related services cross-sell row. Lives between testimonials and
   final CTA. 3 card-links to Plesk-adjacent services (Linux Server
   Management for vanilla servers, Linux Server Backup for DR, AWS EC2
   Server Management for Plesk-on-EC2). Minimal treatment so it reads as
   a nav affordance, not another pitch. */
.related-services {
  padding: 48px 0 72px;
  background: var(--bg-alt);
  border-top: 1px solid var(--rule);
}
.related-service {
  display: flex; align-items: center; gap: 14px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  text-decoration: none;
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.related-service:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

/* ===========================================================================
   "Mixed Fleets Welcome" — Other Server Management Plans section variants.
   One per panel page in this experiment:
     cross-links →  4 cross-link cards + tech-pill rows         (virtualmin)
     matrix     →  3-column compatibility sheet                 (plesk)
     quote      →  pull-quote hero + 3 capability rails         (directadmin)
   =========================================================================== */

/* --- Variant A: 4 cross-link CARDS (Virtualmin) ----------------------------
   Per-card layout: small logo mark on the left, name + blurb in the
   center, "Manage X servers →" CTA pinned to the right. Hover lifts
   the card and tints the border. */
.other-panels-cards-headline { line-height: 1.5; }
.other-panels-cards-sub {
  display: block; margin-top: 6px;
  color: var(--ink-soft); font-weight: 400; font-size: 0.9375rem;
}
.other-panels-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-bottom: 28px;
}
@media (max-width: 900px) { .other-panels-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .other-panels-grid { grid-template-columns: 1fr; } }
.other-panels-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 22px 20px;
  background: #fff;
  border: 1.5px solid var(--rule); border-radius: var(--radius-md);
  text-decoration: none; color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.other-panels-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in oklab, var(--brand) 35%, var(--rule));
  box-shadow: var(--shadow-md);
}
.other-panels-card-mark {
  display: flex; align-items: center; justify-content: flex-start;
  height: 48px;
}
/* cPanel is the reference height; the other four wordmarks are scaled up so
   they read at roughly the same "font size" (mirrors the hero/plan-card logo
   balancing). Marks with a tagline or icon need a taller box than cPanel. */
.other-panels-card-mark img {
  height: 19px; width: auto; max-width: 100%;
  filter: grayscale(0.2);
  transition: filter 0.18s ease;
}
.other-panels-card-mark img[src*="plesk"]       { height: 26px; }
.other-panels-card-mark img[src*="directadmin"] { height: 27px; }
.other-panels-card-mark img[src*="virtualmin"]  { height: 26px; }
.other-panels-card-mark img[src*="linux"]       { height: 28px; }
.other-panels-card:hover .other-panels-card-mark img { filter: grayscale(0); }
.other-panels-card-body { min-width: 0; }
.other-panels-card-title {
  margin: 0 0 4px; font-size: 1.0625rem; font-weight: 700;
  color: var(--ink-strong); line-height: 1.3;
}
.other-panels-card-blurb {
  margin: 0; font-size: 0.875rem; line-height: 1.5; color: var(--ink-soft);
}
.other-panels-card-cta {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: auto;
  font-size: 0.875rem; font-weight: 600;
  color: var(--brand);
  white-space: nowrap;
  transition: color 0.18s ease, transform 0.18s ease;
}
.other-panels-card-cta svg {
  width: 14px; height: 14px;
  transition: transform 0.18s ease;
}
.other-panels-card:hover .other-panels-card-cta { color: var(--brand-strong); }
.other-panels-card:hover .other-panels-card-cta svg { transform: translateX(3px); }

@media (max-width: 900px) {
  .other-panels-grid { grid-template-columns: 1fr; }
  .other-panels-card {
    grid-template-columns: 72px 1fr;
    grid-template-rows: auto auto;
    gap: 14px 16px;
  }
  .other-panels-card-cta { grid-column: 2; }
}

/* -------- 14. Final CTA -------- */
.final-cta {
  text-align: center;
  position: relative; overflow: hidden;
}
/* Subtle accent-teal radial glow behind the headline so the dark band
   isn't a flat color block. Kept low-opacity and non-interactive. */
.final-cta::before {
  content: "";
  position: absolute;
  top: -40%; left: 50%;
  width: 720px; height: 720px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(14,165,165,0.22), rgba(14,165,165,0) 70%);
  pointer-events: none;
  z-index: 0;
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta h2 { color: #fff; margin-bottom: 12px; }
.final-cta p  { color: rgba(219,224,232,0.85); margin-bottom: 28px; font-size: 1.0625rem; }
.final-cta .btn-row { justify-content: center; }
/* §8.2 — tertiary tel: link below the trust line, underplayed so it doesn't
   compete with the two primary buttons. */
.final-cta-call {
  margin: 10px 0 0;
  font-size: 0.9375rem;
  color: rgba(219,224,232,0.70);
}
.final-cta-call a {
  color: #fff; font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  padding-bottom: 1px;
  transition: border-color .15s;
}
.final-cta-call a:hover {
  color: #fff;
  border-bottom-color: #fff;
  text-decoration: none;
}

/* Light variant of the Final CTA — for when the CTA is the LAST section and
   sits directly above the dark footer (e.g., the About page); a dark band
   there would merge into the footer. Drops .section-dark and recolors the
   dark-band treatment for a white surface. Opt in via finalCta.variant:"light". */
.final-cta-light { background: var(--bg); border-top: 1px solid rgba(15,26,43,0.08); }
.final-cta-light::before { display: none; }            /* drop the dark-band teal halo */
.final-cta-light h2 { color: var(--ink); }
.final-cta-light p  { color: var(--ink-soft); }
.final-cta-light .final-cta-call { color: var(--ink-muted); }
.final-cta-light .final-cta-call a { color: var(--brand-strong); border-bottom-color: rgba(31,63,101,0.35); }
.final-cta-light .final-cta-call a:hover { color: var(--brand-strong); border-bottom-color: var(--brand-strong); }
.final-cta-light .final-cta-timeline-num { box-shadow: 0 0 0 4px var(--bg), 0 0 0 6px rgba(14,165,165,0.45); }
.final-cta-light .final-cta-timeline-label { color: var(--ink); }
.final-cta-light .final-cta-timeline-time  { color: var(--ink-muted); }

/* ===========================================================================
   Final-CTA section design experiments — three per-panel variants of the
   "Try Server Surgeon for Thirty Days" block. Each variant inherits the
   dark band aesthetic + radial accent glow from .final-cta. Dispatched
   by panels.<key>.finalCta.design:
     timeline  →  /virtualmin-server-management/  (3-step visual journey)
     guarantee →  /plesk-server-management/       (30-day seal centerpiece)
     two-path  →  /directadmin-server-management/ (two choice cards)
   =========================================================================== */

/* --- Variant A: THREE-STEP TIMELINE (Virtualmin) ---------------------------
   Visual numbered journey under the heading: 1 → 2 → 3, connected by a
   horizontal accent line. Each step has a brand-color disc with the
   number, a label, and a timing line. Brings clarity to the abstract
   "try us" by showing the concrete first hour. */
.final-cta-timeline-steps {
  list-style: none; padding: 0;
  margin: 8px auto 32px;
  max-width: 880px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: start;
  position: relative;
}
/* Horizontal connector line (under the discs) */
.final-cta-timeline-steps::before {
  content: "";
  position: absolute;
  top: 30px; left: 12%; right: 12%;
  height: 2px;
  background: linear-gradient(90deg,
    rgba(14,165,165,0) 0%,
    rgba(14,165,165,0.5) 10%,
    rgba(14,165,165,0.5) 90%,
    rgba(14,165,165,0) 100%);
  z-index: 0;
}
.final-cta-timeline-step {
  display: flex; flex-direction: column; align-items: center;
  gap: 6px;
  position: relative; z-index: 1;
  text-align: center;
}
.final-cta-timeline-num {
  width: 60px; height: 60px;
  display: grid; place-items: center;
  background: var(--accent);
  color: #0b1320;
  font-size: 1.5rem; font-weight: 800;
  border-radius: 50%;
  box-shadow:
    0 0 0 4px #0b1320,
    0 0 0 6px rgba(14,165,165,0.55);
  font-feature-settings: "tnum";
  margin-bottom: 10px;
}
.final-cta-timeline-label {
  color: #fff;
  font-size: 1rem; font-weight: 700;
  letter-spacing: -0.005em;
}
.final-cta-timeline-time {
  color: rgba(219,224,232,0.65);
  font-size: 0.8125rem;
}
@media (max-width: 720px) {
  .final-cta-timeline-steps { grid-template-columns: 1fr; gap: 18px; }
  .final-cta-timeline-steps::before { display: none; }
}

/* Dark-section button treatment — inverted primary + low-chroma outline per §11.1/§11.2 */
.section-dark .btn-primary {
  background: #fff; color: var(--brand-strong);
  box-shadow: 0 1px 2px rgba(0,0,0,0.08), 0 10px 24px -8px rgba(0,0,0,0.35);
}
.section-dark .btn-primary:hover {
  background: #fff; color: var(--brand-strong);
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0,0,0,0.12), 0 14px 28px -8px rgba(0,0,0,0.45);
}
.section-dark .btn-outline {
  color: #fff; border-color: rgba(255,255,255,0.25); background: transparent;
}
.section-dark .btn-outline:hover {
  color: #fff; border-color: #fff; background: rgba(255,255,255,0.06);
}

/* ===========================================================================
   Closing CTA — centered statement (light). Accent rule + headline + lead +
   centered buttons. Shared by the backup page (single-product, on the grey
   band, with a trust line) and the pricing page (dual-action — order
   management or backup, on the white band).
   =========================================================================== */
.cta-lc { text-align: center; }
.cta-lc-inner { max-width: 680px; margin: 0 auto; }
.cta-lc-rule { width: 48px; height: 3px; background: var(--accent); border-radius: 2px; margin: 0 auto 22px; }
.cta-lc h2 { margin: 0 0 14px; }
.cta-lc .lead { margin: 0 auto 26px; }
.cta-lc .btn-row { justify-content: center; }
.cta-lc-trust { margin: 20px 0 0; font-size: 0.9rem; color: var(--ink-soft); /* was --ink-muted; WCAG AA on white */ }

/* -------- 15. Footer -------- */
.site-footer { background: var(--bg-dark); color: #B0B7C3; padding: 72px 0 0; }
.footer-grid {
  display: grid; gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  margin-bottom: 48px;
}
.footer-col h3 {
  color: #fff; font-size: 0.875rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  margin: 0 0 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-col a { color: #B0B7C3; font-size: 0.9375rem; }
.footer-col a:hover { color: #fff; text-decoration: none; }
.footer-logo {
  display: inline-block;
  margin-bottom: 16px;
  text-decoration: none;
}
.footer-logo img { height: 40px; width: auto; display: block; }
.footer-logo:hover { opacity: 0.85; }
.footer-brand p { color: rgba(176,183,195,0.85); font-size: 0.875rem; }
.footer-tagline-top {
  margin: 0 0 36px;
  padding: 0 0 28px;
  text-align: center;
  color: rgba(255,255,255,0.85);
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.footer-contact-list {
  list-style: none; padding: 0; margin: 14px 0 0;
  display: grid; gap: 6px;
  font-size: 0.875rem;
}
.footer-contact-list a { color: #B0B7C3; }
.footer-contact-list a:hover { color: #fff; text-decoration: none; }
.footer-contact-meta {
  display: inline-block; margin-left: 4px;
  font-size: 0.75rem; color: rgba(176,183,195,0.8); /* raised from 0.55 for WCAG AA contrast on the navy footer */
}
.footer-tagline {
  margin: 0 0 20px;
  text-align: center;
  color: rgba(176,183,195,0.70);
  font-size: 0.875rem;
  letter-spacing: 0.02em;
}
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: space-between; align-items: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8125rem;
}
.footer-bottom .social { display: flex; gap: 12px; align-items: center; }
.footer-bottom .social a { color: #B0B7C3; position: relative; display: inline-flex; }
/* Enlarge the touch target to ~44px without changing the icon's visual size. */
.footer-bottom .social a::before { content: ""; position: absolute; inset: -12px; }
.footer-bottom .social a:hover { color: #fff; }
.footer-bottom .social svg { width: 20px; height: 20px; }

/* -------- 17. Prose blocks (About, Pricing, long-form pages) -------- */
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 var(--pad-x); }

/* Pull quote — for high-impact lines inside .prose blocks */
.pull-quote {
  margin: 28px 0;
  padding: 20px 26px;
  border-left: 4px solid var(--brand);
  background: var(--bg-alt);
  font-size: 1.1875rem;
  line-height: 1.5;
  font-weight: 500;
  color: var(--ink-strong);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.pull-quote p { margin: 0; }
.section-alt .pull-quote { background: #fff; }

/* Callout — softer than pull-quote, used for "here is the point" lines */
.prose-callout {
  margin: 28px 0;
  padding: 18px 22px;
  background: rgba(14,165,165,0.06);
  border-radius: var(--radius-md);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--ink-strong);
}
.prose-callout strong { color: var(--brand-strong); }
.prose h2 { font-size: 1.75rem; line-height: 1.25; margin: 0 0 16px; }
.prose p { font-size: 1.0625rem; line-height: 1.7; margin: 0 0 18px; color: var(--ink); }
.prose p:last-child { margin-bottom: 0; }
.prose ul, .prose ol { font-size: 1.0625rem; line-height: 1.7; padding-left: 1.4em; margin: 0 0 18px; }
.prose ul li, .prose ol li { margin-bottom: 8px; }
.prose ul li strong, .prose ol li strong { color: var(--ink-strong); }
/* `:not(.btn)` exclusion keeps the prose-link styling (brand-strong + underline)
   from over-riding the white text on `.btn-primary` / `.btn-outline` buttons
   that happen to live inside a .prose block (e.g. the "Order Server Management"
   CTA on the pricing tier table). */
.prose a:not(.btn) { color: var(--brand-strong); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.prose a:not(.btn):hover { text-decoration-thickness: 2px; }
.prose h3 {
  font-size: 1.25rem; font-weight: 700;
  color: var(--ink-strong); line-height: 1.3;
  margin: 36px 0 10px;
}
.prose h3:first-child { margin-top: 0; }
@media (max-width: 768px) {
  .prose h2 { font-size: 1.5rem; }
  .prose h3 { font-size: 1.125rem; margin-top: 28px; }
  .prose p, .prose ul, .prose ol { font-size: 1rem; }
}

/* -------- Logo strip (auto-scrolling marquee) --------
   Used on home / panel / backup pages. Two identical <ul> tracks side-by-side
   inside an overflow:hidden wrapper; CSS keyframe translates the wrapper by
   -50% (one full track width) so the seam between the two tracks is
   invisible. prefers-reduced-motion stops the animation and falls back to a
   centered static grid (one copy hidden so it isn't a duplicate flat list). */
.logo-strip-section {
  padding: 48px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.logo-strip-header {
  text-align: center;
  margin-bottom: 24px;
}
.logo-strip-header .eyebrow { display: inline-block; }
.logo-strip-subtext {
  margin: 8px 0 0;
  font-size: 0.9375rem;
  color: var(--ink-soft);
}
.logo-strip {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}
/* Seamless loop math: the track holds two identical sets of items separated
   by `gap`. Translating by -50% of the track's width leaves the second set
   offset to the LEFT by half a gap (the gap between the two sets), which
   produces the visible "jerk" at the wrap. Translating by -50% minus half
   the gap lands the second set's first item exactly where the first set's
   first item began — true seamless restart. */
@keyframes logo-strip-marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(calc(-50% - var(--logo-gap) / 2), 0, 0); }
}
@media (max-width: 768px) {
  .logo-strip-section { padding: 36px 0; }
}
/* Reduced-motion fallback: stop animation, wrap to a centered grid, and hide
   the duplicate items (the second half of the <ul>, all aria-hidden) so the
   static layout isn't a doubled flat list. */
@media (prefers-reduced-motion: reduce) {
  .logo-strip {
    -webkit-mask-image: none;
            mask-image: none;
    overflow: visible;
  }
}

/* ===========================================================================
   Logo-strip section — "Static Grid" (single static 6-up grid, no marquee;
   better for WCAG 2.2.2). Used by the backup page via logo-strip-static.njk.
   Brand logos render grayscale at default opacity, shifting to full color +
   opacity on hover.
   =========================================================================== */

.logo-strip-section .logo-strip-static-item {
  list-style: none;
}
.logo-strip-section .logo-strip-static-item a {
  display: block; line-height: 0;
}
.logo-strip-section .logo-strip-static-item img {
  height: 100%; width: auto; object-fit: contain;
  filter: grayscale(1);
  opacity: 0.62;
  transition: filter 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}
.logo-strip-section .logo-strip-static-item a:hover img,
.logo-strip-section .logo-strip-static-item a:focus-visible img {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-1px);
}

/* --- Variant B: STATIC GRID (Plesk) --------------------------------------- */
.logo-strip-static-grid {
  list-style: none; padding: 0; margin: 0 auto;
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px 32px;
  align-items: center;
}
.logo-strip-static-item {
  display: flex; align-items: center; justify-content: center;
  height: 52px;
}
.logo-strip-static-item img { max-width: 140px; height: 100%; }

@media (max-width: 980px) {
  .logo-strip-static-grid { grid-template-columns: repeat(4, 1fr); gap: 22px 24px; }
  .logo-strip-static-item { height: 44px; }
}
@media (max-width: 600px) {
  .logo-strip-static-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .logo-strip-static-item { height: 40px; }
  .logo-strip-static-item img { max-width: 100px; }
}

/* "Includes" card grid — replaces the legacy 14-card features grid for
   panels that have been rewritten with the drafts' Block 2 prose items.
   3 columns on desktop, 2 on tablet, 1 on phone. Inherits .card padding,
   border, and hover transform; we just compose the grid + tighten h3/p. */
.includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) {
  .includes-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 600px) {
  .includes-grid { grid-template-columns: 1fr; gap: 18px; }
}
/* AWS scope section: two cards span the full row instead of sitting 2-of-3. */
.aws-scope-grid { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 600px) {
  .aws-scope-grid { grid-template-columns: 1fr; }
}
.includes-card { padding: 26px; }
.includes-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--ink-strong);
  line-height: 1.3;
  letter-spacing: -0.005em;
}
.includes-card p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--ink);
}
.includes-card a {
  color: var(--brand-strong);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.includes-card a:hover { text-decoration-thickness: 2px; }

/* §X — Infrastructure pillars (AWS + Cloud spokes). Three capability
   columns — networking / compute / security — that name the services we
   run *around* a managed instance (load balancing, DNS, CDN, VPC,
   auto-scaling, block storage, backups/DR, firewalling). Reuses
   .includes-grid for the responsive 3→2→1 track; .infra-pillar styles the
   inner keyword checklist so each named concept scans on its own line and
   reinforces the page's infrastructure keywords. */
.infra-pillar { padding: 28px; }
.infra-pillar > h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
  letter-spacing: -0.005em;
}
.infra-pillar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.infra-pillar li {
  position: relative;
  padding-left: 22px;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--ink);
}
.infra-pillar li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--brand);
}
.infra-pillar li strong { color: var(--brand-strong); font-weight: 600; }
.infra-pillar a {
  color: var(--brand-strong);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.infra-pillar a:hover { text-decoration-thickness: 2px; }

/* §X — Panel-specific UNIQUE sections (mgmt-page.njk `deepDive` +
   `commonProblems`). Built for the cPanel page first as the worked template
   for differentiating the panel pages (SEO_ENHANCEMENTS.md §E); reused as
   each panel gains its own deepDive/commonProblems data. */

/* Deep dive — panel-native prose, optionally beside a screenshot figure. */
.deep-dive-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: start;
}
@media (max-width: 900px) {
  .deep-dive-grid { grid-template-columns: 1fr; gap: 28px; }
}
.deep-dive-prose p { margin: 0 0 16px; line-height: 1.7; color: var(--ink); }
.deep-dive-prose p:last-child { margin-bottom: 0; }
.deep-dive-figure { margin: 0; position: sticky; top: 96px; }
@media (max-width: 900px) { .deep-dive-figure { position: static; } }
.deep-dive-figure img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.deep-dive-figure figcaption {
  margin-top: 12px;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--ink-soft);
  text-align: center;
}
/* Screenshot placeholder — shown until a real asset is dropped in (IMAGES_TODO). */
.media-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  aspect-ratio: 16 / 10;
  padding: 28px;
  color: var(--ink-soft);
  background: repeating-linear-gradient(45deg, #fff, #fff 12px, var(--bg-alt) 12px, var(--bg-alt) 24px);
  border: 1px dashed #c4ccd6;
  border-radius: var(--radius-md);
}
.media-placeholder svg { width: 40px; height: 40px; opacity: 0.55; }
.media-placeholder span { max-width: 34ch; font-size: 0.8125rem; line-height: 1.45; }

/* Common problems — symptom → resolution cards (two balanced columns). */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
@media (max-width: 760px) { .problem-grid { grid-template-columns: 1fr; } }
.problem-item {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
}
.section-alt .problem-item { background: #fff; }
.problem-symptom {
  display: flex;
  gap: 10px;
  margin: 0 0 10px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink);
}
.problem-symptom svg { flex: none; width: 19px; height: 19px; margin-top: 1px; color: var(--brand); }
.problem-fix { margin: 0; font-size: 0.9375rem; line-height: 1.6; color: var(--ink-soft); }

/* §X — Tabbed includes (Virtualmin) — ARIA tabs pattern. Tab labels in a
   horizontal bar with an underline indicator on the active tab; tab panels
   below. Inactive panels use the HTML `hidden` attribute, which sets
   display:none. Google indexes hidden content the same as visible, so SEO
   is unaffected. JS controller in js/main.js handles click + arrow keys. */
.includes-tabs { width: 100%; }
.includes-tabs-tablist {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--rule);
  margin: 0 0 32px;
  overflow-x: auto;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
.includes-tabs-tablist::-webkit-scrollbar { height: 4px; }
.includes-tab {
  appearance: none;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 14px 18px;
  margin-bottom: -1px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.includes-tab:hover {
  color: var(--brand);
}
.includes-tab.is-active,
.includes-tab[aria-selected="true"] {
  color: var(--brand);
  border-bottom-color: var(--brand);
}
.includes-tab:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
  border-radius: 4px;
}
.includes-tabpanel[hidden] { display: none; }
.includes-tabpanel { animation: includes-fade-in 0.2s ease; }
@keyframes includes-fade-in {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .includes-tabpanel { animation: none; }
}
@media (max-width: 600px) {
  .includes-tab { padding: 12px 14px; font-size: 0.875rem; }
  .includes-tabs-tablist { margin-bottom: 24px; }
}
@keyframes includes-card-body-in {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* -------- "WHAT'S INCLUDED" — Design D: navy two-column accent-card accordion
   (mgmt-page.njk, all 5 management pages). Each card is a native <details> so
   the body copy stays in the DOM (SEO-safe). Rendered on a `.section-dark`
   band, so colors are tuned for the navy ground; the check badge + chevron +
   left accent bar give the closed state visual structure. -------- */
/* Section-header lead sits on the navy ground here, so lighten it. */
.includes-d .lead { color: #c7d0dc; }
.includes-d-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; align-items: start; }
.includes-d-col { display: flex; flex-direction: column; gap: 14px; min-width: 0; }
@media (max-width: 720px) { .includes-d-grid { grid-template-columns: 1fr; } }
.includes-d-card {
  position: relative; overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease, background .18s ease;
}
.includes-d-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .18s ease;
}
.includes-d-card:hover { border-color: rgba(255,255,255,0.22); box-shadow: 0 18px 40px -22px rgba(0,0,0,0.7); transform: translateY(-1px); }
.includes-d-card[open] { border-color: rgba(14,165,165,0.45); background: rgba(14,165,165,0.06); box-shadow: 0 24px 48px -24px rgba(0,0,0,0.75); }
.includes-d-card:hover::before, .includes-d-card[open]::before { transform: scaleX(1); }
.includes-d-summary {
  position: relative; cursor: pointer; list-style: none; user-select: none;
  display: flex; align-items: center; gap: 12px; padding: 18px 48px 18px 20px;
}
.includes-d-summary::-webkit-details-marker { display: none; }
.includes-d-summary::marker { content: ""; }
.includes-d-summary:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }
.includes-d-check {
  flex: 0 0 auto; width: 26px; height: 26px; display: grid; place-items: center;
  background: rgba(14,165,165,0.18); color: var(--accent);
  border-radius: var(--radius-sm);
}
.includes-d-check svg { width: 16px; height: 16px; }
.includes-d-title { margin: 0; flex: 1; text-align: left; font-size: 1.0625rem; font-weight: 600; color: #fff; line-height: 1.3; }
.includes-d-chev { position: absolute; right: 18px; top: 50%; transform: translateY(-50%); color: var(--accent); display: inline-flex; transition: transform .2s ease; }
.includes-d-card[open] .includes-d-chev { transform: translateY(-50%) rotate(180deg); }
.includes-d-body { padding: 0 20px 20px 58px; }
.includes-d-body p { margin: 0; font-size: 0.9375rem; line-height: 1.6; color: #aeb8c5; }
.includes-d-body a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  .includes-d-card, .includes-d-card::before, .includes-d-chev { transition: none; }
}

/* Light variant of the includes-d accordion — used on a white section (the
   backup page "What's Included"). The base .includes-d-* colors are tuned for
   a navy ground; these re-tint them for a white ground. Structure/animation
   unchanged. The top border gives a seam while the hero above is still light;
   it reads as a non-issue once that hero is darkened. */
.includes-d-light { border-top: 1px solid var(--rule); }
.includes-d-light .lead { color: var(--ink-soft); }
.includes-d-light .includes-d-card { background: #fff; border-color: var(--rule); }
.includes-d-light .includes-d-card:hover { border-color: var(--ink-muted); box-shadow: 0 14px 30px -20px rgba(15, 26, 43, 0.30); }
.includes-d-light .includes-d-card[open] { border-color: rgba(14, 165, 165, 0.55); background: rgba(14, 165, 165, 0.05); box-shadow: 0 18px 36px -22px rgba(15, 26, 43, 0.25); }
.includes-d-light .includes-d-title { color: var(--ink); }
.includes-d-light .includes-d-body p { color: var(--ink-soft); }
.includes-d-light .includes-d-body a { color: var(--brand-strong); }

/* About page — testimonial quote trio */
.about-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 32px 0;
}
@media (max-width: 900px) {
  .about-quotes { grid-template-columns: 1fr; gap: 18px; }
}
.about-quote {
  margin: 0;
  padding: 22px 24px;
  background: var(--bg-alt);
  border-left: 3px solid var(--brand);
  border-radius: var(--radius-md);
}
.section-alt .about-quote { background: #fff; }
.about-quote blockquote {
  margin: 0 0 12px;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink);
  font-style: italic;
}
.about-quote figcaption {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.pricing-tier-badge {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  background: var(--brand);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--radius-pill);
  vertical-align: middle;
  line-height: 1.4;
}

/* --- Pricing tier matrix — a normal table on desktop that collapses to
   one card per tier at mobile width. ------------------------------------- */
.pricing-tier-cards {
  margin: 24px 0 12px;
  width: 100%; border-collapse: collapse;
  background: #fff; border: 1px solid var(--rule); border-radius: var(--radius-md);
  overflow: hidden;
}
.pricing-tier-cards th, .pricing-tier-cards td {
  padding: 14px 18px; text-align: center; border-bottom: 1px solid var(--rule);
  font-size: 0.9375rem;
}
.pricing-tier-cards thead th {
  background: var(--bg-alt); font-weight: 600; color: var(--ink-strong);
  font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.04em;
}
.pricing-tier-cards tbody th {
  text-align: left; font-weight: 600; color: var(--ink-strong);
  background: rgba(0,0,0,0.015);
}
.pricing-tier-cards tbody tr:last-child td,
.pricing-tier-cards tbody tr:last-child th { border-bottom: 0; }
.pricing-tier-cards td strong { color: var(--brand-strong); font-size: 1.0625rem; }
.pricing-tier-cards tbody tr.pricing-tier-recommended { background: rgba(14,165,165,0.05); }
.pricing-tier-cards tbody tr.pricing-tier-recommended th {
  background: rgba(14,165,165,0.10); color: var(--brand-strong);
}
.pricing-tier-cards tbody tr.pricing-tier-recommended td strong { color: var(--brand-strong); }

/* Option B — collapse to one card per tier on phones */
@media (max-width: 560px) {
  .pricing-tier-cards { border: 0; background: transparent; }
  .pricing-tier-cards thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  .pricing-tier-cards tbody { display: block; }
  .pricing-tier-cards tbody tr {
    display: block;
    background: #fff;
    border: 1px solid var(--rule); border-radius: var(--radius-md);
    margin-bottom: 16px;
    overflow: hidden;
  }
  .pricing-tier-cards tbody tr.pricing-tier-recommended {
    border-color: color-mix(in oklab, var(--accent) 45%, var(--rule));
  }
  .pricing-tier-cards tbody th[scope="row"] {
    display: block; text-align: center;
    font-size: 1rem; padding: 14px 16px;
    border-bottom: 1px solid var(--rule);
  }
  .pricing-tier-cards tbody td {
    display: flex; align-items: center; justify-content: space-between;
    text-align: right;
    padding: 11px 16px; border-bottom: 1px solid var(--rule);
    font-size: 0.9375rem;
  }
  .pricing-tier-cards tbody tr td:last-child { border-bottom: 0; }
  .pricing-tier-cards tbody td::before {
    content: attr(data-label);
    font-weight: 600; color: var(--ink-soft);
    text-align: left; margin-right: 16px;
    font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.03em;
  }
}

/* Pricing — Three Options cards */
.pricing-options {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin: 48px 0 24px;
}
@media (max-width: 900px) {
  .pricing-options { grid-template-columns: 1fr; gap: 36px; }
}
.pricing-option {
  background: #fff; border: 1px solid var(--rule);
  border-radius: var(--radius-md); padding: 28px 24px;
  display: flex; flex-direction: column;
  position: relative;
}
.section-alt .pricing-option { background: #fff; }
.pricing-option__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(14,165,165,0.10);
  color: var(--brand);
  display: grid; place-items: center;
  margin: 0 auto 18px;
  flex: 0 0 auto;
}
.pricing-option__icon svg { width: 28px; height: 28px; }
.pricing-option h3 {
  margin: 0 0 12px;
  font-size: 1.125rem;
  text-align: center;
  color: var(--ink-strong);
}
.pricing-option p {
  margin: 0; font-size: 0.9375rem; line-height: 1.6;
  color: var(--ink);
}
.pricing-option--recommended {
  border: 2px solid var(--brand);
  box-shadow: 0 12px 32px rgba(14,165,165,0.14);
  transform: translateY(-4px);
}
.pricing-option--recommended .pricing-option__icon {
  background: var(--brand); color: #fff;
}
.pricing-option--recommended::before {
  content: "Recommended";
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--brand); color: #fff;
  font-size: 0.6875rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 5px 14px; border-radius: var(--radius-pill);
  white-space: nowrap;
}
@media (max-width: 900px) {
  .pricing-option--recommended { transform: none; }
}

.pricing-leave-table {
  width: 100%; border-collapse: collapse;
  background: #fff; border: 1px solid var(--rule); border-radius: var(--radius-md);
  overflow: hidden; margin: 16px 0;
}
.pricing-leave-table th {
  text-align: left; padding: 14px 18px;
  background: var(--bg-alt); color: var(--ink-strong);
  font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.04em;
  border-bottom: 1px solid var(--rule);
}
.pricing-leave-table td {
  padding: 14px 18px; border-bottom: 1px solid var(--rule); font-size: 0.9375rem;
  vertical-align: top;
}
.pricing-leave-table tbody tr:last-child td { border-bottom: 0; }
@media (max-width: 600px) {
  .pricing-leave-table thead { display: none; }
  .pricing-leave-table tr { display: block; border-bottom: 1px solid var(--rule); padding: 12px 0; }
  .pricing-leave-table td { display: block; padding: 4px 18px; border: 0; }
  .pricing-leave-table td::before {
    content: attr(data-label); display: block;
    font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.04em;
    color: var(--ink-soft); margin-bottom: 2px;
  }
}

/* Backup page — "What You Can Restore" two-column scenarios table */
.restore-scenarios-table {
  width: 100%; border-collapse: collapse;
  background: #fff; border: 1px solid var(--rule); border-radius: var(--radius-md);
  overflow: hidden; margin: 16px 0;
}
.restore-scenarios-table th {
  text-align: left; padding: 14px 18px;
  background: var(--bg-alt); color: var(--ink-strong);
  font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.04em;
  border-bottom: 1px solid var(--rule);
  width: 38%;
}
.restore-scenarios-table th:last-child { width: 62%; }
.restore-scenarios-table td {
  padding: 14px 18px; border-bottom: 1px solid var(--rule); font-size: 0.9375rem;
  line-height: 1.55; vertical-align: top;
}
.restore-scenarios-table td:first-child { color: var(--ink-strong); font-weight: 600; }
.restore-scenarios-table tbody tr:last-child td { border-bottom: 0; }
@media (max-width: 700px) {
  .restore-scenarios-table thead { display: none; }
  .restore-scenarios-table tr { display: block; border-bottom: 1px solid var(--rule); padding: 12px 0; }
  .restore-scenarios-table td { display: block; padding: 4px 18px; border: 0; }
  .restore-scenarios-table td::before {
    content: attr(data-label); display: block;
    font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.04em;
    color: var(--ink-soft); margin-bottom: 2px;
  }
}

/* ============================================================================
   /configure/ — plan configurator (Phase 1 order flow)
   ============================================================================ */

/* Honor the hidden attribute over flex/grid display values set on the same
   element. Without this, .cfg-summary-row[hidden] (display:flex) stays
   visible — author rule wins the cascade against the UA's [hidden] rule. */
.configurator-section [hidden] { display: none !important; }

/* Dark, compact configurator hero (centered). Short top padding keeps the
   first step high above the fold; .lead override lifts the muted default text
   to a readable light tone on the dark band. */
.configurator-hero { padding: 38px 0 30px; text-align: center; }
.configurator-hero h1 { margin: 0 0 8px; }
.configurator-hero .lead { margin: 0 auto; max-width: 600px; color: rgba(219, 224, 232, 0.9); }

.configurator-section { padding-top: 48px; padding-bottom: 96px; background: var(--bg-alt); }

.configurator-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 360px);
  align-items: start;
}
@media (max-width: 900px) {
  .configurator-grid { grid-template-columns: 1fr; }
}

/* ---- Form column ---- */
.configurator-form { display: grid; gap: 28px; }

.cfg-step {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: 24px 24px 22px;
  margin: 0;
  scroll-margin-top: 90px; /* clears the sticky header when scrolled to */
}
.cfg-step legend {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
  font-size: 1.0625rem; font-weight: 700; color: var(--ink);
  letter-spacing: -0.01em;
  padding: 0;
}
.cfg-step-num {
  display: inline-grid; place-items: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--brand); color: #fff;
  font-size: 0.875rem; font-weight: 700;
  letter-spacing: 0;
}
.cfg-step-desc {
  margin: -8px 0 16px;
  font-size: 0.9375rem; color: var(--ink-soft); line-height: 1.55;
}
.cfg-step-desc a { color: var(--brand-strong); text-decoration: underline; }
.cfg-step-hint {
  display: flex; align-items: center; gap: 8px;
  margin: 14px 0 0; padding: 10px 14px;
  background: rgba(22,163,74,.08);
  color: #166534;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
}
.cfg-step-hint svg { color: var(--success); flex-shrink: 0; }
.cfg-step-hint strong { font-weight: 700; }
.cfg-step-note {
  display: flex; align-items: flex-start; gap: 8px;
  margin: 14px 0 0; padding: 10px 14px;
  background: rgba(47,93,141,.05);
  color: var(--ink-soft);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  line-height: 1.5;
}
.cfg-step-note svg { color: var(--brand); flex-shrink: 0; margin-top: 2px; }

/* ---- Radio card grids ---- */
.cfg-radio-grid { display: grid; gap: 10px; }
.cfg-radio-grid-2 { grid-template-columns: repeat(2, 1fr); }
.cfg-radio-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cfg-radio-grid-4 { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
/* All 5 control-panel cards stay on one line at full width (the form column is
   ~760px), then drop to two-up on narrow screens. */
.cfg-radio-grid-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 8px; }
@media (max-width: 600px) {
  .cfg-radio-grid-5 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cfg-radio-grid-3 { grid-template-columns: 1fr; }
}

.cfg-radio-card {
  position: relative;
  display: block;
  padding: 14px 16px;
  border: 1.5px solid var(--rule);
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: #fff;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.cfg-radio-card:hover { border-color: #B8BFCD; }
.cfg-radio-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.cfg-radio-card:has(input:checked) {
  border-color: var(--brand);
  box-shadow: inset 0 0 0 1.5px var(--brand);
}
/* Selected fill: an on-top brand overlay (not just a background-color) so the
   wash reads uniformly even over logos with a baked-in solid-white background
   such as DirectAdmin. pointer-events:none keeps the whole card clickable. */
.cfg-radio-card::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: var(--brand);
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s ease;
}
.cfg-radio-card:has(input:checked)::after { opacity: 0.10; }
.cfg-radio-card:focus-within {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}
.cfg-radio-card-content {
  display: flex; flex-direction: column; gap: 2px;
  min-width: 0;
}
/* Brand logo on the control-panel + AWS selector cards. */
.cfg-radio-logo {
  display: block; height: 26px; width: auto; max-width: 100%;
  object-fit: contain; object-position: left center;
  margin-bottom: 8px;
}
.cfg-radio-card-title {
  font-weight: 600; color: var(--ink); font-size: 0.9375rem;
  letter-spacing: -0.01em;
}
.cfg-radio-card-meta {
  font-size: 0.8125rem; color: var(--ink-soft);
}
.cfg-radio-card:has(input:checked) .cfg-radio-card-meta {
  color: var(--brand-strong);
}

/* ---- Compact, centered cards: the 5 control-panel options and the 3
   "in the cloud?" options. Centering keeps the text-only cards (no panel /
   no cloud) balanced beside the logo cards, and lets all five panels sit on
   one line at full width. ---- */
.cfg-radio-grid-5 .cfg-radio-card,
.cfg-host-grid .cfg-radio-card {
  display: flex; flex-direction: column; justify-content: center;
  text-align: center;
}
.cfg-radio-grid-5 .cfg-radio-card-content,
.cfg-host-grid .cfg-radio-card-content { align-items: center; }
.cfg-radio-grid-5 .cfg-radio-logo,
.cfg-host-grid .cfg-radio-logo { object-position: center; }
/* Smaller padding + type so all five panels fit one line in the ~760px column,
   and so the three "in the cloud?" cards match the control-panel cards' size. */
.cfg-radio-grid-5 .cfg-radio-card,
.cfg-host-grid .cfg-radio-card { padding: 11px 8px; }
.cfg-radio-grid-5 .cfg-radio-logo,
.cfg-host-grid .cfg-radio-logo { height: 22px; margin-bottom: 4px; }
.cfg-radio-grid-5 .cfg-radio-card-title,
.cfg-host-grid .cfg-radio-card-title { font-size: 0.8125rem; line-height: 1.25; }
/* ---- Number stepper ---- */
.cfg-stepper {
  display: inline-flex; align-items: stretch;
  border: 1.5px solid var(--rule);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #fff;
}
.cfg-stepper-btn {
  width: 48px; height: 48px;
  border: 0; background: #fff;
  display: grid; place-items: center;
  color: var(--ink);
  cursor: pointer;
  transition: background .12s ease;
}
.cfg-stepper-btn:hover { background: var(--bg-alt); }
.cfg-stepper-btn:active { background: var(--rule); }
.cfg-stepper-btn:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: -2px;
}
.cfg-stepper-input {
  width: 80px; height: 48px;
  border: 0; border-left: 1.5px solid var(--rule); border-right: 1.5px solid var(--rule);
  text-align: center;
  font-size: 1.125rem; font-weight: 700; color: var(--ink);
  font-variant-numeric: tabular-nums;
  outline: none;
  background: #fff;
  -moz-appearance: textfield;
}
.cfg-stepper-input::-webkit-outer-spin-button,
.cfg-stepper-input::-webkit-inner-spin-button {
  -webkit-appearance: none; margin: 0;
}
.cfg-stepper-input:focus { background: rgba(47,93,141,.04); }

/* ---- Backup detail: per-server count + size rows ---- */
.cfg-backup-detail {
  margin-top: 16px; padding-top: 16px;
  border-top: 1px dashed var(--rule);
}
.cfg-backup-count { margin-bottom: 14px; }
/* Management add-on detail on /order-backups/ — mirrors .cfg-backup-detail. */
.cfg-mgmt-detail { margin-top: 16px; padding-top: 16px; border-top: 1px dashed var(--rule); }
.cfg-mgmt-panel { margin-bottom: 16px; }
/* Cross-link at the foot of a configurator hero ("only want X? order X here"). */
.configurator-hero-note { margin: 12px auto 0; max-width: 600px; font-size: 0.9375rem; color: rgba(219, 224, 232, 0.92); }
.configurator-hero-alt { margin: 14px 0 0; font-size: 0.9375rem; }
.configurator-hero-alt a { color: var(--accent); font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(14, 165, 165, 0.4); padding-bottom: 1px; }
.configurator-hero-alt a:hover { border-bottom-color: var(--accent); }
.cfg-backup-rows { display: grid; gap: 8px; }
.cfg-backup-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}
.cfg-backup-row-label {
  font-size: 0.9375rem; font-weight: 600; color: var(--ink);
}
.cfg-backup-del {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border: 1.5px solid var(--rule);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink-muted);
  font-size: 1.25rem; line-height: 1;
  cursor: pointer;
  transition: color .12s ease, border-color .12s ease, background .12s ease;
}
.cfg-backup-del:hover {
  color: #B91C1C;
  border-color: #DC2626;
  background: rgba(220,38,38,.06);
}
@media (max-width: 520px) {
  .cfg-backup-row { grid-template-columns: 1fr auto; gap: 6px 8px; }
  .cfg-backup-row .cfg-select { grid-column: 1 / -1; }
}

/* ---- Mixed-fleet entry callout (on the single-server order form) ---- */
.cfg-fleet-callout {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  margin: 16px 0 0; padding: 14px 18px;
  background: rgba(47,93,141,.05);
  border: 1px solid rgba(47,93,141,.18);
  border-radius: var(--radius-sm);
}
.cfg-fleet-callout-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1 1 280px; }
.cfg-fleet-callout-text strong { font-weight: 700; color: var(--ink); font-size: 0.9375rem; }
.cfg-fleet-callout-text span { font-size: 0.875rem; color: var(--ink-soft); line-height: 1.5; }
.cfg-fleet-callout-btn { flex-shrink: 0; white-space: nowrap; }

/* ---- Mixed-fleet order form: repeatable server-type rows ---- */
.fleet-rows { display: grid; gap: 14px; margin-bottom: 14px; }
.fleet-row {
  display: flex; flex-wrap: wrap; align-items: flex-end; gap: 12px;
  padding: 16px;
  border: 1.5px solid var(--rule);
  border-radius: var(--radius-sm);
  background: #fff;
}
.fleet-field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.fleet-field-panel  { flex: 1 1 168px; }
.fleet-field-qty    { flex: 0 0 auto; }
.fleet-field-backup { flex: 1 1 184px; }
.fleet-field-label {
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.04em; color: var(--ink-soft);
}
/* Compact stepper variant for the rows (the default one is 48px tall). */
.fleet-qty-stepper .cfg-stepper-btn { width: 38px; height: 46px; }
.fleet-qty-stepper .cfg-stepper-input { width: 50px; height: 46px; font-size: 1rem; }
.fleet-step-btn { font-size: 19px; font-weight: 600; line-height: 1; }
.fleet-remove {
  flex: 0 0 auto;
  width: 40px; height: 46px;
  display: grid; place-items: center;
  border: 1.5px solid var(--rule); border-radius: var(--radius-sm);
  background: #fff; color: var(--ink-muted);
  font-size: 1.4rem; line-height: 1; cursor: pointer;
  transition: color .12s ease, border-color .12s ease, background .12s ease;
}
.fleet-remove:hover:not(:disabled) { color: #B91C1C; border-color: #DC2626; background: rgba(220,38,38,.06); }
.fleet-remove:disabled { opacity: .35; cursor: not-allowed; }
.fleet-add-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 16px;
  border: 1.5px dashed var(--rule); border-radius: var(--radius-sm);
  background: #fff; color: var(--brand-strong);
  font-weight: 600; font-size: 0.9375rem; cursor: pointer;
  transition: border-color .12s ease, background .12s ease;
}
.fleet-add-btn:hover { border-color: var(--brand); background: rgba(47,93,141,.04); }
.fleet-add-btn svg { color: var(--brand); }
/* "N servers total" line under the fleet summary items. */
.cfg-summary-fleet-count {
  margin: 12px 0 0; font-size: 0.8125rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink-soft);
}

/* ---- Account fields (Step 5) ---- */
.cfg-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.cfg-fields .field-full { grid-column: 1 / -1; }
.cfg-fields .field { margin: 0; }
.cfg-fields label {
  display: block;
  font-size: 0.9375rem; font-weight: 600; color: var(--ink);
  margin-bottom: 6px;
}
.cfg-fields input {
  width: 100%;
  padding: 11px 14px;
  font-size: 1rem; /* 16px — keeps iOS Safari from auto-zooming on focus */
  border: 1.5px solid var(--rule);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.cfg-fields input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(47,93,141,.15);
}
.cfg-fields input.cfg-field-invalid {
  border-color: #DC2626;
  box-shadow: 0 0 0 3px rgba(220,38,38,.15);
}
.cfg-field-hint {
  display: block;
  margin-top: 6px;
  font-size: 0.8125rem; color: var(--ink-muted);
}
.cfg-field-hint--ok { color: var(--success); }

/* On-page account states (js/order-account.js) — new / login / logged-in. */
.cfg-account-host { margin: 2px 0 16px; }
.cfg-account-prompt {
  display: inline-flex; align-items: baseline; gap: 6px;
  background: none; border: 0; padding: 0; cursor: pointer;
  font-size: 0.9375rem; color: var(--ink-soft);
}
.cfg-account-prompt .cfg-prompt-cta { color: var(--brand); font-weight: 700; text-decoration: underline; }
.cfg-account-prompt:hover .cfg-prompt-cta { text-decoration: none; }
.cfg-linkbtn {
  background: none; border: 0; padding: 0; cursor: pointer;
  color: var(--brand); font-weight: 600; font-size: inherit; text-decoration: underline;
}
.cfg-linkbtn:hover { text-decoration: none; }
.cfg-login-panel {
  margin-top: 4px; padding: 18px;
  background: #F4F8FD; border: 1px solid #CBE0F5; border-radius: 12px;
}
.cfg-login-panel .cfg-step-desc { margin-top: 0; }
.cfg-login-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 2px; }
.cfg-login-forgot { font-size: 0.875rem; font-weight: 600; }
.cfg-login-switch { margin: 12px 0 0; font-size: 0.875rem; color: var(--ink-soft); }
.cfg-account-banner {
  padding: 16px 18px; background: #EAF7F0;
  border: 1px solid #BFE6CF; border-radius: 12px;
}
.cfg-account-banner-line { display: flex; align-items: center; gap: 8px; margin: 0; color: var(--ink); }
.cfg-account-tick { color: var(--success); flex: none; }
.cfg-account-banner-actions { margin: 10px 0 0; font-size: 0.875rem; }
.cfg-account-nudge { margin-top: 8px; font-size: 0.8125rem; line-height: 1.5; color: var(--ink-soft); }
.cfg-label-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}
.cfg-label-row label { margin-bottom: 0; }
.cfg-suggest-btn {
  flex-shrink: 0;
  position: relative;
  background: none; border: 0; padding: 0;
  font-size: 0.8125rem; font-weight: 600;
  color: var(--brand);
  cursor: pointer;
  text-decoration: underline;
}
.cfg-suggest-btn::before { content: ""; position: absolute; inset: -12px -6px; }
.cfg-suggest-btn:hover { color: var(--brand-strong); }
.cfg-field-error {
  margin: 12px 0 0;
  padding: 10px 14px;
  background: rgba(220,38,38,.08);
  color: #B91C1C;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
}
.cfg-tos {
  margin: 18px 0 0;
}
.cfg-tos .field-checkbox {
  align-items: flex-start;
  margin-top: 0;
}
.cfg-tos .field-checkbox input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
}
.cfg-tos .field-checkbox label {
  line-height: 1.45;
}
.cfg-tos a {
  color: var(--brand);
  font-weight: 600;
}
/* Missing TOS agreement: box the whole checkbox + label area in red — the same
   red border + glow a missing form field gets — so it's easy to see what's
   needed. (The configurators add .cfg-field-invalid to the checkbox on submit;
   :has() draws the box around its container.) */
.cfg-tos .field-checkbox:has(input.cfg-field-invalid) {
  border: 1.5px solid #DC2626;
  box-shadow: 0 0 0 3px rgba(220,38,38,.15);
  border-radius: var(--radius-sm);
  padding: 11px 13px;
}
@media (max-width: 520px) {
  .cfg-fields { grid-template-columns: 1fr; }
}
.cfg-sublabel {
  display: block;
  font-size: 0.9375rem; font-weight: 600; color: var(--ink);
  margin-bottom: 8px;
}
.cfg-backup-hint {
  margin: 0 0 10px;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.cfg-emph {
  font-weight: 800;
  color: var(--brand-strong);
  letter-spacing: 0.03em;
}
.cfg-select {
  width: 100%;
  padding: 12px 14px;
  font-size: 1rem; /* 16px — keeps iOS Safari from auto-zooming on focus */
  border: 1.5px solid var(--rule);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2354606F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}
.cfg-select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(47,93,141,.15);
}
.cfg-backup-note {
  margin: 10px 0 0;
  font-size: 0.8125rem; color: var(--ink-muted);
}
.cfg-backup-note a { color: var(--brand-strong); }

/* ---- Sticky summary column ---- */
.configurator-summary { position: sticky; top: 24px; }
@media (max-width: 900px) {
  .configurator-summary { position: static; }
}

.cfg-summary-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.cfg-summary-title {
  margin: 0 0 16px;
  font-size: 1rem; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}

.cfg-summary-list {
  margin: 0; padding: 0;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 16px;
  display: grid; gap: 10px;
}
.cfg-summary-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--ink);
}
.cfg-summary-row dt { margin: 0; color: var(--ink-soft); display: flex; align-items: center; gap: 9px; min-width: 0; }
.cfg-summary-row dd {
  margin: 0;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}
/* Editable quantity steppers inside "Your plan". */
.cfg-summary-stepper { display: inline-flex; align-items: center; gap: 5px; flex-shrink: 0; }
.cfg-summary-step-btn {
  width: 22px; height: 22px; padding: 0;
  border: 1px solid var(--rule); border-radius: 5px; background: #fff;
  color: var(--ink); font-size: 15px; line-height: 1; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: border-color .12s ease, color .12s ease;
}
.cfg-summary-step-btn:hover { border-color: var(--brand); color: var(--brand); }
.cfg-summary-qty { min-width: 16px; text-align: center; font-weight: 700; font-variant-numeric: tabular-nums; color: var(--ink); }
.cfg-summary-item-label { min-width: 0; }
.cfg-summary-zero { margin: 0 0 12px; font-size: 0.875rem; color: #b42318; text-align: center; }

.cfg-summary-total {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-top: 16px;
}
.cfg-summary-total-label {
  font-size: 0.875rem; color: var(--ink-soft);
  text-transform: uppercase; letter-spacing: 0.04em;
  font-weight: 600;
}
.cfg-summary-total-amount {
  font-size: 1.75rem; font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.cfg-summary-effective {
  margin: 6px 0 0;
  font-size: 0.8125rem; color: var(--ink-muted);
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.cfg-summary-savings {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.cfg-summary-savings li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  background: rgba(22,163,74,.08);
  color: #166534;
  font-size: 0.8125rem;
}
.cfg-summary-savings svg { color: var(--success); flex-shrink: 0; }

.cfg-submit {
  width: 100%;
  margin-top: 18px;
  padding: 14px 20px;
  font-size: 1rem;
  justify-content: center;
}

.cfg-summary-trust {
  list-style: none;
  margin: 18px 0 0; padding: 0;
  display: grid; gap: 8px;
}
.cfg-summary-trust li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8125rem; color: var(--ink-soft);
}
.cfg-summary-trust svg { color: var(--success); flex-shrink: 0; }

/* "What happens after you order" reassurance — sits just above the agreement +
   submit so buyers know server access is collected later through a secure
   ticket, never on this form. The detail is collapsed so the card stays compact. */
.cfg-next {
  margin: 16px 0 0;
  padding: 12px 14px;
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  background: rgba(47, 93, 141, .05);
}
.cfg-next-lead {
  display: flex;
  gap: 9px;
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--ink-soft);
}
.cfg-next-lead strong { color: var(--ink); font-weight: 700; }
.cfg-next-lead > svg { color: var(--brand); flex-shrink: 0; margin-top: 1px; }
.cfg-next-details { margin-top: 10px; }
.cfg-next-details summary {
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8125rem; font-weight: 600;
  color: var(--brand-strong);
  list-style: none;
}
.cfg-next-details summary::-webkit-details-marker { display: none; }
.cfg-next-caret { flex-shrink: 0; transition: transform .15s ease; }
.cfg-next-details[open] .cfg-next-caret { transform: rotate(90deg); }
.cfg-next-steps {
  margin: 10px 0 0;
  padding-left: 20px;
  display: grid; gap: 7px;
  font-size: 0.8125rem; line-height: 1.5;
  color: var(--ink-soft);
}
.cfg-next-steps strong { color: var(--ink); font-weight: 700; }
.cfg-next-more { margin: 9px 0 0; font-size: 0.8125rem; }
.cfg-next-more a { color: var(--brand-strong); font-weight: 600; }

/* ---- Mobile price visibility on the order configurators ----
   On phones the summary aside stacks last (off-screen while configuring), so
   the live price is surfaced two ways. Desktop is untouched (all rules below
   are gated to <=900px or hidden by default). */

/* Option A — show the $65 base price in the dark hero on load (phones only;
   desktop already shows it in the sticky rail). */
.configurator-hero-price { display: none; }

/* Option C — slim price bar pinned to the bottom of the viewport on phones,
   always visible while configuring. Hidden on desktop (the sticky right-rail
   summary handles it there). Live total mirrored by /js/order-mobilebar.js. */
.cfg-mobilebar { display: none; }
.cfg-mobilebar-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
.cfg-mobilebar-price { display: flex; flex-direction: column; line-height: 1.12; min-width: 0; }
.cfg-mobilebar-label {
  font-size: 0.6875rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--ink-soft);
}
.cfg-mobilebar-total {
  font-size: 1.375rem; font-weight: 800; color: var(--ink);
  letter-spacing: -0.01em; font-variant-numeric: tabular-nums;
}
.cfg-mobilebar-cta { flex: 0 0 auto; padding: 11px 22px; min-height: 44px; }

@media (max-width: 900px) {
  .configurator-hero-price {
    display: block;
    margin: 12px 0 0;
    font-size: 0.9375rem;
    color: rgba(219, 224, 232, 0.82);
  }
  .configurator-hero-price-amount {
    font-size: 1.5rem; font-weight: 800; color: #fff;
    letter-spacing: -0.01em; margin-right: 4px;
  }

  .cfg-mobilebar {
    display: block;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    background: #fff;
    border-top: 1px solid var(--rule);
    box-shadow: 0 -6px 22px rgba(16, 24, 40, 0.12);
    padding: 10px 0;
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  }

  /* Clear room so the bar never hides the final field / submit button. */
  .configurator-section { padding-bottom: 92px; }
}

/* ============================================================
   COMBINED SECTION ("Infrastructure We Manage") — one section with a
   Linux distros row on top and a hosting-providers grid below ("Two-Row
   Stacked"). Sitewide on every panel page + the home page.
   ============================================================ */

.combined-section { background: var(--bg-alt); }
.combined-section .section-header { margin-bottom: 36px; }

/* Shared icon treatment — grayscale by default, color on hover */
.combined-section :is(.combined-distros, .combined-providers) img {
  filter: grayscale(1);
  opacity: 0.62;
  transition: filter 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}
.combined-section :is(.combined-distros, .combined-providers) a:hover img,
.combined-section :is(.combined-distros, .combined-providers) a:focus-visible img {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-1px);
}

.combined-block {
  max-width: 1100px;
  margin: 0 auto;
}
.combined-row { padding: 8px 0; }
.combined-row-label {
  margin: 0 0 18px;
  font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--ink-soft);
  text-align: center;
}
.combined-divider {
  border: 0;
  border-top: 1px solid var(--rule);
  margin: 24px 0;
}
.combined-distros {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap;
  justify-content: center; align-items: flex-start;
  gap: 18px 28px;
}
.combined-distro-item a {
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  text-decoration: none;
  color: var(--ink-soft);
  padding: 6px 10px;
  border-radius: var(--radius-md);
}
.combined-distro-item a:hover,
.combined-distro-item a:focus-visible { color: var(--ink); }
.combined-distro-item img { width: 44px; height: 44px; object-fit: contain; }
.combined-distro-name {
  font-size: 0.8125rem; font-weight: 600;
  text-align: center;
}
.combined-providers {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px 32px;
  align-items: center;
  max-width: 1100px;
}
.combined-provider-item {
  display: flex; align-items: center; justify-content: center;
  height: 52px;
}
.combined-provider-item a { display: block; line-height: 0; }
.combined-provider-item img { max-width: 140px; height: 52px; width: auto; object-fit: contain; }
@media (max-width: 980px) {
  .combined-providers { grid-template-columns: repeat(4, 1fr); gap: 20px 24px; }
  .combined-provider-item, .combined-provider-item img { height: 44px; }
}
@media (max-width: 600px) {
  .combined-providers { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .combined-provider-item, .combined-provider-item img { height: 38px; }
  .combined-provider-item img { max-width: 100px; }
  .combined-distros { gap: 14px 18px; }
  .combined-distro-item img { width: 38px; height: 38px; }
}

/* ============================================================
   HOME HERO — "Dark 3 AM + monitoring terminal" (partials/hero-dark.njk):
   a full-bleed navy hero with the full-color panel-logo row above the
   fold and a faux monitoring terminal narrating an overnight incident.
   ============================================================ */
.hero-x { padding: 80px 0 72px; }
.hero-x .container { display: grid; gap: 48px; align-items: center; }
@media (min-width: 900px) { .hero-x .container { grid-template-columns: 1.1fr 1fr; } }
@media (max-width: 768px) { .hero-x { padding: 48px 0 44px; } }
.hero-x h1 { margin-bottom: 16px; }
.hero-x-sub {
  font-size: 1.125rem; color: var(--ink-soft); line-height: 1.55;
  margin: 0 0 26px; max-width: 46ch;
}
/* Shared panel-logo row */
.hero-logos { margin: 0 0 26px; }
.hero-logos-label {
  display: block; margin-bottom: 12px;
  font-size: 0.6875rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--ink-muted);
}
.hero-logos-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px 26px;
}
.hero-logos-list img { height: 24px; width: auto; display: block; }

/* Dark hero treatment + monitoring terminal */
.hero-dark { background: var(--bg-dark); color: #C7D0DC; }
.hero-dark h1 { color: #fff; }
.hero-dark .eyebrow { color: var(--accent); }
.section-dark .eyebrow { color: var(--accent); } /* keep the bright accent on dark sections; base .eyebrow uses --accent-ink for light bgs */
.hero-dark .hero-x-sub { color: #aab4c2; }
.hero-dark .hero-logos-label { color: var(--ink-on-dark); }
/* White (monochrome) logos sit directly on the navy — no chip. */
.hero-dark .hero-logos-list li { display: flex; align-items: center; }
.hero-dark .hero-logos-list img { height: 26px; }
/* Cap the row so it holds at most three logos per line — cPanel · Plesk ·
   DirectAdmin wrap to a second line of Virtualmin · Linux. */
.hero-dark .hero-logos-list { max-width: 480px; gap: 28px 40px; }
/* Per-logo balancing — cPanel is the reference. The other four are sized so
   their wordmark letters read at roughly cPanel's "font size"; the marks with
   a tagline (DirectAdmin) or an icon (Virtualmin, Linux) need a taller box
   because the wordmark is only part of the artwork. */
.hero-dark .hero-logos-list img.hl-directadmin { height: 37px; }
.hero-dark .hero-logos-list img.hl-virtualmin  { height: 35px; }
.hero-dark .hero-logos-list img.hl-plesk        { height: 35px; }
.hero-dark .hero-logos-list img.hl-linux        { height: 38px; }
.hero-dark .btn-outline { color: #fff; border-color: rgba(255,255,255,0.28); }
.hero-dark .btn-outline:hover { background: rgba(255,255,255,0.10); color: #fff; border-color: rgba(255,255,255,0.5); }

.hero-terminal {
  background: #0B1220;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
}
.hero-terminal-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero-terminal-bar .dot { width: 11px; height: 11px; border-radius: 50%; }
.hero-terminal-bar .dot--r { background: #ff5f57; }
.hero-terminal-bar .dot--y { background: #febc2e; }
.hero-terminal-bar .dot--g { background: #28c840; }
.hero-terminal-title { margin-left: 8px; font-size: 0.75rem; color: var(--ink-on-dark); }
.hero-terminal-body {
  margin: 0; padding: 20px 18px;
  font-size: 0.8125rem; line-height: 1.95; color: #cdd6e3;
  white-space: pre-wrap; word-break: break-word;
}
.hero-terminal-body .t-time { color: var(--ink-on-dark); }
.hero-terminal-body .t-alert { color: #f0b429; font-weight: 700; }
.hero-terminal-body .t-act { color: var(--accent); font-weight: 700; }
.hero-terminal-body .t-ok { color: #34d399; font-weight: 700; }
.hero-terminal-body .t-note { color: #8a92a0; font-style: italic; }

/* ============================================================
   STATS — "Navy Inline Bar" (home, above the plans): a full-bleed navy
   band with 4 stats split by thin dividers. The .section is full viewport
   width; only the inner .container is centered, so the navy spans
   edge-to-edge. On mobile it becomes a 2×2 grid with a cross divider.
   ============================================================ */
.stats-navy { background: var(--bg-dark); padding: 56px 0; }
@media (max-width: 768px) { .stats-navy { padding: 44px 0; } }

.snb-row { display: flex; align-items: stretch; justify-content: space-between; gap: 8px; max-width: 1040px; margin: 0 auto; }
.snb-item { flex: 1; text-align: center; display: flex; flex-direction: column; justify-content: center; }
.snb-num { font-size: 2.25rem; font-weight: 800; color: #fff; line-height: 1.05; letter-spacing: -0.02em; }
/* Variant for stat "headlines" that are short phrases rather than numbers
   (e.g. the backup page: "Isolated Backups", "Restore Anywhere") — smaller so
   they sit on one line in the four-up row. */
.stats-navy-bar--phrase .snb-num { font-size: 1.5rem; }
@media (max-width: 720px) { .stats-navy-bar--phrase .snb-num { font-size: 1.375rem; } }
.snb-lbl { margin-top: 8px; font-size: 0.8125rem; color: #9aa6b6; line-height: 1.35; }
.snb-div { width: 1px; background: rgba(255,255,255,0.14); flex: 0 0 auto; }

/* Mobile: 2 columns × 2 rows. Hide the inline dividers and draw a cross
   divider with cell borders — vertical between the two columns (right
   border on the left-column cells) and horizontal between the two rows
   (bottom border on the top-row cells). Items are the only <div> children
   of .snb-row, so :nth-of-type targets them cleanly past the hidden
   <span> dividers. */
@media (max-width: 720px) {
  .snb-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
  .snb-div { display: none; }
  .snb-item { padding: 22px 14px; }
  .snb-num { font-size: 1.875rem; }
  .snb-item:nth-of-type(1), .snb-item:nth-of-type(3) { border-right: 1px solid rgba(255,255,255,0.14); }
  .snb-item:nth-of-type(1), .snb-item:nth-of-type(2) { border-bottom: 1px solid rgba(255,255,255,0.14); }
}

/* ============================================================
   HOME PLANS — "Logo-led" compact cards (home, "Choose Your Plan"):
   3 across, then 2 centered (flex-wrap + justify-center), square corners,
   no "Most Popular". Each card = panel wordmark + name + price + CTA.
   ============================================================ */

/* 3+2 layout — flex-wrap + center makes the trailing 2 cards center
   under the first row of 3. */
.home-plans { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; max-width: 1040px; margin: 0 auto; }
.home-plan {
  flex: 0 1 calc(33.333% - 14px); max-width: calc(33.333% - 14px);
  display: flex; flex-direction: column; gap: 12px;
  background: #fff; border: 1px solid var(--rule); border-radius: 0; /* square */
  padding: 24px 22px; text-decoration: none; color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.home-plan:hover, .home-plan:focus-visible { border-color: var(--brand); box-shadow: var(--shadow-md); transform: translateY(-2px); text-decoration: none; }
@media (max-width: 900px) { .home-plan { flex-basis: calc(50% - 10px); max-width: calc(50% - 10px); } }
@media (max-width: 560px) { .home-plan { flex-basis: 100%; max-width: 100%; } }

.hp-name { margin: 0; font-size: 1.0625rem; font-weight: 700; color: var(--ink); line-height: 1.3; letter-spacing: -0.01em; }
.hp-price { font-weight: 800; color: var(--brand); font-size: 1.5rem; letter-spacing: -0.02em; line-height: 1; }
.hp-price span { font-size: 0.8125rem; font-weight: 600; color: var(--ink-soft); letter-spacing: 0; }
.hp-cta { margin-top: auto; display: inline-flex; align-items: center; gap: 6px; font-size: 0.875rem; font-weight: 600; color: var(--brand); }
.home-plan:hover .hp-cta { color: var(--brand-strong); }

.hp-logo { height: 42px; display: flex; align-items: center; }
/* cPanel is the reference height; the other four wordmarks are scaled up so they
   read at roughly the same "font size" (mirrors the home-hero balancing). The
   marks with a tagline or icon need a taller box than their wordmark alone. */
.hp-logo img { height: 28px; width: auto; max-width: 100%; object-fit: contain; }
.hp-logo img[src*="plesk"]       { height: 38px; }
.hp-logo img[src*="directadmin"] { height: 40px; }
.hp-logo img[src*="virtualmin"]  { height: 38px; }
.hp-logo img[src*="linux"]       { height: 41px; }
.hp-logo img[src*="cloud"]       { height: 40px; }

/* "Accent bar" treatment — a teal top accent bar and a divided footer
   (price on the left, "View plan" on the right). */
.hp-a { position: relative; padding-top: 26px; }
.hp-a::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--accent); transition: height .15s ease; }
.hp-a:hover::before { height: 5px; }
.hp-a-foot { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--rule); display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.hp-a .hp-cta { margin-top: 0; }

/* ============================================================
   WHAT YOU GET — full-bleed navy, square cards with a teal top accent +
   square icon badge ("All management plans include"). Uses .section-dark
   for the navy ground + light headings.
   ============================================================ */
.wyg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 1080px; margin: 0 auto; }
@media (max-width: 860px) { .wyg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .wyg-grid { grid-template-columns: 1fr; } }
.wyg-title { margin: 0 0 8px; font-size: 1.0625rem; font-weight: 700; color: #fff; line-height: 1.3; }
.wyg-desc { margin: 0; font-size: 0.875rem; color: #9aa6b6; line-height: 1.55; }
.wyg-icon svg { width: 24px; height: 24px; }
.wyg-b .wyg-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.10); border-top: 3px solid var(--accent); border-radius: 0; padding: 24px 22px; transition: background-color .15s ease; }
.wyg-b .wyg-card:hover { background: rgba(255,255,255,0.07); }
.wyg-b .wyg-icon { width: 42px; height: 42px; border-radius: 0; background: rgba(14,165,165,0.16); color: var(--accent); display: grid; place-items: center; margin-bottom: 16px; }

/* ============================================================
   PAGE HERO — navy split + fact panel (standardized 2026-05-29
   across pricing / FAQ / about / contact). Left column: eyebrow +
   h1 + lead + actions (or, on FAQ, the search box). Right column:
   a bordered fact panel (.pho-c-panel). Full-bleed navy via
   .section-dark (white h1, light body, white/outline buttons).
   ============================================================ */
.page-hero { position: relative; }
.page-hero .eyebrow { margin-bottom: 14px; }
.page-hero h1 { margin: 0 0 18px; letter-spacing: -0.02em; }
.page-hero .lead { margin: 0 0 26px; }
.page-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.pho-c { padding: 76px 0; }
.pho-c .container { display: grid; grid-template-columns: 1.25fr 0.9fr; gap: 48px; align-items: center; max-width: 1140px; }
.pho-c h1 { font-size: clamp(2rem, 3.8vw, 2.9rem); }
.pho-c .lead { color: #c7d0dc; }
.pho-c-panel {
  border: 1px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.04);
  border-radius: var(--radius-md); padding: 26px 26px 24px;
}
.pho-c-panel-label {
  margin: 0 0 16px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent);
}
.pho-c-panel ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 13px; }
.pho-c-panel li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9375rem; line-height: 1.4; color: #dbe4ee; }
.pho-c-panel svg { width: 17px; height: 17px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
/* FAQ search sits in the left column — fill it, left-aligned. */
.pho-c .faq-search-wrap { margin: 0; max-width: 100%; }
@media (max-width: 820px) { .pho-c .container { grid-template-columns: 1fr; gap: 30px; } }

/* ============================================================
   "What you get for your money" (pricing page) — two-column
   checklist: teal checks, hairline rows; two columns at >=760px.
   ============================================================ */
.pricing-get-list { list-style: none; padding: 0; margin: 28px 0 0; }
.pricing-get-list li strong { color: var(--ink-strong); }
@media (min-width: 760px) {
  .pricing-get-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; }
}
.pricing-get-list li {
  position: relative; padding: 12px 0 12px 32px;
  border-bottom: 1px solid var(--rule);
  font-size: 0.9375rem; line-height: 1.55;
}
.pricing-get-list li::before {
  content: ""; position: absolute; left: 0; top: 14px;
  width: 20px; height: 20px; background: var(--accent);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / 16px no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / 16px no-repeat;
}

/* ============================================================
   Sales callback form — "accent header" card (chosen 2026-05-29).
   Navy header bar holds the headline. Fields reuse .field/.field-*.
   ============================================================ */
.cbf {
  background: #fff; border: 1px solid var(--rule);
  border-radius: var(--radius-md); padding: 28px;
  max-width: 640px; margin: 0 auto;
}
.cbf-h { margin: 0 0 22px; font-size: 1.5rem; line-height: 1.25; color: var(--ink-strong); }

/* Accent header bar — headline on navy */
.cbf-b { padding: 0; overflow: hidden; }
.cbf-b .cbf-h { margin: 0; padding: 18px 28px; background: var(--bg-dark); color: #fff; font-size: 1.25rem; }
.cbf-b form { padding: 26px 28px 28px; }

/* ============================================================
   Contact page — form-left / methods-right split (3 layout
   candidates; pick one, delete the losers + lab tags). The form
   (.cbf) fills the left column; the two reach-us methods stack
   on the right.
   ============================================================ */
/* Form is taller than the two compact cards — center the right column so the
   spare height is split evenly top and bottom rather than left at the bottom. */
.contact-split { display: grid; grid-template-columns: 1.35fr 1fr; gap: 28px; align-items: center; max-width: 1080px; margin: 0 auto; }
@media (max-width: 880px) { .contact-split { grid-template-columns: 1fr; } }
.contact-split .cbf { max-width: none; margin: 0; }
.contact-split-aside { display: grid; gap: 18px; align-content: start; }

/* shared compact method content */
.cm-head { display: flex; align-items: center; gap: 11px; margin-bottom: 14px; }
.cm-icon { width: 38px; height: 38px; flex-shrink: 0; border-radius: var(--radius-sm); background: rgba(14,165,165,0.14); color: var(--accent); display: grid; place-items: center; }
.cm-icon svg { width: 20px; height: 20px; }
.cm-head h2 { margin: 0; font-size: 1.0625rem; line-height: 1.25; color: var(--ink-strong); }
.cm-hours { margin: 3px 0 0; font-size: 0.8125rem; color: var(--ink-soft); }
.cm-note { margin: 14px 0 0; font-size: 0.8125rem; color: var(--ink-soft); line-height: 1.5; }
.contact-split .contact-list { margin: 0; }

/* card chrome — info cards, so no hover lift */
.cm-card { padding: 22px; }
.cm-card:hover { transform: none; box-shadow: var(--shadow-sm); }

/* ============================================================
   Shared form confirmation + error states (every bot-protected
   form: js/main.js fetch-submits, routes to /thank-you/ on success,
   shows .form-error inline on failure).
   ============================================================ */
.thankyou-page { text-align: center; }
.thankyou-check {
  width: 64px; height: 64px; margin: 0 auto 22px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(14, 165, 165, 0.12); color: var(--accent);
}
.thankyou-check svg { width: 34px; height: 34px; }
.thankyou-actions {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center; margin-top: 28px;
}
.form-error {
  margin: 0 0 16px; padding: 11px 14px;
  background: #fdecec; border: 1px solid #f1c4c4;
  border-radius: var(--radius-sm);
  color: #9b2c2c; font-size: 0.9375rem; line-height: 1.5;
}
