/* =====================================================================
   GOOD HUNTER — MASTER STYLESHEET
   =====================================================================
   This file is organized top to bottom in the order things appear on
   a page: Design tokens -> Reset -> Typography -> Layout utilities ->
   Header/Nav -> Buttons -> Hero -> Sections -> Cards -> Footer ->
   Animations -> Responsive breakpoints.

   HOW TO FIND WHAT YOU NEED:
   Every major block below has a big comment banner like this one.
   See EDITING-GUIDE.md in the project root for a plain-English map
   of exactly what to change and where.
   ===================================================================== */

/* ---------------------------------------------------------------------
   1. DESIGN TOKENS (COLORS, FONTS, SPACING)
   ---------------------------------------------------------------------
   [EDIT ZONE] This is the single most important block in the whole
   site. Change a value here and it updates everywhere automatically.
   --------------------------------------------------------------------- */
:root {
  /* Brand colors — sampled directly from your logo file */
  --color-brand: #0d47a1;          /* Primary brand blue (from logo icon) */
  --color-brand-dark: #082a63;     /* Deep navy for dark sections/footer */
  --color-brand-light: #3b7ddd;    /* Lighter blue for hover/accents */
  --color-accent: #00c2a8;         /* Secondary accent (teal) for highlights/CTAs — change to taste */
  --color-cursor: #8fb4ff;         /* Soft periwinkle blue for the custom cursor + hero graphic — change to taste */

  --color-ink: #0b0f19;            /* Near-black text */
  --color-ink-soft: #4a5568;       /* Secondary/muted text */
  --color-paper: #ffffff;          /* Page background */
  --color-paper-soft: #f5f7fb;     /* Alternate section background */
  --color-line: #e5e9f2;           /* Hairline borders/dividers */

  /* Typography — swap Google Fonts links in <head> if you change these */
  --font-display: "Space Grotesk", "Helvetica Neue", Arial, sans-serif; /* Headlines */
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;            /* Body copy */

  --fs-hero: clamp(2.6rem, 6vw, 5.6rem);
  --fs-h1: clamp(2.2rem, 4.4vw, 3.6rem);
  --fs-h2: clamp(1.7rem, 3vw, 2.5rem);
  --fs-h3: clamp(1.2rem, 1.8vw, 1.5rem);
  --fs-body: 1.0625rem;
  --fs-small: 0.9rem;

  /* Layout */
  --container-max: 1280px;
  --container-pad: clamp(1.25rem, 4vw, 3rem);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --header-h: 84px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 0.25s;
  --dur-med: 0.6s;
  --dur-slow: 1s;
}

/* ---------------------------------------------------------------------
   2. RESET
   --------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
ul, ol { list-style: none; margin: 0; padding: 0; }
img, picture, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--color-ink);
  background: var(--color-paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Respect users who prefer less motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------------------------------------------------------------------
   3. TYPOGRAPHY
   --------------------------------------------------------------------- */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--color-ink);
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-brand);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--color-accent);
  display: inline-block;
}

.text-muted { color: var(--color-ink-soft); }
.text-invert { color: #fff; }
.text-invert-soft { color: rgba(255,255,255,0.72); }

/* ---------------------------------------------------------------------
   4. LAYOUT UTILITIES
   --------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section { padding-block: clamp(4rem, 10vw, 8rem); }
.section-tight { padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.section-dark { background: var(--color-brand-dark); color: #fff; }
.section-soft { background: var(--color-paper-soft); }

.section-head {
  max-width: 640px;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: 0.75rem; }
.section-head p { margin-top: 1.1rem; font-size: 1.05rem; color: var(--color-ink-soft); }
.section-dark .section-head p { color: rgba(255,255,255,0.72); }

.grid { display: grid; gap: 1.75rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-sm { gap: 0.75rem; }
.gap-md { gap: 1.5rem; }
.gap-lg { gap: 2.5rem; }

/* ---------------------------------------------------------------------
   5. HEADER / NAVIGATION
   ---------------------------------------------------------------------
   [EDIT ZONE] Structure lives in each page's <header>. This is styling
   only — see EDITING-GUIDE.md for how to add/remove menu items.
   --------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-fast) ease, background var(--dur-fast) ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--color-line);
  background: rgba(255,255,255,0.92);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; }

.brand-logo img { height: 34px; width: auto; }

.nav-menu { display: flex; align-items: center; gap: 2.25rem; }
.nav-menu a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-ink);
  position: relative;
  padding-block: 0.35rem;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 2px; width: 0%;
  background: var(--color-brand);
  transition: width var(--dur-fast) var(--ease-out);
}
.nav-menu a:hover::after,
.nav-menu a.is-active::after { width: 100%; }
.nav-menu a.is-active { color: var(--color-brand); }

.nav-cta { display: flex; align-items: center; gap: 1.5rem; }

/* Shown only inside the open mobile menu (see §13 responsive), hidden on desktop
   since the desktop nav-cta button already covers this. Uses a descendant
   selector (higher specificity than .btn) so it reliably wins regardless of
   CSS source order. */
.nav-menu .nav-menu-cta { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 6px;
}
.nav-toggle span {
  height: 2px; width: 100%;
  background: var(--color-ink);
  transition: transform var(--dur-fast) ease, opacity var(--dur-fast) ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------------------------------------------------------------
   6. BUTTONS
   --------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), background var(--dur-fast) ease, color var(--dur-fast) ease;
}
.btn-primary {
  background: var(--color-brand);
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(13,71,161,0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -8px rgba(13,71,161,0.6); }

.btn-accent {
  background: var(--color-accent);
  color: #06231f;
}
.btn-accent:hover { transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--color-line);
  color: var(--color-ink);
}
.btn-ghost:hover { border-color: var(--color-brand); color: var(--color-brand); }

.btn-ghost-invert {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
}
.btn-ghost-invert:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

.btn-sm { padding: 0.65rem 1.3rem; font-size: 0.85rem; }
.btn-icon { transition: transform var(--dur-fast) var(--ease-out); }
.btn:hover .btn-icon { transform: translateX(3px); }

/* ---------------------------------------------------------------------
   7. HERO
   --------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
  background: var(--color-brand-dark);
  color: #fff;
}

/* Animated gradient-mesh background — this is the "motion graphic".
   [EDIT ZONE] Swap this whole element for a <video> or Lottie animation;
   see EDITING-GUIDE.md "Hero background / motion graphics" section. */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(60% 55% at 15% 20%, rgba(59,125,221,0.55), transparent 60%),
    radial-gradient(50% 50% at 85% 15%, rgba(0,194,168,0.35), transparent 60%),
    radial-gradient(70% 60% at 50% 100%, rgba(13,71,161,0.9), transparent 70%),
    linear-gradient(180deg, #081c3a 0%, #082a63 60%, #06152e 100%);
  animation: heroDrift 18s ease-in-out infinite alternate;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(80% 60% at 50% 40%, black, transparent);
}
@keyframes heroDrift {
  0% { transform: scale(1) translate(0,0); }
  100% { transform: scale(1.08) translate(-1.5%, 1.5%); }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 2rem;
}
.hero-text { min-width: 0; }
.hero-eyebrow {
  color: var(--color-accent);
}
.hero-eyebrow::before { background: var(--color-accent); }
.hero h1 { color: #fff; margin-top: 1.25rem; max-width: 18ch; font-size: var(--fs-hero); }
.hero p.lede {
  margin-top: 1.75rem;
  max-width: 46ch;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.78);
}
.hero-actions { display: flex; gap: 1rem; margin-top: 2.5rem; flex-wrap: wrap; }

.hero-stats {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  margin-top: clamp(3rem, 8vw, 5rem);
  padding-top: 2.25rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  color: #fff;
}
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-top: 0.25rem; }

/* ---------------------------------------------------------------------
   Animated hero graphic
   ---------------------------------------------------------------------
   [EDIT ZONE] Desktop-only decorative visual next to the hero text —
   your logo icon at the center, with pulsing rings and a small network
   of orbiting nodes around it. All motion is CSS keyframes (no video,
   no JS animation loop), so it's cheap on any connection. Hidden below
   1080px — see the responsive section for that breakpoint.
   --------------------------------------------------------------------- */
.hero-visual { display: none; }
.hero-visual-svg { width: 100%; height: auto; overflow: visible; }

.hv-ring { fill: none; stroke: rgba(255,255,255,0.16); }
.hv-ring-outer {
  stroke-dasharray: 2 10;
  transform-origin: 220px 220px;
  animation: hvSpin 50s linear infinite;
}
.hv-ring-mid {
  stroke: var(--color-cursor);
  stroke-opacity: 0.22;
  transform-origin: 220px 220px;
  animation: hvPulseRing 5s ease-in-out infinite;
}
.hv-glow {
  fill: url(#hv-glow-gradient);
  transform-origin: 220px 220px;
  animation: hvPulseRing 5s ease-in-out infinite reverse;
}
.hv-line { stroke: rgba(255,255,255,0.14); stroke-width: 1; }
.hv-node {
  fill: var(--color-cursor);
  filter: drop-shadow(0 0 4px rgba(143,180,255,0.8));
  animation: hvTwinkle 3.6s ease-in-out infinite;
  animation-delay: var(--d, 0s);
}
.hv-icon {
  transform-origin: 220px 220px;
  animation: hvFloat 6s ease-in-out infinite;
}

@keyframes hvSpin {
  to { transform: rotate(360deg); }
}
@keyframes hvPulseRing {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.06); opacity: 0.7; }
}
@keyframes hvTwinkle {
  0%, 100% { opacity: 0.35; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.15); }
}
@keyframes hvFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.scroll-cue {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.scroll-cue .line { width: 1px; height: 34px; background: rgba(255,255,255,0.4); overflow: hidden; }
.scroll-cue .line::after {
  content: "";
  display: block;
  width: 100%; height: 40%;
  background: #fff;
  animation: scrollCue 1.8s ease-in-out infinite;
}
@keyframes scrollCue {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(250%); }
}

/* ---------------------------------------------------------------------
   8. LOGO / TRUST STRIP
   --------------------------------------------------------------------- */
.trust-strip { padding-block: 2.5rem; border-bottom: 1px solid var(--color-line); }
.trust-strip .strip-label { font-size: 0.8rem; color: var(--color-ink-soft); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.5rem; text-align: center; }
.trust-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 5vw, 3.5rem);
}
.trust-logo-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding-inline: 1.25rem;
  border: 1.5px solid var(--color-line);
  border-radius: var(--radius-sm);
  color: var(--color-ink-soft);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: border-color var(--dur-fast) ease, color var(--dur-fast) ease;
}
a.trust-logo-chip:hover { border-color: var(--color-brand); color: var(--color-brand); }
/* Placeholder variant — dashed border signals "not a real logo yet" (used until a chip is confirmed) */
.trust-logo-chip.is-placeholder { border-style: dashed; }

/* ---------------------------------------------------------------------
   9. CARDS (SERVICES / VALUES / TEAM / RESOURCES)
   --------------------------------------------------------------------- */
.card {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out), border-color var(--dur-med) ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -24px rgba(13,20,40,0.25);
  border-color: transparent;
}
.card-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(13,71,161,0.08);
  color: var(--color-brand);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 0.75rem; }
.card p { color: var(--color-ink-soft); font-size: 0.98rem; }
.card-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 1.25rem;
  font-size: 0.9rem; font-weight: 600;
  color: var(--color-brand);
}

.card-dark {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
}
.card-dark:hover { border-color: rgba(255,255,255,0.3); }
.card-dark .card-icon { background: rgba(255,255,255,0.1); color: var(--color-accent); }
.card-dark h3 { color: #fff; }
.card-dark p { color: rgba(255,255,255,0.65); }

/* Process steps */
.process-step {
  position: relative;
  padding-top: 2.5rem;
  border-top: 2px solid var(--color-line);
}
.process-step .step-num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--color-brand);
  opacity: 0.35;
}

/* Industries chips */
.chip-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.chip {
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  background: var(--color-paper-soft);
  border: 1px solid var(--color-line);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Testimonials */
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--color-line);
}
.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-ink);
}
.testimonial-author { display: flex; align-items: center; gap: 0.9rem; margin-top: 1.75rem; }
.testimonial-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--color-paper-soft);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; color: var(--color-brand);
  font-family: var(--font-display);
}
.testimonial-name { font-weight: 600; font-size: 0.95rem; }
.testimonial-role { font-size: 0.85rem; color: var(--color-ink-soft); }

/* CTA banner */
.cta-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: clamp(2.5rem, 6vw, 5rem);
  background: var(--color-brand-dark);
  color: #fff;
  text-align: center;
}
.cta-banner::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 50% 0%, rgba(59,125,221,0.5), transparent 70%);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255,255,255,0.72); max-width: 50ch; margin-inline: auto; margin-top: 1rem; }
.cta-banner .btn-row { margin-top: 2.25rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------------------------------------------------------------------
   10. FOOTER
   --------------------------------------------------------------------- */
.site-footer {
  background: #060d1f;
  color: rgba(255,255,255,0.7);
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img { height: 30px; margin-bottom: 1.25rem; }
.footer-brand p { max-width: 32ch; font-size: 0.92rem; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur-fast) ease, border-color var(--dur-fast) ease;
}
.footer-social a:hover { background: var(--color-brand); border-color: var(--color-brand); }
.footer-social svg { width: 16px; height: 16px; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 1.25rem;
}
.footer-col li { margin-bottom: 0.75rem; }
.footer-col a { font-size: 0.92rem; transition: color var(--dur-fast) ease; }
.footer-col a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-block: 1.75rem;
  font-size: 0.82rem;
}
.footer-bottom .legal-links { display: flex; gap: 1.5rem; }

/* ---------------------------------------------------------------------
   11. SCROLL-REVEAL ANIMATION HOOKS
   ---------------------------------------------------------------------
   Elements with [data-reveal] start hidden and are animated in by
   assets/js/main.js using GSAP ScrollTrigger. Safe to add this
   attribute to any new element you create.
   --------------------------------------------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(28px); }
.reveal-ready [data-reveal] { transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }

/* ---------------------------------------------------------------------
   Custom cursor (desktop only, decorative)
   ---------------------------------------------------------------------
   Two layers for a more dynamic feel: a small solid dot that tracks the
   mouse tightly, and a larger soft ring that trails slightly behind it
   (eased in assets/js/main.js). No mix-blend-mode here on purpose — that
   was inverting whatever text/color it passed over, which read as
   jarring. Instead the ring just glows softly in --color-cursor, so it
   never fights with the page's own colors.
   --------------------------------------------------------------------- */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-cursor);
  box-shadow: 0 0 12px 2px rgba(143, 180, 255, 0.65);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity var(--dur-fast) ease;
}
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--color-cursor);
  background: radial-gradient(circle, rgba(143, 180, 255, 0.14), transparent 70%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width var(--dur-fast) var(--ease-out), height var(--dur-fast) var(--ease-out), opacity var(--dur-fast) ease, border-color var(--dur-fast) ease;
}
.cursor-ring.is-hover {
  width: 54px; height: 54px;
  border-color: #fff;
  background: radial-gradient(circle, rgba(143, 180, 255, 0.28), transparent 70%);
}
.cursor-dot.is-hover { opacity: 0.6; }

/* Marquee for logos/keywords */
.marquee { overflow: hidden; }
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 32s linear infinite;
}
.marquee-track span { padding-inline: 2rem; white-space: nowrap; }
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------------------------------------------------------------------
   12. PAGE HEADER (for interior pages: Services, About, Contact)
   --------------------------------------------------------------------- */
.page-hero {
  padding-top: calc(var(--header-h) + clamp(3rem, 8vw, 6rem));
  padding-bottom: clamp(3rem, 6vw, 5rem);
  background: var(--color-brand-dark);
  color: #fff;
}
.page-hero h1 { color: #fff; margin-top: 1rem; max-width: 22ch; }
.page-hero p { margin-top: 1.25rem; max-width: 52ch; color: rgba(255,255,255,0.75); font-size: 1.05rem; }
.breadcrumb { display: flex; gap: 0.5rem; font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: #fff; }

/* Contact form */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-field { display: flex; flex-direction: column; gap: 0.5rem; grid-column: span 2; }
.form-field.half { grid-column: span 1; }
.form-field label { font-size: 0.85rem; font-weight: 600; }
.form-field input, .form-field select, .form-field textarea {
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: var(--color-paper-soft);
  transition: border-color var(--dur-fast) ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--color-brand);
}
.form-field textarea { resize: vertical; min-height: 130px; }

.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; padding-block: 1.25rem; border-top: 1px solid var(--color-line); }
.contact-info-item:first-child { border-top: none; }
.contact-info-icon {
  width: 42px; height: 42px; border-radius: var(--radius-sm);
  background: rgba(13,71,161,0.08); color: var(--color-brand);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* Team grid (About page) */
.team-card { text-align: center; }
.team-photo {
  aspect-ratio: 1; border-radius: var(--radius-md);
  background: var(--color-paper-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-ink-soft);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ---------------------------------------------------------------------
   13. RESPONSIVE BREAKPOINTS
   --------------------------------------------------------------------- */
@media (min-width: 1081px) {
  .hero-content { grid-template-columns: 1.1fr 0.9fr; }
  .hero-visual { display: block; }
}

@media (max-width: 1080px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav-menu {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem var(--container-pad);
    gap: 1.5rem;
    border-bottom: 1px solid var(--color-line);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--dur-fast) ease, transform var(--dur-fast) ease, visibility var(--dur-fast) ease;
  }
  .nav-menu.is-open { opacity: 1; transform: translateY(0); visibility: visible; }
  .nav-menu a { font-size: 1.05rem; }
  .nav-cta .btn-ghost, .nav-cta .btn-primary { display: none; }
  .nav-toggle { display: flex; }
  .nav-menu .nav-menu-cta { display: inline-flex; margin-top: 0.5rem; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2.25rem; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.half { grid-column: span 1; }
  .hero-stats { gap: 2rem; }
}

@media (max-width: 520px) {
  .hero-actions .btn { width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
