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

/* -------- 1. Tokens -------- */
:root {
  --bg:           #FFFFFF;
  --bg-alt:       #F7F8FA;
  --bg-dark:      #0F1A2B;
  --ink:          #1A2233;
  --ink-soft:     #54606F;
  --ink-muted:    #8A92A0;
  --rule:         #E5E8EE;
  --brand:        #2F5D8D;
  --brand-strong: #1F3F65;
  --accent:       #0EA5A5;
  --success:      #16A34A;
  --warn:         #F59E0B;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --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; }
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); 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-tight { padding: calc(var(--section-y) * 0.6) 0; }
.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-ghost    { background: transparent; color: var(--brand); padding: 14px 8px; }
.btn-ghost:hover    { color: var(--brand-strong); }
.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: 981px) {
  .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: 24px;
}
.site-header .logo img { height: 44px; width: auto; display: block; }
.nav-toggle {
  display: none;
  background: transparent; border: 1px solid var(--rule);
  padding: 8px 10px; border-radius: var(--radius-sm); color: var(--ink);
}
.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 14px;
  color: var(--ink); font-weight: 500; font-size: 0.9375rem;
  border-radius: var(--radius-sm);
  position: relative;
}
.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: 640px;
  padding: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
}
.mega-menu-item {
  display: grid !important;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: center;
  padding: 10px 12px !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 {
  width: 40px; height: 28px; object-fit: contain;
}
.mega-menu-icon {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: var(--radius-sm);
  background: rgba(14,165,165,0.12);
  color: var(--accent);
  justify-self: center;
}
.mega-menu-icon svg { width: 20px; height: 20px; }
.mega-menu-icon--brand {
  background: var(--brand);
  color: #fff;
}
.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;
}
.mega-menu-cta {
  grid-column: 1 / -1;
  margin-top: 6px;
  padding-top: 16px !important;
  border-top: 1px solid var(--rule);
}
.header-cta { display: flex; gap: 8px; align-items: center; }

@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; align-items: center; gap: 6px; }
  .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;
    transition: opacity .15s, transform .15s, visibility .15s;
  }
  .primary-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .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 { grid-template-columns: 1fr; gap: 0; padding: 0 0 0 16px; min-width: 0; }
  .mega-menu-item { grid-template-columns: 32px 1fr; gap: 12px; }
  .mega-menu-item img, .mega-menu-icon { width: 32px; height: 24px; }
  .mega-menu-icon { height: 32px; }
  .mega-menu-desc { display: none; }
  .mega-menu-cta { border-top: 1px solid var(--rule); padding-top: 12px !important; margin-top: 8px; }
}
/* §9.1 — hide Contact Sales only on phone-sized viewports; keep it visible
   at tablet (600-980px) alongside Order Now + hamburger. Below 600px the
   header gets too cramped with logo + 2 buttons + hamburger. Contact Us is
   still reachable via the drawer menu. */
@media (max-width: 599px) {
  .header-cta .btn-outline { display: none; }
}

/* -------- 7. Hero -------- */
.hero { padding: 96px 0 80px; }
.hero .container { display: grid; gap: 48px; align-items: center; }
@media (min-width: 900px) {
  .hero .container { grid-template-columns: 1.1fr 1fr; }
}
@media (max-width: 768px) {
  .hero { padding: 56px 0 48px; }
}
.hero h1 { margin-bottom: 20px; }
.hero .lead { margin-bottom: 24px; }
.hero-stat {
  margin: 0 0 20px;
  font-size: 1rem;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.5;
}
.hero-stat strong {
  color: var(--brand);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}
.hero-phone {
  display: inline-flex; align-items: center; gap: 10px;
  margin: 0 0 12px; padding: 10px 14px;
  background: rgba(14,165,165,0.08);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem; color: var(--ink-soft);
}
.hero-phone svg { color: var(--accent); width: 18px; height: 18px; flex-shrink: 0; }
.hero-phone-label { font-weight: 500; }
.hero-phone a {
  color: var(--ink); font-weight: 700;
  letter-spacing: -0.01em; text-decoration: none;
}
.hero-phone a:hover { color: var(--brand); text-decoration: none; }

/* Hero price line — sits between the phone pill and the CTA row.
   Big $65 brand-color number + small period + inline discount note. */
.hero-pricing {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 10px;
  margin: 0 0 20px;
  font-size: 0.9375rem; color: var(--ink-soft);
}
.hero-pricing-amount {
  font-size: 1.75rem; color: var(--brand);
  font-weight: 800; letter-spacing: -0.02em; line-height: 1;
}
.hero-pricing-period { color: var(--ink); font-weight: 500; }
.hero-pricing-dot { color: var(--ink-muted); }
.hero-pricing-note { color: var(--ink-soft); }

/* Plesk badge — small pill overlaid on the hero image bottom-left corner.
   Identifies the image as Plesk-focused without making unverified claims. */
.hero-image { position: relative; }
.hero-badge {
  position: absolute; left: 16px; bottom: 16px;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  color: var(--brand);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  box-shadow: var(--shadow-md);
}
.hero-badge svg { width: 14px; height: 14px; color: var(--accent); }

/* §10.3 — small Plesk wordmark chip overlaid on the top-right of the hero
   image. Gives the page a Plesk-branded visual anchor in the first fold
   without making any partner/certification claims. */
.hero-panel-chip {
  position: absolute; top: 16px; right: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  box-shadow: var(--shadow-md);
  max-width: 150px;
}
.hero-panel-chip img { width: 100%; height: auto; display: block; }
.hero-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bg-alt);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* §13.1 — Stacked layout below 900px: image above the H1 so users get a
   visual anchor in the initial viewport. Cap max-width so the image doesn't
   dominate the tablet hero, and swap to a wider 16:10 ratio that reads as
   a banner rather than a portrait. Must come AFTER the base .hero-image
   rule above so the aspect-ratio override wins in the cascade. */
@media (max-width: 899px) {
  .hero .container > div:first-child { order: 2; }
  .hero-image {
    order: 1;
    aspect-ratio: 16 / 10;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
  }
}
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 12px 20px;
  margin-top: 24px; color: var(--ink);
  font-size: 0.9375rem; font-weight: 500;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta svg { color: var(--accent); }

/* §13.2 — Mobile: stack hero + final-CTA buttons full-width so they read
   as definitive touch targets instead of cramped 45% columns.
   §13.3 — Mobile: tighten vertical rhythm below the CTAs. */
@media (max-width: 480px) {
  .hero .btn-row,
  .final-cta .btn-row { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero .btn-row .btn,
  .final-cta .btn-row .btn { width: 100%; justify-content: center; }
  .hero-meta { gap: 8px 16px; margin-top: 16px; font-size: 0.875rem; }
  .hero-phone { margin-bottom: 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;
}
/* Word-style stat values (like "Onyx & Obsidian") — smaller type so the
   full phrase fits a 4-column grid cell without wrapping awkwardly.
   min-height matches the default .num line-box so labels align
   horizontally across a mixed row of number + word stats. */
.stat .num.num-phrase {
  font-size: 1.375rem; letter-spacing: -0.01em;
  min-height: 2.36rem;
  display: flex; align-items: center; justify-content: center;
}
.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-link {
  display: block; text-decoration: none; color: inherit;
}
.card-link:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none; color: inherit;
}
.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; }

/* Icon-chip color categories for the benefits grid */
.card--support .icon {
  background: rgba(47,93,141,0.10);
  color: var(--brand);
}
.card--reliability .icon {
  background: rgba(245,158,11,0.14);
  color: var(--warn);
}

/* 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: 999px;
  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. */
.order-callout .order-image {
  max-width: 340px; margin: 0 auto;
}
.order-callout .order-image img { width: 100%; height: auto; }

/* §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);
}

@media (max-width: 820px) {
  .order-callout { grid-template-columns: 1fr; padding: 32px; gap: 24px; }
  .order-callout .order-image { order: -1; }
}

/* Plans grid — 2 per row, 5th card centered alone on its own row */
.plans-grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.plans-grid > .plan-card { grid-column: span 2; }
.plans-grid > .plan-card:nth-child(5) { grid-column: 2 / span 2; }
@media (max-width: 720px) {
  .plans-grid { grid-template-columns: 1fr; gap: 16px; }
  .plans-grid > .plan-card,
  .plans-grid > .plan-card:nth-child(5) { grid-column: auto; }
}

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

/* Plan card — unified card with logo | body layout */
.plan-card {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: 28px;
  text-decoration: none; color: inherit;
  box-shadow: var(--shadow-sm);
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.plan-card:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none; color: inherit;
}
.plan-card > img {
  width: 80px; height: auto; max-height: 56px; object-fit: contain;
  align-self: start;
}
.plan-card-body { min-width: 0; }
.plan-card-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 14px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.plan-card h3 {
  margin: 0; font-size: 1.125rem; line-height: 1.3;
  color: var(--ink);
}
.plan-card-tag {
  display: block;
  font-size: 0.8125rem; font-weight: 400;
  color: var(--ink-muted);
  letter-spacing: 0;
  margin: 2px 0 0;
}
.plan-card p {
  margin: 0 0 14px;
  font-size: 0.9375rem; line-height: 1.55;
  color: var(--ink-soft);
}

/* Price block */
.plan-price {
  display: inline-flex; align-items: baseline; gap: 4px;
  margin: 0; flex-shrink: 0;
}
.plan-price-amount {
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
  letter-spacing: -0.02em;
}
.plan-price-period {
  font-size: 0.875rem;
  color: var(--ink-soft);
  font-weight: 500;
  line-height: 1;
}

/* Features list */
.plan-features {
  list-style: none; padding: 0; margin: 0 0 14px;
  display: grid; gap: 6px;
  font-size: 0.875rem; line-height: 1.5;
  color: var(--ink-soft);
}
.plan-features li {
  position: relative; padding-left: 22px;
}
.plan-features li::before {
  content: ''; position: absolute; left: 2px; top: 7px;
  width: 10px; height: 6px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

/* CTA link */
.plan-cta {
  font-size: 0.9375rem; font-weight: 600; color: var(--brand);
  transition: color .15s;
  text-underline-offset: 3px;
}
.plan-card:hover .plan-cta {
  color: var(--brand-strong);
  text-decoration: underline;
}
.plan-cta span { display: inline-block; transition: transform .15s; }
.plan-card:hover .plan-cta span { transform: translateX(3px); }

/* Featured plan — "Most popular": same size as others, distinct by border + ring + shadow */
.plan-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-lg);
}
.plan-card.featured:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 8px 16px rgba(15,26,43,.10), 0 40px 72px -20px rgba(15,26,43,.28);
}

@media (max-width: 720px) {
  .plan-card {
    grid-template-columns: 64px 1fr;
    gap: 16px;
    padding: 20px;
  }
  .plan-card > img { width: 64px; max-height: 48px; }
}

/* "Most popular" badge */
.plan-badge {
  position: absolute; top: -12px; left: 28px;
  background: var(--accent); color: #fff;
  padding: 5px 14px;
  font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 999px; white-space: nowrap;
  box-shadow: 0 4px 12px rgba(14,165,165,.35);
}

/* -------- 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-muted);
  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; }
}

/* -------- 10d. Contact Us page --------
   Hero with image; sales/support method cards; sales-callback form with
   side-aside panel; preserves baseline H2 set ("Server Surgeon Sales",
   "Server Surgeon Support", "About Server Surgeon"). #}
.hero-contact .lead { margin-bottom: 14px; }
.hero-contact p:not(.lead):not(.eyebrow) {
  color: var(--ink-soft);
  margin: 0 0 14px;
}
.hero-contact .btn-row { margin-top: 22px; }

/* Auxiliary section header that doesn't add a top-level H2 (the cards
   below own the locked H2s). We hide the heading for screen-reader
   readers but keep the eyebrow visible for sighted users. */
.visually-hidden-h2-aux {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.contact-methods .contact-method {
  display: flex; flex-direction: column; gap: 12px;
  padding: 28px;
}
.contact-method > .icon { margin-bottom: 0; }
.contact-method h2 { margin: 0; font-size: 1.375rem; }
.contact-method .contact-hours {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.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); }
.contact-method .contact-note {
  margin: auto 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
  font-size: 0.9375rem;
  color: var(--ink-soft);
}
.contact-method .contact-footnote {
  margin: auto 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
  font-size: 0.8125rem;
  color: var(--ink-muted);
  line-height: 1.55;
}

@media (max-width: 720px) {
  .contact-list-label { flex-basis: 100%; }
  .contact-list li { flex-wrap: wrap; gap: 4px; padding: 8px 0; }
}

/* Sales callback form with side aside */
.contact-callback-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: start;
  max-width: 1024px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .contact-callback-grid { grid-template-columns: 1fr; gap: 24px; }
}
.contact-callback-h2 {
  margin: 0 0 10px;
  font-size: 1.5rem;
  line-height: 1.25;
  color: var(--ink-strong);
}
.contact-callback-lead {
  margin: 0 0 22px;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.contact-card--callback { padding: 28px; }
.contact-card--callback .field + .field { margin-top: 14px; }
.contact-card--callback .field select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  background: #fff;
  font-size: 0.9375rem;
  color: var(--ink);
}
.contact-card--callback .field select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(14,165,165,0.18);
}
.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;
}
.contact-callback-aside {
  background: var(--bg-alt);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: 24px;
}
.contact-callback-aside h3 {
  margin: 0 0 14px;
  font-size: 1.0625rem;
}
.contact-callback-aside .bullet-list { margin: 0 0 14px; }
.contact-callback-aside .bullet-list li {
  display: flex; align-items: flex-start; gap: 8px;
  margin-bottom: 10px;
  font-size: 0.9375rem;
  color: var(--ink-soft);
}
.contact-callback-aside .bullet-list svg {
  flex-shrink: 0; color: var(--accent); margin-top: 4px;
}
.contact-aside-note {
  margin: 0;
  padding-top: 14px;
  border-top: 1px dashed var(--rule);
  font-size: 0.875rem;
  color: var(--ink-muted);
}

/* Contact page — "How the conversation usually goes" 3-step list */
.conversation-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 24px;
}
.conversation-steps li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
}
.conversation-step-num {
  flex: 0 0 44px;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.conversation-steps h3 {
  margin: 0 0 6px;
  font-size: 1.0625rem;
  color: var(--ink-strong);
}
.conversation-steps p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--ink);
}
.conversation-steps a {
  color: var(--brand-strong);
  text-decoration: underline;
}
@media (max-width: 600px) {
  .conversation-steps li { flex-direction: column; gap: 12px; padding: 20px; }
  .conversation-step-num { width: 38px; height: 38px; flex-basis: 38px; }
}

/* -------- 10e. Linux Services FAQ page --------
   Big hero with prominent search bar, sticky category-jump nav, then 4
   FAQ sections (Most-Asked + 3 categories). All ~150 entries are in the
   initial DOM; the search input filters/hides on the client side. */
.hero-faq { padding-bottom: 32px; }
.hero-faq .container { display: block; }
.hero-faq .container > div {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.hero-faq .lead { max-width: 640px; margin-left: auto; margin-right: auto; }

.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: 999px;
  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);
}
.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: 999px;
  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);
  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; }

/* When .faq-search-active is on body, fade un-matched sections to a small
   "no results in this section" state by hiding empty sections via JS. */
.faq-no-results .section-header { text-align: center; }

/* Highlight matched substring inside Q text during a search */
.faq-search-hl {
  background: rgba(245,158,11,0.32);
  color: inherit;
  padding: 0 2px;
  border-radius: 3px;
}

/* -------- 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: 999px;
  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;
  }
}

.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-note { color: var(--ink-muted); }
.testimonial .who-badge {
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}
.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; }

/* 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: 999px;
  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; align-items: start;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1.1fr 1fr; }
}
.bullet-list {
  list-style: none; padding: 0; margin: 20px 0 0;
  display: grid; gap: 12px;
}
.bullet-list li {
  display: flex; align-items: center; gap: 12px;
  font-weight: 500; color: var(--ink-soft);
}
.bullet-list li strong { color: var(--ink); font-weight: 700; }
.bullet-list svg { color: var(--success); flex-shrink: 0; }

/* Facebook 5-star rating callout — promoted from a bullet */
.fb-rating {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 12px 16px;
  margin: 20px 0 8px;
  background: rgba(14,165,165,0.06);
  border: 1px solid rgba(14,165,165,0.25);
  border-radius: var(--radius-sm);
  text-decoration: none; color: var(--ink);
  transition: background .15s, border-color .15s, transform .15s;
}
.fb-rating:hover {
  background: rgba(14,165,165,0.10);
  border-color: var(--accent);
  color: var(--ink); text-decoration: none;
  transform: translateY(-1px);
}
.fb-stars {
  color: #F59E0B;
  font-size: 1.125rem;
  letter-spacing: 3px;
  line-height: 1;
}
.fb-rating-text {
  display: flex; flex-direction: column;
  line-height: 1.25;
}
.fb-rating-text strong {
  color: var(--ink);
  font-weight: 700;
  font-size: 0.9375rem;
}
.fb-rating-text > span {
  color: var(--ink-soft);
  font-size: 0.8125rem;
  margin-top: 2px;
}

.contact-card {
  background: #fff; border: 1px solid var(--rule);
  border-radius: var(--radius-md); padding: 28px;
  box-shadow: var(--shadow-sm);
}
.contact-card h3 { margin-bottom: 16px; }
.field { display: grid; gap: 6px; margin-bottom: 16px; }
.field label { font-size: 0.875rem; font-weight: 600; color: var(--ink); }
.field input, .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 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-services-header {
  max-width: 880px; margin: 0 auto 28px; text-align: center;
}
.related-services-header .eyebrow { margin-bottom: 6px; }
.related-services-header h2 { font-size: 1.5rem; margin: 0; }
.related-services-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 820px) {
  .related-services-grid { grid-template-columns: 1fr; gap: 12px; }
}
.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;
}
.related-service-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: rgba(14,165,165,0.10);
  color: var(--accent);
  display: grid; place-items: center;
}
.related-service-icon svg { width: 20px; height: 20px; }
.related-service-text { flex: 1; min-width: 0; }
.related-service-title {
  display: block;
  color: var(--ink); font-weight: 600; font-size: 0.9375rem;
  margin-bottom: 2px;
}
.related-service-desc {
  display: block;
  color: var(--ink-soft); font-size: 0.8125rem;
  line-height: 1.4;
}
.related-service-arrow {
  color: var(--ink-muted);
  font-size: 1.25rem; line-height: 1;
  flex-shrink: 0;
  transition: color .15s, transform .15s;
}
.related-service:hover .related-service-arrow { color: var(--brand); transform: translateX(2px); }

/* -------- 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;
}
.final-cta-subbenefits {
  margin-top: 20px; margin-bottom: 0;
  color: rgba(219,224,232,0.65);
  font-size: 0.875rem;
  letter-spacing: 0.01em;
}

/* 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);
}

/* -------- 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 h4 {
  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-wordmark {
  display: inline-block;
  color: #fff;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  text-decoration: none;
}
.footer-wordmark:hover { color: #fff; text-decoration: none; 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.55);
}
.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; }
.footer-bottom .social a:hover { color: #fff; }
.footer-bottom .social svg { width: 20px; height: 20px; }

/* -------- 16. Misc helpers -------- */
.text-center { text-align: center; }
.mt-md { margin-top: 24px; }
.mb-md { margin-bottom: 24px; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* Image placeholder (per DESIGN_SPEC §9a) */
.img-placeholder {
  display: grid; place-items: center;
  background: var(--bg-alt);
  border: 2px dashed var(--rule);
  border-radius: var(--radius-md);
  color: var(--ink-muted);
  text-align: center; padding: 24px;
  font-size: 0.875rem;
  aspect-ratio: 3 / 2;
}

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

/* Single-column hero variant for prose pages (About, Pricing) — centered.
   Sits the eyebrow / H1 / lead / CTAs / trust strip on the same vertical
   axis as the centered body sections that follow, so the reader's eye
   doesn't jump from a left-anchored hero to a centered body. */
.hero-prose {
  background:
    radial-gradient(900px circle at 18% -10%, rgba(14,165,165,0.07), transparent 55%),
    radial-gradient(700px circle at 82% 110%, rgba(14,165,165,0.05), transparent 55%);
  border-bottom: 1px solid var(--rule);
}
.hero-prose .container { display: block; padding-top: 8px; padding-bottom: 8px; }
.hero-prose .container > div {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.hero-prose .eyebrow { display: inline-block; }
.hero-prose h1 { margin-bottom: 18px; }
.hero-prose .lead {
  max-width: 640px;
  margin: 0 auto 28px;
  font-size: 1.1875rem;
}
.hero-prose .btn-row { justify-content: center; }
.hero-prose .hero-meta {
  justify-content: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px dashed var(--rule);
}
.hero-prose .pricing-hero-trust {
  justify-content: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px dashed var(--rule);
}

/* 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); }

/* Inline plan-chooser — compact off-ramp blocks on the long home page
   (placed after FAQ and before Enemy Framing). Centered prompt + a 6-up
   grid of mini panel cards (image + name + link). Same visual vocabulary
   as the main "Our Server Management Plans" section, but smaller and
   quieter so it reads as "did you find what you want?" rather than a
   duplicate plan listing. */
.inline-plan-chooser {
  padding: 56px 0;
}
.inline-plan-chooser-prompt {
  text-align: center;
  margin-bottom: 28px;
}
.inline-plan-chooser-prompt .eyebrow {
  display: inline-block;
  margin-bottom: 8px;
}
.inline-plan-chooser-prompt p {
  margin: 0;
  font-size: 1.0625rem;
  color: var(--ink);
  font-weight: 500;
}
/* Flex layout keeps trailing rows centered when card count isn't a multiple
   of the column count (e.g., 5 cards at the 3-up tablet breakpoint renders
   as 3 + 2 with the 2 centered, not left-aligned). */
.mini-plans-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
}
.mini-plan-card {
  flex: 1 1 160px;
  max-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 10px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--ink);
  text-align: center;
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease, color .15s ease;
}
.section-alt .mini-plan-card { background: #fff; }
.mini-plan-card:hover,
.mini-plan-card:focus-visible {
  border-color: var(--brand);
  color: var(--brand-strong);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}
.mini-plan-card img {
  width: auto;
  height: 48px;
  max-width: 90px;
  object-fit: contain;
  display: block;
}
.mini-plan-name {
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.005em;
}
@media (max-width: 768px) {
  .inline-plan-chooser { padding: 40px 0; }
  .mini-plan-card img { height: 40px; }
  .mini-plan-name { font-size: 0.75rem; }
}

/* Chip cloud — for the "what we manage" panel + provider grids */
.chip-cloud {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin: 16px 0 24px;
  padding: 0; list-style: none;
}
.chip-cloud li a, .chip-cloud li span {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: 0.875rem;
  color: var(--ink);
  text-decoration: none;
  transition: border-color .15s, color .15s, transform .15s;
}
.chip-cloud li a:hover {
  border-color: var(--brand);
  color: var(--brand-strong);
  transform: translateY(-1px);
}
.section-alt .chip-cloud li a, .section-alt .chip-cloud li span { background: #fff; }
.chip-cloud-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  font-weight: 600;
  margin: 22px 0 6px;
}
.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%);
}
.logo-strip-track {
  --logo-gap: 56px;
  display: flex;
  align-items: center;
  gap: var(--logo-gap);
  padding: 0;
  margin: 0;
  list-style: none;
  width: max-content;
  /* will-change keeps the GPU compositing layer warm so the loop never drops a
     frame at the wrap-around point. */
  will-change: transform;
  animation: logo-strip-marquee 50s linear infinite;
}
.logo-strip-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
}
.logo-strip-item a {
  display: block;
  height: 100%;
  line-height: 0;
}
.logo-strip-item img {
  height: 100%;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.62;
  transition: filter .2s ease, opacity .2s ease, transform .2s ease;
}
.logo-strip-item a:hover img,
.logo-strip-item a:focus-visible img {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-1px);
}
/* 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; }
  .logo-strip-track   { --logo-gap: 40px; }
  .logo-strip-item    { height: 44px; }
  .logo-strip-item img { max-width: 140px; }
}
/* 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-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px 40px;
    width: auto;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--pad-x);
  }
  .logo-strip-item[aria-hidden="true"] { display: none; }
}

/* "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; }
}
.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; }

/* 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);
}

/* -------- 18. Pricing page -------- */
.pricing-hero-trust {
  display: flex; flex-wrap: wrap; gap: 18px 28px;
  margin-top: 24px;
  font-size: 0.9375rem;
  color: var(--ink-soft);
  padding: 0; list-style: none;
}
.pricing-hero-trust li {
  display: flex; align-items: center; gap: 8px;
}
.pricing-hero-trust li svg { color: var(--brand); flex: 0 0 auto; }

.pricing-tier-table-wrap { overflow-x: auto; margin: 24px 0 12px; }
.pricing-tier-table {
  width: 100%; border-collapse: collapse;
  background: #fff; border: 1px solid var(--rule); border-radius: var(--radius-md);
  overflow: hidden;
}
.pricing-tier-table th, .pricing-tier-table td {
  padding: 14px 18px; text-align: center; border-bottom: 1px solid var(--rule);
  font-size: 0.9375rem;
}
.pricing-tier-table 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-table tbody th {
  text-align: left; font-weight: 600; color: var(--ink-strong);
  background: rgba(0,0,0,0.015);
}
.pricing-tier-table tbody tr:last-child td,
.pricing-tier-table tbody tr:last-child th { border-bottom: 0; }
.pricing-tier-table td strong { color: var(--brand-strong); font-size: 1.0625rem; }

/* Pricing tier table — highlight the recommended row */
.pricing-tier-table tbody tr.pricing-tier-recommended {
  background: rgba(14,165,165,0.05);
}
.pricing-tier-table tbody tr.pricing-tier-recommended th {
  background: rgba(14,165,165,0.10);
  color: var(--brand-strong);
}
.pricing-tier-table tbody tr.pricing-tier-recommended td strong { color: var(--brand-strong); }
.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: 999px;
  vertical-align: middle;
  line-height: 1.4;
}

/* 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: 999px;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .pricing-option--recommended { transform: none; }
}

/* vs-payroll comparison block */
.vs-compare {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  margin: 32px 0;
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
}
@media (max-width: 700px) {
  .vs-compare { grid-template-columns: 1fr; }
}
.vs-compare-col { padding: 24px 26px; }
.vs-compare-col + .vs-compare-col {
  border-left: 1px solid var(--rule);
  background: rgba(14,165,165,0.04);
}
@media (max-width: 700px) {
  .vs-compare-col + .vs-compare-col { border-left: 0; border-top: 1px solid var(--rule); }
}
.vs-compare h3 {
  margin: 0 0 14px;
  font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--ink-soft); font-weight: 700;
}
.vs-compare-col + .vs-compare-col h3 { color: var(--brand-strong); }
.vs-compare ul { padding: 0; margin: 0; list-style: none; }
.vs-compare li {
  padding: 10px 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--ink);
  border-bottom: 1px dashed var(--rule);
}
.vs-compare li:last-child { border-bottom: 0; }
.vs-compare-col + .vs-compare-col li strong { color: var(--brand-strong); }

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

/* Pricing — what's included bullet list (richer than .bullet-list) */
.pricing-included { padding: 0; margin: 18px 0; list-style: none; }
.pricing-included li {
  padding: 12px 0 12px 32px;
  position: relative;
  border-bottom: 1px solid var(--rule);
  font-size: 0.9375rem; line-height: 1.55;
}
.pricing-included li:last-child { border-bottom: 0; }
.pricing-included li::before {
  content: "";
  position: absolute; left: 0; top: 14px;
  width: 20px; height: 20px;
  background: var(--brand);
  -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;
}
.pricing-included li strong { color: var(--ink-strong); }

/* ============================================================================
   /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; }

.configurator-hero { padding-bottom: 32px; }
.configurator-hero .container > div { max-width: 760px; }

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

/* ---- Radio card grids ---- */
.cfg-radio-grid { display: grid; gap: 10px; }
.cfg-radio-grid-2 { grid-template-columns: repeat(2, 1fr); }
.cfg-radio-grid-4 { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
.cfg-radio-grid-5 { grid-template-columns: repeat(auto-fit, minmax(140px, 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);
  background: rgba(47,93,141,.04);
  box-shadow: inset 0 0 0 1.5px var(--brand);
}
.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;
}
.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);
}

/* ---- 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 size sub-field ---- */
.cfg-backup-size {
  margin-top: 16px; padding-top: 16px;
  border-top: 1px dashed var(--rule);
}
.cfg-sublabel {
  display: block;
  font-size: 0.9375rem; font-weight: 600; color: var(--ink);
  margin-bottom: 8px;
}
.cfg-sublabel-hint {
  display: block;
  font-size: 0.8125rem; font-weight: 400; color: var(--ink-muted);
  margin-top: 2px;
}
.cfg-select {
  width: 100%;
  padding: 12px 14px;
  font-size: 0.9375rem;
  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: baseline; justify-content: space-between;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--ink);
}
.cfg-summary-row dt { margin: 0; color: var(--ink-soft); }
.cfg-summary-row dd {
  margin: 0;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}
.cfg-summary-row--subtotal {
  padding-top: 10px;
  border-top: 1px dashed var(--rule);
  font-weight: 700;
}
.cfg-summary-row--subtotal dt,
.cfg-summary-row--subtotal dd { color: var(--ink); }
.cfg-summary-discount { color: var(--success); }

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