/* ============================================================
   ARION DATA — Design Tokens & Base Styles
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* ---- Brand colors ---- */
  --gold-500: #ffd700;
  --gold-600: #e6c200;
  --gold-700: #b8990a;
  --gold-100: #fff8d6;

  --navy-900: #081c2e;
  --navy-800: #0a2740;
  --navy-700: #0d4370;
  --navy-600: #135286;
  --navy-500: #1c6aa8;
  --navy-100: #e6eef5;
  --navy-050: #f2f6fa;

  --electric-600: #0028ff;
  --electric-500: #2a4dff;

  --charcoal-900: #22262a;
  --charcoal-700: #3e4346;
  --charcoal-500: #6b7278;
  --charcoal-300: #a3aab0;

  /* ---- Semantic tokens ---- */
  --color-bg: #ffffff;
  --color-bg-alt: var(--navy-050);
  --color-bg-dark: var(--navy-900);
  --color-surface: #ffffff;
  --color-border: #e3e8ee;
  --color-border-dark: rgba(255, 255, 255, 0.12);

  --color-text: var(--charcoal-700);
  --color-text-strong: var(--navy-900);
  --color-text-muted: var(--charcoal-500);
  --color-text-on-dark: #f4f7fb;
  --color-text-on-dark-muted: #a9b7c6;

  --color-primary: var(--navy-700);
  --color-primary-hover: var(--navy-600);
  --color-accent: var(--gold-500);
  --color-accent-text: #4a3c00; /* accessible text-on-gold */
  --color-link: var(--electric-600);

  --color-success: #1a7f4e;
  --color-danger: #c0392b;

  /* ---- Typography ---- */
  --font-heading: 'Space Grotesk', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  --fs-xs: 0.8125rem;
  --fs-sm: 0.9375rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-2xl: clamp(1.75rem, 1.5rem + 1.1vw, 2.25rem);
  --fs-3xl: clamp(2.25rem, 1.8rem + 2vw, 3.25rem);
  --fs-4xl: clamp(2.75rem, 2rem + 3.2vw, 4.5rem);

  --lh-tight: 1.15;
  --lh-snug: 1.35;
  --lh-body: 1.65;

  /* ---- Spacing (4/8pt scale) ---- */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;
  --sp-10: 8rem;

  /* ---- Layout ---- */
  --container-max: 1200px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  /* ---- Elevation (navy-tinted shadows) ---- */
  --shadow-sm: 0 1px 2px rgba(8, 28, 46, 0.06), 0 1px 1px rgba(8, 28, 46, 0.04);
  --shadow-md: 0 8px 24px rgba(8, 28, 46, 0.08), 0 2px 6px rgba(8, 28, 46, 0.05);
  --shadow-lg: 0 20px 48px rgba(8, 28, 46, 0.14), 0 6px 16px rgba(8, 28, 46, 0.08);
  --shadow-gold: 0 10px 30px rgba(255, 215, 0, 0.25);

  /* ---- Motion ---- */
  --dur-fast: 150ms;
  --dur-base: 250ms;
  --dur-slow: 400ms;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --z-nav: 100;
  --z-overlay: 200;
  --z-modal: 300;
}

/* ============================================================
   Reset
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html, body { height: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-body);
  color: var(--color-text);
  background: var(--color-bg);
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
}
img, picture, svg, video { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-text-strong);
  line-height: var(--lh-tight);
  font-weight: 600;
  letter-spacing: -0.01em;
}
h1 { font-size: var(--fs-4xl); }
h2 { font-size: var(--fs-3xl); }
h3 { font-size: var(--fs-xl); line-height: var(--lh-snug); }
h4 { font-size: var(--fs-md); line-height: var(--lh-snug); }
p { max-width: 65ch; }
p.no-measure { max-width: none; }

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

/* ============================================================
   Accessibility helpers
   ============================================================ */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: var(--sp-4); top: -60px;
  background: var(--navy-900); color: #fff;
  padding: var(--sp-3) var(--sp-5); border-radius: var(--radius-sm);
  z-index: 1000; transition: top var(--dur-base) var(--ease-out);
  font-weight: 600;
}
.skip-link:focus { top: var(--sp-4); }

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

/* ============================================================
   Layout utilities
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--sp-5);
}
@media (min-width: 768px) { .container { padding-inline: var(--sp-7); } }

.section { padding-block: var(--sp-9); }
.section-tight { padding-block: var(--sp-7); }
@media (max-width: 767px) {
  .section { padding-block: var(--sp-8); }
}

.stack { display: flex; flex-direction: column; }
.cluster { display: flex; flex-wrap: wrap; align-items: center; }

.grid { display: grid; gap: var(--sp-6); }
.grid-2 { grid-template-columns: repeat(1, 1fr); }
.grid-3 { grid-template-columns: repeat(1, 1fr); }
.grid-4 { grid-template-columns: repeat(1, 1fr); }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.text-center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-600);
  margin-bottom: var(--sp-3);
}
.eyebrow::before {
  content: '';
  width: 22px; height: 2px;
  background: var(--gold-500);
  border-radius: var(--radius-pill);
}
.section-head { max-width: 640px; margin-bottom: var(--sp-7); }
.section-head.text-center { margin-inline: auto; }
.lede { font-size: var(--fs-md); color: var(--color-text-muted); }

.bg-alt { background: var(--color-bg-alt); }
.bg-dark {
  background: linear-gradient(165deg, var(--navy-900) 0%, var(--navy-800) 60%, var(--navy-700) 100%);
  color: var(--color-text-on-dark);
}
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 { color: #fff; }
.bg-dark p { color: var(--color-text-on-dark-muted); }
.bg-dark .eyebrow { color: var(--gold-500); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--fs-sm);
  padding: 0.95rem 1.75rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  min-height: 48px;
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              background-color var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              color var(--dur-base) var(--ease-out);
  white-space: nowrap;
  touch-action: manipulation;
}
.btn:active { transform: translateY(1px) scale(0.98); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--gold-500);
  color: var(--color-accent-text);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { background: var(--gold-600); transform: translateY(-2px); box-shadow: 0 14px 34px rgba(255,215,0,0.32); }

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; transform: translateY(-2px); }

.btn-navy {
  background: var(--navy-700);
  color: #fff;
}
.btn-navy:hover { background: var(--navy-600); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-ghost {
  background: transparent;
  border-color: var(--color-border);
  color: var(--color-text-strong);
}
.btn-ghost:hover { border-color: var(--navy-700); background: var(--navy-050); }

.btn-block { width: 100%; }
.btn-sm { padding: 0.65rem 1.25rem; min-height: 40px; font-size: var(--fs-xs); }

/* ============================================================
   Navigation
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: var(--z-nav);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), background-color var(--dur-base) var(--ease-out);
}
.site-header.is-scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: 0 4px 24px rgba(8,28,46,0.06);
}
.nav-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: var(--sp-4);
  gap: var(--sp-5);
}
.brand { display: flex; align-items: center; gap: var(--sp-2); flex-shrink: 0; }
.brand img { height: 64px; width: auto; flex-shrink: 0; }
.brand:focus-visible { outline-offset: 4px; }

.nav-links {
  display: none;
  align-items: center;
  gap: var(--sp-6);
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: 600;
}
.nav-links a {
  position: relative;
  color: var(--navy-800);
  padding-block: var(--sp-2);
}
.nav-links a::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--gold-500);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out);
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--navy-700); }

.nav-actions { display: flex; align-items: center; gap: var(--sp-4); }
.nav-phone {
  display: none;
  align-items: center; gap: var(--sp-2);
  font-family: var(--font-heading); font-weight: 600; font-size: var(--fs-sm);
  color: var(--navy-800);
}
.nav-phone svg { width: 18px; height: 18px; color: var(--gold-600); }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: transparent; border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

.mobile-menu {
  position: fixed; inset: 0; top: 0;
  background: var(--navy-900);
  z-index: var(--z-overlay);
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease-in-out);
  padding: var(--sp-6) var(--sp-5);
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--sp-8); }
.mobile-menu-close { width: 44px; height: 44px; border-radius: var(--radius-sm); border: 1.5px solid rgba(255,255,255,0.2); background: transparent; color: #fff; display: inline-flex; align-items: center; justify-content: center; }
.mobile-menu-close svg { width: 22px; height: 22px; }
.mobile-links { display: flex; flex-direction: column; gap: var(--sp-2); margin-bottom: var(--sp-8); }
.mobile-links a {
  font-family: var(--font-heading); font-size: var(--fs-xl); font-weight: 600;
  color: #fff; padding-block: var(--sp-3);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-links a[aria-current="page"] { color: var(--gold-500); }
.mobile-menu .btn { width: 100%; margin-bottom: var(--sp-3); }
.mobile-contact { color: var(--color-text-on-dark-muted); font-size: var(--fs-sm); }
.mobile-contact a { color: var(--gold-500); font-weight: 600; }

/* Desktop nav needs more room than 1024px to avoid crowding the links,
   phone number, and CTA — delayed to 1180px so the hamburger header
   stays active through tablet widths instead. */
@media (min-width: 1180px) {
  .nav-links { display: flex; }
  .nav-phone { display: flex; }
  .nav-toggle { display: none; }
  .mobile-menu { display: none; }
}

/* At very narrow widths the header CTA button competes with the logo
   and menu button for space — drop it there; the full CTA still lives
   inside the mobile menu itself. */
@media (max-width: 375px) {
  .nav-actions .btn-navy { display: none; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: var(--sp-9) var(--sp-8);
}
.hero-grid {
  display: grid; gap: var(--sp-8);
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: var(--sp-9); }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  background: rgba(255,215,0,0.12);
  border: 1px solid rgba(255,215,0,0.35);
  color: var(--gold-500);
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-pill);
  margin-bottom: var(--sp-5);
}
.hero h1 { margin-bottom: var(--sp-5); }
.hero h1 .hl { color: var(--gold-500); }
.word-wrap { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: 0.1em; margin-bottom: -0.1em; }
.word { display: inline-block; }
.hero-lede { font-size: var(--fs-md); max-width: 46ch; margin-bottom: var(--sp-7); }
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--sp-4); margin-bottom: var(--sp-8); }
.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  border-top: 1px solid var(--color-border-dark);
  padding-top: var(--sp-6);
}
.hero-stat .num {
  font-family: var(--font-heading); font-size: var(--fs-2xl); font-weight: 700; color: #fff;
  display: block;
}
.hero-stat .label { font-size: var(--fs-xs); color: var(--color-text-on-dark-muted); text-transform: uppercase; letter-spacing: 0.05em; }

.hero-visual { position: relative; }

/* ============================================================
   Cards
   ============================================================ */
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }

.icon-tile {
  width: 52px; height: 52px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--navy-050);
  color: var(--navy-700);
  margin-bottom: var(--sp-5);
  transition: background var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.icon-tile svg { width: 26px; height: 26px; }
.card:hover .icon-tile { background: var(--navy-700); color: var(--gold-500); transform: scale(1.06) rotate(-4deg); }

.card h3 { margin-bottom: var(--sp-3); }
.card p { color: var(--color-text-muted); font-size: var(--fs-sm); }
.card-link {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  margin-top: var(--sp-5);
  font-family: var(--font-heading); font-weight: 600; font-size: var(--fs-sm);
  color: var(--navy-700);
}
.card-link svg { width: 16px; height: 16px; transition: transform var(--dur-base) var(--ease-out); }
.card:hover .card-link svg { transform: translateX(4px); }

.badge {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--radius-pill);
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: 0.04em;
  background: var(--navy-100); color: var(--navy-700);
}
.badge.gold { background: var(--gold-100); color: var(--color-accent-text); }

/* ============================================================
   Steps / process
   ============================================================ */
.steps { position: relative; counter-reset: step; }
.step { position: relative; padding-left: var(--sp-9); padding-bottom: var(--sp-8); }
.step:last-child { padding-bottom: 0; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; left: 0; top: 0;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700; font-size: var(--fs-md);
  background: var(--navy-700); color: var(--gold-500);
  border-radius: var(--radius-sm);
  z-index: 1;
}
.step::after {
  content: ''; position: absolute; left: 27px; top: 56px; bottom: -32px;
  width: 2px; background: var(--color-border);
}
.step:last-child::after { display: none; }
.step h3 { margin-bottom: var(--sp-2); }
.step p { color: var(--color-text-muted); }

/* ============================================================
   Forms
   ============================================================ */
.field { display: flex; flex-direction: column; gap: var(--sp-2); margin-bottom: var(--sp-5); }
.field label {
  font-family: var(--font-heading); font-weight: 600; font-size: var(--fs-sm);
  color: var(--color-text-strong);
}
.field .req { color: var(--color-danger); }
.field input, .field textarea, .field select {
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  font-size: var(--fs-base);
  background: #fff;
  min-height: 48px;
  transition: border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--navy-700);
  box-shadow: 0 0 0 4px var(--navy-100);
}
.field-hint { font-size: var(--fs-xs); color: var(--color-text-muted); }
.field-error {
  font-size: var(--fs-xs); color: var(--color-danger); font-weight: 600;
  display: none; align-items: center; gap: var(--sp-1);
}
.field.has-error .field-error { display: flex; }
.field.has-error input, .field.has-error textarea { border-color: var(--color-danger); }
.field-row { display: grid; gap: var(--sp-5); }
@media (min-width: 640px) { .field-row { grid-template-columns: 1fr 1fr; } }

.form-success {
  display: none;
  align-items: flex-start; gap: var(--sp-3);
  background: #eafaf1; border: 1px solid #bce8cf; color: var(--color-success);
  padding: var(--sp-5); border-radius: var(--radius-sm);
  font-weight: 600; font-size: var(--fs-sm);
}
.form-success.is-visible { display: flex; }
.form-error {
  display: none;
  background: #fdecea; border: 1px solid #f3b9b2; color: var(--color-danger);
  padding: var(--sp-5); border-radius: var(--radius-sm);
  font-weight: 600; font-size: var(--fs-sm); margin-bottom: var(--sp-5);
}
.form-error.is-visible { display: block; }
.form-success svg { width: 22px; height: 22px; flex-shrink: 0; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--navy-900); color: var(--color-text-on-dark-muted); padding-block: var(--sp-9) var(--sp-6); }
.footer-grid { display: grid; gap: var(--sp-8); margin-bottom: var(--sp-8); }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.footer-brand img { height: 56px; margin-bottom: var(--sp-4); }
.footer-brand p { font-size: var(--fs-sm); max-width: 32ch; }
.footer-col h4 { color: #fff; margin-bottom: var(--sp-4); font-size: var(--fs-sm); text-transform: uppercase; letter-spacing: 0.06em; }
.footer-col ul { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-col a { font-size: var(--fs-sm); transition: color var(--dur-fast) var(--ease-out); }
.footer-col a:hover { color: var(--gold-500); }
.footer-contact li { display: flex; align-items: flex-start; gap: var(--sp-2); font-size: var(--fs-sm); }
.footer-contact svg { width: 18px; height: 18px; color: var(--gold-500); flex-shrink: 0; margin-top: 2px; }
.social-row { display: flex; gap: var(--sp-3); margin-top: var(--sp-5); }
.social-row a {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.15);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
.social-row a:hover { background: var(--gold-500); border-color: var(--gold-500); color: var(--navy-900); }
.social-row svg { width: 18px; height: 18px; }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: var(--sp-3);
  align-items: center; justify-content: space-between;
  padding-top: var(--sp-6); border-top: 1px solid rgba(255,255,255,0.08);
  font-size: var(--fs-xs);
}
.footer-bottom-links { display: flex; gap: var(--sp-5); }

/* ============================================================
   Misc components
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  border-radius: var(--radius-lg);
  padding: var(--sp-8) var(--sp-6);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: var(--color-text-on-dark-muted); margin-inline: auto; }
.cta-band .hero-cta { justify-content: center; margin-top: var(--sp-6); margin-bottom: 0; }

.marquee { border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); padding-block: var(--sp-6); overflow: hidden; }
.marquee-track { display: flex; gap: var(--sp-9); width: max-content; }
.marquee-track span { font-family: var(--font-heading); font-weight: 700; font-size: var(--fs-lg); color: var(--color-text-muted); white-space: nowrap; }

.reveal { opacity: 0; transform: translateY(28px); }
.reveal-visible { opacity: 1; transform: none; }

[data-anim] { will-change: transform, opacity; }

.breadcrumbs { display: flex; align-items: center; gap: var(--sp-2); font-size: var(--fs-xs); color: var(--color-text-on-dark-muted); margin-bottom: var(--sp-5); }
.breadcrumbs a:hover { color: var(--gold-500); }
.breadcrumbs svg { width: 14px; height: 14px; }

.page-hero { padding-block: var(--sp-8) var(--sp-7); }
.page-hero h1 { margin-bottom: var(--sp-4); }
.page-hero .lede { color: var(--color-text-on-dark-muted); max-width: 56ch; }

/* Pricing */
.price-card {
  background: #fff; border: 1.5px solid var(--color-border); border-radius: var(--radius-lg);
  padding: var(--sp-7) var(--sp-6);
  display: flex; flex-direction: column;
  position: relative;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-card.is-featured { border-color: var(--navy-700); box-shadow: var(--shadow-lg); }
.price-card .tag {
  position: absolute; top: -14px; left: var(--sp-6);
  background: var(--gold-500); color: var(--color-accent-text);
  font-family: var(--font-heading); font-weight: 700; font-size: var(--fs-xs);
  padding: var(--sp-1) var(--sp-4); border-radius: var(--radius-pill);
}
.price-card .plan-name { font-family: var(--font-heading); font-weight: 700; font-size: var(--fs-lg); margin-bottom: var(--sp-2); }
.price-card .plan-desc { color: var(--color-text-muted); font-size: var(--fs-sm); margin-bottom: var(--sp-5); }
.price-card .plan-price { font-family: var(--font-heading); font-size: var(--fs-3xl); font-weight: 700; color: var(--navy-900); margin-bottom: var(--sp-1); }
.price-card .plan-price span { font-size: var(--fs-sm); font-weight: 500; color: var(--color-text-muted); }
.price-card .plan-features { display: flex; flex-direction: column; gap: var(--sp-3); margin-block: var(--sp-6); flex: 1; }
.price-card .plan-features li { display: flex; align-items: flex-start; gap: var(--sp-3); font-size: var(--fs-sm); }
.price-card .plan-features svg { width: 18px; height: 18px; color: var(--color-success); flex-shrink: 0; margin-top: 2px; }

/* FAQ accordion */
.accordion-item { border-bottom: 1px solid var(--color-border); }
.accordion-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4);
  background: transparent; border: none; text-align: left;
  padding: var(--sp-5) 0;
  font-family: var(--font-heading); font-weight: 600; font-size: var(--fs-md); color: var(--color-text-strong);
}
.accordion-trigger svg { width: 20px; height: 20px; flex-shrink: 0; transition: transform var(--dur-base) var(--ease-out); color: var(--navy-700); }
.accordion-trigger[aria-expanded="true"] svg { transform: rotate(45deg); }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height var(--dur-slow) var(--ease-in-out); }
.accordion-panel-inner { padding-bottom: var(--sp-5); color: var(--color-text-muted); font-size: var(--fs-sm); max-width: 70ch; }

/* Blog */
.post-card { display: flex; flex-direction: column; }
.post-card .post-media {
  aspect-ratio: 16/10; border-radius: var(--radius-md); margin-bottom: var(--sp-5);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-700);
}
.post-card .post-media svg { width: 40px; height: 40px; }
.post-meta { display: flex; gap: var(--sp-3); align-items: center; font-size: var(--fs-xs); color: var(--color-text-muted); margin-bottom: var(--sp-3); text-transform: uppercase; letter-spacing: 0.04em; }
.post-card.is-soon { opacity: 0.6; }
.post-card.is-soon .post-media { background: var(--color-bg-alt) !important; color: var(--charcoal-300) !important; }
.newsletter-box {
  background: var(--navy-900); border-radius: var(--radius-lg);
  padding: var(--sp-8) var(--sp-6); text-align: center; color: #fff;
}
.newsletter-box h2 { color: #fff; margin-bottom: var(--sp-3); }
.newsletter-box p { color: var(--color-text-on-dark-muted); margin-inline: auto; margin-bottom: var(--sp-6); }
.newsletter-form { display: flex; flex-wrap: wrap; gap: var(--sp-3); justify-content: center; max-width: 480px; margin-inline: auto; }
.newsletter-form input { flex: 1; min-width: 220px; border-radius: var(--radius-sm); border: 1.5px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.06); color: #fff; padding: 0.85rem 1rem; min-height: 48px; }
.newsletter-form input::placeholder { color: var(--color-text-on-dark-muted); }
.newsletter-form input:focus { outline: none; border-color: var(--gold-500); }
.post-card h3 { margin-bottom: var(--sp-3); }
.post-card p { color: var(--color-text-muted); font-size: var(--fs-sm); }

.prose { max-width: 70ch; margin-inline: auto; }
.prose h2 { margin-top: var(--sp-8); margin-bottom: var(--sp-4); font-size: var(--fs-2xl); }
.prose h3 { margin-top: var(--sp-6); margin-bottom: var(--sp-3); }
.prose p { margin-bottom: var(--sp-5); color: var(--color-text); }
.prose ul { margin-bottom: var(--sp-5); display: flex; flex-direction: column; gap: var(--sp-2); }
.prose li { padding-left: var(--sp-5); position: relative; }
.prose li::before { content: ''; position: absolute; left: 0; top: 0.65em; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-500); }
.prose blockquote {
  border-left: 3px solid var(--gold-500); padding-left: var(--sp-5);
  font-family: var(--font-heading); font-size: var(--fs-lg); color: var(--navy-800);
  margin-block: var(--sp-6);
}

/* Values / about */
.value-card { text-align: left; }
.stat-block { text-align: center; }
.stat-block .num { font-family: var(--font-heading); font-size: var(--fs-3xl); font-weight: 700; color: var(--navy-700); }
.stat-block .label { font-size: var(--fs-sm); color: var(--color-text-muted); }

/* Back to top */
.back-to-top {
  position: fixed; right: var(--sp-5); bottom: var(--sp-5);
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--navy-700); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out), visibility var(--dur-base);
  z-index: 90;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.back-to-top svg { width: 20px; height: 20px; }

/* Logo mark micro-interaction */
.logo-mark { transition: transform var(--dur-slow) var(--ease-out); }
.brand:hover .logo-mark { transform: translateX(2px); }

/* ============================================================
   Services page — responsive fixes (scoped to services.html)
   ============================================================ */

/* The shared .grid-2 goes two-column at 640px, which is too early for
   these text+icon service sections (cramped text, icon stranded in an
   empty column). .service-grid uses the same look but delays to 1024px,
   without touching .grid-2 used elsewhere on the site. */
.service-grid { grid-template-columns: repeat(1, 1fr); }
@media (min-width: 1024px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Decorative icon panel: same padding as before on desktop, compacted
   on smaller screens so it doesn't create excess vertical whitespace
   once sections stack to a single column. */
.service-visual { border: none; padding: var(--sp-9); text-align: center; }
@media (max-width: 767px) {
  .service-visual { padding: var(--sp-6); }
}
@media (max-width: 479px) {
  .service-visual { padding: var(--sp-5); }
}

/* Sticky header keeps in-page anchors (nav/footer links to #it-consulting
   etc.) from landing flush under the header bar. ~header height + margin. */
#it-consulting, #microsoft-365, #voip, #analytics, #process, #training {
  scroll-margin-top: 110px;
}

::selection { background: var(--gold-500); color: var(--navy-900); }
