/* ==========================================================================
   NCPS InfoSec — design system
   1. Tokens        5. Header / nav      9. Pricing
   2. Base          6. Hero             10. Forms
   3. Layout        7. Sections         11. Footer
   4. Buttons       8. Cards / proof    12. Utilities & motion
   ========================================================================== */

/* 1. Tokens ---------------------------------------------------------------- */
:root {
  --bg:            #070A12;
  --bg-elev:       #0B1020;
  --surface:       #0E1526;
  --surface-2:     #121B31;
  --surface-3:     #17233E;
  --line:          rgba(148, 173, 224, .14);
  --line-strong:   rgba(148, 173, 224, .26);

  --text:          #E9EFFB;
  --text-2:        #B4C1DA;
  --muted:         #8494B3;

  --accent:        #2DE0A6;
  --accent-ink:    #04120C;
  --accent-2:      #5B8CFF;
  --accent-3:      #FFB547;
  --danger:        #FF6B6B;

  --grad:          linear-gradient(135deg, #2DE0A6 0%, #5B8CFF 100%);
  --grad-soft:     linear-gradient(135deg, rgba(45,224,166,.16) 0%, rgba(91,140,255,.10) 100%);

  --font-body:     "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display:  "Space Grotesk", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono:     "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --r-sm: 8px;
  --r:    14px;
  --r-lg: 20px;
  --r-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.4);
  --shadow:    0 18px 40px -18px rgba(0,0,0,.75);
  --shadow-lg: 0 40px 80px -32px rgba(0,0,0,.85);

  --container: 1200px;
  --gutter: 24px;
  --header-h: 68px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* 2. Base ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 24px); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed; inset: 0;
  background:
    radial-gradient(900px 480px at 78% -8%, rgba(91,140,255,.16), transparent 62%),
    radial-gradient(760px 420px at 8% 4%, rgba(45,224,166,.11), transparent 60%);
  pointer-events: none; z-index: 0;
}
body > * { position: relative; z-index: 1; }

img, svg { max-width: 100%; }
img { height: auto; display: block; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.14; letter-spacing: -.02em; margin: 0 0 .5em; color: #fff; }
h1 { font-size: clamp(2.35rem, 1.35rem + 3.5vw, 4rem); letter-spacing: -.035em; }
h2 { font-size: clamp(1.85rem, 1.2rem + 2.2vw, 2.85rem); letter-spacing: -.03em; }
h3 { font-size: clamp(1.18rem, 1.05rem + .5vw, 1.4rem); }
h4 { font-size: 1.02rem; }
p  { margin: 0 0 1.1em; color: var(--text-2); }
p:last-child { margin-bottom: 0; }
a { color: var(--accent); text-decoration: none; transition: color .18s var(--ease); }
a:hover { color: #7cf3cd; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.15em; color: var(--text-2); }
li { margin-bottom: .4em; }
strong { color: #fff; font-weight: 600; }
small { font-size: .85rem; }
hr { border: 0; border-top: 1px solid var(--line); margin: 3rem 0; }
address { font-style: normal; }
::selection { background: rgba(45,224,166,.28); color: #fff; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 999;
  background: var(--accent); color: var(--accent-ink);
  padding: 10px 16px; border-radius: var(--r-sm); font-weight: 600;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; color: var(--accent-ink); }

/* 3. Layout ---------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: 860px; }
.section { padding: clamp(64px, 8vw, 116px) 0; }
.section--tight { padding: clamp(44px, 5vw, 72px) 0; }
.section--alt { background: linear-gradient(180deg, transparent, rgba(14,21,38,.72) 12%, rgba(14,21,38,.72) 88%, transparent); }

.section-head { max-width: 760px; margin-bottom: clamp(34px, 4vw, 56px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { font-size: 1.075rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: .74rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 14px;
}
.eyebrow::before { content: ""; width: 18px; height: 1px; background: currentColor; opacity: .7; }
.section-head--center .eyebrow::before { display: none; }

.lede { font-size: clamp(1.03rem, .98rem + .3vw, 1.2rem); color: var(--text-2); }

.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

/* 4. Buttons --------------------------------------------------------------- */
.btn {
  --btn-bg: transparent; --btn-fg: var(--text); --btn-bd: var(--line-strong);
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-size: .95rem; font-weight: 600; line-height: 1;
  padding: 14px 22px; border-radius: 999px; cursor: pointer;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid var(--btn-bd);
  text-align: center; white-space: nowrap;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
}
.btn:hover { transform: translateY(-1px); color: var(--btn-fg); }
.btn:active { transform: translateY(0); }
.btn--primary {
  --btn-bg: var(--grad); --btn-fg: #05221A; --btn-bd: transparent;
  box-shadow: 0 10px 28px -12px rgba(45,224,166,.75);
}
.btn--primary:hover { box-shadow: 0 16px 34px -12px rgba(45,224,166,.9); color: #05221A; }
.btn--ghost { --btn-bg: rgba(255,255,255,.03); }
.btn--ghost:hover { --btn-bg: rgba(255,255,255,.07); --btn-bd: var(--accent); }
.btn--solid { --btn-bg: #fff; --btn-fg: #08101F; --btn-bd: #fff; }
.btn--solid:hover { color: #08101F; }
.btn--sm { padding: 10px 16px; font-size: .875rem; }
.btn--lg { padding: 17px 30px; font-size: 1rem; }
.btn--block { width: 100%; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: .55; pointer-events: none; }

.link-arrow { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-size: .93rem; }
.link-arrow::after { content: "→"; transition: transform .18s var(--ease); }
.link-arrow:hover::after { transform: translateX(4px); }

/* 5. Header / nav ---------------------------------------------------------- */
.topbar {
  background: rgba(7,10,18,.9);
  border-bottom: 1px solid var(--line);
  font-size: .8rem;
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 38px; }
.topbar__note { margin: 0; color: var(--muted); display: flex; align-items: center; gap: 9px; }
.topbar__note strong { color: var(--accent); font-family: var(--font-mono); font-weight: 500; }
.topbar__links { display: flex; align-items: center; gap: 12px; color: var(--muted); }
.topbar__links a { color: var(--text-2); }
.topbar__links a:hover { color: var(--accent); }
.topbar__sep { opacity: .4; }
@media (max-width: 780px) { .topbar__links { display: none; } .topbar__note { font-size: .76rem; } }

.pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex: none;
  box-shadow: 0 0 0 0 rgba(45,224,166,.6); animation: pulse 2.4s infinite;
}
@keyframes pulse {
  70%  { box-shadow: 0 0 0 9px rgba(45,224,166,0); }
  100% { box-shadow: 0 0 0 0 rgba(45,224,166,0); }
}

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(7,10,18,.72);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--line); background: rgba(7,10,18,.94); }
.site-header__inner { display: flex; align-items: center; gap: 26px; min-height: var(--header-h); }
.brand { display: inline-flex; align-items: center; flex: none; }
.brand__logo { height: 34px; width: auto; }
.site-header__actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }

.nav { margin-left: 6px; }
.nav__list { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav__item { position: relative; margin: 0; }
.nav__link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 13px; border-radius: 999px;
  font-size: .93rem; font-weight: 500; color: var(--text-2);
  background: none; border: 0; cursor: pointer; font-family: inherit;
  transition: color .16s var(--ease), background .16s var(--ease);
}
.nav__link:hover { color: #fff; background: rgba(255,255,255,.06); }
.nav__link .chev { width: 10px; height: 7px; opacity: .7; transition: transform .2s var(--ease); }
.nav__toggle[aria-expanded="true"] { color: #fff; background: rgba(255,255,255,.07); }
.nav__toggle[aria-expanded="true"] .chev { transform: rotate(180deg); }

body[data-nav="services"]  .nav__link[data-key="services"],
body[data-nav="industries"] .nav__link[data-key="industries"],
body[data-nav="pricing"]   .nav__link[data-key="pricing"],
body[data-nav="reviews"]   .nav__link[data-key="reviews"],
body[data-nav="about"]     .nav__link[data-key="about"],
body[data-nav="contact"]   .nav__link[data-key="contact"] { color: #fff; background: rgba(45,224,166,.12); }

.megamenu {
  position: absolute; top: calc(100% + 12px); left: -20px;
  width: min(760px, 78vw);
  display: grid; grid-template-columns: 1fr 232px;
  background: var(--surface); border: 1px solid var(--line-strong);
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: menuIn .18s var(--ease);
}
.megamenu[hidden] { display: none; }
@keyframes menuIn { from { opacity: 0; transform: translateY(-6px); } }
.megamenu__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; padding: 14px; }
.megamenu__item { display: block; padding: 12px 14px; border-radius: var(--r); color: var(--text); transition: background .16s var(--ease); }
.megamenu__item:hover { background: rgba(255,255,255,.05); color: var(--text); }
.megamenu__title { display: block; font-weight: 600; font-size: .93rem; margin-bottom: 2px; }
.megamenu__desc { display: block; font-size: .82rem; color: var(--muted); line-height: 1.45; }
.megamenu__aside { background: var(--grad-soft); border-left: 1px solid var(--line); padding: 20px; display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.megamenu__asideText { font-size: .85rem; color: var(--text-2); margin: 0; }

.hamburger { display: none; width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--line-strong); background: rgba(255,255,255,.04); cursor: pointer; padding: 0; }
.hamburger span { display: block; width: 18px; height: 1.8px; margin: 3.5px auto; background: var(--text); border-radius: 2px; transition: transform .22s var(--ease), opacity .22s var(--ease); }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.3px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.3px) rotate(-45deg); }

.mobile-nav {
  position: sticky; top: var(--header-h); z-index: 99;
  background: rgba(7,10,18,.98); border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.mobile-nav[hidden] { display: none; }
.mobile-nav__inner { display: flex; flex-direction: column; padding-block: 12px 20px; }
.mobile-nav__inner > a { padding: 13px 2px; border-bottom: 1px solid var(--line); color: var(--text); font-weight: 500; }
.mobile-nav__foot { display: grid; gap: 10px; margin-top: 18px; }

@media (max-width: 1080px) {
  .nav { display: none; }
  .hamburger { display: block; }
}
@media (max-width: 560px) { .hide-sm { display: none; } }
@media (max-width: 480px) {
  :root { --gutter: 18px; }
  /* The header CTA duplicates one inside the mobile menu; drop it before it
     collides with the hamburger on narrow phones. */
  .site-header__actions .btn { display: none; }
  .site-header__actions .hamburger { display: block; }
  .topbar__note { font-size: .72rem; }
  .btn--lg { padding: 15px 22px; font-size: .94rem; }
  .btn { white-space: normal; }
}
@media (max-width: 380px) {
  .topbar__note strong { display: none; }
  .topbar__note { font-size: .7rem; }
}

/* 6. Hero ------------------------------------------------------------------ */
.hero { padding: clamp(56px, 7vw, 104px) 0 clamp(48px, 6vw, 84px); overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
@media (max-width: 980px) { .hero__grid { grid-template-columns: 1fr; } }

.badge-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 13px; border-radius: 999px;
  border: 1px solid var(--line-strong); background: rgba(255,255,255,.035);
  font-size: .78rem; font-weight: 500; color: var(--text-2);
}
.badge--accent { border-color: rgba(45,224,166,.4); background: rgba(45,224,166,.09); color: var(--accent); }

.hero h1 { margin-bottom: 20px; }
.hero h1 .grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__sub { font-size: clamp(1.05rem, 1rem + .35vw, 1.22rem); color: var(--text-2); max-width: 40ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 24px; }
.hero__note { display: flex; flex-wrap: wrap; gap: 8px 20px; font-size: .86rem; color: var(--muted); }
.hero__note span { display: inline-flex; align-items: center; gap: 7px; }
.hero__note span::before { content: ""; width: 14px; height: 14px; flex: none; border-radius: 50%; background: rgba(45,224,166,.16); box-shadow: inset 0 0 0 1px rgba(45,224,166,.5); }

/* live SOC console visual */
.console {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line-strong); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.console__bar { display: flex; align-items: center; gap: 8px; padding: 12px 16px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.02); }
.console__dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.16); }
.console__title { margin-left: 6px; font-family: var(--font-mono); font-size: .76rem; color: var(--muted); letter-spacing: .02em; }
.console__status { margin-left: auto; font-family: var(--font-mono); font-size: .7rem; color: var(--accent); display: inline-flex; align-items: center; gap: 6px; }
.console__body { padding: 8px 0; max-height: 336px; overflow: hidden; }
.console__row {
  display: grid; grid-template-columns: 62px 74px 1fr auto; gap: 12px; align-items: center;
  padding: 10px 16px; font-size: .8rem; border-bottom: 1px solid rgba(148,173,224,.07);
}
.console__row:last-child { border-bottom: 0; }
.console__time { font-family: var(--font-mono); font-size: .72rem; color: var(--muted); }
.console__msg { color: var(--text-2); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.console__msg b { color: #fff; font-weight: 600; }
.sev { font-family: var(--font-mono); font-size: .66rem; letter-spacing: .08em; text-transform: uppercase; padding: 3px 8px; border-radius: 5px; text-align: center; }
.sev--crit { background: rgba(255,107,107,.14); color: #FF8E8E; box-shadow: inset 0 0 0 1px rgba(255,107,107,.3); }
.sev--high { background: rgba(255,181,71,.13); color: #FFC978; box-shadow: inset 0 0 0 1px rgba(255,181,71,.28); }
.sev--med  { background: rgba(91,140,255,.14); color: #97B4FF; box-shadow: inset 0 0 0 1px rgba(91,140,255,.3); }
.sev--info { background: rgba(148,173,224,.1); color: var(--muted); box-shadow: inset 0 0 0 1px rgba(148,173,224,.2); }
.console__action { font-family: var(--font-mono); font-size: .68rem; color: var(--accent); white-space: nowrap; }
.console__foot { display: flex; justify-content: space-between; gap: 12px; padding: 12px 16px; border-top: 1px solid var(--line); background: rgba(255,255,255,.02); font-size: .74rem; color: var(--muted); font-family: var(--font-mono); }
@media (max-width: 520px) {
  .console__row { grid-template-columns: 56px 1fr; row-gap: 6px; }
  .console__action { grid-column: 2; justify-self: start; }
  .sev { justify-self: start; }
}

/* trust strip */
.trust { border-block: 1px solid var(--line); background: rgba(11,16,32,.6); padding: 22px 0; }
.trust__label { text-align: center; font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; font-family: var(--font-mono); }
.trust__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 34px; }
.trust__item {
  font-family: var(--font-display); font-weight: 600; font-size: .98rem; letter-spacing: .01em;
  color: var(--text-2); opacity: .78; display: inline-flex; align-items: center; gap: 9px;
  transition: opacity .2s var(--ease);
}
.trust__item:hover { opacity: 1; }
.trust__item svg { width: 18px; height: 18px; flex: none; color: var(--accent); }

/* 7. Sections -------------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
@media (max-width: 900px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat { background: var(--bg-elev); padding: 28px 24px; }
.stat__value { font-family: var(--font-display); font-size: clamp(1.9rem, 1.4rem + 1.6vw, 2.7rem); font-weight: 700; line-height: 1; color: #fff; letter-spacing: -.03em; }
.stat__value .unit { margin-left: 3px; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat__label { margin: 10px 0 0; font-size: .88rem; color: var(--muted); line-height: 1.5; }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px; position: relative; overflow: hidden;
  transition: transform .22s var(--ease), border-color .22s var(--ease), box-shadow .22s var(--ease);
}
.card--hover:hover { transform: translateY(-3px); border-color: var(--line-strong); box-shadow: var(--shadow); }
.card__icon {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: var(--grad-soft); box-shadow: inset 0 0 0 1px rgba(45,224,166,.22);
  color: var(--accent); margin-bottom: 18px;
}
.card__icon svg { width: 21px; height: 21px; }
.card h3 { margin-bottom: 8px; }
.card p { font-size: .93rem; margin-bottom: .9em; }
.card__list { list-style: none; padding: 0; margin: 14px 0 0; font-size: .87rem; }
.card__list li { display: flex; gap: 9px; align-items: flex-start; color: var(--text-2); margin-bottom: 7px; }
.card__list li::before { content: ""; margin-top: .52em; width: 5px; height: 5px; flex: none; border-radius: 50%; background: var(--accent); }
.card__foot { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 68px); align-items: center; }
.split--reverse .split__media { order: -1; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } .split--reverse .split__media { order: 0; } }

.checklist { list-style: none; padding: 0; margin: 22px 0 0; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 13px; color: var(--text-2); }
.checklist li::before {
  content: "✓"; flex: none; width: 22px; height: 22px; margin-top: 2px; border-radius: 50%;
  display: grid; place-items: center; font-size: .72rem; font-weight: 700;
  background: rgba(45,224,166,.13); color: var(--accent); box-shadow: inset 0 0 0 1px rgba(45,224,166,.3);
}

.steps { counter-reset: step; display: grid; gap: 18px; grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding: 26px 22px; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface); }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--font-mono); font-size: .78rem; color: var(--accent);
  display: block; margin-bottom: 14px; letter-spacing: .08em;
}
.step h3 { font-size: 1.06rem; margin-bottom: 7px; }
.step p { font-size: .89rem; margin: 0; }

/* timeline — years of activity */
.timeline { position: relative; margin: 0; padding: 0 0 0 34px; list-style: none; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(180deg, var(--accent), rgba(91,140,255,.5), transparent); }
.timeline li { position: relative; margin: 0 0 30px; }
.timeline li::before {
  content: ""; position: absolute; left: -34px; top: 7px; width: 16px; height: 16px; border-radius: 50%;
  background: var(--bg); box-shadow: inset 0 0 0 3px var(--accent);
}
.timeline__year { font-family: var(--font-mono); font-size: .82rem; color: var(--accent); letter-spacing: .06em; }
.timeline h3 { font-size: 1.08rem; margin: 4px 0 6px; }
.timeline p { font-size: .92rem; margin: 0; }

/* 8. Cards / proof --------------------------------------------------------- */
.rating { display: inline-flex; align-items: center; gap: 8px; }
.stars { display: inline-flex; gap: 2px; color: var(--accent-3); }
.stars svg { width: 15px; height: 15px; }
.rating__text { font-size: .84rem; color: var(--muted); }

.review {
  display: flex; flex-direction: column; gap: 16px; height: 100%;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px;
}
.review__quote { font-size: .97rem; color: var(--text); line-height: 1.68; margin: 0; }
.review__quote::before { content: "“"; font-family: var(--font-display); font-size: 2.4rem; line-height: 0; color: var(--accent); vertical-align: -.35em; margin-right: 4px; }
.review__meta { margin-top: auto; display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line); }
.avatar {
  width: 40px; height: 40px; flex: none; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 600; font-size: .82rem; color: #05221A;
  background: var(--grad);
}
.review__who { font-size: .88rem; font-weight: 600; color: #fff; line-height: 1.35; }
.review__org { font-size: .8rem; color: var(--muted); }
.review__tag { margin-left: auto; font-family: var(--font-mono); font-size: .66rem; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); border: 1px solid var(--line); border-radius: 5px; padding: 3px 7px; }
.review__result { font-size: .84rem; font-family: var(--font-mono); color: var(--accent); background: rgba(45,224,166,.08); border-radius: var(--r-sm); padding: 9px 12px; }

/* carousel */
.carousel { position: relative; }
.carousel__viewport { overflow: hidden; }
.carousel__track { display: flex; transition: transform .45s var(--ease); }
.carousel__slide { flex: 0 0 100%; padding: 4px; }
.carousel__nav { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 26px; }
.carousel__btn { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-strong); background: rgba(255,255,255,.04); color: var(--text); cursor: pointer; display: grid; place-items: center; transition: border-color .18s var(--ease), background .18s var(--ease); }
.carousel__btn:hover { border-color: var(--accent); background: rgba(45,224,166,.1); }
.carousel__dots { display: flex; gap: 7px; margin-inline: 8px; }
.carousel__dot { width: 8px; height: 8px; padding: 0; border-radius: 50%; border: 0; background: rgba(255,255,255,.2); cursor: pointer; transition: background .2s var(--ease), width .2s var(--ease); }
.carousel__dot[aria-current="true"] { background: var(--accent); width: 22px; border-radius: 999px; }

.quote-feature {
  background: linear-gradient(135deg, rgba(45,224,166,.09), rgba(91,140,255,.06));
  border: 1px solid var(--line-strong); border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 48px);
}
.quote-feature blockquote { margin: 0; font-family: var(--font-display); font-size: clamp(1.15rem, 1rem + .9vw, 1.65rem); line-height: 1.42; color: #fff; letter-spacing: -.02em; }
.quote-feature figcaption { margin-top: 22px; display: flex; align-items: center; gap: 13px; }

/* logos of certifications */
.cert-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(158px, 1fr)); gap: 14px; }
.cert {
  border: 1px solid var(--line); border-radius: var(--r); padding: 18px;
  background: var(--surface); text-align: center;
}
.cert__name { font-family: var(--font-display); font-weight: 600; font-size: .95rem; color: #fff; }
.cert__meta { font-size: .77rem; color: var(--muted); margin-top: 3px; }

/* FAQ */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; display: flex; align-items: flex-start; justify-content: space-between; gap: 20px;
  background: none; border: 0; cursor: pointer; padding: 22px 2px;
  font-family: var(--font-display); font-size: 1.04rem; font-weight: 600; color: #fff; text-align: left;
  transition: color .18s var(--ease);
}
.faq__q:hover { color: var(--accent); }
.faq__icon { flex: none; width: 22px; height: 22px; position: relative; margin-top: 3px; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; inset: 50% 0 auto; height: 1.8px; background: var(--accent); border-radius: 2px; transition: transform .24s var(--ease); }
.faq__icon::after { transform: rotate(90deg); }
.faq__q[aria-expanded="true"] .faq__icon::after { transform: rotate(0deg); }
.faq__a { overflow: hidden; height: 0; transition: height .28s var(--ease); }
.faq__a > div { padding: 0 60px 24px 2px; color: var(--text-2); font-size: .96rem; }
@media (max-width: 640px) { .faq__a > div { padding-right: 8px; } }

/* 9. Pricing --------------------------------------------------------------- */
.toggle-wrap { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 40px; flex-wrap: wrap; }
.toggle-label { font-size: .92rem; color: var(--muted); font-weight: 500; }
.toggle-label.is-active { color: #fff; }
.toggle {
  position: relative; width: 58px; height: 32px; border-radius: 999px; padding: 0;
  border: 1px solid var(--line-strong); background: rgba(255,255,255,.05); cursor: pointer;
}
.toggle::after {
  content: ""; position: absolute; top: 3px; left: 3px; width: 24px; height: 24px; border-radius: 50%;
  background: var(--grad); transition: transform .24s var(--ease);
}
.toggle[aria-checked="true"]::after { transform: translateX(26px); }
.save-pill { font-size: .76rem; font-weight: 600; color: var(--accent); background: rgba(45,224,166,.11); border: 1px solid rgba(45,224,166,.3); padding: 4px 10px; border-radius: 999px; }

.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
@media (max-width: 1000px) { .tiers { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; } }
.tier {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: 30px 26px; display: flex; flex-direction: column; height: 100%; position: relative;
}
.tier--featured { border-color: rgba(45,224,166,.45); background: linear-gradient(180deg, rgba(45,224,166,.07), var(--surface) 42%); box-shadow: 0 30px 70px -34px rgba(45,224,166,.5); }
.tier__flag {
  position: absolute; top: -12px; left: 26px;
  background: var(--grad); color: #05221A; font-size: .72rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px;
}
.tier__name { font-family: var(--font-display); font-size: 1.22rem; font-weight: 600; color: #fff; }
.tier__for { font-size: .86rem; color: var(--muted); margin: 6px 0 20px; min-height: 68px; }
.tier__price { display: flex; align-items: baseline; gap: 6px; }
.tier__amount { font-family: var(--font-display); font-size: 2.7rem; font-weight: 700; letter-spacing: -.035em; color: #fff; line-height: 1; }
.tier__per { font-size: .85rem; color: var(--muted); }
.tier__basis { font-size: .8rem; color: var(--muted); margin: 10px 0 0; min-height: 38px; }
.tier__cta { margin: 20px 0 22px; }
.tier__features { list-style: none; padding: 0; margin: 0; font-size: .9rem; }
.tier__features li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 11px; color: var(--text-2); }
.tier__features li svg { flex: none; width: 16px; height: 16px; margin-top: 4px; color: var(--accent); }
.tier__features .is-off { color: var(--muted); opacity: .65; }
.tier__features .is-off svg { color: var(--muted); }
.tier__group { margin: 20px 0 10px; font-family: var(--font-mono); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

.compare-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface); }
table.compare { width: 100%; border-collapse: collapse; min-width: 720px; font-size: .9rem; }
table.compare th, table.compare td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); }
table.compare thead th { position: sticky; top: 0; background: var(--surface-2); font-family: var(--font-display); font-size: .95rem; color: #fff; white-space: nowrap; z-index: 2; }
table.compare tbody th { font-weight: 500; color: var(--text-2); }
table.compare td { text-align: center; color: var(--text-2); }
table.compare td:first-of-type { border-left: 1px solid var(--line); }
table.compare .row-head td { background: rgba(255,255,255,.025); font-family: var(--font-mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); text-align: left; }
table.compare .yes { color: var(--accent); font-weight: 700; }
table.compare .no  { color: rgba(148,173,224,.4); }
table.compare tbody tr:hover td, table.compare tbody tr:hover th { background: rgba(255,255,255,.022); }
table.compare .col-featured { background: rgba(45,224,166,.05); }

.addon { display: flex; gap: 16px; align-items: flex-start; padding: 20px; border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); }
.addon__price { margin-left: auto; text-align: right; flex: none; }
.side-actions { display: grid; gap: 10px; min-width: 230px; }
@media (max-width: 560px) { .side-actions { min-width: 0; width: 100%; } }
.flow-copy { max-width: 56ch; }
.addon__price b { display: block; font-family: var(--font-display); font-size: 1.05rem; color: #fff; }
.addon__price span { font-size: .78rem; color: var(--muted); }
@media (max-width: 560px) { .addon { flex-wrap: wrap; } .addon__price { margin-left: 0; text-align: left; } }

/* 10. Forms ---------------------------------------------------------------- */
.form { display: grid; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) { .form__row { grid-template-columns: 1fr; } }
.field { display: grid; gap: 7px; }
.field > label { font-size: .86rem; font-weight: 600; color: var(--text); }
.field .hint { font-size: .78rem; color: var(--muted); }
.req { color: var(--accent); }
.input, .select, .textarea {
  width: 100%; font-family: inherit; font-size: .95rem; color: var(--text);
  background: rgba(255,255,255,.035); border: 1px solid var(--line-strong);
  border-radius: var(--r); padding: 13px 15px;
  transition: border-color .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease);
}
.textarea { min-height: 132px; resize: vertical; }
.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' fill='none' stroke='%238494B3' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center; background-size: 11px;
  padding-right: 40px;
}
.select option { background: var(--surface); color: var(--text); }
.input::placeholder, .textarea::placeholder { color: rgba(132,148,179,.7); }
.input:focus, .select:focus, .textarea:focus {
  outline: none; border-color: var(--accent); background: rgba(255,255,255,.055);
  box-shadow: 0 0 0 3px rgba(45,224,166,.15);
}
.field.has-error .input, .field.has-error .select, .field.has-error .textarea { border-color: var(--danger); box-shadow: 0 0 0 3px rgba(255,107,107,.13); }
.error-msg { font-size: .8rem; color: var(--danger); display: none; }
.field.has-error .error-msg { display: block; }

.checkbox { display: flex; gap: 11px; align-items: flex-start; font-size: .86rem; color: var(--text-2); cursor: pointer; }
.checkbox input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--accent); flex: none; }

.form-note { font-size: .8rem; color: var(--muted); }
.form-status { display: none; border-radius: var(--r); padding: 15px 18px; font-size: .92rem; }
.form-status.is-visible { display: block; }
.form-status--ok { background: rgba(45,224,166,.1); border: 1px solid rgba(45,224,166,.35); color: #9df3d6; }
.form-status--err { background: rgba(255,107,107,.09); border: 1px solid rgba(255,107,107,.34); color: #ffb0b0; }
.honeypot { position: absolute !important; left: -9999px; opacity: 0; height: 0; width: 0; }

.spinner { width: 15px; height: 15px; border: 2px solid rgba(5,34,26,.35); border-top-color: #05221A; border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* 11. CTA + Footer --------------------------------------------------------- */
.cta-card {
  position: relative; overflow: hidden;
  border: 1px solid var(--line-strong); border-radius: var(--r-xl);
  background: linear-gradient(135deg, rgba(45,224,166,.11), rgba(91,140,255,.07));
  padding: clamp(32px, 5vw, 60px);
}
.cta-card__glow { position: absolute; width: 520px; height: 520px; right: -140px; top: -260px; background: radial-gradient(circle, rgba(45,224,166,.22), transparent 65%); pointer-events: none; }
.cta-card__body { position: relative; max-width: 640px; }
.cta-card__title { font-size: clamp(1.6rem, 1.2rem + 1.7vw, 2.35rem); }
.cta-card__text { font-size: 1.02rem; }
.cta-card__actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 22px; }
.cta-card__points { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: .85rem; }
.cta-card__points li { display: flex; align-items: center; gap: 8px; color: var(--text-2); margin: 0; }
.cta-card__points li::before { content: "✓"; color: var(--accent); font-weight: 700; font-size: .8rem; }

.site-footer { border-top: 1px solid var(--line); background: rgba(7,10,18,.85); padding: clamp(46px, 6vw, 74px) 0 34px; }
.site-footer__top { display: grid; grid-template-columns: 320px 1fr; gap: clamp(30px, 5vw, 64px); }
@media (max-width: 900px) { .site-footer__top { grid-template-columns: 1fr; } }
.site-footer__brand img { height: 36px; width: auto; margin-bottom: 18px; }
.site-footer__blurb { font-size: .88rem; color: var(--muted); }
.site-footer__contact { list-style: none; padding: 0; margin: 18px 0; font-size: .88rem; }
.site-footer__contact a { color: var(--text-2); }
.site-footer__contact a:hover { color: var(--accent); }
.site-footer__address { font-size: .84rem; color: var(--muted); line-height: 1.7; }
.site-footer__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
@media (max-width: 760px) { .site-footer__cols { grid-template-columns: repeat(2, 1fr); } }
.site-footer__col h3 { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-family: var(--font-mono); font-weight: 500; margin-bottom: 14px; }
.site-footer__col ul { list-style: none; padding: 0; margin: 0; }
.site-footer__col li { margin-bottom: 9px; }
.site-footer__col a { font-size: .88rem; color: var(--text-2); }
.site-footer__col a:hover { color: var(--accent); }
.site-footer__bottom {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center;
  margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--line);
  font-size: .8rem; color: var(--muted);
}
.site-footer__bottom p { margin: 0; color: var(--muted); }
.site-footer__badges { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { border: 1px solid var(--line); border-radius: 999px; padding: 4px 11px; font-size: .74rem; color: var(--text-2); }

/* 12. Utilities & motion --------------------------------------------------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mt-2 { margin-top: 14px; } .mt-3 { margin-top: 22px; } .mt-4 { margin-top: 34px; } .mt-5 { margin-top: 52px; }
.mb-0 { margin-bottom: 0; }
.mono { font-family: var(--font-mono); }
.accent { color: var(--accent); }
.muted { color: var(--muted); }
.max-60 { max-width: 60ch; }
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

.page-head { padding: clamp(48px, 6vw, 84px) 0 clamp(28px, 4vw, 46px); border-bottom: 1px solid var(--line); }
.page-head h1 { font-size: clamp(2.1rem, 1.4rem + 2.6vw, 3.3rem); }
.page-head .lede { max-width: 62ch; }
.breadcrumb { font-size: .8rem; color: var(--muted); margin-bottom: 16px; font-family: var(--font-mono); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent); }

.anchor-nav { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.anchor-nav a { font-size: .84rem; padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line-strong); color: var(--text-2); background: rgba(255,255,255,.03); }
.anchor-nav a:hover { border-color: var(--accent); color: var(--accent); }

.service-block { scroll-margin-top: calc(var(--header-h) + 30px); padding: clamp(38px, 5vw, 60px) 0; border-bottom: 1px solid var(--line); }
.service-block:last-child { border-bottom: 0; }
.service-block__kicker { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); }
.spec { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; margin-top: 26px; }
.spec > div { background: var(--surface); padding: 16px 18px; }
.spec dt { font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-family: var(--font-mono); }
.spec dd { margin: 6px 0 0; font-family: var(--font-display); font-weight: 600; color: #fff; font-size: 1.02rem; }

.error-page { min-height: 58vh; display: grid; place-items: center; text-align: center; padding: 80px 0; }
.error-code { font-family: var(--font-mono); font-size: clamp(4rem, 12vw, 8rem); line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

.legal h2 { margin-top: 2.4em; font-size: 1.45rem; }
.legal h3 { margin-top: 1.8em; font-size: 1.1rem; }
.legal ul { padding-left: 1.3em; }
.legal p, .legal li { font-size: .96rem; }
.legal__meta { font-family: var(--font-mono); font-size: .8rem; color: var(--muted); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
