/*
 * styles.css — Master stylesheet for cmoit.ca
 *
 * Architecture:  Single-file CSS organised by component.
 * Naming:        BEM-like (block__element--modifier).
 * Fonts:         Instrument Serif · Libre Franklin · JetBrains Mono.
 *
 * TABLE OF CONTENTS
 * -----------------
 *  1.  Design Tokens (custom properties)
 *  2.  Reset & Base Typography
 *  3.  Utility Classes
 *  4.  Section Framework (backgrounds, containers, accents)
 *  5.  Support Bar
 *  6.  Modals (shared base + booking & ticket)
 *  7.  Navigation (desktop)
 *  8.  Hamburger & Mobile Menu
 *  9.  Buttons
 * 10.  Footer Links
 * 11.  Card Base Styles
 * 12.  Reveal Animations
 * 13.  Homepage (hero, editorial, services, sentry, process, pricing)
 * 14.  Social Proof & Trust Metrics
 * 15.  FAQ
 * 16.  CTA
 * 17.  Footer
 * 18.  About Page
 * 19.  Sentry Platform Page
 * 20.  Contact Page
 * 21.  Service Pages
 * 22.  Blog
 * 23.  Responsive Breakpoints
 * 24.  Accessibility & Motion
 * 25.  Error Page (404)
 * 26.  Support Page
 */

/* ═══════════════════════════════════════════════════════════════
   1. DESIGN TOKENS
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* ── Brand colours ── */
  --red: #bb140a;
  --red-light: #d4180c;
  --black: #000;
  --slate: #303642;
  --blue: #0966ba;
  --blue-light: #1a7ed4;
  --charcoal: #202e3b;
  --navy: #1d4a88;
  --white: #fff;
  --cream: #f8f7f4;
  --warm-grey: #e8e6e1;

  /* ── Neutral grey scale ── */
  --g100: #f3f4f6;
  --g200: #e5e7eb;
  --g300: #d1d5db;
  --g400: #9ca3af;
  --g500: #6b7280;
  --g600: #4b5563;

  /* ── Typography stacks ── */
  --serif: 'Instrument Serif', 'Playfair Display', 'Georgia', serif;
  --sans: 'Libre Franklin', 'Source Sans 3', sans-serif;
  --mono: 'JetBrains Mono', 'SF Mono', 'Consolas', monospace;

  /* ── Slate palette (dark-bg text) ── */
  --light-slate: #bfc8d6;
  --mid-slate: #a0b0c4;
  --dim-slate: #6b7f99;
  --pale-slate: #8fa3bf;
  --ice-slate: #d1d9e6;

  /* ── Spacing scale ── */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 32px;
  --space-xl: 56px;
  --space-section: 100px;

  /* ── Layout ── */
  --container-max: 1100px;
  --container-narrow: 960px;
  --container-text: 800px;
  --nav-height: 72px;
  --support-bar-height: 36px;

  /* ── Transitions ── */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);

  /* ── Texture ── */
  --noise: url("data:image/svg+xml,%3CsvgviewBox='00256256'xmlns='http://www.w3.org/2000/svg'%3E%3Cfilterid='n'%3E%3CfeTurbulencetype='fractalNoise'baseFrequency='0.9'numOctaves='4'stitchTiles='stitch'/%3E%3C/filter%3E%3Crectwidth='100%25'height='100%25'filter='url(%23n)'opacity='0.03'/%3E%3C/svg%3E")
}

/* ═══════════════════════════════════════════════════════════════
   2. RESET & BASE TYPOGRAPHY
   ═══════════════════════════════════════════════════════════════ */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  scroll-padding-top: 140px
}

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--black);
  min-height: 100vh;
  line-height: 1.6
}

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

*,
input,
textarea,
button,
select {
  border-radius: 0 !important
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.5px;
  line-height: 1.1
}

h1 {
  font-size: clamp(42px, 5.5vw, 72px);
  letter-spacing: -1.5px;
  line-height: 1.05
}

h2 {
  font-size: clamp(30px, 3.5vw, 44px);
  letter-spacing: -.8px
}

h3 {
  font-size: 24px;
  letter-spacing: -.3px
}

p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--g600)
}

/* ═══════════════════════════════════════════════════════════════
   3. UTILITY CLASSES
   ═══════════════════════════════════════════════════════════════ */

.nav-spacer {
  height: 108px;
  flex-shrink: 0
}

.footer__copyright {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--g400);
  margin: 0;
  white-space: nowrap
}

.footer__desc {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--g400);
  margin: 4px 0 0
}

.mobile-divider {
  height: 1px;
  background: var(--warm-grey);
  margin: 4px 16px 4px 20px
}

.link-unstyled {
  text-decoration: none;
  color: inherit
}

.icon-sm {
  width: 32px;
  height: 32px
}

.legal-content h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 28px);
  color: var(--white);
  margin: 0 0 16px;
  font-weight: 400
}

.legal-content p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--light-slate);
  margin: 0 0 24px
}

.legal-content p:last-child {
  margin-bottom: 0
}

.legal-content a {
  color: var(--blue-light);
  text-decoration: underline;
  text-underline-offset: 2px
}

/* ═══════════════════════════════════════════════════════════════
   4. SECTION FRAMEWORK  (backgrounds, containers, accents)
   ═══════════════════════════════════════════════════════════════ */

.section-tag {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px
}

.section-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--navy)
}

.section-tag--red {
  color: var(--red)
}

.section-tag--red::before {
  height: 1px;
  background: var(--red)
}

.section-tag--center {
  justify-content: center
}

.section-tag--center::before {
  display: none
}

.service-detail .section-tag--red,
.sentry-detail .section-tag--red,
.section-sentry .section-tag--red,
.section-charcoal .section-tag--red,
.contact-form-section .section-tag--red {
  color: var(--cream)
}

.service-detail .section-tag--red::before,
.sentry-detail .section-tag--red::before,
.section-sentry .section-tag--red::before,
.section-charcoal .section-tag--red::before,
.contact-form-section .section-tag--red::before {
  background: var(--cream)
}

.noise-overlay {
  position: relative
}

.noise-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--noise);
  background-repeat: repeat;
  background-size: 256px;
  pointer-events: none;
  z-index: 1
}

.noise-overlay--dim::before {
  opacity: .4
}

.noise-overlay--subtle::before {
  opacity: .3
}

.section-cream {
  background: var(--cream);
  position: relative
}

.section-white {
  background: var(--white);
  position: relative
}

.section-charcoal {
  background: var(--charcoal);
  position: relative;
  overflow: hidden
}

.section-sentry {
  background: linear-gradient(145deg, var(--charcoal) 0, var(--navy) 55%, var(--blue) 100%);
  position: relative;
  overflow: hidden
}

.container {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-section) var(--space-xl)
}

.container--narrow {
  max-width: var(--container-narrow)
}

.container--py-sm {
  padding-top: 48px;
  padding-bottom: 48px
}

.container--py-lg {
  padding-top: 80px;
  padding-bottom: 80px
}

.red-bar-left::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--red);
  z-index: 1
}

.glass-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06)
}

.glass-card--hover {
  transition: background .3s ease, border-color .3s ease
}

.glass-card--hover:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12)
}

.watermark {
  position: absolute;
  font-weight: 900;
  opacity: .03;
  line-height: 1;
  user-select: none;
  pointer-events: none
}

.brand-accent {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 55%;
  height: 100%;
  pointer-events: none
}

.brand-accent polygon:nth-child(1) {
  fill: var(--g400);
  opacity: .054
}

.brand-accent polygon:nth-child(2) {
  fill: var(--g600);
  opacity: .09
}

.brand-accent polygon:nth-child(3) {
  fill: var(--charcoal);
  opacity: .117
}

/* ═══════════════════════════════════════════════════════════════
   5. SUPPORT BAR
   ═══════════════════════════════════════════════════════════════ */

.support-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--support-bar-height);
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 48px;
  gap: 4px;
  transition: transform .35s cubic-bezier(0.16, 1, 0.3, 1)
}

.support-bar--hidden {
  transform: translateY(-100%)
}

.support-bar__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  height: 36px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--light-slate);
  text-decoration: none;
  transition: color .2s ease, background .2s ease;
  white-space: nowrap
}

.support-bar__item:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06)
}

.support-bar__icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0
}

.support-bar__external {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 7px;
  height: 7px;
  opacity: .7;
  pointer-events: none
}

.support-bar__sep {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0
}

/* ═══════════════════════════════════════════════════════════════
   6. MODALS  (shared base + booking & ticket size overrides)
   ═══════════════════════════════════════════════════════════════ */

/* -- Shared modal base -- */

.booking-modal,
.ticket-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease
}

.booking-modal--open,
.ticket-modal--open {
  opacity: 1;
  pointer-events: auto
}

.booking-modal__backdrop,
.ticket-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px)
}

.booking-modal__container,
.ticket-modal__container {
  position: relative;
  width: 90vw;
  background: var(--white);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
  transform: translateY(16px) scale(0.98);
  transition: transform .3s var(--ease-out-expo);
  display: flex;
  flex-direction: column;
  overflow: hidden
}

.booking-modal--open .booking-modal__container,
.ticket-modal--open .ticket-modal__container {
  transform: translateY(0) scale(1)
}

.booking-modal__header,
.ticket-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 20px;
  border-bottom: 1px solid var(--warm-grey);
  flex-shrink: 0
}

.booking-modal__title,
.ticket-modal__title {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: -.2px
}

.booking-modal__close,
.ticket-modal__close {
  width: var(--space-lg);
  height: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: 0;
  border: 1px solid var(--warm-grey);
  cursor: pointer;
  color: var(--g500);
  transition: color .2s ease, border-color .2s ease
}

.booking-modal__close:hover,
.ticket-modal__close:hover {
  color: var(--charcoal);
  border-color: var(--g400)
}

.booking-modal__body,
.ticket-modal__body {
  flex: 1;
  overflow: hidden
}

.booking-modal__body iframe,
.ticket-modal__body iframe {
  width: 100%;
  height: 100%;
  border: 0
}

.booking-modal__loading,
.ticket-modal__loading {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--g500);
  letter-spacing: .5px;
  text-transform: uppercase
}

.booking-modal__error {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--g500);
  text-align: center;
  padding: var(--space-lg)
}

.booking-modal__error a {
  color: var(--blue-light);
  margin-left: 4px
}

/* -- Booking modal sizing -- */
.booking-modal__container {
  max-width: 720px;
  height: 80vh;
  max-height: 700px
}

/* -- Ticket modal sizing -- */
.ticket-modal__container {
  max-width: 680px;
  height: 85vh;
  max-height: 740px
}

/* ═══════════════════════════════════════════════════════════════
   7. NAVIGATION  (desktop)
   ═══════════════════════════════════════════════════════════════ */

.nav {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 20px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--warm-grey);
  transition: top .35s cubic-bezier(0.16, 1, 0.3, 1), padding .4s ease, background .4s ease, border-bottom-color .4s ease
}

.nav--bar-hidden {
  top: 0
}

.nav--scrolled {
  padding: 12px 48px;
  background: rgba(248, 247, 244, 0.94);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--warm-grey)
}

body:has(.service-hero--compact) .nav {
  background: rgba(248, 247, 244, 0.94);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--warm-grey)
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none
}

.nav__logo {
  width: 36px;
  height: 36px;
  transition: width .4s ease, height .4s ease
}

.nav--scrolled .nav__logo {
  width: 30px;
  height: 30px
}

.nav__name {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -.3px
}

.nav__name-sub {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--g500);
  margin-left: 2px
}

.nav__links {
  display: flex;
  gap: 32px;
  align-items: center
}

.nav-link {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--g600);
  cursor: pointer;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
  transition: color .3s ease;
  text-decoration: none
}

.nav-link:hover {
  color: var(--charcoal)
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--red);
  transform: translateX(-50%);
  transition: width .3s cubic-bezier(0.16, 1, 0.3, 1)
}

.nav-link:hover::after,
.nav-link--active::after {
  width: 100%
}

.nav-link--active {
  color: var(--charcoal)
}

.nav-dropdown {
  position: relative;
  padding: 4px 0
}

.nav-dropdown__trigger {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--g600);
  cursor: pointer;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color .3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
  background: 0;
  border: 0;
  padding: 0
}

.nav-dropdown:hover .nav-dropdown__trigger,
.nav-dropdown__trigger[aria-expanded="true"],
.nav-dropdown__trigger--active {
  color: var(--charcoal)
}

.nav-dropdown__arrow {
  transition: transform .25s ease
}

.nav-dropdown:hover .nav-dropdown__arrow,
.nav-dropdown__trigger[aria-expanded="true"] .nav-dropdown__arrow {
  transform: rotate(180deg)
}

.nav-dropdown::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--red);
  transform: translateX(-50%);
  transition: width .3s cubic-bezier(0.16, 1, 0.3, 1)
}

.nav-dropdown:hover::after,
.nav-dropdown:has(.nav-dropdown__trigger[aria-expanded="true"])::after,
.nav-dropdown--active::after {
  width: 100%
}

.nav-dropdown__panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 320px;
  background: var(--white);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10), 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--warm-grey);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, margin-top .25s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: -6px;
  z-index: 1000;
  padding: 8px 0
}

.nav-dropdown__panel::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 20px
}

.nav-dropdown:hover .nav-dropdown__panel,
.nav-dropdown__trigger[aria-expanded="true"] + .nav-dropdown__panel {
  opacity: 1;
  pointer-events: auto;
  margin-top: 0
}

.nav-dropdown__tip {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 6px;
  overflow: hidden
}

.nav-dropdown__tip::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  background: var(--white);
  border: 1px solid var(--warm-grey);
  transform: rotate(45deg) translate(2px, 2px)
}

.nav-dropdown__item {
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  background: transparent;
  transition: background .15s ease;
  cursor: pointer;
  border-left: 3px solid transparent
}

.nav-dropdown__item:hover {
  background: var(--cream);
  border-left-color: var(--red)
}

.nav-dropdown__item--navy:hover {
  border-left-color: var(--navy)
}

.nav-dropdown__item-label {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.3
}

.nav-dropdown__item-desc {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--g500);
  line-height: 1.4;
  margin-top: 2px
}

/* ═══════════════════════════════════════════════════════════════
   8. HAMBURGER & MOBILE MENU
   ═══════════════════════════════════════════════════════════════ */

.hamburger {
  background: 0;
  border: 0;
  cursor: pointer;
  padding: 8px;
  display: none;
  flex-direction: column;
  gap: 5px;
  position: relative;
  z-index: 1001
}

.hamburger__line {
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  transition: transform .3s, background .3s
}

.hamburger--open .hamburger__line:nth-child(1) {
  background: var(--red);
  transform: rotate(45deg) translateY(7px)
}

.hamburger--open .hamburger__line:nth-child(2) {
  opacity: 0
}

.hamburger--open .hamburger__line:nth-child(3) {
  background: var(--red);
  transform: rotate(-45deg) translateY(-7px)
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 998;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch
}

.mobile-menu--open {
  opacity: 1;
  pointer-events: auto
}

.mobile-menu__bar {
  height: 3px;
  background: var(--red);
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1) .15s
}

.mobile-menu--open .mobile-menu__bar {
  transform: scaleX(1)
}

.mobile-menu__content {
  padding: 32px 24px;
  flex: 1
}

.mobile-accordion {
  border-bottom: 1px solid var(--warm-grey)
}

.mobile-accordion__trigger {
  background: 0;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 0
}

.mobile-accordion__title {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--black)
}

.mobile-accordion__arrow {
  transition: transform .3s cubic-bezier(0.16, 1, 0.3, 1)
}

.mobile-accordion__trigger[aria-expanded="true"] .mobile-accordion__arrow {
  transform: rotate(180deg)
}

.mobile-accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.mobile-accordion__trigger[aria-expanded="true"]+.mobile-accordion__body {
  max-height: 600px
}

.mobile-accordion__link {
  display: block;
  padding: 12px 16px;
  text-decoration: none;
  border-left: 2px solid var(--warm-grey);
  margin-left: 4px
}

.mobile-accordion__link--accent {
  border-left-color: var(--red)
}

.mobile-accordion__link-label {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal)
}

.mobile-accordion__link--accent .mobile-accordion__link-label {
  color: var(--red)
}

.mobile-accordion__link-desc {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--g500);
  margin-top: 2px
}

.mobile-link {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid var(--warm-grey);
  text-decoration: none
}

.mobile-link__label {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--black)
}

.mobile-link--active {
  border-left: 3px solid var(--red);
  padding-left: 12px
}

.mobile-accordion__trigger--active {
  border-left: 3px solid var(--red);
  padding-left: 12px
}

.mobile-menu__item {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .4s cubic-bezier(0.16, 1, 0.3, 1), transform .4s cubic-bezier(0.16, 1, 0.3, 1)
}

.mobile-menu--open .mobile-menu__item {
  opacity: 1;
  transform: translateY(0)
}

.mobile-menu--open .mobile-menu__item:nth-child(1) {
  transition-delay: .1s
}

.mobile-menu--open .mobile-menu__item:nth-child(2) {
  transition-delay: .18s
}

.mobile-menu--open .mobile-menu__item:nth-child(3) {
  transition-delay: .26s
}

.mobile-menu--open .mobile-menu__item:nth-child(4) {
  transition-delay: .34s
}

.mobile-menu--open .mobile-menu__item:nth-child(5) {
  transition-delay: .42s
}

.mobile-menu__contact {
  opacity: 0;
  transition: opacity .3s ease .5s;
  padding-top: 28px
}

.mobile-menu--open .mobile-menu__contact {
  opacity: 1
}

/* ═══════════════════════════════════════════════════════════════
   9. BUTTONS
   ═══════════════════════════════════════════════════════════════ */

.cmo-btn-red {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 22px;
  background: var(--red);
  color: var(--white);
  border: 0;
  cursor: pointer;
  transition: background .2s ease;
  display: inline-block;
  text-decoration: none
}

.cmo-btn-red:hover {
  background: var(--red-light)
}

.cmo-btn-red--lg {
  padding: 15px 32px;
  font-size: 15px
}

.cmo-btn-red--md {
  padding: 13px 28px
}

.cmo-btn-charcoal {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  padding: 15px 32px;
  background: var(--charcoal);
  color: var(--white);
  border: 0;
  cursor: pointer;
  transition: background .2s ease;
  display: inline-block;
  text-decoration: none
}

.cmo-btn-charcoal:hover {
  background: var(--navy)
}

.cmo-btn-outline {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  padding: 13.5px 30.5px;
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--g300);
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease;
  display: inline-block;
  text-decoration: none
}

.cmo-btn-outline:hover {
  border-color: var(--charcoal);
  color: var(--black)
}

.cmo-btn-glass {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--light-slate);
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
  width: 100%
}

.cmo-btn-glass:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24)
}

.cmo-link-fade {
  transition: color .2s ease
}

.cmo-link-fade:hover {
  color: var(--white)
}

/* ═══════════════════════════════════════════════════════════════
   10. FOOTER LINKS
   ═══════════════════════════════════════════════════════════════ */

.cmo-footer-link {
  transition: color .2s ease;
  text-decoration: none;
  color: var(--g400)
}

.cmo-footer-link:hover {
  color: var(--g200)
}

/* ═══════════════════════════════════════════════════════════════
   11. CARD BASE STYLES
   ═══════════════════════════════════════════════════════════════ */

.hero-card,
.about-card,
.service-card-hero {
  padding: 20px 24px;
  background: var(--white);
  border-left: 3px solid var(--red);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  transition: transform .25s ease, box-shadow .25s ease
}

.hero-card:hover,
.about-card:hover,
.service-card-hero:hover {
  transform: translateX(-4px);
  box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.08)
}

.hero-card--navy,
.about-card--navy,
.service-card-hero--navy {
  border-left-color: var(--navy)
}

.hero-card--blue,
.about-card--blue,
.service-card-hero--blue {
  border-left-color: var(--blue)
}

.hero-card--charcoal,
.about-card--charcoal {
  border-left-color: var(--charcoal)
}

.hero-card__tag,
.about-card__tag,
.service-card-hero__tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 700
}

.card-tag--red { color: var(--red) }
.card-tag--navy { color: var(--navy) }
.card-tag--blue { color: var(--blue) }
.card-tag--charcoal { color: var(--charcoal) }

.hero-card__title,
.about-card__title,
.service-card-hero__title {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px
}

.hero-card__desc,
.about-card__desc {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--g500);
  line-height: 1.55
}

.about-card__title-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--warm-grey)
}

/* ═══════════════════════════════════════════════════════════════
   12. REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition: opacity .7s cubic-bezier(0.16, 1, 0.3, 1), transform .7s cubic-bezier(0.16, 1, 0.3, 1)
}

.reveal--visible {
  opacity: 1;
  transform: translate3d(0, 0, 0)
}

.reveal--visible.hero-card,
.reveal--visible.about-card,
.reveal--visible.service-card-hero {
  transition: transform .25s ease, box-shadow .25s ease
}

.reveal--visible.service-card {
  transition: transform .3s ease, box-shadow .3s ease
}

.reveal--visible.industry-card {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease
}

.reveal--d1 {
  transition-delay: 60ms
}

.reveal--d2 {
  transition-delay: 120ms
}

.reveal--d3 {
  transition-delay: 180ms
}

.reveal--d4 {
  transition-delay: 240ms
}

.reveal--d5 {
  transition-delay: 300ms
}

.reveal--d6 {
  transition-delay: 360ms
}

.reveal--d7 {
  transition-delay: 420ms
}

/* ═══════════════════════════════════════════════════════════════
   13. HOMEPAGE  (hero, editorial, services, sentry, process, pricing)
   ═══════════════════════════════════════════════════════════════ */

.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: var(--cream);
  padding-top: 100px
}

.hero__grid {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 0 48px;
  align-items: start;
  min-height: calc(100vh - 100px)
}

.hero__content {
  padding: 100px 0 60px 56px;
  display: flex;
  flex-direction: column
}

.hero__tag {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px
}

.hero__tag::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--navy)
}

.hero__tag--sm {
  margin-bottom: 12px
}

.hero__tag--sm::before {
  width: 24px
}

.hero__tag--center {
  justify-content: center
}

.hero__tag--light {
  color: rgba(255, 255, 255, 0.4)
}

.hero__tag--light::before {
  width: 24px;
  background: rgba(255, 255, 255, 0.4)
}

.hero__tag--dim {
  color: rgba(255, 255, 255, 0.5)
}

.hero__tag--dim::before {
  width: 24px;
  background: rgba(255, 255, 255, 0.3)
}

.hero__title {
  color: var(--black);
  margin: 0 0 24px
}

.section__title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  color: var(--black);
  margin: 0;
  letter-spacing: -1px;
  line-height: 1.1
}

.section__title--spaced {
  margin-bottom: 48px
}

.section__title--light {
  color: var(--white);
  letter-spacing: -1.5px;
  line-height: 1.08;
  margin-bottom: 32px
}

.step-num {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px
}

.hero__accent {
  color: var(--red);
  text-decoration-line: underline;
  text-decoration-color: rgba(187, 20, 10, 0.15);
  text-underline-offset: 6px;
  text-decoration-thickness: 3px
}

.hero__subtitle {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.75;
  color: var(--g500);
  max-width: 100%;
  margin: 0 0 32px
}

.hero__stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--warm-grey)
}

.hero__stats--nowrap {
  flex-wrap: nowrap
}

.hero__stats--spaced {
  margin-top: 32px
}

.hero__stats--wide {
  gap: 28px
}

.hero__stat {
  padding: 0 20px;
  border-right: 1px solid var(--warm-grey)
}

.hero__stat--wide {
  padding: 0 28px
}

.hero__stat:first-child {
  padding-left: 0
}

.hero__stat:last-child {
  border-right: 0
}

.hero__stat-num {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--black);
  font-weight: 400;
  line-height: 1
}

.hero__stat-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--g500);
  margin-top: 5px;
  text-transform: uppercase
}

.hero__buttons {
  display: flex;
  gap: 12px;
  align-items: center
}

.hero__cards {
  padding: 80px 48px 60px 0;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.hero__cards--start {
  align-items: start
}

.hero-card {
  cursor: default
}

.hero-card__tag {
  color: var(--red)
}

.hero-card--navy .hero-card__tag {
  color: var(--navy)
}

.hero-card--blue .hero-card__tag {
  color: var(--blue)
}

.hero-card--charcoal .hero-card__tag {
  color: var(--charcoal)
}

.stats-bar {
  padding: 0 56px 100px
}

.stats-bar__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto auto auto auto;
  padding-top: 24px;
  border-top: 1px solid var(--warm-grey)
}

.stats-bar__item {
  padding: 0 28px;
  border-right: 1px solid var(--warm-grey)
}

.stats-bar__item:last-child {
  border-right: 0
}


.editorial-break {
  padding: 100px 56px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2
}

/* Shared serif-quote + quote-attr replaces identical rules formerly on
   .editorial-break blockquote, .about-quote__text,
   .editorial-break__attr, and .about-quote__attr */
.serif-quote {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.35;
  color: var(--white);
  margin: 0;
  letter-spacing: -.5px
}

.quote-attr {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--g400);
  margin-top: 20px;
  text-transform: uppercase
}

.services__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 56px
}

.services__header p {
  max-width: 340px;
  text-align: right
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.service-card {
  padding: 32px;
  background: var(--white);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: default;
  transition: transform .3s ease, box-shadow .3s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03)
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08)
}

.service-card__watermark {
  top: -10px;
  right: 16px;
  font-family: var(--serif);
  font-size: 120px;
  font-weight: 400;
  color: var(--warm-grey);
  opacity: .5
}

.service-card__inner {
  position: relative;
  z-index: 2
}

.service-card h3 {
  color: var(--black);
  margin: 0 0 8px
}

.service-card p {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--g500);
  line-height: 1.6;
  margin: 0;
  max-width: 400px
}

.sentry__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start
}

.sentry__copy {
  position: sticky;
  top: 120px
}

.sentry__copy h2 {
  font-size: clamp(40px, 5vw, 64px);
  color: var(--white);
  letter-spacing: -1.5px;
  margin: 0 0 20px
}

.sentry__copy h2 span {
  color: var(--ice-slate)
}

.sentry__copy p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--light-slate);
  margin: 0 0 28px
}

.sentry__watermark {
  bottom: -20px;
  right: -20px;
  font-family: var(--sans);
  font-size: 180px;
  color: var(--white);
  letter-spacing: -8px
}

.sentry-layer {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background .25s ease, border-color .25s ease;
  cursor: default
}

.sentry-layer:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.16)
}

.sentry-layer__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--pale-slate);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  padding: 14px 4px
}

.sentry-layer__info {
  padding: 14px 18px
}

.sentry-layer__tool {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
  line-height: 1.3
}

.sentry-layer__desc {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--light-slate);
  line-height: 1.4
}

.sentry-expand-btn {
  display: none;
  margin-top: 4px
}

.sentry__shield {
  margin-top: 48px;
  opacity: .11;
  pointer-events: none;
  user-select: none;
  display: flex;
  justify-content: center
}

.process__title {
  margin-bottom: 48px
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr)
}

.process-step {
  padding: 32px 28px;
  border-left: 1px solid var(--warm-grey)
}

.process-step:first-child {
  border-left: 3px solid var(--red)
}

.process-step__num {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 400;
  color: var(--warm-grey);
  opacity: .6;
  line-height: 1;
  margin-bottom: 12px
}

.process-step h3 {
  font-size: 22px;
  color: var(--black);
  margin: 0 0 8px
}

.process-step p {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--g500);
  line-height: 1.6;
  margin: 0
}

.pricing__header {
  text-align: center;
  margin-bottom: 56px
}

.pricing__header p {
  max-width: 520px;
  margin: 10px auto 0
}

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px
}

.pricing-card {
  background: var(--cream);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03)
}

.pricing-card__bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px
}

.pricing-card__bar--navy {
  background: var(--navy)
}

.pricing-card__bar--red {
  background: var(--red)
}

.pricing-card__tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px
}

.pricing-card__tag--navy {
  color: var(--navy)
}

.pricing-card__tag--red {
  color: var(--red)
}

.pricing-card__name {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 34px);
  letter-spacing: -.5px;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 8px
}

.pricing-card__best-for {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--g500);
  line-height: 1.5;
  margin-bottom: 16px;
  font-style: italic
}

.pricing-card__price-wrap {
  margin-bottom: 24px
}

.pricing-card__starting {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--g500);
  margin-bottom: 2px
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px
}

.pricing-card__amount {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 400;
  color: var(--black);
  line-height: 1
}

.pricing-card__unit {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--g500)
}

.pricing-card__features {
  border-top: 1px solid var(--warm-grey);
  padding-top: 18px;
  flex: 1
}

.pricing-card__feature {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--g600);
  padding: 7px 0;
  display: flex;
  gap: 10px;
  align-items: flex-start
}

.pricing-card__check {
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  flex-shrink: 0
}

.pricing-card__check--navy {
  color: var(--navy)
}

.pricing-card__check--red {
  color: var(--red)
}

.pricing-card__cta {
  width: 100%;
  padding: 14px;
  margin-top: 20px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: normal;
  text-transform: none;
  color: var(--white);
  border: 0;
  cursor: pointer;
  text-align: center;
  display: block;
  text-decoration: none
}

.pricing__disclaimer {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--g500);
  text-align: center;
  margin-top: 28px;
  font-style: italic
}

/* ═══════════════════════════════════════════════════════════════
   14. SOCIAL PROOF & TRUST METRICS
   ═══════════════════════════════════════════════════════════════ */

.social-proof__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px
}

.testimonial__quote-mark {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--red);
  line-height: 1;
  margin-bottom: 16px;
  user-select: none
}

.testimonial blockquote {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.45;
  color: var(--white);
  margin: 0 0 20px
}

.testimonial__author {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--light-slate)
}

.trust-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px
}

.trust-metric {
  padding: 20px
}

.trust-metric__number {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--white);
  font-weight: 400;
  line-height: 1
}

.trust-metric__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--pale-slate);
  margin-top: 6px;
  text-transform: uppercase
}

.trust-metric__sub {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--light-slate);
  margin-top: 4px
}

.industries__header {
  text-align: center;
  margin-bottom: 56px
}

.industries__header p {
  max-width: 560px;
  margin: 12px auto 0
}

.industries__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px
}

a.industry-card__link {
  text-decoration: none;
  color: inherit;
  display: block
}

.industry-card {
  padding: 28px 24px;
  background: var(--cream);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  border-top: 2px solid transparent
}

.industry-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border-top-color: var(--navy)
}

.industry-card__icon {
  margin-bottom: 12px
}

.industry-card h3 {
  font-size: 20px;
  color: var(--black);
  margin: 0 0 8px;
  letter-spacing: -.2px
}

.industry-card p {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--g500);
  line-height: 1.6;
  margin: 0
}

/* ═══════════════════════════════════════════════════════════════
   15. FAQ
   ═══════════════════════════════════════════════════════════════ */

.faq__header {
  text-align: center;
  margin-bottom: 48px
}

.faq-item {
  border-bottom: 1px solid var(--warm-grey)
}

.faq-item:first-child {
  border-top: 1px solid var(--warm-grey)
}

.faq-item__question {
  width: 100%;
  background: 0;
  border: 0;
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left
}

.faq-item__question-text {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.4;
  transition: color .3s ease
}

.faq-item__question[aria-expanded="true"] .faq-item__question-text {
  color: var(--red)
}

.faq-item__icon {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--g500);
  transition: transform .3s ease, color .3s ease;
  flex-shrink: 0
}

.faq-item__question[aria-expanded="true"] .faq-item__icon {
  transform: rotate(45deg);
  color: var(--red)
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, opacity .3s ease;
  opacity: 0
}

.faq-item__answer--open {
  opacity: 1
}


.faq-item__answer a {
  color: var(--red);
  text-decoration: underline;
  text-decoration-color: rgba(187, 20, 10, 0.3);
  text-underline-offset: 3px;
  transition: color .2s ease, text-decoration-color .2s ease
}

.faq-item__answer a:visited {
  color: var(--red)
}

.faq-item__answer a:hover {
  color: var(--charcoal);
  text-decoration-color: var(--charcoal)
}

.faq-item__answer p {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--g500);
  line-height: 1.7;
  margin: 0 0 20px;
  padding-right: 48px
}

/* ═══════════════════════════════════════════════════════════════
   16. CTA
   ═══════════════════════════════════════════════════════════════ */

.cta__header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 48px
}

.cta__header h2 {
  color: var(--white);
  letter-spacing: -1px;
  margin: 0 0 16px
}

.cta__header p {
  font-size: 17px;
  color: var(--light-slate);
  line-height: 1.7
}

.cta__expect {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08)
}

.cta__expect-item {
  padding: 20px 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border-right: 1px solid rgba(255, 255, 255, 0.08)
}

.cta__expect-item:last-child {
  border-right: 0
}

.cta__expect-num {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.12);
  line-height: 1;
  flex-shrink: 0
}

.cta__expect-title {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px
}

.cta__expect-desc {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--light-slate);
  line-height: 1.4
}

.cta__form-wrap {
  max-width: 560px;
  margin: 0 auto
}

.cta__form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px
}

.cta__form-text {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--light-slate);
  margin: 0 0 24px
}

.cta__form-btn {
  display: block;
  text-align: center;
  padding: 16px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none
}

.cta__form input,
.cta__form textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-family: var(--sans);
  font-size: 14px;
  outline: 0;
  transition: border-color .2s ease
}

.cta__form input::placeholder,
.cta__form textarea::placeholder {
  color: var(--light-slate)
}

.cta__form input:focus,
.cta__form textarea:focus {
  border-color: rgba(255, 255, 255, 0.3);
  outline: 2px solid var(--blue);
  outline-offset: 0
}

.cta__form textarea {
  margin-top: 12px;
  resize: vertical
}

.cta__form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  flex-wrap: wrap;
  gap: 8px
}

.cta__form-footer p {
  font-size: 12px;
  color: var(--light-slate);
  margin: 0
}

.cta__form-footer a {
  text-decoration: none
}

.cta__form-footer .cmo-link-fade {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--pale-slate)
}

/* ── Shared page CTA ── */

.page-cta__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 100px 56px;
  text-align: center
}

.page-cta__content--narrow {
  max-width: 640px;
  padding: 100px 40px
}

.page-cta__title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  color: var(--black);
  margin: 0 0 16px;
  letter-spacing: -1px;
  line-height: 1.1
}

.page-cta__title--light {
  color: var(--white);
  font-size: clamp(36px, 4.5vw, 56px);
  letter-spacing: -1.5px;
  text-wrap: balance
}

.page-cta__subtitle {
  font-family: var(--sans);
  font-size: 17px;
  color: var(--g500);
  line-height: 1.7;
  margin: 0 0 32px
}

.page-cta__subtitle--light {
  font-size: 16px;
  line-height: 1.75;
  color: var(--light-slate)
}

.page-cta__buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center
}

.page-cta__buttons--wide {
  gap: 20px
}

.page-cta__phone {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--g500);
  text-decoration: none
}

.page-cta__phone:hover {
  color: var(--g600)
}

.page-cta__phone--light {
  color: rgba(255, 255, 255, 0.5);
  transition: color .2s ease
}

.page-cta__phone--light:hover {
  color: var(--white)
}

/* ═══════════════════════════════════════════════════════════════
   17. FOOTER
   ═══════════════════════════════════════════════════════════════ */

.footer__main {
  background: var(--black);
  padding: 56px 56px 40px
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1.1fr 1fr .7fr .9fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto
}

.footer__brand-header {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04)
}

.footer__brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px
}

.footer__brand-name {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.3px
}

.footer__brand-sub {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--g400);
  margin-left: 2px
}

.footer__tagline {
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  color: var(--g400)
}

.footer__address {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--g400);
  line-height: 1.6;
  margin: 0
}

.footer__phone {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--g400);
  margin-top: 10px
}

.footer__email {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--g400);
  margin: 4px 0 0
}

.footer__col-title {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--g400);
  text-transform: uppercase;
  margin-bottom: 16px
}

.footer__col a {
  display: block;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--g400);
  padding: 4px 0;
  text-decoration: none;
  transition: color .2s ease
}

.footer__col a:hover {
  color: var(--g200)
}

.footer__hours {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--g400);
  line-height: 1.7
}

.footer__bottom {
  background: #0a0a0a;
  padding: 20px 56px
}

.footer__bottom-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: 20px
}

.footer__legal a {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--g400);
  text-decoration: none;
  transition: color .2s ease
}

.footer__legal a:hover {
  color: var(--g200)
}

.footer__sentry-badge {
  display: flex;
  align-items: center;
  gap: 8px
}

.footer__sentry-badge span {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--g400);
  letter-spacing: .3px
}

.footer__sentry-prefix {
  color: var(--g400);
  font-weight: 400
}

.footer__tagline-bottom {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--g400)
}

/* ═══════════════════════════════════════════════════════════════
   18. ABOUT PAGE
   ═══════════════════════════════════════════════════════════════ */

.about-quote {
  background: var(--charcoal);
  position: relative;
  overflow: hidden
}

.about-quote__content {
  position: relative;
  z-index: 2;
  padding: 100px 56px;
  max-width: 1100px;
  margin: 0 auto
}

.our-story {
  background: var(--cream);
  position: relative;
  overflow: hidden
}

.our-story__container {
  position: relative;
  z-index: 2;
  padding: 120px 56px;
  max-width: 1100px;
  margin: 0 auto
}

.our-story__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--warm-grey)
}

.our-story__header-left {
  max-width: 600px
}

.our-story__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px
}

.our-story__title {
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 400;
  color: var(--black);
  margin: 0;
  letter-spacing: -1.5px;
  line-height: 1.08
}

.our-story__founded {
  text-align: right;
  flex-shrink: 0
}

.our-story__founded-num {
  font-family: var(--serif);
  font-size: 48px;
  color: var(--red);
  font-weight: 400;
  line-height: 1
}

.our-story__founded-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--g500);
  margin-top: 6px;
  text-transform: uppercase
}

.our-story__text {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.8;
  color: var(--g500);
  margin: 0 0 28px
}

.our-story__text:last-child,
.our-story__text--last {
  margin-bottom: 0
}

.our-story__blockquote {
  border-left: 3px solid var(--red);
  padding-left: 24px;
  margin: 36px 0
}

.our-story__blockquote p {
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  line-height: 1.45;
  color: var(--charcoal);
  margin: 0;
  font-weight: 400
}

.principles {
  background: var(--white);
  position: relative;
  overflow: hidden
}

.principles__content {
  position: relative;
  z-index: 2;
  padding: 100px 56px;
  max-width: 1100px;
  margin: 0 auto
}

.principles__header {
  text-align: center;
  margin-bottom: 64px
}

.principles__title {
  font-family: var(--serif);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 400;
  color: var(--black);
  margin: 0;
  letter-spacing: -.8px
}

.principles__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px
}

.principle-card {
  background: var(--cream);
  padding: 36px 32px;
  border-top: 3px solid var(--red);
  height: 100%;
  display: flex;
  flex-direction: column
}

.principle-card--navy {
  border-top-color: var(--navy)
}

.principle-card--charcoal {
  border-top-color: var(--charcoal)
}

.principle-card__title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--black);
  letter-spacing: -.3px;
  margin: 0 0 12px
}

.principle-card__body {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--g500);
  line-height: 1.65;
  margin: 0;
  flex: 1
}

.our-reach {
  background: var(--cream);
  position: relative;
  overflow: hidden
}

.our-reach__grid {
  position: relative;
  z-index: 2;
  padding: 100px 56px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start
}


.our-reach__title {
  font-family: var(--serif);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 400;
  color: var(--black);
  margin: 0 0 20px;
  letter-spacing: -.8px
}

.our-reach__text {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.75;
  color: var(--g500);
  margin: 0 0 12px
}

.our-reach__text--last {
  margin: 12px 0 0
}

.community-grid__hq {
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--warm-grey)
}

.community-grid__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr
}

.community-grid__item {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--g500);
  padding: 14px 20px;
  border-bottom: 1px solid var(--warm-grey);
  border-right: 1px solid var(--warm-grey)
}

.community-grid__item:nth-child(3n) {
  border-right: 0
}

.community-grid__item:nth-last-child(-n+3) {
  border-bottom: 0
}

.community-grid__name {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--g500)
}

.community-grid__name--primary {
  font-size: 17px;
  font-weight: 700;
  color: var(--black)
}

.community-grid__badge {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--red);
  margin-top: 3px;
  text-transform: uppercase
}

.community-grid__fax {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--g500);
  margin-top: 3px
}

.independence {
  background: var(--charcoal);
  position: relative;
  overflow: hidden
}

.independence__grid {
  position: relative;
  z-index: 2;
  padding: 100px 56px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start
}

.independence__title {
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 400;
  color: var(--white);
  margin: 0 0 48px;
  letter-spacing: -1.5px;
  line-height: 1.08
}

.independence__stats {
  display: flex;
  gap: 40px
}

.independence__stat {
  padding-right: 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.1)
}

.independence__stat:last-child {
  border-right: 0;
  padding-right: 0
}

.independence__stat-num {
  font-family: var(--serif);
  font-size: 48px;
  color: var(--white);
  font-weight: 400;
  line-height: 1
}

.independence__stat-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--light-slate);
  margin-top: 6px;
  text-transform: uppercase
}

.independence__text {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.8;
  color: var(--light-slate);
  margin: 0 0 24px
}

.independence__text--last {
  margin-bottom: 0
}

/* ═══════════════════════════════════════════════════════════════
   19. SENTRY PLATFORM PAGE
   ═══════════════════════════════════════════════════════════════ */

.sentry-hero__watermark {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--sans);
  font-size: 280px;
  color: var(--black);
  letter-spacing: -12px;
  white-space: nowrap
}

.sentry-hero__visual {
  align-items: center;
  gap: 40px;
  padding-top: 120px
}

.sentry-hero__shield {
  opacity: .15;
  pointer-events: none;
  user-select: none
}

.sentry-hero__layer-count {
  text-align: center
}

.sentry-hero__layer-num {
  font-family: var(--serif);
  font-size: 120px;
  font-weight: 400;
  color: var(--navy);
  opacity: .08;
  line-height: 1
}

.sentry-hero__layer-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--g500);
  text-transform: uppercase;
  margin-top: -8px
}

.sentry-layers-section {
  position: relative;
  overflow: hidden
}

.sentry-layers-section__watermark {
  top: -60px;
  right: -40px;
  font-family: var(--serif);
  font-size: 500px;
  font-weight: 400;
  color: var(--white);
  opacity: .02
}

.sentry-layers-section__title {
  font-size: clamp(36px, 4.5vw, 56px);
  color: var(--white);
  letter-spacing: -1.5px;
  margin: 0 0 16px
}

.sentry-layers-section__subtitle {
  font-size: 16px;
  line-height: 1.75;
  color: var(--light-slate);
  margin: 0 0 56px
}

.sentry-layers-detail {
  display: flex;
  flex-direction: column;
  gap: 12px
}


.sentry-detail__header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04)
}

.sentry-detail__badge {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  color: #f87171;
  min-width: 28px
}

.sentry-detail__label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--light-slate);
  min-width: 56px
}

.sentry-detail__name {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin: 0
}

.sentry-detail__body {
  padding: 24px 32px 28px;
  padding-left: 132px
}

.sentry-detail__body p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--mid-slate);
  margin: 0 0 14px
}

.sentry-detail__body p:last-child {
  margin-bottom: 0
}

.sentry-how {
  background: var(--cream)
}

.sentry-how__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px
}

.sentry-how__step {
  padding: 32px 24px;
  border-top: 2px solid var(--red)
}

.sentry-how__step-title {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin: 0 0 12px
}

.sentry-how__step-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--g500);
  margin: 0
}

.sentry-cta__shield {
  margin-bottom: 24px;
  opacity: .6
}

/* ═══════════════════════════════════════════════════════════════
   20. CONTACT PAGE
   ═══════════════════════════════════════════════════════════════ */

.contact-hero__info {
  gap: 8px
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border-left: 3px solid var(--red);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  transition: transform .25s ease, box-shadow .25s ease
}

.contact-info-card:hover {
  transform: translateX(-4px);
  box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.08)
}

.contact-info-card__icon {
  color: var(--navy);
  flex-shrink: 0;
  margin-top: 2px
}

.contact-info-card__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--g500);
  margin-bottom: 4px
}

.contact-info-card__value {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
  line-height: 1.5
}

a.contact-info-card__value:hover {
  color: var(--red)
}

.contact-form-section {
  background: linear-gradient(145deg, var(--charcoal) 0, var(--navy) 55%, var(--blue) 100%)
}

.contact-form__grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 60px;
  align-items: start
}

.contact-form__title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1.1;
  margin: 0 0 16px
}

.contact-form__desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--light-slate);
  margin: 0 0 40px
}

.contact-form__phone-link {
  color: var(--red);
  text-decoration: none;
  font-weight: 600
}

.contact-form__expect {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px
}

.contact-form__expect-title {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 24px
}

.contact-form__expect-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px
}

.contact-form__expect-item:last-child {
  margin-bottom: 0
}

.contact-form__expect-num {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--red-light);
  margin-top: 2px;
  flex-shrink: 0
}

.contact-form__expect-label {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px
}

.contact-form__expect-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--light-slate)
}

.contact-form {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px
}

.contact-form__req {
  color: var(--red-light);
  font-weight: 700
}

.contact-form__attachments {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 20px
}

.contact-form__attach-row {
  position: relative
}

.contact-form__attach-btn {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  background: transparent;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease
}

.contact-form__errors {
  font-family: var(--sans);
  font-size: 14px;
  color: #f87171;
  padding: 10px 14px;
  border: 1px solid rgba(248, 113, 113, 0.3);
  background: rgba(248, 113, 113, 0.08);
  display: none;
  margin-bottom: 12px
}

.contact-form__input[aria-invalid="true"] {
  border-color: #f87171
}

.contact-form__attach-btn:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white)
}

.contact-form__file-input {
  position: absolute;
  left: 0;
  top: 0;
  width: 160px;
  height: 40px;
  opacity: 0;
  cursor: pointer
}

.contact-form__attach-hint {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  margin-top: 8px
}

.contact-form__file-list {
  margin-top: 8px
}

.contact-form__file-list .filenamecls {
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06)
}

.contact-form__file-list .filenamecls a {
  color: var(--red-light);
  text-decoration: none;
  font-weight: 600;
  cursor: pointer
}

.contact-form__file-list .filenamecls a:hover {
  color: var(--white)
}

.contact-form__captcha {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 20px
}

.contact-form__captcha-loading {
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  padding: 12px 0
}

.contact-form__captcha-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px
}

.contact-form__captcha-img {
  height: 40px;
  border-radius: 4px
}

.contact-form__captcha-refresh {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color .2s ease
}

.contact-form__captcha-refresh:hover {
  color: var(--white)
}

.contact-form__captcha-input {
  margin-top: 0
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.contact-form__field {
  margin-bottom: 20px
}

.contact-form__label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px
}

.contact-form__input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-family: var(--sans);
  font-size: 15px;
  transition: border-color .2s ease, background .2s ease;
  outline: 0
}

.contact-form__input:focus {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.09)
}

.contact-form__input::placeholder {
  color: rgba(255, 255, 255, 0.25)
}

.contact-form__textarea {
  resize: vertical;
  min-height: 100px
}

.contact-form__submit {
  width: 100%;
  padding: 15px 32px;
  font-size: 15px;
  cursor: pointer;
  margin-top: 4px
}

.contact-form__privacy {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.3);
  margin: 16px 0 0;
  text-align: center
}

.contact-form__privacy a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: underline;
  text-underline-offset: 2px
}

.contact-form__privacy a:hover {
  color: var(--white)
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0
}

.form-success {
  background: rgba(46, 204, 113, 0.08);
  border: 1px solid rgba(46, 204, 113, 0.2);
  padding: 40px;
  text-align: center
}

.form-success__heading {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--white);
  margin: 0 0 8px
}

.form-success__text {
  font-family: var(--sans);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0
}

.contact-form__submit[aria-busy="true"] {
  opacity: .6;
  cursor: wait
}

.contact-map {
  background: var(--charcoal)
}

.contact-map__embed {
  width: 100%;
  line-height: 0
}

.contact-map__embed iframe {
  width: 100%;
  height: 400px;
  filter: grayscale(0.8) contrast(1.1)
}

/* ═══════════════════════════════════════════════════════════════
   21. SERVICE PAGES
   ═══════════════════════════════════════════════════════════════ */

.service-hero {
  background: var(--cream);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding-top: 100px
}

.service-hero--compact {
  min-height: auto
}

.service-hero--compact .hero__grid {
  min-height: auto
}

.service-card-hero__desc {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--g500);
  line-height: 1.5
}

.service-detail {
  background: linear-gradient(145deg, var(--charcoal) 0, var(--navy) 55%, var(--blue) 100%);
  position: relative;
  overflow: hidden
}

.service-detail--charcoal {
  background: var(--charcoal)
}

.service-detail__grid {
  display: block
}

.service-detail__left {
  margin-bottom: 48px
}

.service-detail__left h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 400;
  color: var(--white);
  letter-spacing: -1.2px;
  line-height: 1.08;
  margin: 0 0 24px
}

.service-detail__left p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 24px
}

.service-detail__left p:last-child {
  margin-bottom: 0
}

.service-detail__right {
  columns: 2;
  column-gap: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px
}

.service-detail__right p {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 28px;
  break-inside: avoid
}

.service-detail__right p:last-child {
  margin-bottom: 0
}

.service-detail a,
.sentry-detail a,
.section-charcoal a:not(.link-unstyled):not(.cmo-btn-red):not(.cmo-btn-charcoal):not(.cmo-link-fade):not(.pricing-card__cta),
.independence a:not(.link-unstyled),
.about-quote a,
.service-cta a:not(.link-unstyled):not(.cmo-btn-red):not(.cmo-btn-charcoal):not(.cmo-link-fade) {
  color: var(--cream);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.4);
  text-underline-offset: 3px
}

.service-detail a:hover,
.sentry-detail a:hover,
.section-charcoal a:not(.link-unstyled):not(.cmo-btn-red):not(.cmo-btn-charcoal):not(.cmo-link-fade):not(.pricing-card__cta):hover,
.independence a:not(.link-unstyled):hover,
.about-quote a:hover,
.service-cta a:not(.link-unstyled):not(.cmo-btn-red):not(.cmo-btn-charcoal):not(.cmo-link-fade):hover {
  color: var(--white);
  text-decoration-color: rgba(255, 255, 255, 0.7)
}

.service-features {
  background: var(--cream)
}

.service-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px
}

.service-feature {
  padding: 32px 24px;
  border-top: 2px solid var(--red)
}

.service-feature--navy {
  border-top-color: var(--navy)
}

.service-feature--blue {
  border-top-color: var(--blue)
}

.service-feature--navy .step-num {
  color: var(--navy)
}

.service-feature--blue .step-num {
  color: var(--blue)
}

.service-feature__title {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  text-wrap: balance;
  margin: 0 0 12px
}

.service-feature__text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--g500);
  margin: 0
}

.service-feature__text a {
  color: var(--red);
  text-decoration: underline;
  text-decoration-color: rgba(163, 31, 31, .3);
  text-underline-offset: 2px;
  transition: color .2s ease, text-decoration-color .2s ease
}

.service-feature__text a:hover {
  color: var(--charcoal);
  text-decoration-color: var(--charcoal)
}

.service-feature__text a:visited {
  color: var(--red)
}

/* ═══════════════ CONSULTING CALLOUT ═══════════════ */
.consulting-callout {
  position: relative;
  background: var(--charcoal);
  padding: 100px 56px;
  overflow: hidden
}

.consulting-callout__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 2
}

.consulting-callout__tag {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--g400);
  margin-bottom: 20px
}

.consulting-callout__tag-bar {
  width: 24px;
  height: 2px;
  background: var(--red)
}

.consulting-callout__title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1.1;
  margin: 0 0 20px
}

.consulting-callout__text {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--light-slate);
  line-height: 1.7;
  margin: 0 0 32px
}

.consulting-callout__text em {
  font-style: italic;
  color: var(--white)
}

.consulting-callout__right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.consulting-callout__card {
  padding: 24px
}

.consulting-callout__card-num {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
  margin-bottom: 12px
}

.consulting-callout__card-title {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px
}

.consulting-callout__card-desc {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--light-slate);
  line-height: 1.5
}

/* ═══════════════════════════════════════════════════════════════
   22. BLOG
   ═══════════════════════════════════════════════════════════════ */

.blog-separator {
  text-align: center
}

.blog-separator__inner {
  max-width: 640px;
  margin: 0 auto
}

.blog-separator__text {
  font-family: var(--serif);
  font-size: clamp(18px, 2.2vw, 22px);
  font-style: italic;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
  margin: 0
}

/* ═══════════════ BLOG LAYOUT ═══════════════ */

.blog-layout {
  background: var(--cream);
  position: relative
}

.blog-layout__grid {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 56px 100px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 64px;
  align-items: start
}

/* ── Sidebar ── */

.blog-sidebar {
  position: sticky;
  top: 120px
}

.blog-sidebar__nav {
  margin-bottom: 32px
}

.blog-sidebar__back {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .2s ease
}

.blog-sidebar__back:hover {
  color: var(--red)
}

.blog-sidebar__back svg {
  transition: transform .2s ease
}

.blog-sidebar__back:hover svg {
  transform: translateX(-3px)
}

.blog-sidebar__toc {
  margin-bottom: 32px
}

.blog-sidebar__toc-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--g400);
  margin-bottom: 16px
}

.blog-sidebar__toc-link {
  display: block;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.4;
  color: var(--g500);
  text-decoration: none;
  padding: 6px 0 6px 16px;
  border-left: 2px solid var(--warm-grey);
  transition: color .2s ease, border-color .2s ease
}

.blog-sidebar__toc-link:hover {
  color: var(--black);
  border-color: var(--red)
}

.blog-sidebar__section {
  margin-bottom: 32px
}

.blog-sidebar__tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--g500);
  padding: 6px 12px;
  border: 1px solid var(--warm-grey);
  cursor: default;
  transition: border-color .2s ease
}

.blog-sidebar__tag--active {
  color: var(--navy);
  border-color: var(--navy);
  background: rgba(9, 102, 186, 0.04)
}

.blog-sidebar__cta {
  padding: 24px;
  background: var(--charcoal);
  position: relative
}

.blog-sidebar__cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--red)
}

.blog-sidebar__cta-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--g400);
  margin-bottom: 10px
}

.blog-sidebar__cta-text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--light-slate);
  margin: 0 0 16px
}

.blog-sidebar__cta-btn {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .2s ease
}

.blog-sidebar__cta-btn::after {
  content: '\2192';
  transition: transform .2s ease
}

.blog-sidebar__cta-btn:hover {
  color: var(--white)
}

.blog-sidebar__cta-btn:hover::after {
  transform: translateX(3px)
}

/* ── Blog Index Cards ── */

.blog-index__posts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px
}

.blog-index__card {
  background: var(--white);
  border: 1px solid var(--warm-grey);
  padding: 36px 40px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease
}

.blog-index__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border-color: var(--g300)
}

.blog-index__date {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--g400);
  display: block;
  margin-bottom: 12px
}

.blog-index__title {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 400;
  letter-spacing: -.5px;
  line-height: 1.15;
  margin: 0 0 12px
}

.blog-index__title a {
  color: var(--black);
  text-decoration: none;
  transition: color .2s ease
}

.blog-index__title a:hover {
  color: var(--red)
}

.blog-index__desc {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  color: var(--g500);
  margin: 0 0 16px
}

.blog-index__read-more {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .2s ease
}

.blog-index__read-more::after {
  content: '\2192';
  transition: transform .2s ease
}

.blog-index__read-more:hover {
  color: var(--red)
}

.blog-index__read-more:hover::after {
  transform: translateX(3px)
}

/* ── Blog Pagination ── */

.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding-top: 48px;
  border-top: 1px solid var(--warm-grey);
  margin-top: 48px
}

.blog-pagination__link {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .2s ease
}

.blog-pagination__link:hover {
  color: var(--red)
}

.blog-pagination__current {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--g500)
}

/* ── Blog Article Content ── */

.blog-article__content h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  color: var(--black);
  letter-spacing: -.5px;
  line-height: 1.15;
  margin: 48px 0 20px;
  padding-top: 32px;
  border-top: 1px solid var(--warm-grey)
}

.blog-article__content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0
}

.blog-article__content h3 {
  font-family: var(--serif);
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 400;
  color: var(--black);
  letter-spacing: -.3px;
  margin: 40px 0 16px
}

.blog-article__content p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--g600);
  margin: 0 0 24px
}

.blog-article__content p:last-child {
  margin-bottom: 0
}

.blog-article__content a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: rgba(9, 102, 186, 0.3);
  text-underline-offset: 3px;
  transition: color .2s ease, text-decoration-color .2s ease
}

.blog-article__content a:hover {
  color: var(--red);
  text-decoration-color: rgba(187, 20, 10, 0.3)
}

.blog-article__content ul,
.blog-article__content ol {
  color: var(--g600);
  font-size: 17px;
  line-height: 1.85;
  margin: 0 0 24px;
  padding-left: 24px
}

.blog-article__content li {
  margin-bottom: 8px
}

.blog-article__content li:last-child {
  margin-bottom: 0
}

.blog-article__content blockquote {
  border-left: 3px solid var(--red);
  padding: 16px 0 16px 24px;
  margin: 32px 0;
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.45
}

.blog-article__content code {
  font-family: var(--mono);
  font-size: 14px;
  background: var(--g100);
  padding: 2px 6px;
  color: var(--charcoal)
}

.blog-article__content pre {
  background: var(--charcoal);
  padding: 24px;
  margin: 0 0 24px;
  overflow-x: auto;
  border-left: 3px solid var(--navy)
}

.blog-article__content pre code {
  background: none;
  padding: 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--light-slate)
}

.blog-article__content strong {
  color: var(--black);
  font-weight: 600
}

.blog-article__content hr {
  border: 0;
  height: 1px;
  background: var(--warm-grey);
  margin: 48px 0
}

/* ═══════════════════════════════════════════════════════════════
   23. RESPONSIVE BREAKPOINTS
   ═══════════════════════════════════════════════════════════════ */

@media(max-width:1023px) {
  .container {
    padding: 80px 40px
  }

  .hero__grid {
    grid-template-columns: 1fr
  }

  .hero__content {
    padding: 80px 40px 40px;
    max-width: 100%
  }

  .hero__cards {
    padding: 0 40px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
  }

  .hero__cards--start {
    display: none
  }

  .stats-bar {
    padding: 0 40px 80px
  }

  .sentry__grid {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .sentry__copy {
    position: static
  }

  .sentry-layer--hidden {
    display: none
  }

  .sentry-expand-btn {
    display: block
  }

  .process__grid {
    grid-template-columns: 1fr 1fr
  }

  .our-story__body {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .our-story__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px
  }

  .our-story__founded {
    text-align: left
  }

  .our-reach__grid {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .sentry-hero__visual {
    display: none
  }

  .sentry-how__grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .sentry-detail__body {
    padding-left: 32px
  }

  .consulting-callout__grid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .consulting-callout__right {
    grid-template-columns: 1fr 1fr
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .service-detail__right {
    column-gap: 36px
  }

  .service-features__grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .blog-layout__grid {
    grid-template-columns: 200px 1fr;
    gap: 40px;
    padding: 60px 40px 80px
  }

  .blog-index__card {
    padding: 32px 36px
  }
}

@media(max-width:767px) {
  .support-bar {
    padding: 0 16px;
    gap: 0
  }

  .support-bar__label {
    display: none
  }

  .support-bar__item {
    padding: 0 12px;
    gap: 5px;
    font-size: 10px;
    letter-spacing: .5px
  }

  .nav-spacer {
    height: 92px
  }

  .container {
    padding: 64px 20px
  }

  .nav {
    padding: 16px 20px
  }

  .nav--scrolled {
    padding: 10px 20px
  }

  .nav__name {
    font-size: 15px
  }

  .nav__name-sub {
    font-size: 12px
  }

  .nav__links {
    display: none
  }

  .hamburger {
    display: flex
  }

  .hero {
    min-height: auto;
    padding-top: 90px
  }

  .hero__grid {
    display: block
  }

  .hero__content {
    padding: 64px 20px 40px
  }

  .hero__subtitle {
    font-size: 15px
  }

  .hero__buttons {
    flex-direction: column
  }

  .hero__buttons a,
  .hero__buttons button {
    width: 100%
  }

  .hero__cards {
    grid-template-columns: 1fr;
    padding: 0 20px 40px
  }

  .hero-card:hover {
    transform: none;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04)
  }

  .hero-card__title {
    font-size: 14px
  }

  .hero__title {
    font-size: clamp(32px, 8vw, 42px)
  }

  .hero__stats {
    gap: 16px
  }

  .hero__stat {
    padding: 0 16px
  }

  .hero__stat-num {
    font-size: 24px
  }


  .page-cta__content {
    padding: 64px 20px
  }

  .page-cta__title {
    font-size: clamp(28px, 7vw, 38px)
  }

  .page-cta__subtitle {
    font-size: 15px
  }

  .page-cta__buttons {
    flex-direction: column
  }

  .page-cta__buttons .cmo-btn-charcoal {
    width: 100%
  }

  .section__title {
    font-size: clamp(28px, 7vw, 38px)
  }

  .hero__tag {
    font-size: 11px;
    margin-bottom: 18px
  }

  .stats-bar {
    padding: 0 20px 64px
  }

  .stats-bar__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 0
  }

  .stats-bar__item {
    padding: 0 16px
  }

  .stats-bar__item:nth-child(odd) {
    border-right: 1px solid var(--warm-grey)
  }

  .stats-bar__item:nth-child(even) {
    border-right: 0
  }

  .editorial-break {
    padding: 64px 24px
  }

  .serif-quote {
    font-size: clamp(22px, 5.5vw, 32px)
  }

  .quote-attr {
    font-size: 11px
  }

  .brand-accent {
    display: none
  }

  .services__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 36px
  }

  .services__header p {
    text-align: left
  }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 12px
  }

  .service-card {
    padding: 28px 24px
  }

  .service-card:hover {
    transform: none;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03)
  }

  .service-card__watermark {
    display: none
  }

  .service-card h3 {
    font-size: 20px
  }

  .sentry__copy h2 {
    font-size: clamp(36px, 9vw, 48px)
  }

  .sentry__copy p {
    font-size: 15px
  }

  .sentry__watermark {
    display: none
  }

  .sentry__shield {
    display: none
  }

  .sentry-layer {
    grid-template-columns: 56px 1fr
  }

  .sentry-layer__badge {
    font-size: 10px;
    padding: 12px 4px
  }

  .sentry-layer__info {
    padding: 12px 14px
  }

  .sentry-layer__tool {
    font-size: 14px
  }

  .sentry-layer__desc {
    font-size: 12px
  }

  .cmo-btn-red {
    width: 100%
  }

  .consulting-callout .cmo-btn-red {
    width: auto
  }

  .process__grid {
    grid-template-columns: 1fr
  }

  .process-step {
    padding: 28px 0;
    border-left: 0;
    border-top: 1px solid var(--warm-grey)
  }

  .process-step:first-child {
    border-left: 0;
    border-top: 3px solid var(--red)
  }

  .process-step__num {
    font-size: 48px
  }

  .process-step h3 {
    font-size: 20px
  }

  .pricing__header {
    margin-bottom: 36px
  }

  .pricing__grid {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .pricing-card {
    padding: 32px 24px
  }

  .pricing-card__amount {
    font-size: 44px
  }

  .social-proof__grid {
    gap: 32px
  }

  .trust-metrics {
    grid-template-columns: 1fr 1fr
  }

  .testimonial blockquote {
    font-size: 20px
  }

  .industries__header {
    margin-bottom: 36px
  }

  .industries__grid {
    grid-template-columns: 1fr;
    gap: 12px
  }

  .industry-card {
    padding: 24px 20px
  }

  .industry-card:hover {
    transform: none;
    box-shadow: none;
    border-top-color: transparent
  }

  .faq__header {
    margin-bottom: 36px
  }

  .faq-item__question {
    padding: 20px 0
  }

  .faq-item__question-text {
    font-size: 15px
  }

  .faq-item__answer p {
    padding-right: 0
  }

  .cta__header h2 {
    font-size: clamp(28px, 7vw, 38px)
  }

  .cta__header p {
    font-size: 15px
  }

  .cta__expect {
    grid-template-columns: 1fr
  }

  .cta__expect-item {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06)
  }

  .cta__expect-item:last-child {
    border-bottom: 0
  }

  .cta__form {
    padding: 28px 24px
  }

  .footer__main {
    padding: 40px 20px 32px
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px
  }

  .footer__grid>:first-child {
    grid-column: 1 / -1
  }

  .footer__col--hours {
    display: none
  }

  .footer__bottom {
    padding: 16px 20px
  }

  .footer__bottom-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center
  }

  .footer__legal {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center
  }

  .about-card:hover {
    transform: none;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04)
  }

  .about-quote__content {
    padding: 64px 24px
  }

  .our-story__container {
    padding: 64px 20px
  }

  .our-story__header {
    margin-bottom: 40px;
    padding-bottom: 32px
  }

  .our-story__founded {
    display: none
  }

  .our-story__body {
    grid-template-columns: 1fr;
    gap: 0
  }

  .our-story__title {
    font-size: clamp(32px, 8vw, 42px)
  }

  .our-story__text {
    font-size: 16px
  }

  .our-story__blockquote p {
    font-size: 20px
  }

  .principles__content {
    padding: 64px 20px
  }

  .principles__header {
    margin-bottom: 40px
  }

  .principles__grid {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .principles__title {
    font-size: clamp(28px, 7vw, 36px)
  }

  .principle-card {
    padding: 28px 24px
  }

  .principle-card__title {
    font-size: 22px
  }

  .our-reach__grid {
    padding: 64px 20px
  }

  .our-reach__title {
    font-size: clamp(28px, 7vw, 36px)
  }

  .our-reach__text {
    font-size: 15px
  }

  .independence__grid {
    padding: 64px 20px;
    grid-template-columns: 1fr;
    gap: 32px
  }

  .independence__title {
    font-size: clamp(32px, 8vw, 42px);
    margin-bottom: 32px
  }

  .independence__text {
    font-size: 16px
  }

  .independence__stat {
    border-right: 0;
    padding-right: 0
  }

  .independence__stats {
    gap: 24px
  }

  .sentry-hero__watermark {
    font-size: 140px
  }

  .sentry-layers-section__title {
    font-size: clamp(28px, 7vw, 38px)
  }

  .sentry-layers-section__subtitle {
    font-size: 15px
  }

  .sentry-layers-section__watermark {
    font-size: 200px
  }

  .sentry-detail__header {
    padding: 16px 20px;
    gap: 10px
  }

  .sentry-detail__badge {
    font-size: 12px;
    min-width: 24px
  }

  .sentry-detail__label {
    font-size: 10px;
    min-width: 44px
  }

  .sentry-detail__name {
    font-size: 15px
  }

  .sentry-detail__body {
    padding: 16px 20px 20px
  }

  .sentry-detail__body p {
    font-size: 14px
  }

  .sentry-how__grid {
    grid-template-columns: 1fr;
    gap: 0
  }

  .sentry-how__step {
    padding: 24px 0;
    border-top-width: 1px
  }

  .contact-form__grid {
    gap: 32px
  }

  .contact-form__title {
    font-size: clamp(28px, 7vw, 38px)
  }

  .contact-form {
    padding: 24px
  }

  .contact-form__row {
    grid-template-columns: 1fr
  }

  .contact-map__embed iframe {
    height: 280px
  }

  .service-hero {
    min-height: auto;
    padding-top: 80px
  }

  .service-detail__left {
    margin-bottom: 32px
  }

  .service-detail__left h2 {
    font-size: clamp(28px, 7vw, 38px)
  }

  .service-detail__left p {
    font-size: 15px
  }

  .service-detail__right {
    columns: 1;
    padding-top: 32px
  }

  .service-detail__right p {
    font-size: 15px;
    margin: 0 0 24px
  }

  .service-features__grid {
    grid-template-columns: 1fr;
    gap: 0
  }

  .service-feature {
    padding: 24px 0;
    border-top-width: 1px
  }

  .consulting-callout {
    padding: 64px 24px 64px 48px
  }

  .consulting-callout__right {
    grid-template-columns: 1fr
  }

  .blog-layout__grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 48px 20px 64px
  }

  .blog-sidebar {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding-bottom: 32px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--warm-grey)
  }

  .blog-sidebar__nav {
    margin-bottom: 0
  }

  .blog-sidebar__toc {
    display: none
  }

  .blog-sidebar__section {
    margin-bottom: 0
  }

  .blog-sidebar__cta {
    display: none
  }

  .blog-index__card {
    padding: 28px 24px
  }

  .blog-index__title {
    font-size: clamp(20px, 5vw, 24px)
  }

  .blog-article__content h2 {
    margin-top: 36px
  }

  .blog-article__content p {
    font-size: 15px
  }

  .blog-article__content ul,
  .blog-article__content ol {
    font-size: 15px
  }

  .blog-article__content blockquote {
    font-size: 18px;
    margin: 24px 0
  }
}

/* ═══════════════════════════════════════════════════════════════
   24. ACCESSIBILITY & MOTION
   ═══════════════════════════════════════════════════════════════ */

.skip-to-content {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 12px 24px;
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: top .2s ease
}

.skip-to-content:focus {
  top: 16px;
  outline: 2px solid var(--red);
  outline-offset: 2px
}

*:focus:not(:focus-visible) {
  outline: 0
}

*:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px
}

.cmo-btn-red:focus-visible,
.cmo-btn-charcoal:focus-visible,
.cmo-btn-outline:focus-visible,
.cmo-btn-glass:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px
}

.nav-link:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 0;
  border-color: var(--blue) !important
}

.faq-item__question:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px
}

.hamburger:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 4px
}

.hero-card:focus-visible,
.service-card-hero:focus-visible,
.service-feature:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px
}

@media(prefers-reduced-motion:reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important
  }

  html {
    scroll-behavior: auto
  }

  .reveal {
    opacity: 1;
    transform: none
  }

  .hero-card:hover,
  .service-card-hero:hover {
    transform: none
  }

  .error-page__power {
    animation: none;
    opacity: 1
  }
}

@media(prefers-contrast:more) {
  :root {
    --g400: #666;
    --g500: #555;
    --light-slate: #e0e4ea;
    --mid-slate: #c8d0dc
  }
}

@media(forced-colors:active) {

  .cmo-btn-red,
  .cmo-btn-charcoal,
  .cmo-btn-outline,
  .cmo-btn-glass {
    border: 2px solid ButtonText
  }

  .nav-link {
    color: LinkText
  }

  .skip-to-content:focus {
    outline: 2px solid Highlight
  }
}

@media print {

  .nav,
  .mobile-menu,
  .skip-to-content,
  .cta,
  .noise-overlay::before,
  .hero__buttons,
  .service-cta,
  .sentry-expand-btn {
    display: none !important
  }

  body {
    color: #000;
    background: #fff;
    font-size: 12pt;
    line-height: 1.5
  }

  h1,
  h2,
  h3 {
    color: #000;
    page-break-after: avoid
  }

  a[href]::after {
    content: ' (' attr(href) ')';
    font-size: 10pt;
    color: #555
  }

  a[href^="#"]::after,
  a[href^="tel:"]::after,
  a[href^="mailto:"]::after {
    content: ''
  }

  .container {
    max-width: 100%;
    padding: 20px
  }

  img {
    max-width: 100% !important
  }

  .back-to-top {
    display: none !important
  }
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--red);
  color: var(--cream);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.5rem);
  transition: opacity .3s ease, visibility .3s ease, transform .3s ease, background .2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2)
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--red-light);
  outline: 2px solid var(--cream);
  outline-offset: 2px
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  pointer-events: none
}

/* ═══════════════════════════════════════════════════════════════
   25. ERROR PAGE (404)
   ═══════════════════════════════════════════════════════════════ */

.error-page {
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 200px);
  text-align: center;
  padding: 140px 24px 80px
}

body:has(.error-page) .nav {
  background: rgba(248, 247, 244, 0.94);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--warm-grey)
}

.error-page__content {
  position: relative;
  z-index: 2;
  max-width: 560px
}

.error-page__code {
  font-family: var(--mono);
  font-size: clamp(80px, 14vw, 140px);
  font-weight: 700;
  letter-spacing: -4px;
  line-height: 1;
  color: var(--dim-slate);
  margin-bottom: 32px
}

.error-page__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 40px
}

.error-page__power {
  width: 72px;
  height: 72px;
  color: var(--red);
  animation: power-pulse 2.5s ease-in-out infinite
}

@keyframes power-pulse {
  0%, 100% { opacity: 0.5; filter: drop-shadow(0 0 0 transparent) }
  50% { opacity: 1; filter: drop-shadow(0 0 12px rgba(187, 20, 10, 0.4)) }
}

.error-page__title {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(32px, 4.5vw, 52px)
}

.error-page__accent {
  color: var(--red)
}

.error-page__subtitle {
  color: var(--pale-slate);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 40px
}

.error-page__actions .cmo-btn-red {
  padding: 14px 36px;
  font-size: 13px
}

@media (max-width: 600px) {
  .error-page {
    min-height: calc(100vh - 160px);
    padding: 60px 20px
  }

  .error-page__code {
    margin-bottom: 24px
  }

  .error-page__icon {
    margin-bottom: 28px
  }

  .error-page__power {
    width: 56px;
    height: 56px
  }

  .support-channels__container {
    padding: 60px 24px
  }

  .support-channels__grid {
    grid-template-columns: 1fr
  }

  .support-info__stack {
    padding: 60px 24px
  }
}

/* ═══════════════════════════════════════════════════════════════
   26. SUPPORT PAGE
   ═══════════════════════════════════════════════════════════════ */

.support-hero__info {
  gap: 8px
}

/* Support channels */

.support-channels {
  background: var(--white);
  position: relative;
  overflow: hidden
}

.support-channels__container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 56px
}

.support-channels__header {
  margin-bottom: 56px
}

.support-channels__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px
}

.support-card {
  background: var(--cream);
  padding: 32px 28px;
  border-left: 3px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03)
}

.support-card:hover {
  border-left-color: var(--red);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03)
}

.support-card__icon {
  color: var(--navy);
  margin-bottom: 4px
}

.support-card__label {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 600;
  color: var(--black)
}

.support-card__desc {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.65;
  color: var(--g500);
  flex-grow: 1
}

.support-card__action {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: 8px
}

/* Support info (dark section) */

.support-info {
  background: linear-gradient(145deg, var(--charcoal) 0, var(--navy) 55%, var(--blue) 100%);
  position: relative;
  overflow: hidden
}

.support-info__stack {
  position: relative;
  z-index: 2;
  padding: 100px 56px;
  max-width: 800px;
  margin: 0 auto
}

.support-info__text {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.8;
  color: var(--light-slate);
  margin: 0 0 24px
}

.support-info__text--last {
  margin-bottom: 0
}

/* Support CTA */


/* Support page responsive */

@media (max-width: 900px) {
  .support-channels__grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

