@charset "UTF-8";
/* ============================================================
   GoSSDHosting — Custom Theme (Bootstrap 5 layer)
   Indigo / purple, matched to the brand logo.
   Styles ONLY default Bootstrap classes — no custom classes
   are used in page markup. Original design.
   ============================================================ */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ---------- Design tokens (override Bootstrap's own) ---------- */
:root {
  --bs-primary:        #27AE73;
  --bs-primary-rgb:    39, 174, 115;

  --brand-indigo:      #27AE73;  /* primary green (links, accents) */
  --brand-dark:        #0d2b20;  /* deep green-black (footer, dark bands) */
  --brand-solid:       #27AE73;  /* main button/CTA color */
  --brand-solid-hover: #1f9362;  /* button hover (darker) */
  --brand-grad:        #27AE73;  /* navbar CTA, underline, dots */

  --ink:               #16241d;
  --body-color:        #5a6b62;
  --muted:             #8a978f;
  --line:              #e8f1ec;
  --surface-2:         #f1f8f4;

  /* futuristic accent gradient (green → teal/mint) */
  --grad-brand:        linear-gradient(120deg, #27AE73 0%, #16b98a 55%, #22c1a6 100%);
  --grad-soft:         linear-gradient(135deg, rgba(39,174,115,.14), rgba(34,193,166,.05));

  /* rounded, modern radii */
  --radius:            20px;
  --radius-sm:         14px;
  --radius-pill:       999px;
  /* soft, layered green-tinted shadows */
  --shadow-sm:         0 2px 8px rgba(13, 43, 32, .05);
  --shadow:            0 10px 30px rgba(13, 43, 32, .09);
  --shadow-lg:         0 30px 60px -12px rgba(13, 43, 32, .18);

  --bs-body-font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --bs-body-color: var(--body-color);
  /* Bootstrap 5.3 resolves link colour from the *-rgb triplets, so set those too */
  --bs-link-color: #15af76;
  --bs-link-color-rgb: 21, 175, 118;
  --bs-link-hover-color: #1f9362;
  --bs-link-hover-color-rgb: 31, 147, 98;
  --bs-border-radius: var(--radius-sm);
}

/* ---------- Scroll reveal (subtle fade + rise) ----------
   .reveal is added to elements by JS; .is-visible fires when
   the element scrolls into view. Grid children stagger via
   an inline --reveal-delay set by the observer. */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s cubic-bezier(.2,.8,.2,1), transform .55s cubic-bezier(.2,.8,.2,1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ---------- Base ---------- */
/* clip horizontal overflow WITHOUT breaking position:sticky.
   `overflow-x: hidden` would make body a scroll container and kill the
   sticky navbar; `clip` prevents the swipe-scroll without that side effect. */
html, body { overflow-x: clip; }
body {
  font-family: var(--bs-body-font-family);
  color: var(--body-color);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.03em;
  line-height: 1.15;
}
h1 { font-weight: 800; font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
h2 { font-weight: 800; font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: .75rem; }

p  { line-height: 1.75; }
.lead { color: var(--body-color); font-size: 1.15rem; }

/* in-content links: no underline by default, underline on hover.
   (scoped to text links — .btn and pill links keep their own styling) */
section a:not(.btn):not(.dropdown-item):not(.nav-link):not(.card):not(.app-logo) {
  color: var(--brand-solid);
  text-decoration: none;
  font-weight: 600;
}
section a:not(.btn):not(.dropdown-item):not(.nav-link):not(.card):not(.app-logo):not(.infra-link):hover {
  color: var(--brand-solid-hover);
  text-decoration: underline;
}
.infra-link, .infra-link:hover { text-decoration: none; }
/* card/tile links never get an underline */
section a.card, section a.card:hover { text-decoration: none; }

section { scroll-margin-top: 100px; }

/* Extra spacing utility (Bootstrap stops at py-5 = 3rem). py-6 = 5rem.
   Used on content sections for more breathing room. */
.py-6  { padding-top: 4.25rem !important;    padding-bottom: 4.25rem !important; }
.pt-6  { padding-top: 4.25rem !important; }
.pb-6  { padding-bottom: 4.25rem !important; }
@media (max-width: 767.98px) {
  /* a touch tighter on mobile so sections aren't overly tall */
  .py-6 { padding-top: 3.25rem !important; padding-bottom: 3.25rem !important; }
}

/* soft tinted section background (alternate with white for visual rhythm).
   Works on a .container section: a full-bleed ::before paints the tint edge
   to edge while content stays inside the container. */
section.section-soft { position: relative; }
section.section-soft::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background:
    radial-gradient(1200px 400px at 15% 0%, rgba(39,174,115,.08), transparent 60%),
    radial-gradient(1000px 400px at 90% 100%, rgba(34,193,166,.07), transparent 55%),
    #eef7f2;
  z-index: -1;
}
/* non-container soft sections just take the bg directly */
section.section-soft:not(.container) {
  background:
    radial-gradient(1200px 400px at 15% 0%, rgba(39,174,115,.08), transparent 60%),
    radial-gradient(1000px 400px at 90% 100%, rgba(34,193,166,.07), transparent 55%),
    #eef7f2;
}
section.section-soft:not(.container)::before { content: none; }

/* Center every section's title + its intro line (hero excluded — it's the
   left-aligned 2-column band). Covers both markup patterns:
   (A) <section class="container"> with h2 as a direct child, and
   (B) <section> > <div class="container"> > h2.
   Keeps body content/cards/tables left-aligned. */
section.container:not(.bg-body-tertiary) > h2,
section.container:not(.bg-body-tertiary) > h2 + p,
section:not(.bg-body-tertiary) > .container > h2,
section:not(.bg-body-tertiary) > .container > h2 + p {
  text-align: center;
}
/* center & constrain the intro paragraph under a section title */
section.container:not(.bg-body-tertiary) > h2 + p,
section:not(.bg-body-tertiary) > .container > h2 + p {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.75rem;
  color: var(--body-color);
  font-size: 1.06rem;
}
/* give centered section titles a little more presence + tighter gap to intro */
section.container:not(.bg-body-tertiary) > h2,
section:not(.bg-body-tertiary) > .container > h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  margin-bottom: .85rem;
}

/* ---------- Buttons ---------- */
.btn {
  --bs-btn-focus-shadow-rgb: var(--bs-primary-rgb);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: -.01em;
  padding: .68rem 1.5rem;
  border-radius: var(--radius-pill) !important;
  transition: transform .22s cubic-bezier(.2,.8,.2,1), box-shadow .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}
.btn-lg { font-size: 1rem; padding: .85rem 1.9rem; }
.btn-sm { font-size: .82rem; padding: .45rem 1rem; }

/* spacing between two inline buttons sitting next to each other
   (e.g. "Email Us"  "Live Chat"). Flex/grid containers (d-flex, gap-*) and
   full-width (w-100) buttons already handle their own spacing, so skip those. */
:not(.d-flex):not([class*="gap-"]) > .btn + .btn:not(.w-100) { margin-left: .6rem; }

.btn-primary {
  --bs-btn-bg: transparent;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-border-color: transparent;
  --bs-btn-active-border-color: transparent;
  background: var(--grad-brand);
  /* transparent 2px border so height matches the 2px outline buttons */
  border: 2px solid transparent;
  color: #fff;
  box-shadow: 0 8px 20px rgba(var(--bs-primary-rgb), .32);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:focus-visible,
.btn-primary:active {
  background: var(--grad-brand);
  border: 2px solid transparent;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(var(--bs-primary-rgb), .42) !important;
}

.btn-outline-primary {
  --bs-btn-color: var(--brand-indigo);
  --bs-btn-border-color: var(--brand-indigo);
  --bs-btn-hover-bg: var(--brand-indigo);
  --bs-btn-hover-border-color: var(--brand-indigo);
  --bs-btn-active-bg: var(--brand-indigo);
  border-width: 2px;
}
.btn-outline-primary:hover { transform: translateY(-2px); }

/* neutral/dark outline — distinct from the green outline-primary */
.btn-outline-secondary {
  --bs-btn-color: var(--ink);
  --bs-btn-border-color: var(--ink);
  --bs-btn-hover-bg: var(--ink);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-border-color: var(--ink);
  --bs-btn-active-bg: var(--ink);
  --bs-btn-active-border-color: var(--ink);
  --bs-btn-active-color: #fff;
  border-width: 2px;
}
.btn-outline-secondary:hover { transform: translateY(-2px); }

/* white outline — for buttons placed on dark/green backgrounds */
.btn-outline-light {
  --bs-btn-color: #fff;
  --bs-btn-border-color: rgba(255, 255, 255, .85);
  --bs-btn-hover-bg: #fff;
  --bs-btn-hover-color: var(--brand-dark);
  --bs-btn-hover-border-color: #fff;
  --bs-btn-active-bg: #fff;
  --bs-btn-active-border-color: #fff;
  --bs-btn-active-color: var(--brand-dark);
  border-width: 2px;
}
.btn-outline-light:hover { transform: translateY(-2px); }

/* ---------- Promo bar ---------- */
.text-bg-primary {
  background-color: var(--brand-solid) !important;
  color: #fff !important;
}
/* coupon code chip in the promo bar */
.text-bg-primary .badge.text-bg-light {
  border: 1px dashed rgba(39, 174, 115, .5);
  letter-spacing: .06em;
  padding: .3rem .6rem;
  border-radius: 6px;
}
.text-bg-primary .link-light:hover { text-decoration: underline; }

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1030;
  /* transparent at the top of the page so the hero background shows through */
  background: transparent !important;
  border-bottom: 1px solid transparent !important;
  box-shadow: none;
  padding-top: .9rem;
  padding-bottom: .9rem;
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease,
              backdrop-filter .25s ease;
}
/* once the page is scrolled, fade in the white glass bar */
.navbar.navbar-scrolled {
  background: rgba(255, 255, 255, .8) !important;
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(20, 16, 70, .06) !important;
  box-shadow: 0 1px 0 rgba(20, 16, 70, .02), 0 6px 24px rgba(20, 16, 70, .04);
}
/* While the mobile drawer is open, drop the navbar's backdrop-filter — a
   filtered ancestor becomes a containing block and would trap the
   position:fixed drawer inside the (clipped) navbar. */
.navbar:has(.offcanvas.show) {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.navbar-brand { padding-top: 0; padding-bottom: 0; }
.navbar-brand img { height: 45px; }

/* rounded mobile hamburger toggler */
.navbar-toggler { border-radius: 12px; }
.navbar-toggler:focus { box-shadow: none; }

/* vertically centre the menu items */
.navbar-nav { align-items: center; gap: .15rem; }

.navbar .nav-link {
  position: relative;
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink);
  padding: .5rem .85rem !important;
  border-radius: 9px;
  transition: color .18s ease, background .18s ease;
}
.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: var(--brand-indigo);
  background: rgba(var(--bs-primary-rgb), .08);
}
/* animated underline indicator */
.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--brand-grad);
  transform: translateX(-50%);
  transition: width .22s ease;
}
.navbar .nav-item:not(:last-child) .nav-link:hover::after,
.navbar .nav-item.show .nav-link::after { width: 18px; }
/* no hover underline on the plain "Home" link (first nav item) */
.navbar-nav > .nav-item:first-child .nav-link::after { display: none; }

/* remove Bootstrap's caret arrow entirely */
.navbar .dropdown-toggle::after { display: none !important; }

/* dropdown panel */
.navbar .dropdown-menu {
  --bs-dropdown-min-width: 15rem;
  border: 1px solid rgba(20, 16, 70, .07);
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(20, 16, 70, .16);
  padding: .5rem;
  margin-top: 0;
  overflow: hidden;
  animation: navDrop .18s ease both;
}
@keyframes navDrop {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.navbar .dropdown-item {
  position: relative;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: .9rem;
  border-radius: 10px;
  padding: .6rem .85rem;
  color: var(--ink);
  transition: background .15s ease, color .15s ease;
}
.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
  background: rgba(var(--bs-primary-rgb), .09);
  color: var(--brand-indigo);
}

/* open dropdowns on hover (desktop only) — built to be forgiving */
@media (min-width: 992px) {
  /* keep a generous hover zone under each menu item so the cursor never
     leaves the hover region on its way to the panel (no twitchy close) */
  .navbar .nav-item.dropdown { padding-bottom: .35rem; }

  /* invisible "bridge" spanning the gap between link and panel */
  .navbar .nav-item.dropdown > .dropdown-menu::before {
    content: "";
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    height: 14px;
  }

  /* sit the panel right under the item, no dead gap */
  .navbar .nav-item.dropdown { position: relative; }
  .navbar .nav-item.dropdown > .dropdown-menu {
    display: block;            /* always in flow so it can fade, not snap */
    position: absolute;
    margin-top: 0;
    top: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
    animation: none;           /* use transitions, not the keyframe */
    pointer-events: none;
  }

  /* open on hover OR when Bootstrap marks it .show (click/keyboard) */
  .navbar .nav-item.dropdown:hover > .dropdown-menu,
  .navbar .nav-item.dropdown.show > .dropdown-menu,
  .navbar .nav-item.dropdown > .dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
    pointer-events: auto;
  }
}

/* Client Area = real CTA button (last nav item) */
.navbar-nav > .nav-item:last-child {
  margin-left: .5rem;
}
.navbar-nav > .nav-item:last-child > .nav-link {
  background: transparent;
  color: var(--ink) !important;
  padding: .5rem 1.35rem !important;
  border: 2px solid var(--brand-solid);
  border-radius: var(--radius-pill);
}
.navbar-nav > .nav-item:last-child > .nav-link:hover {
  background: var(--brand-solid);
  color: #fff !important;
  transform: translateY(-2px);
}
.navbar-nav > .nav-item:last-child > .nav-link::after { display: none; }

/* mobile: menu slides in as a right-side drawer (Bootstrap offcanvas) */
@media (max-width: 991.98px) {
  .navbar .offcanvas {
    /* the offcanvas is nested inside the sticky navbar (which has a z-index and
       thus its own stacking context). Pin it to the viewport with a high z-index
       so it escapes that context and covers the whole page instead of clipping. */
    position: fixed !important;
    top: 0 !important;
    bottom: 0 !important;
    right: 0 !important;
    left: auto !important;
    height: 100dvh;
    z-index: 1100 !important;
    width: 320px;
    max-width: 84vw;
    background: #fff !important;      /* solid panel, not see-through */
    border-left: 1px solid var(--line);
    box-shadow: -12px 0 40px rgba(13, 43, 32, .18);
  }
  /* CLOSED drawer must be fully off-screen + non-interactive so it can't be
     swiped/scrolled to (it was contributing to horizontal scroll). */
  .navbar .offcanvas:not(.show) {
    transform: translateX(100%) !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
  .navbar .offcanvas.show {
    transform: none !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }
  /* the dimmed backdrop must also sit above page content */
  .offcanvas-backdrop { z-index: 1090 !important; }
  .navbar .offcanvas-header {
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.15rem;
  }
  .navbar .offcanvas-body {
    padding: .75rem 1rem 1.25rem;
    overflow-y: auto;                 /* let long menus scroll inside the drawer */
  }
  .navbar .offcanvas .navbar-nav {
    align-items: stretch;
    gap: 0;
    width: 100%;
  }
  /* stack menu items with clear separators; force dark, visible text */
  .navbar .offcanvas .nav-item { border-bottom: 1px solid var(--surface-2); }
  .navbar .offcanvas .nav-item:last-child { border-bottom: none; }
  .navbar .offcanvas .nav-link {
    color: var(--ink) !important;
    padding: .85rem .25rem !important;
    border-radius: 8px;
  }
  .navbar .offcanvas .nav-link::after { display: none; }
  /* dropdown toggle rows: text left, caret pinned right on the same line */
  .navbar .offcanvas .nav-link.dropdown-toggle {
    display: block !important;
    position: relative;
    padding-right: 2rem !important;
  }
  /* dropdown sub-menus: collapsed by default, expand inline when tapped
     (Bootstrap adds .show to the open dropdown-menu) */
  .navbar .offcanvas .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding: .1rem 0 .4rem .75rem;
    margin: 0;
    transform: none !important;
    animation: none;
    display: none;             /* hidden until toggled */
  }
  .navbar .offcanvas .dropdown-menu.show {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  /* chevron caret so users know these expand (replace Bootstrap's border-triangle) */
  .navbar .offcanvas .dropdown-toggle::after,
  .navbar .offcanvas .dropdown-toggle:hover::after {
    display: block !important;
    content: "\f078" !important;      /* fa-chevron-down */
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free" !important;
    font-weight: 900;
    border: 0 !important;
    float: none !important;
    margin: 0 !important;
    font-size: .78rem;
    line-height: 1;
    width: auto !important;           /* cancel the desktop underline-bar width */
    height: auto !important;
    background: none !important;      /* cancel the green gradient underline bar */
    border-radius: 0 !important;
    color: var(--muted);
    position: absolute;
    left: auto;
    right: .35rem;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    transition: transform .2s ease, color .2s ease;
  }
  .navbar .offcanvas .nav-item.show > .dropdown-toggle::after { transform: translateY(-50%) rotate(180deg); color: var(--brand-solid); }
  .navbar .offcanvas .dropdown-item { color: var(--body-color) !important; }
  /* Client Area CTA fills the drawer width */
  .navbar .offcanvas .navbar-nav > .nav-item:last-child { margin-left: 0; margin-top: .85rem; border-bottom: none; }
  .navbar .offcanvas .navbar-nav > .nav-item:last-child > .nav-link { text-align: center; }
}

/* Download-apps block inside the mobile drawer */
.drawer-apps { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--line); }
.drawer-apps-title {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: var(--muted); margin-bottom: .6rem;
}
.drawer-app-btn {
  display: flex; align-items: center; gap: .7rem;
  background: var(--brand-dark); color: #fff;
  border-radius: 12px; padding: .6rem 1rem; text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}
.drawer-app-btn:hover { color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.drawer-app-btn i { font-size: 1.5rem; }
.drawer-app-btn span { display: flex; flex-direction: column; line-height: 1.15; font-weight: 700; font-size: .95rem; }
.drawer-app-btn small { font-size: .62rem; font-weight: 500; opacity: .75; letter-spacing: .02em; }

/* ---------- Hero: light 2-column band (Prompt-style) ----------
   The first <section> of every page uses the stock .bg-body-tertiary
   utility; we restyle it into a soft light hero. No custom classes. */
section.bg-body-tertiary {
  position: relative;
  /* futuristic gradient-mesh hero */
  background:
    radial-gradient(900px 500px at 12% -10%, rgba(39,174,115,.16), transparent 60%),
    radial-gradient(800px 500px at 95% 10%, rgba(34,193,166,.14), transparent 55%),
    radial-gradient(700px 500px at 60% 110%, rgba(22,185,138,.10), transparent 60%),
    linear-gradient(180deg, #f4fbf7 0%, #e9f6ee 100%) !important;
  /* pull the hero up under the transparent sticky navbar (~76px tall) and
     add that height back as padding so content still clears the menu */
  margin-top: -76px;
  padding-top: calc(4.5rem + 76px) !important;
  padding-bottom: 6rem !important;
  overflow: hidden;
}
/* faint dot-matrix pattern, fading out toward the bottom */
section.bg-body-tertiary::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(39, 174, 115, .22) 1.4px, transparent 1.4px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(120% 90% at 30% 20%, #000 35%, transparent 78%);
          mask-image: radial-gradient(120% 90% at 30% 20%, #000 35%, transparent 78%);
  pointer-events: none;
  z-index: 0;
}
/* soft curved bottom divider, like the Prompt theme */
section.bg-body-tertiary::after {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -60px;
  height: 120px;
  background: #fff;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}
section.bg-body-tertiary > .container { position: relative; z-index: 1; }
/* keep every hero the same height regardless of copy length; content
   stays vertically centred so short & long heroes line up */
section.bg-body-tertiary > .container > .row {
  min-height: 420px;
}
@media (max-width: 991.98px) {
  section.bg-body-tertiary > .container > .row { min-height: 0; }
}

section.bg-body-tertiary h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: .5rem;
}
/* short tagline shown on its own line under the product-name H1 */
section.bg-body-tertiary .hero-subtitle {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 600;
  color: #16241d;
  line-height: 1.25;
  margin-bottom: 1.1rem;
}
/* promo/coupon eyebrow badge above the hero title */
section.bg-body-tertiary .hero-coupon {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: var(--grad-brand);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  padding: .25rem .3rem .25rem .8rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .01em;
  margin-bottom: 1.15rem;
  box-shadow: 0 3px 10px rgba(39, 174, 115, .22);
}
section.bg-body-tertiary .hero-coupon i {
  font-size: .74rem;
  opacity: .95;
}
section.bg-body-tertiary .hero-coupon strong {
  color: #16241d;
  background: #fff;
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .06em;
  padding: .14rem .55rem;
  margin-left: .1rem;
  border-radius: var(--radius-pill);
}
section.bg-body-tertiary .lead { font-size: 1.18rem; color: var(--body-color); max-width: 34rem; }
section.bg-body-tertiary p { color: var(--body-color); }

/* Highlighted word — futuristic gradient text */
section.bg-body-tertiary mark {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  padding: 0;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* Hero illustration */
section.bg-body-tertiary img { max-width: 100%; height: auto; max-height: 380px; }

/* Tighten the hero's bullet/stat lists into pills */
section.bg-body-tertiary ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .75rem;
  margin: 1.25rem 0;
}
section.bg-body-tertiary ul li {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: rgba(255, 255, 255, .55);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  backdrop-filter: blur(10px) saturate(140%);
  border: 1px solid rgba(39, 174, 115, .18);
  border-radius: var(--radius-pill);
  padding: .5rem 1.1rem .5rem .55rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(13, 43, 32, .06);
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s ease, border-color .25s ease;
}
section.bg-body-tertiary ul li:hover {
  transform: translateY(-2px);
  border-color: rgba(39, 174, 115, .45);
  box-shadow: 0 8px 22px rgba(39, 174, 115, .18);
}
/* glowing gradient check chip on the left of each item */
section.bg-body-tertiary ul li::before {
  content: "\f00c"; /* fa-check */
  font-family: "Font Awesome 6 Free", "Font Awesome 5 Free";
  font-weight: 900;
  font-size: .62rem;
  color: #fff;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--grad-brand);
  box-shadow: 0 0 0 3px rgba(39, 174, 115, .16), 0 3px 8px rgba(39, 174, 115, .35);
}

/* ---------- Cards (futuristic soft-rounded) ---------- */
.card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease, border-color .3s ease;
  overflow: hidden;
}
/* thin gradient accent bar that grows across the top on hover */
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.card:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--bs-primary-rgb), .35);
  box-shadow: var(--shadow-lg), 0 0 0 4px rgba(var(--bs-primary-rgb), .06);
}
.card:hover::before { transform: scaleX(1); }

/* body becomes a column so the button can pin to the bottom */
.card-body {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.75rem;
}
.card-title { color: var(--ink); font-weight: 700; font-size: 1.15rem; margin-bottom: .5rem; }
.card-text { color: var(--body-color); font-size: .92rem; margin-bottom: 1.25rem; }
/* in centered category cards, push the CTA to the bottom with even spacing */
.card.text-center .card-body > .btn { margin-top: auto; }
.card.text-center .card-body > p:last-of-type { margin-bottom: 1.25rem; }
/* keep badges/inline tags inside cards shrunk to their content (not full-width
   from the flex-column card-body) */
.card-body > .badge { align-self: flex-start; }

/* Highlighted "Most Popular" plan card */
.card.popular {
  position: relative;
  border: 2px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--grad-brand) border-box;
  box-shadow: 0 22px 50px -10px rgba(var(--bs-primary-rgb), .35);
  transform: translateY(-8px);
  overflow: visible;                /* let the badge sit above the top edge */
}
.card.popular::before { display: none; }
.card.popular:hover { transform: translateY(-12px); }
@media (min-width: 992px) { .card.popular { z-index: 2; } }
/* a little extra room at the top so the floating badge clears the title */
.card.popular > .card-body { padding-top: 2.1rem; }

/* small floating pill centered on the top border */
.popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  background: var(--grad-brand);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .4rem 1.05rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(var(--bs-primary-rgb), .4);
}

/* Monthly / Yearly pricing switch */
.pricing-switch {
  display: inline-flex;
  gap: .25rem;
  margin: 0 auto 2rem;
  padding: .3rem;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  /* center it under the section heading */
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.ps-btn {
  border: none;
  background: transparent;
  color: var(--body-color);
  font-weight: 600;
  font-size: .9rem;
  padding: .5rem 1.4rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background .18s ease, color .18s ease, box-shadow .18s ease;
}
.ps-btn.active {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: 0 6px 14px rgba(var(--bs-primary-rgb), .35);
}
.price-save.badge {
  background: rgba(var(--bs-primary-rgb), .12);
  color: var(--brand-solid);
  font-weight: 700;
  vertical-align: middle;
}

/* Data center locations — inline pill chips */
.dc-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  margin-top: 1.75rem;
}
.dc-chip {
  display: inline-flex;
  align-items: baseline;
  gap: .5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: .55rem 1.1rem;
  box-shadow: var(--shadow-sm);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.dc-chip:hover {
  border-color: rgba(var(--bs-primary-rgb), .4);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.dc-flag { font-size: 1.15rem; line-height: 1; }
.dc-city { font-weight: 700; color: var(--ink); font-size: .9rem; }
.dc-region { font-size: .75rem; color: var(--muted); }

/* Testimonial card (avatar + name/role + stars on top, quote below) */
.testimonial {
  height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.6rem 1.5rem;
  text-align: left;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(var(--bs-primary-rgb), .25);
}
.testimonial-head { display: flex; align-items: center; gap: .9rem; margin-bottom: 1rem; }
.testimonial-avatar {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-solid);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .02em;
}
.testimonial-name { font-weight: 700; color: var(--ink); font-size: .98rem; }
.testimonial-role { font-weight: 500; color: var(--muted); }
.testimonial-stars { margin-top: .25rem; }
.testimonial-stars i { font-size: .82rem; color: #f5a623; }
.testimonial-stars .fa-regular { color: #e6e0d2; }
.testimonial-text { color: var(--body-color); font-size: .93rem; line-height: 1.75; margin: 0; }

/* Dedicated server plan cards — spec rows instead of a bordered table */
.ds-specs {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}
.ds-specs li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;          /* keep label pinned to top when value wraps */
  gap: 1rem;
  padding: .65rem 0;
  border-bottom: 1px dashed var(--line);
  font-size: .9rem;
}
.ds-specs li:last-child { border-bottom: none; }
.ds-specs .ds-label {
  color: var(--muted);
  font-weight: 600;
  display: inline-flex;             /* icon + text stay on one line together */
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}
.ds-specs .ds-label > i { width: 1.05rem; margin-right: .5rem; color: var(--brand-solid); font-size: .82rem; text-align: center; }
.ds-specs .ds-value { color: var(--ink); font-weight: 700; text-align: right; }
.ds-price { font-size: 2rem; font-weight: 700; color: #16241d; line-height: 1; margin: .25rem 0 .15rem; }
.ds-price small { font-size: 1rem; font-weight: 600; color: var(--muted); }

/* pricing-term suffix (e.g. "/ year") — muted, lighter than the amount */
.price-term { color: var(--muted); font-weight: 600; font-size: .82em; }

/* boxed code snippet (e.g. embed badge code) */
.code-box {
  background: var(--brand-dark);
  color: #d6f5e6;
  border: 1px solid rgba(39, 174, 115, .3);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.25rem;
  margin: .5rem 0 1.25rem;
  overflow-x: auto;
  font-size: .84rem;
  line-height: 1.6;
  box-shadow: var(--shadow-sm);
}
.code-box code { color: inherit; background: none; padding: 0; white-space: pre; }

/* ---------- Check list (green ticks, optional 2-column) ---------- */
.check-list { list-style: none; padding: 0; margin: 1.25rem 0 0; }
.check-list.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem 1.5rem;
}
@media (max-width: 575.98px) { .check-list.two-col { grid-template-columns: 1fr; } }
.check-list li {
  position: relative;
  padding-left: 1.9rem;
  color: var(--body-color);
  font-size: .95rem;
  line-height: 1.5;
}
.check-list li::before {
  content: "\f058";                 /* fa-circle-check */
  font-family: "Font Awesome 6 Free", "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: .12em;
  color: var(--brand-solid);
  font-size: 1.05rem;
}

/* ---------- Plan price colour + weight (all pricing cards) ---------- */
/* reseller cards: <span class="h2">$X</span>, app cards: <p class="h2 mb-3">,
   streaming cards: <p class="fs-3 fw-bold">, web-hosting: <p class="plan-price"> */
.card-body .h2,
.card-body .fs-3.fw-bold,
.plan-price { color: #16241d; font-weight: 700; }
.ds-note { font-size: .82rem; color: var(--muted); margin-bottom: 1.1rem; }

/* Partner logo cards — uniform centered logo box on a soft tinted panel */
.partner-logo {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #f4faf7 0%, #eef7f2 100%);
  border-radius: var(--radius) var(--radius) 0 0;
}
.partner-logo-img {
  max-height: 58px;
  max-width: 62%;
  width: auto;
  height: auto;
  object-fit: contain;
}
/* award badges: plain white panel, no tinted gradient */
.award-logo { background: #fff; }

/* ---------- Infra section (VPS + Dedicated) + animated console ---------- */
/* full-bleed dark band so the dark console feels native + adds page rhythm */
.section-infra {
  position: relative;
  background:
    radial-gradient(900px 380px at 12% 0%, rgba(39,174,115,.16), transparent 60%),
    radial-gradient(800px 360px at 92% 100%, rgba(34,193,166,.14), transparent 55%),
    #0d2b20;
  overflow: hidden;
}
.section-infra::before {                 /* subtle dotted grid texture */
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
.section-infra > .container { position: relative; z-index: 1; }
.section-infra .infra-lead { color: rgba(255,255,255,.72); max-width: 34rem; }

.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(var(--bs-primary-rgb), .1);
  color: var(--brand-solid);
  border: 1px solid rgba(var(--bs-primary-rgb), .25);
  border-radius: var(--radius-pill);
  padding: .35rem .95rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.eyebrow-badge.on-dark {
  background: rgba(39, 174, 115, .18);
  color: #63e6a3;
  border-color: rgba(39, 174, 115, .4);
}
.infra-cards { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.75rem; }
.infra-card {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}
.infra-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, .08);
  border-color: rgba(39, 174, 115, .5);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .3);
}
.infra-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--grad-brand);
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(39, 174, 115, .28);
}
.infra-card-body h5 { margin: 0 0 .25rem; font-weight: 700; color: #fff; }
.infra-card-body p { margin: 0 0 .5rem; font-size: .92rem; color: rgba(255,255,255,.68); }
.infra-link {
  font-weight: 700;
  font-size: .88rem;
  color: #63e6a3;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.infra-link i { transition: transform .2s ease; font-size: .8rem; }
.infra-card:hover .infra-link i { transform: translateX(4px); }

/* Terminal console */
.console {
  background: #0d1522;
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(13, 43, 32, .28), 0 0 0 1px rgba(255, 255, 255, .04);
  overflow: hidden;
  font-family: "SFMono-Regular", "Consolas", "Liberation Mono", Menlo, monospace;
}
.console-bar {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1rem;
  background: #182233;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.console-dot { width: 12px; height: 12px; border-radius: 50%; display: inline-block; }
.console-dot.red { background: #ff5f57; }
.console-dot.amber { background: #febc2e; }
.console-dot.green { background: #28c840; }
.console-title { margin-left: .5rem; color: #8aa0b6; font-size: .8rem; letter-spacing: .02em; }
.console-body { padding: 1.15rem 1.35rem 1.4rem; }
.console-lines { font-size: .82rem; line-height: 1.75; color: #cdd9e5; }
.console-lines p { margin: 0; white-space: nowrap; }
.console-lines .c-indent { padding-left: 1.6rem; }
.console-lines .c-blank { line-height: 1; }
.c-prompt { color: #27ae73; font-weight: 700; margin-right: .35rem; }
.c-flag { color: #6cc7ff; }
.c-cont { color: #8aa0b6; }
.c-ok { color: #63e6a3; }
.c-cursor {
  display: inline-block;
  width: 8px;
  height: 1em;
  background: #27ae73;
  vertical-align: text-bottom;
  animation: consoleBlink 1s steps(2, start) infinite;
}
@keyframes consoleBlink { 0%, 50% { opacity: 1; } 50.01%, 100% { opacity: 0; } }

/* reveal lines one-by-one when the console scrolls into view */
.console-lines p { opacity: 0; transform: translateY(4px); }
.console.is-live .console-lines p {
  animation: consoleLine .28s ease forwards;
}
.console.is-live .console-lines p:nth-child(1)  { animation-delay: .10s; }
.console.is-live .console-lines p:nth-child(2)  { animation-delay: .30s; }
.console.is-live .console-lines p:nth-child(3)  { animation-delay: .55s; }
.console.is-live .console-lines p:nth-child(4)  { animation-delay: .72s; }
.console.is-live .console-lines p:nth-child(5)  { animation-delay: .89s; }
.console.is-live .console-lines p:nth-child(6)  { animation-delay: 1.02s; }
.console.is-live .console-lines p:nth-child(7)  { animation-delay: 1.22s; }
.console.is-live .console-lines p:nth-child(8)  { animation-delay: 1.42s; }
.console.is-live .console-lines p:nth-child(9)  { animation-delay: 1.55s; }
.console.is-live .console-lines p:nth-child(10) { animation-delay: 1.75s; }
.console.is-live .console-lines p:nth-child(11) { animation-delay: 1.95s; }
.console.is-live .console-lines p:nth-child(12) { animation-delay: 2.12s; }
.console.is-live .console-lines p:nth-child(13) { animation-delay: 2.29s; }
.console.is-live .console-lines p:nth-child(14) { animation-delay: 2.49s; }
@keyframes consoleLine { to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  .console-lines p { opacity: 1; transform: none; animation: none !important; }
  .c-cursor { animation: none; }
}
/* console can scroll horizontally on very small screens rather than break layout */
.console-body { overflow-x: auto; }

/* Custom Build — full-width feature box below the dedicated plans grid */
.custom-build-box {
  background: linear-gradient(135deg, #f4faf7 0%, #eaf6f0 100%);
  border: 1px solid rgba(39, 174, 115, .18);
  border-radius: var(--radius);
  padding: 2.25rem 2.5rem;
  box-shadow: 0 10px 30px rgba(13, 43, 32, .05);
}
.custom-build-eyebrow {
  display: inline-flex;
  align-items: center;
  background: var(--grad-brand);
  color: #fff;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 3px 10px rgba(39, 174, 115, .22);
}
.custom-build-box h3 { font-size: 1.5rem; font-weight: 700; color: #16241d; }
.custom-build-box .check-list { margin-bottom: 0; }
@media (max-width: 575.98px) { .custom-build-box { padding: 1.75rem 1.35rem; } }

/* Legal / policy pages — smaller in-body subsection headings */
.legal-body h2,
.legal-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 1.75rem;
  margin-bottom: .5rem;
  line-height: 1.35;
}
.legal-body h5 { font-size: 1rem; font-weight: 700; }
.legal-body p,
.legal-body li { color: var(--body-color); }

/* Big stat numbers (about page etc.) */
.stat-value {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--brand-solid);
  margin-bottom: .25rem;
}
/* green hero stat cards (glass chips) */
.green-stat {
  background: rgba(255, 255, 255, .6);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  backdrop-filter: blur(10px) saturate(140%);
  border: 1px solid rgba(39, 174, 115, .18);
  border-radius: var(--radius);
  padding: 1.4rem 1rem;
  text-align: center;
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease;
}
.green-stat:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.green-stat p { color: var(--muted); font-weight: 600; font-size: .9rem; }

/* Big centered pricing-category icon */
.pricing-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 1.4rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  color: var(--brand-solid);
  background: var(--grad-soft);
  box-shadow: inset 0 0 0 1px rgba(var(--bs-primary-rgb), .14);
  transition: background .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.card:hover .pricing-icon {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: 0 10px 24px rgba(var(--bs-primary-rgb), .35);
  transform: translateY(-3px);
}
/* in a centered card, keep the CTA button centered (not full-width stretch) */
.card.text-center .card-body > .btn { align-self: center; }
/* card-body is flex-column, so center any direct img/icon children
   (text-center alone can't center flex items) */
.card-body.text-center > img,
.card-body.text-center > .feature-icon,
.card.text-center .card-body > img,
.card.text-center .card-body > .feature-icon { align-self: center; }

/* Feature-card icon (rounded tinted square) */
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--brand-solid);
  background: linear-gradient(145deg, rgba(var(--bs-primary-rgb), .14), rgba(var(--bs-primary-rgb), .06));
  box-shadow: inset 0 0 0 1px rgba(var(--bs-primary-rgb), .12);
  font-size: 1.35rem;
  transition: background .22s ease, color .22s ease, box-shadow .22s ease, transform .22s ease;
}
.card:hover .feature-icon {
  background: var(--brand-solid);
  color: #fff;
  box-shadow: 0 8px 18px rgba(var(--bs-primary-rgb), .35);
  transform: translateY(-2px);
}

/* emphasise the "From $X /mo" price line (the <p> with a <strong>) */
.card-body > p > strong { font-size: 1.6rem; font-weight: 800; color: var(--ink); }

/* push the card's CTA button to the bottom edge, full width */
.card-body > .btn {
  margin-top: auto;
  align-self: stretch;
}
/* feature lists inside cards */
.card-body ul { padding-left: 0; list-style: none; margin-bottom: 1.1rem; }
.card-body ul li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: .55rem;
  font-size: .9rem;
  color: var(--body-color);
}
/* contextual leading icon on each feature row */
.card-body ul li > i.fa-solid,
.card-body ul li > i.fa-regular,
.card-body ul li > i.fa-brands {
  position: absolute;
  left: 0;
  top: .2em;
  width: 1.1rem;
  text-align: center;
  color: var(--brand-solid);
  font-size: .82rem;
}
/* fallback tick only when an item has NO icon anywhere (incl. nested in a label),
   and is not a .ds-specs row or a .list-unstyled link list */
.card-body ul:not(.ds-specs):not(.list-unstyled) li:not(:has(i))::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--brand-solid);
  font-weight: 700;
}
/* link lists in cards: no leading tick padding, plain link rows */
.card-body ul.list-unstyled li { padding-left: 0; }

/* ---------- Accordion (FAQ) ---------- */
.accordion {
  --bs-accordion-border-color: transparent;
  --bs-accordion-btn-focus-box-shadow: 0 0 0 .2rem rgba(var(--bs-primary-rgb), .18);
  --bs-accordion-active-color: #fff;
  --bs-accordion-active-bg: var(--brand-solid);   /* solid green header when open — clear contrast */
  --bs-accordion-btn-color: var(--ink);
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2327AE73'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  /* white chevron when the tab is open (on the green header) */
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-item {
  border: 1px solid var(--line);
  border-radius: var(--radius) !important;
  margin-bottom: .75rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.accordion-item:has(.accordion-button:not(.collapsed)) {
  border-color: rgba(var(--bs-primary-rgb), .35);
  box-shadow: var(--shadow);
}
.accordion-button {
  font-weight: 600;
  font-size: 1rem;
  padding: 1.05rem 1.25rem;
  border-radius: var(--radius) !important;
}
/* when open, square the header's bottom corners so it sits flush on the body */
.accordion-button:not(.collapsed) {
  box-shadow: none;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
/* the open chevron sits in a translucent white chip on the green header */
.accordion-button:not(.collapsed)::after {
  background-color: rgba(255, 255, 255, .22);
}
.accordion-button::after {
  width: 1.5rem; height: 1.5rem;
  background-size: .9rem;
  background-position: center;
  background-color: rgba(var(--bs-primary-rgb), .1);
  border-radius: 7px;
}
.accordion-body { color: var(--body-color); font-size: .94rem; line-height: 1.7; padding: 1.15rem 1.5rem 1.4rem; }

/* ---------- Tables ---------- */
.table {
  --bs-table-bg: #fff;
  border-color: var(--line);
  margin-bottom: 0;
}
.table > :not(caption) > * > * { padding: .95rem 1.1rem; vertical-align: middle; }
.table thead th {
  background: var(--surface-2);
  color: var(--ink);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--line);
  white-space: nowrap;
}
.table tbody tr { transition: background .15s ease; }
.table tbody tr:hover { background: rgba(var(--bs-primary-rgb), .04); }
.table tbody td { color: var(--body-color); font-size: .93rem; }
.table tbody td strong { color: var(--ink); }
/* clean rounded frame — works whether or not the table is wrapped */
.table-responsive {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #fff;
}
/* keep the inner table flush with the rounded frame (no clipped last row) */
.table-responsive > .table { margin-bottom: 0; }
.table-responsive > .table > :last-child > tr:last-child > * { border-bottom: 0; }
/* soften the default table-bordered look used across the site */
.table-bordered {
  border-radius: var(--radius);
  overflow: hidden;
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.table-bordered > :not(caption) > * > * { border-color: var(--line); }

/* info tooltip icon in plan feature rows — sits inline AFTER the text,
   overriding the absolute-positioned leading icon rule */
.card-body ul li > i.fa-solid.info-tip {
  position: static;
  left: auto;
  top: auto;
  width: auto;
  color: var(--muted);
  font-size: .8rem;
  cursor: help;
  margin-left: .2rem;
  transition: color .15s ease;
}
.card-body ul li > i.fa-solid.info-tip:hover { color: var(--brand-solid); }

/* ---------- Boxed server-location chip inside plan cards ---------- */
.plan-location {
  display: flex;
  align-items: center;
  gap: .7rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .6rem .8rem;
  margin: .25rem 0 1rem;
  background: var(--surface-2);
}
.plan-location .flag {
  width: 28px;
  height: 20px;
  border-radius: 3px;
  flex-shrink: 0;
  border: 1px solid var(--line);
  overflow: hidden;
  line-height: 0;
}
.plan-location .loc-text { display: flex; flex-direction: column; line-height: 1.25; }
.plan-location .loc-label {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--muted);
}
.plan-location .loc-city { font-size: .92rem; font-weight: 700; color: var(--ink); }

/* ---------- Feature comparison table (centered value columns) ---------- */
.compare-table { margin-top: 1.5rem; }
.compare-table table { margin-bottom: 0; }
.compare-table > table > :not(caption) > * > * { padding: .9rem 1.1rem; }
/* main header row — solid brand green, clearly the table head */
.compare-table thead th {
  text-align: center;
  font-weight: 800;
  color: #fff !important;
  background: var(--brand-solid) !important;
  border-bottom: none;
  font-size: .95rem;
}
.compare-table thead th:first-child { text-align: left; }
.compare-table thead th .text-muted { color: rgba(255,255,255,.7) !important; }
/* feature-name column (left) */
.compare-table tbody td:first-child,
.compare-table tbody th:first-child { text-align: left; font-weight: 700; color: var(--ink); }
/* plan value columns — centered + bold */
.compare-table tbody td:not(:first-child) { text-align: center; font-weight: 600; color: var(--ink); }
/* section group rows — subtle light tint (subordinate to the green header) */
.compare-table tbody th[colspan] {
  background: var(--surface-2);
  font-weight: 700;
  color: var(--brand-solid);
  font-size: .8rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.compare-table tbody tr { border-bottom: 1px solid var(--line); }
.compare-table .fa-circle-check { font-size: 1.05rem; }
.compare-table .fa-xmark { font-size: 1.05rem; opacity: .6; }

/* ---------- Footer (stock .bg-light footer) ---------- */
footer.bg-light {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px circle at 15% 0%, rgba(39,174,115,.20), transparent 55%),
    var(--brand-dark) !important;
  border-top: none !important;
  color: rgba(255, 255, 255, .65);
}
/* thin brand accent line across the very top */
footer.bg-light::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-brand);
  z-index: 2;
}
/* faint tech grid across the footer, fading toward the bottom */
footer.bg-light::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(120% 100% at 20% 0%, #000 30%, transparent 80%);
          mask-image: radial-gradient(120% 100% at 20% 0%, #000 30%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}
/* keep footer content above the grid */
footer.bg-light > * { position: relative; z-index: 1; }

/* Brand description + contact text */
footer.bg-light p {
  color: rgba(255, 255, 255, .55);
  font-size: .875rem;
  line-height: 1.7;
}
footer.bg-light .list-unstyled li a { font-size: .875rem; }

/* Column headings */
footer.bg-light h6 {
  color: rgba(255, 255, 255, .85);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.15rem;
}

/* Links — no underline, subtle slide on hover */
footer.bg-light a {
  color: rgba(255, 255, 255, .7);
  text-decoration: none;
  transition: color .15s ease, padding-left .15s ease;
}
footer.bg-light a:hover,
footer.bg-light a:focus {
  color: #fff;
  text-decoration: none;
}
/* link list spacing + hover indent */
footer.bg-light .list-unstyled li { margin-bottom: .5rem; }
footer.bg-light .list-unstyled a:hover { padding-left: 4px; }

/* contact links (first column) a touch brighter */
footer.bg-light .col-lg-4 a { color: rgba(255, 255, 255, .78); font-size: .9rem; }
footer.bg-light .col-lg-4 a:hover { color: #fff; }

/* copyright line */
footer.bg-light .row:last-child p { font-size: .82rem; color: rgba(255,255,255,.45); }

footer.bg-light hr { border-color: rgba(255, 255, 255, .1); opacity: 1; margin: 2.5rem 0 1.75rem; }

/* Bottom social links as pills */
/* social icon buttons (circular) */
footer.bg-light .footer-social .list-inline-item { margin-right: .4rem; }
footer.bg-light .footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  font-size: .95rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  color: rgba(255,255,255,.75);
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}
footer.bg-light .footer-social a:hover {
  background: var(--brand-solid);
  border-color: var(--brand-solid);
  color: #fff;
  transform: translateY(-2px);
}

/* ---------- Forms ---------- */
.form-control, .form-select {
  border-radius: var(--radius-sm);
  border-color: var(--line);
  padding: .7rem 1rem;
}
.form-control:focus, .form-select:focus {
  border-color: var(--brand-indigo);
  box-shadow: 0 0 0 .2rem rgba(var(--bs-primary-rgb), .18);
}

/* ---------- Addon services (custom .addon component) ---------- */
.addon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 991.98px) { .addon-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575.98px) { .addon-grid { grid-template-columns: 1fr; } }
.addon {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .75rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem 1.4rem;
  height: 100%;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.addon:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(var(--bs-primary-rgb), .35);
}
.addon-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--brand-solid);
  background: rgba(var(--bs-primary-rgb), .1);
}
.addon-body { width: 100%; }
.addon-name { font-weight: 700; color: var(--ink); font-size: 1rem; margin-bottom: .25rem; }
.addon-desc { color: var(--body-color); font-size: .875rem; line-height: 1.55; margin: 0; }
.addon-price {
  margin-top: auto;
  font-weight: 800;
  color: var(--brand-solid);
  font-size: 1.25rem;
  white-space: nowrap;
}
.addon-price small { font-weight: 600; color: var(--muted); font-size: .72rem; }

/* Server specs — bordered panel with 2-column divided rows */
.spec-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.spec-row {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: 1.05rem 1.2rem;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
/* remove right border on the 2nd column, bottom border on last row of each col */
.spec-row:nth-child(2n) { border-right: none; }
.spec-row:nth-last-child(-n+2) { border-bottom: none; }
.spec-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(var(--bs-primary-rgb), .1);
  color: var(--brand-solid);
  font-size: 1rem;
}
.spec-text { display: flex; flex-direction: column; line-height: 1.3; }
.spec-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--muted);
}
.spec-value { font-weight: 600; color: var(--ink); font-size: .95rem; }
@media (max-width: 575.98px) {
  .spec-list { grid-template-columns: 1fr; }
  .spec-row { border-right: none; }
  .spec-row:nth-last-child(2) { border-bottom: 1px solid var(--line); }
}

/* One-click app installer strip */
.app-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2rem;
}
.app-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .7rem;
  width: 116px;
  padding: 1.5rem .75rem;
  background: linear-gradient(160deg, #ffffff, #f5fbf8);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .28s cubic-bezier(.2,.8,.2,1), box-shadow .28s ease, border-color .28s ease;
}
.app-logo:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(var(--bs-primary-rgb), .35);
}
.app-logo img { width: 52px; height: 52px; object-fit: contain; transition: transform .28s ease; }
.app-logo:hover img { transform: scale(1.08); }
.app-logo span { font-size: .84rem; font-weight: 600; color: var(--ink); }
.app-logo, .app-logo:hover { text-decoration: none !important; }

/* Custom-plan CTA band */
.custom-plan {
  margin-top: 2.25rem;
  background: var(--brand-dark);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  text-align: center;
  color: #fff;
}
.custom-plan h3 { color: #fff; margin-bottom: .4rem; }
.custom-plan p { color: rgba(255, 255, 255, .7); margin-bottom: 1.25rem; }

/* ---------- Animated hero data-center rack ---------- */
.hero-server-anim { max-width: 100%; height: auto; overflow: visible; }

/* whole rack cabinet drifts gently up and down */
.hero-server-anim .hs-float { animation: hsFloat 6s ease-in-out infinite; }
@keyframes hsFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ambient glow breathes */
.hero-server-anim .hs-glow {
  animation: hsGlow 4.5s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}
@keyframes hsGlow { 0%,100% { opacity: .85; transform: scale(1); } 50% { opacity: 1; transform: scale(1.05); } }

/* status / drive / network LEDs blink at staggered delays */
.hero-server-anim .hs-led { animation: hsBlink 1.8s ease-in-out infinite; }
@keyframes hsBlink { 0%,100% { opacity: 1; } 50% { opacity: .25; } }

/* ground shadow breathes with the float */
.hero-server-anim .hs-shadow {
  animation: hsShadow 6s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}
@keyframes hsShadow { 0%,100% { opacity: .12; transform: scaleX(1); } 50% { opacity: .06; transform: scaleX(.9); } }

/* respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .hero-server-anim .hs-float,
  .hero-server-anim .hs-glow,
  .hero-server-anim .hs-led,
  .hero-server-anim .hs-shadow { animation: none; }
}

/* ---------- Utilities ---------- */
.text-muted { color: var(--muted) !important; }
.blockquote-footer { color: var(--muted); }
