/* ==========================================================================
   Networks by Plouffe — Design System
   Contents:
     1.  Design tokens        12. Comparison table
     2.  Reset & base         13. Process steps
     3.  Typography           14. Feature lists / prose
     4.  Layout primitives    15. Callouts & notices
     5.  Buttons              16. FAQ accordion
     6.  Announcement bar     17. CTA band
     7.  Header / nav         18. Contact
     8.  Hero                 19. Footer
     9.  Trust / stats        20. Utilities & animation
     10. Cards & grids        21. Responsive
     11. Pricing              22. Print & reduced motion
   ========================================================================== */

/* ==========================================================================
   1. DESIGN TOKENS
   ========================================================================== */
:root {
  color-scheme: dark;

  /* Brand palette — derived from the NBP globe logo */
  --brand-cyan:      #22d3ee;
  --brand-cyan-soft: #67e8f9;
  --brand-blue:      #2563eb;
  --brand-blue-deep: #1d4ed8;
  --brand-navy:      #0b2545;

  /* Surfaces */
  --bg:          #060d1a;
  --bg-alt:      #0a1526;
  --surface:     #101d33;
  --surface-2:   #16243d;
  --surface-3:   #1c2c48;
  --line:        rgba(148, 180, 220, 0.14);
  --line-strong: rgba(148, 180, 220, 0.28);

  /* Text */
  --text:        #eaf2ff;
  --text-muted:  #a9bcd5;
  --text-dim:    #7f94b0;
  --text-invert: #06101f;

  /* Semantic */
  --success: #34d399;
  --warning: #fbbf24;
  --danger:  #f87171;

  /* Gradients */
  --grad-brand: linear-gradient(135deg, var(--brand-cyan) 0%, var(--brand-blue) 100%);
  --grad-warm:  linear-gradient(135deg, #fb7185 0%, #f97316 100%);
  --grad-text:  linear-gradient(100deg, #ffffff 0%, var(--brand-cyan-soft) 55%, var(--brand-cyan) 100%);

  /* Typography */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  /* Fluid type scale */
  --fs-xs:   0.8125rem;
  --fs-sm:   0.9375rem;
  --fs-base: 1.0625rem;
  --fs-lg:   1.1875rem;
  --fs-xl:   clamp(1.25rem, 0.6vw + 1.1rem, 1.5rem);
  --fs-2xl:  clamp(1.5rem, 1.1vw + 1.25rem, 2rem);
  --fs-3xl:  clamp(1.875rem, 1.8vw + 1.4rem, 2.6rem);
  --fs-4xl:  clamp(2.25rem, 3.2vw + 1.4rem, 3.6rem);
  --fs-5xl:  clamp(2.5rem, 3.6vw + 1.2rem, 3.9rem);

  /* Spacing scale */
  --sp-1: 0.25rem;  --sp-2: 0.5rem;   --sp-3: 0.75rem;
  --sp-4: 1rem;     --sp-5: 1.5rem;   --sp-6: 2rem;
  --sp-7: 2.5rem;   --sp-8: 3rem;     --sp-9: 4rem;
  --sp-10: 5rem;    --sp-11: 6.5rem;

  /* Radii */
  --r-sm: 8px; --r-md: 12px; --r-lg: 18px; --r-xl: 24px; --r-pill: 999px;

  /* Elevation */
  --sh-sm: 0 1px 2px rgba(0, 0, 0, 0.35);
  --sh-md: 0 8px 24px -6px rgba(0, 0, 0, 0.5);
  --sh-lg: 0 22px 55px -18px rgba(0, 0, 0, 0.65);
  --sh-glow: 0 12px 40px -12px rgba(34, 211, 238, 0.45);

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur: 0.28s;

  /* Layout */
  --container: 1200px;
  --container-narrow: 880px;
  --header-h: 74px;
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
}

body {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--text);
  background-color: var(--bg);
  /* Static layered depth — replaces the old animated gradient */
  background-image:
    radial-gradient(1100px 620px at 12% -8%, rgba(37, 99, 235, 0.20), transparent 60%),
    radial-gradient(940px 560px at 92% 4%,   rgba(34, 211, 238, 0.13), transparent 62%),
    radial-gradient(820px 620px at 50% 108%, rgba(29, 78, 216, 0.14), transparent 65%);
  background-attachment: fixed;
  background-repeat: no-repeat;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--brand-cyan); text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: var(--brand-cyan-soft); }
ul, ol { padding-left: 1.15rem; }
button { font: inherit; color: inherit; cursor: pointer; }

:focus-visible { outline: 2px solid var(--brand-cyan); outline-offset: 3px; border-radius: 4px; }
::selection { background: rgba(34, 211, 238, 0.3); color: #fff; }

@media (min-width: 992px) {
  ::-webkit-scrollbar { width: 11px; }
  ::-webkit-scrollbar-track { background: var(--bg); }
  ::-webkit-scrollbar-thumb {
    background: var(--surface-3);
    border-radius: var(--r-pill);
    border: 2px solid var(--bg);
  }
  ::-webkit-scrollbar-thumb:hover { background: #2a4066; }
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 2000;
  padding: 0.75rem 1.25rem;
  background: var(--brand-cyan); color: var(--text-invert);
  font-weight: 700; border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; }

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5 {
  font-weight: 800; line-height: 1.16;
  letter-spacing: -0.022em; text-wrap: balance;
}
h1 { font-size: var(--fs-4xl); }
h2 { font-size: var(--fs-3xl); }
h3 { font-size: var(--fs-2xl); }
h4 { font-size: var(--fs-xl); }
h5 { font-size: var(--fs-lg); font-weight: 700; }
p { text-wrap: pretty; }

.text-gradient {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--brand-cyan); margin-bottom: var(--sp-4);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px;
  border-radius: 2px; background: var(--grad-brand);
}

.lead { font-size: var(--fs-lg); color: var(--text-muted); line-height: 1.75; }

.section-head { max-width: 780px; margin: 0 auto var(--sp-8); text-align: center; }
.section-head .lead { margin-top: var(--sp-4); }
.section-head.left { margin-left: 0; text-align: left; }

/* ==========================================================================
   4. LAYOUT PRIMITIVES
   ========================================================================== */
.container {
  width: 100%; max-width: var(--container);
  margin-inline: auto; padding-inline: var(--sp-5);
}
.container-narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--sp-11); position: relative; }
.section-sm { padding-block: var(--sp-9); }
.section-alt {
  background: linear-gradient(180deg, rgba(10, 21, 38, 0) 0%, rgba(10, 21, 38, 0.85) 12%,
              rgba(10, 21, 38, 0.85) 88%, rgba(10, 21, 38, 0) 100%);
}

.divider {
  height: 1px; border: 0; margin-block: var(--sp-8);
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}

.grid { display: grid; gap: var(--sp-5); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-auto { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }

/* ==========================================================================
   5. BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--sp-2); padding: 0.9rem 1.6rem;
  border: 1px solid transparent; border-radius: var(--r-pill);
  font-size: var(--fs-sm); font-weight: 700; letter-spacing: 0.01em;
  text-align: center; white-space: nowrap; cursor: pointer;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              background-color var(--dur) var(--ease), border-color var(--dur) var(--ease),
              color var(--dur) var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--grad-brand); color: #04121f;
  box-shadow: 0 6px 20px -6px rgba(34, 211, 238, 0.55);
}
.btn-primary:hover { color: #04121f; box-shadow: 0 14px 34px -10px rgba(34, 211, 238, 0.7); }

.btn-outline {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--line-strong); color: var(--text);
}
.btn-outline:hover {
  border-color: var(--brand-cyan); color: var(--brand-cyan);
  background: rgba(34, 211, 238, 0.08);
}

.btn-ghost { background: transparent; color: var(--text-muted); padding-inline: 1rem; }
.btn-ghost:hover { color: var(--brand-cyan); }

.btn-warm {
  background: var(--grad-warm); color: #fff;
  box-shadow: 0 6px 20px -6px rgba(249, 115, 22, 0.5);
}
.btn-warm:hover { color: #fff; box-shadow: 0 14px 34px -10px rgba(249, 115, 22, 0.65); }

.btn-lg { padding: 1.05rem 2.1rem; font-size: var(--fs-base); }
.btn-sm { padding: 0.6rem 1.1rem; font-size: var(--fs-xs); }
.btn-block { width: 100%; }

.btn-group { display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.btn-group.center { justify-content: center; }

/* ==========================================================================
   6. ANNOUNCEMENT BAR (replaces the old blocking modal overlay)
   ========================================================================== */
.announce {
  position: relative; z-index: 1100;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.9), rgba(34, 211, 238, 0.85));
  color: #04121f; font-size: var(--fs-sm); font-weight: 600;
}
.announce-inner {
  display: flex; align-items: center; justify-content: center;
  gap: var(--sp-4); flex-wrap: wrap;
  padding: 0.6rem var(--sp-5);
  max-width: var(--container); margin-inline: auto; text-align: center;
}
.announce-tag {
  background: rgba(4, 18, 31, 0.85); color: var(--brand-cyan-soft);
  font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.25rem 0.6rem; border-radius: var(--r-pill); flex-shrink: 0;
}
.announce-links { display: flex; gap: var(--sp-4); flex-wrap: wrap; justify-content: center; }
.announce a {
  color: #04121f; font-weight: 800; text-decoration: underline;
  text-decoration-thickness: 2px; text-underline-offset: 3px;
}
.announce a:hover { color: #0b2545; }
.announce-close {
  position: absolute; right: 0.6rem; top: 50%; transform: translateY(-50%);
  background: transparent; border: 0; font-size: 1.25rem; line-height: 1;
  color: #04121f; opacity: 0.7; padding: 0.25rem 0.5rem; border-radius: var(--r-sm);
}
.announce-close:hover { opacity: 1; background: rgba(0, 0, 0, 0.12); }
.announce[hidden] { display: none; }

/* ==========================================================================
   7. HEADER / NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(6, 13, 26, 0.72);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  border-bottom: 1px solid transparent;
  transition: background-color var(--dur) var(--ease),
              border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.site-header.is-stuck {
  background: rgba(6, 13, 26, 0.94);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -18px rgba(0, 0, 0, 0.9);
}

.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-5); min-height: var(--header-h);
}

.brand { display: flex; align-items: center; gap: 0.7rem; flex-shrink: 0; }
.brand:hover { color: inherit; }
.brand img {
  width: 42px; height: 42px; border-radius: var(--r-sm);
  background: #fff; padding: 3px; flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.14; }
.brand-name { font-size: 1.03rem; font-weight: 800; color: var(--text); letter-spacing: -0.01em; }
.brand-tag {
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-dim);
}

.nav-toggle {
  display: none; width: 44px; height: 44px;
  border: 1px solid var(--line-strong); border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.04); padding: 0; place-items: center;
}
.nav-toggle span {
  display: block; width: 19px; height: 2px; margin: 3.5px auto;
  border-radius: 2px; background: var(--text);
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.nav-menu { display: flex; align-items: center; gap: var(--sp-5); }
.nav-list { display: flex; align-items: center; gap: var(--sp-1); list-style: none; padding: 0; margin: 0; }
.nav-link {
  position: relative; display: block; padding: 0.5rem 0.8rem;
  border-radius: var(--r-sm); font-size: var(--fs-sm);
  font-weight: 600; color: var(--text-muted);
}
.nav-link:hover { color: var(--text); background: rgba(255, 255, 255, 0.05); }
.nav-link[aria-current="page"] { color: var(--brand-cyan); }
.nav-link[aria-current="page"]::after {
  content: ""; position: absolute; left: 0.8rem; right: 0.8rem; bottom: 0.18rem;
  height: 2px; border-radius: 2px; background: var(--grad-brand);
}
.nav-link .ext { font-size: 0.7em; opacity: 0.6; margin-left: 0.15rem; }

.nav-cta { display: flex; align-items: center; gap: var(--sp-3); flex-shrink: 0; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: var(--fs-sm); font-weight: 700; color: var(--text); white-space: nowrap;
}
.nav-phone:hover { color: var(--brand-cyan); }
.nav-phone svg { width: 15px; height: 15px; opacity: 0.75; }

/* ==========================================================================
   8. HERO
   ========================================================================== */
.hero {
  position: relative; isolation: isolate;
  padding-block: clamp(4rem, 9vw, 8rem); overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background: url("../img/hero-noc.jpg") center/cover no-repeat; opacity: 0.42;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(6, 13, 26, 0.5) 0%, rgba(6, 13, 26, 0.82) 55%, var(--bg) 100%),
    radial-gradient(900px 520px at 78% 22%, rgba(34, 211, 238, 0.16), transparent 65%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.08fr 0.92fr;
  gap: var(--sp-9); align-items: center;
}
.hero h1 { margin-bottom: var(--sp-5); font-size: var(--fs-5xl); }
.hero .lead { max-width: 56ch; }
.hero .btn-group { margin-top: var(--sp-7); }

.hero-note {
  display: flex; align-items: center; gap: var(--sp-2);
  margin-top: var(--sp-5); font-size: var(--fs-sm); color: var(--text-dim);
}
.hero-note svg { width: 16px; height: 16px; color: var(--success); flex-shrink: 0; }

.status-pill {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.4rem 0.95rem 0.4rem 0.75rem; margin-bottom: var(--sp-5);
  border: 1px solid rgba(52, 211, 153, 0.35); border-radius: var(--r-pill);
  background: rgba(52, 211, 153, 0.1);
  font-size: var(--fs-xs); font-weight: 700; color: #9df3d0;
}
.status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--success); box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7);
  animation: pulse 2.4s var(--ease) infinite; flex-shrink: 0;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6); }
  70%  { box-shadow: 0 0 0 9px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

.hero-card {
  background: linear-gradient(160deg, rgba(22, 36, 61, 0.92), rgba(16, 29, 51, 0.88));
  border: 1px solid var(--line-strong); border-radius: var(--r-xl);
  padding: var(--sp-6); box-shadow: var(--sh-lg); backdrop-filter: blur(8px);
}
.hero-card h2 { font-size: var(--fs-xl); margin-bottom: var(--sp-2); }
.hero-card > p { font-size: var(--fs-sm); color: var(--text-muted); margin-bottom: var(--sp-5); }

.quick-list { list-style: none; padding: 0; margin: 0 0 var(--sp-5); display: grid; gap: 0.65rem; }
.quick-list li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: var(--fs-sm); color: var(--text-muted);
}
.quick-list svg { width: 17px; height: 17px; margin-top: 0.24rem; color: var(--brand-cyan); flex-shrink: 0; }

.hero-contact-row {
  display: grid; gap: var(--sp-2);
  padding-top: var(--sp-4); border-top: 1px solid var(--line);
}
.hero-contact-row a {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: var(--fs-sm); font-weight: 600; color: var(--text); padding: 0.35rem 0;
}
.hero-contact-row a:hover { color: var(--brand-cyan); }
.hero-contact-row svg { width: 16px; height: 16px; color: var(--brand-cyan); flex-shrink: 0; }

/* ==========================================================================
   9. TRUST / STATS
   ========================================================================== */
.trust {
  border-block: 1px solid var(--line);
  background: rgba(10, 21, 38, 0.6); padding-block: var(--sp-6);
}
.trust-label {
  text-align: center; font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: var(--sp-5);
}
.trust-row {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: var(--sp-3) var(--sp-5);
}
.trust-item {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 1.15rem; border: 1px solid var(--line);
  border-radius: var(--r-pill); background: rgba(255, 255, 255, 0.03);
  font-size: var(--fs-sm); font-weight: 700; color: var(--text-muted);
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}
.trust-item:hover {
  border-color: rgba(34, 211, 238, 0.5); color: var(--text); transform: translateY(-2px);
}

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-5); }
.stat { text-align: center; padding: var(--sp-4); }
.stat-num {
  display: block; font-size: var(--fs-3xl); font-weight: 800; line-height: 1.05;
  background: var(--grad-text); -webkit-background-clip: text;
  background-clip: text; color: transparent;
}
.stat-label {
  display: block; margin-top: var(--sp-2);
  font-size: var(--fs-xs); font-weight: 600;
  letter-spacing: 0.09em; text-transform: uppercase; color: var(--text-dim);
}

/* ==========================================================================
   10. CARDS & GRIDS
   ========================================================================== */
.card {
  position: relative; display: flex; flex-direction: column; padding: var(--sp-6);
  background: linear-gradient(165deg, rgba(22, 36, 61, 0.75), rgba(16, 29, 51, 0.62));
  border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--sh-md);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.card:hover {
  transform: translateY(-5px); border-color: rgba(34, 211, 238, 0.4);
  box-shadow: var(--sh-lg), 0 0 0 1px rgba(34, 211, 238, 0.08);
}
.card h3, .card h4 { font-size: var(--fs-lg); margin-bottom: var(--sp-3); }
.card p { color: var(--text-muted); font-size: var(--fs-sm); }
.card-link {
  margin-top: auto; padding-top: var(--sp-5);
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: var(--fs-sm); font-weight: 700;
}
.card-link svg { width: 15px; height: 15px; transition: transform var(--dur) var(--ease); }
.card:hover .card-link svg { transform: translateX(4px); }

.icon-box {
  display: grid; place-items: center; width: 52px; height: 52px;
  margin-bottom: var(--sp-5); border: 1px solid rgba(34, 211, 238, 0.28);
  border-radius: var(--r-md);
  background: linear-gradient(150deg, rgba(34, 211, 238, 0.18), rgba(37, 99, 235, 0.12));
  color: var(--brand-cyan); flex-shrink: 0;
}
.icon-box svg { width: 25px; height: 25px; }

.card-badge {
  position: absolute; top: var(--sp-4); right: var(--sp-4);
  padding: 0.22rem 0.65rem; border-radius: var(--r-pill);
  background: rgba(34, 211, 238, 0.15); border: 1px solid rgba(34, 211, 238, 0.35);
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--brand-cyan-soft);
}

.split {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-9); align-items: center;
}
.split-media img {
  width: 100%; border-radius: var(--r-xl);
  border: 1px solid var(--line-strong); box-shadow: var(--sh-lg);
}

/* ==========================================================================
   11. PRICING
   ========================================================================== */
.price-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
  gap: var(--sp-5); align-items: start;
}
.plan {
  position: relative; display: flex; flex-direction: column; height: 100%;
  padding: var(--sp-6);
  background: linear-gradient(165deg, rgba(22, 36, 61, 0.8), rgba(16, 29, 51, 0.65));
  border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--sh-md);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.plan:hover {
  transform: translateY(-5px); border-color: rgba(34, 211, 238, 0.42); box-shadow: var(--sh-lg);
}
.plan.featured {
  border-color: rgba(34, 211, 238, 0.55);
  background: linear-gradient(165deg, rgba(28, 47, 79, 0.92), rgba(16, 29, 51, 0.8));
  box-shadow: var(--sh-lg), var(--sh-glow);
}
.plan-flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  padding: 0.3rem 0.95rem; border-radius: var(--r-pill);
  background: var(--grad-brand); color: #04121f;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; white-space: nowrap;
}
.plan-name { font-size: var(--fs-lg); font-weight: 800; margin-bottom: var(--sp-2); }
.plan-desc {
  font-size: var(--fs-sm); color: var(--text-muted);
  min-height: 3.1em; margin-bottom: var(--sp-4);
}
.plan-price {
  display: flex; align-items: baseline; gap: 0.35rem; flex-wrap: wrap;
  padding-bottom: var(--sp-5); margin-bottom: var(--sp-5);
  border-bottom: 1px solid var(--line);
}
.plan-amount {
  font-size: clamp(2rem, 2.4vw, 2.5rem); font-weight: 800;
  line-height: 1; letter-spacing: -0.03em;
}
.plan-period { font-size: var(--fs-sm); font-weight: 600; color: var(--text-dim); }
.plan-alt {
  display: block; width: 100%; font-size: var(--fs-xs);
  color: var(--text-dim); margin-top: 0.35rem;
}
.plan-features { list-style: none; padding: 0; margin: 0 0 var(--sp-6); display: grid; gap: 0.7rem; }
.plan-features li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.55;
}
.plan-features svg { width: 16px; height: 16px; margin-top: 0.22rem; color: var(--success); flex-shrink: 0; }
.plan .btn { margin-top: auto; }

.plan-note {
  margin-top: var(--sp-4); padding: 0.7rem 0.9rem;
  border-left: 3px solid var(--warning); border-radius: 0 var(--r-sm) var(--r-sm) 0;
  background: rgba(251, 191, 36, 0.09);
  font-size: var(--fs-xs); color: #f5dfa8; line-height: 1.55;
}

/* ==========================================================================
   12. COMPARISON TABLE
   ========================================================================== */
.table-wrap {
  overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-lg);
  background: rgba(16, 29, 51, 0.55); -webkit-overflow-scrolling: touch;
}
table.compare { width: 100%; border-collapse: collapse; min-width: 640px; font-size: var(--fs-sm); }
table.compare th, table.compare td {
  padding: 0.95rem 1.1rem; text-align: left;
  border-bottom: 1px solid var(--line); vertical-align: middle;
}
table.compare thead th {
  background: rgba(28, 44, 72, 0.95);
  font-size: var(--fs-xs); font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text); white-space: nowrap;
}
table.compare tbody th { font-weight: 700; color: var(--text); }
table.compare tbody tr:last-child th, table.compare tbody tr:last-child td { border-bottom: 0; }
table.compare tbody tr:hover { background: rgba(34, 211, 238, 0.05); }
table.compare td { color: var(--text-muted); }
.yes { color: var(--success); font-weight: 800; }
.no { color: var(--text-dim); }

/* ==========================================================================
   13. PROCESS STEPS
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-5); counter-reset: step; }
.step { position: relative; padding-top: var(--sp-6); }
.step::before {
  counter-increment: step; content: counter(step);
  display: grid; place-items: center; width: 42px; height: 42px;
  margin-bottom: var(--sp-4); border-radius: 50%;
  background: var(--grad-brand); color: #04121f;
  font-size: var(--fs-base); font-weight: 800;
}
.step:not(:last-child)::after {
  content: ""; position: absolute; top: calc(var(--sp-6) + 21px);
  left: 52px; right: -12px; height: 1px;
  background: linear-gradient(90deg, var(--line-strong), transparent);
}
.step h4 { font-size: var(--fs-base); margin-bottom: var(--sp-2); }
.step p { font-size: var(--fs-sm); color: var(--text-muted); }

ol.steps-list { counter-reset: s; list-style: none; padding: 0; margin: 0; display: grid; gap: var(--sp-4); }
ol.steps-list > li {
  position: relative; padding-left: 3.1rem;
  font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.65;
}
ol.steps-list > li::before {
  counter-increment: s; content: counter(s);
  position: absolute; left: 0; top: -1px;
  display: grid; place-items: center; width: 32px; height: 32px;
  border-radius: 50%; background: rgba(34, 211, 238, 0.14);
  border: 1px solid rgba(34, 211, 238, 0.35);
  color: var(--brand-cyan); font-size: var(--fs-sm); font-weight: 800;
}
ol.steps-list strong { color: var(--text); }

/* ==========================================================================
   14. FEATURE LISTS / PROSE BLOCKS
   ========================================================================== */
.panel {
  padding: var(--sp-7);
  background: linear-gradient(165deg, rgba(22, 36, 61, 0.72), rgba(16, 29, 51, 0.58));
  border: 1px solid var(--line); border-radius: var(--r-xl); box-shadow: var(--sh-md);
}
.panel + .panel { margin-top: var(--sp-6); }
.panel > h2 { font-size: var(--fs-2xl); margin-bottom: var(--sp-4); }
.panel > h3 { font-size: var(--fs-xl); margin-bottom: var(--sp-4); }
.panel p + p { margin-top: var(--sp-4); }
.panel p, .panel li { color: var(--text-muted); }
.panel strong { color: var(--text); font-weight: 700; }

.check-list, .bullet-list { list-style: none; padding: 0; margin: var(--sp-4) 0 0; display: grid; gap: 0.8rem; }
.check-list li, .bullet-list li {
  display: flex; align-items: flex-start; gap: 0.7rem;
  font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.65;
}
.check-list svg { width: 17px; height: 17px; margin-top: 0.24rem; color: var(--success); flex-shrink: 0; }
.bullet-list svg { width: 17px; height: 17px; margin-top: 0.24rem; color: var(--brand-cyan); flex-shrink: 0; }
.check-list strong, .bullet-list strong { color: var(--text); }

.cols-2 { columns: 2; column-gap: var(--sp-7); }

code, .mono {
  font-family: var(--font-mono); font-size: 0.88em;
  padding: 0.14em 0.42em; border-radius: 5px;
  background: rgba(34, 211, 238, 0.1); border: 1px solid rgba(34, 211, 238, 0.22);
  color: var(--brand-cyan-soft); word-break: break-word;
}

/* ==========================================================================
   15. CALLOUTS & NOTICES
   ========================================================================== */
.callout {
  display: flex; gap: var(--sp-4); padding: var(--sp-5); margin-top: var(--sp-5);
  border: 1px solid var(--line-strong); border-left-width: 4px;
  border-radius: var(--r-md); background: rgba(255, 255, 255, 0.035);
  font-size: var(--fs-sm); line-height: 1.65;
}
.callout svg { width: 21px; height: 21px; flex-shrink: 0; margin-top: 0.1rem; }
.callout strong { display: block; margin-bottom: 0.25rem; color: var(--text); font-size: var(--fs-base); }
.callout p { color: var(--text-muted); }
.callout-info { border-left-color: var(--brand-cyan); background: rgba(34, 211, 238, 0.07); }
.callout-info svg { color: var(--brand-cyan); }
.callout-warning { border-left-color: var(--warning); background: rgba(251, 191, 36, 0.08); }
.callout-warning svg { color: var(--warning); }
.callout-danger { border-left-color: var(--danger); background: rgba(248, 113, 113, 0.09); }
.callout-danger svg { color: var(--danger); }
.callout-success { border-left-color: var(--success); background: rgba(52, 211, 153, 0.08); }
.callout-success svg { color: var(--success); }

/* ==========================================================================
   16. FAQ ACCORDION
   ========================================================================== */
.faq { display: grid; gap: var(--sp-3); max-width: 860px; margin-inline: auto; }
.faq-item {
  border: 1px solid var(--line); border-radius: var(--r-md);
  background: rgba(22, 36, 61, 0.55); overflow: hidden;
  transition: border-color var(--dur) var(--ease);
}
.faq-item.open { border-color: rgba(34, 211, 238, 0.4); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-4); width: 100%; padding: 1.15rem 1.35rem;
  background: transparent; border: 0; text-align: left;
  font-size: var(--fs-base); font-weight: 700; color: var(--text);
}
.faq-q:hover { color: var(--brand-cyan); }
.faq-icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; inset: 50% 0 auto 0;
  height: 2px; border-radius: 2px; background: var(--brand-cyan);
  transition: transform var(--dur) var(--ease);
}
.faq-icon::after { transform: rotate(90deg); }
.faq-item.open .faq-icon::after { transform: rotate(0deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows var(--dur) var(--ease); }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p {
  padding: 0 1.35rem 1.25rem; font-size: var(--fs-sm);
  color: var(--text-muted); line-height: 1.7;
}

/* ==========================================================================
   17. CTA BAND
   ========================================================================== */
.cta-band {
  position: relative; overflow: hidden; padding: var(--sp-9) var(--sp-7);
  border: 1px solid rgba(34, 211, 238, 0.3); border-radius: var(--r-xl);
  background:
    radial-gradient(700px 300px at 15% 0%, rgba(34, 211, 238, 0.16), transparent 60%),
    linear-gradient(150deg, rgba(28, 47, 79, 0.92), rgba(10, 21, 38, 0.88));
  box-shadow: var(--sh-lg); text-align: center;
}
.cta-band h2 { margin-bottom: var(--sp-4); }
.cta-band .lead { max-width: 62ch; margin-inline: auto; }
.cta-band .btn-group { margin-top: var(--sp-6); }

/* ==========================================================================
   18. CONTACT
   ========================================================================== */
.contact-grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: var(--sp-7); align-items: start;
}
.contact-info { display: grid; gap: var(--sp-3); }
.contact-row {
  display: flex; align-items: flex-start; gap: var(--sp-4); padding: var(--sp-4);
  border: 1px solid var(--line); border-radius: var(--r-md);
  background: rgba(22, 36, 61, 0.5);
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.contact-row:hover { border-color: rgba(34, 211, 238, 0.4); transform: translateY(-2px); }
.contact-row .icon-box { width: 42px; height: 42px; margin: 0; }
.contact-row .icon-box svg { width: 20px; height: 20px; }
.contact-row .rlabel {
  display: block; font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 0.15rem;
}
.contact-row .rval {
  display: block; font-size: var(--fs-sm); font-weight: 700;
  color: var(--text); word-break: break-word;
}
.contact-row a.rval:hover { color: var(--brand-cyan); }
.contact-row .rsub { font-size: var(--fs-xs); color: var(--text-dim); }

.form-shell {
  padding: var(--sp-3); border: 1px solid var(--line-strong);
  border-radius: var(--r-xl); background: rgba(16, 29, 51, 0.6); box-shadow: var(--sh-lg);
}
.form-shell iframe {
  display: block; width: 100%; height: 980px; border: 0;
  border-radius: var(--r-lg); background: transparent;
}
.secure-tag {
  display: inline-flex; align-items: center; gap: 0.45rem;
  margin-bottom: var(--sp-3); padding: 0.4rem 0.9rem;
  border: 1px solid rgba(52, 211, 153, 0.3); border-radius: var(--r-pill);
  background: rgba(52, 211, 153, 0.09);
  font-size: var(--fs-xs); font-weight: 700; color: #9df3d0;
}
.secure-tag svg { width: 14px; height: 14px; }

/* ==========================================================================
   19. FOOTER
   ========================================================================== */
.site-footer {
  margin-top: var(--sp-10); border-top: 1px solid var(--line);
  background: rgba(4, 9, 18, 0.85); padding-top: var(--sp-9);
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--sp-7); padding-bottom: var(--sp-8);
}
.footer-brand .brand { margin-bottom: var(--sp-4); }
.footer-brand p { font-size: var(--fs-sm); color: var(--text-muted); max-width: 34ch; }
.footer-col h5 {
  font-size: var(--fs-xs); font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text); margin-bottom: var(--sp-4);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.6rem; }
.footer-col a { font-size: var(--fs-sm); color: var(--text-muted); }
.footer-col a:hover { color: var(--brand-cyan); }
.footer-col address { font-style: normal; font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.85; }
.footer-col address a { display: block; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-4); flex-wrap: wrap; padding-block: var(--sp-5);
  border-top: 1px solid var(--line); font-size: var(--fs-xs); color: var(--text-dim);
}
.footer-bottom p { color: var(--text-dim); }
.footer-meta { display: flex; gap: var(--sp-4); flex-wrap: wrap; align-items: center; }
#hit-counter { font-family: var(--font-mono); font-size: 0.78rem; color: var(--text-dim); }
#hit-counter:empty { display: none; }

.support-fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 900;
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.85rem 1.3rem; border-radius: var(--r-pill);
  background: var(--grad-brand); color: #04121f;
  font-size: var(--fs-sm); font-weight: 800;
  box-shadow: 0 10px 30px -8px rgba(34, 211, 238, 0.6);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.support-fab:hover {
  color: #04121f; transform: translateY(-3px);
  box-shadow: 0 16px 40px -10px rgba(34, 211, 238, 0.8);
}
.support-fab svg { width: 18px; height: 18px; }

/* ==========================================================================
   20. UTILITIES & ANIMATION
   ========================================================================== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-4 { margin-top: var(--sp-4); }
.mt-5 { margin-top: var(--sp-5); }
.mt-6 { margin-top: var(--sp-6); }
.mt-8 { margin-top: var(--sp-8); }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: var(--sp-4); }
.mb-6 { margin-bottom: var(--sp-6); }
.mx-auto { margin-inline: auto; }
.muted { color: var(--text-muted); }
.dim { color: var(--text-dim); }
.fs-sm { font-size: var(--fs-sm); }
.fs-xs { font-size: var(--fs-xs); }
.nowrap { white-space: nowrap; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

[data-reveal] {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
[data-reveal].revealed { opacity: 1; transform: none; }

/* ==========================================================================
   21. RESPONSIVE
   ========================================================================== */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
  .stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
  :root { --header-h: 66px; }

  .nav-toggle { display: grid; }
  .nav-menu {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    max-height: calc(100dvh - var(--header-h)); overflow-y: auto;
    padding: var(--sp-4) var(--sp-5) var(--sp-7);
    background: rgba(6, 13, 26, 0.985); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line); box-shadow: var(--sh-lg);
    transform: translateY(-8px); opacity: 0; visibility: hidden;
    transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease),
                visibility var(--dur) var(--ease);
  }
  .nav-menu.open { transform: none; opacity: 1; visibility: visible; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-link {
    padding: 0.95rem 0.6rem; border-radius: var(--r-sm);
    border-bottom: 1px solid var(--line); font-size: var(--fs-base);
  }
  .nav-link[aria-current="page"]::after { display: none; }
  .nav-cta { flex-direction: column; align-items: stretch; gap: var(--sp-3); margin-top: var(--sp-5); }
  .nav-cta .btn { width: 100%; }
  .nav-phone { justify-content: center; padding: 0.5rem; }

  .hero-grid { grid-template-columns: 1fr; gap: var(--sp-7); }
  .split { grid-template-columns: 1fr; gap: var(--sp-6); }
  .split-media { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: var(--sp-6); }
  .step:not(:last-child)::after { display: none; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
  .cols-2 { columns: 1; }
  .section { padding-block: var(--sp-9); }
}

@media (max-width: 640px) {
  :root { --fs-base: 1rem; }

  .container { padding-inline: var(--sp-4); }
  .section { padding-block: var(--sp-8); }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: var(--sp-5); }
  .stats { grid-template-columns: repeat(2, 1fr); gap: var(--sp-3); }

  .brand-tag { display: none; }
  .brand img { width: 38px; height: 38px; }

  .announce-inner { padding-right: 2.4rem; font-size: var(--fs-xs); gap: var(--sp-2); }
  .announce-links { gap: var(--sp-3); }

  .hero { padding-block: var(--sp-8); }
  .hero-card { padding: var(--sp-5); }
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { width: 100%; }

  .panel { padding: var(--sp-5); }
  .cta-band { padding: var(--sp-7) var(--sp-5); }
  .plan { padding: var(--sp-5); }
  .form-shell iframe { height: 1060px; }

  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-6); }
  .footer-bottom { flex-direction: column; text-align: center; }

  .support-fab { right: 14px; bottom: 14px; padding: 0.8rem; }
  .support-fab span { display: none; }
  .support-fab svg { width: 21px; height: 21px; }
}

/* ==========================================================================
   22. PRINT & REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

@media print {
  @page { size: Letter; margin: 0.6in; }

  html, body { background: #fff !important; color: #111 !important; font-size: 11pt; }
  .site-header, .announce, .support-fab, .nav-toggle,
  .hero-bg, .form-shell, .cta-band .btn-group, .btn { display: none !important; }

  a { color: #08519c !important; text-decoration: underline; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 8.5pt; color: #555; }

  .hero, .section, .section-sm { padding-block: 0.35in !important; }
  .hero::after { display: none !important; }

  h1, h2, h3, h4 { color: #0b2545 !important; page-break-after: avoid; }
  p, li { color: #222 !important; }

  .card, .plan, .panel, .callout, .contact-row, .cta-band, .table-wrap {
    background: #fff !important; border: 1px solid #bbb !important;
    box-shadow: none !important; page-break-inside: avoid; transform: none !important;
  }
  .text-gradient, .stat-num, .plan-amount {
    -webkit-text-fill-color: #0b2545 !important;
    color: #0b2545 !important; background: none !important;
  }
  .muted, .dim, .plan-desc, .plan-features li, .check-list li { color: #333 !important; }
  table.compare thead th { background: #eee !important; color: #111 !important; }
  .site-footer { border-top: 1px solid #999; margin-top: 0.3in; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}
