﻿/* Colour palette from ThemeForest "Industry" (item 19860588) Ã¢â‚¬â€ st.ourhtmldemo.com/new/Industry-Preview/css/style.css */
:root {
  /* Semantic Industry theme tokens */
  --primary: #fdc900;
  --primary-hover: #eabb06;
  --primary-hover-alt: #e7b801;
  --secondary: #222628;
  --secondary-mid: #292d2f;
  --secondary-soft: #303335;
  --accent: #fdc900;
  --accent-hover: #eabb06;
  --background: #ffffff;
  --background-alt: #f7f7f7;
  --background-muted: #f4f4f4;
  --text: #222222;
  --text-body: #848484;
  --text-muted: #848484;
  --text-light: #999999;
  --text-subtle: #a3adb2;
  --heading: #252525;
  --border: #ececec;
  --border-light: #f4f4f4;
  --border-dark: #2e3335;
  --button: #fdc900;
  --button-hover: #eabb06;
  --button-text: #222222;
  --overlay: rgba(0, 0, 0, 0.6);
  --white: #ffffff;

  /* Existing component tokens mapped to Industry colours */
  --navy: var(--secondary);
  --navy-mid: var(--secondary-mid);
  --navy-soft: var(--secondary-soft);
  --slate: var(--text-body);
  --paper: var(--background-alt);
  --paper-warm: var(--background-muted);
  --line: var(--border);
  --line-dark: rgba(255, 255, 255, 0.1);
  --brass: var(--primary);
  --brass-light: #f8c12d;
  --brass-dark: var(--primary-hover);
  --success: #2d6a4f;
  --shadow-sm: 0 2px 8px rgba(34, 38, 40, 0.06);
  --shadow-md: 0 8px 32px rgba(34, 38, 40, 0.1);
  --shadow-lg: 0 20px 60px rgba(34, 38, 40, 0.15);
  --radius: 4px;
  --radius-lg: 8px;
  --header-h: 80px;
  --transition: 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  margin: 0;
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--background);
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, .display, .brand-name, .stat-num, .step-index, .workflow-num, .why-heading, .why-point-num {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.mono, .eyebrow, .nav-link, .btn, .tag, .fee, .breadcrumb {
  font-family: 'JetBrains Mono', monospace;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

::selection { background: var(--primary); color: var(--button-text); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 24px; }

/* Ã¢â€â‚¬Ã¢â€â‚¬ Header Ã¢â€â‚¬Ã¢â€â‚¬ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.header-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brass) 0%, var(--brass-light) 45%, var(--brass-dark) 100%);
  pointer-events: none;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 28px rgba(34, 38, 40, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  transition: opacity var(--transition);
}

.brand:hover { opacity: 0.88; }

.brand-logo-wrap {
  display: block;
  width: 64px;
  height: 64px;
  overflow: hidden;
  flex-shrink: 0;
  line-height: 0;
  border-radius: 50%;
  background: var(--white);
}

.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.2);
  transform-origin: center center;
}

.brand-icon {
  width: 40px;
  height: 40px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background var(--transition), transform var(--transition);
}

.brand-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(253, 201, 0, 0.28);
  pointer-events: none;
}

.brand:hover .brand-icon { background: var(--navy-mid); }

.brand-icon svg { width: 18px; height: 18px; fill: var(--brass); }

.brand-name {
  font-size: 15px;
  line-height: 1.15;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.brand-name span {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--brass-dark);
  letter-spacing: 0.14em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: flex-end;
  min-width: 0;
}

.nav-link {
  position: relative;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--secondary);
  padding: 10px 12px;
  transition: color 0.25s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 2px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}

.nav-link:hover {
  color: var(--navy);
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-link[aria-current="page"] {
  color: var(--navy);
  font-weight: 600;
}

.nav-cta {
  margin-left: 12px;
  background: var(--button);
  color: var(--button-text) !important;
  padding: 8px 14px;
  border-radius: var(--radius);
  border: 1.5px solid var(--button);
  
  letter-spacing: 0.05em;
  line-height: 1.2;
  white-space: nowrap;
  box-shadow: 0 1px 0 rgba(34, 38, 40, 0.04);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.2s ease,
    box-shadow 0.25s ease;
}

.nav-cta::after { display: none; }

.nav-cta:hover {
  background: var(--button-hover);
  border-color: var(--button-hover);
  color: var(--button-text) !important;
  box-shadow: 0 4px 14px rgba(253, 201, 0, 0.35);
  transform: translateY(-1px);
}

.nav-cta:active { transform: translateY(0); }

.nav-cta[aria-current="page"] {
  background: var(--button-hover);
  border-color: var(--button-hover);
}

.nav-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.nav-toggle:hover {
  background: var(--paper);
  border-color: var(--line);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 1px;
  transition:
    transform 0.3s ease,
    opacity 0.2s ease,
    background 0.25s ease;
  transform-origin: center;
}

.site-header.menu-open .nav-toggle {
  background: var(--paper);
  border-color: var(--line);
}

.site-header.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.site-header.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.nav-open { overflow: hidden; }

/* Ã¢â€â‚¬Ã¢â€â‚¬ Buttons Ã¢â€â‚¬Ã¢â€â‚¬ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--button);
  color: var(--button-text);
  border-color: var(--button);
}

.btn-primary:hover {
  background: var(--button-hover);
  border-color: var(--button-hover);
  color: var(--button-text);
}

.btn-secondary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-secondary:hover { background: var(--navy-soft); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn-full { width: 100%; }

.btn-sm { padding: 10px 18px; font-size: 11px; }

.btn-arrow::after { content: 'Ã¢â€ â€™'; margin-left: 4px; }

/* Ã¢â€â‚¬Ã¢â€â‚¬ Typography Ã¢â€â‚¬Ã¢â€â‚¬ */
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-dark);
  margin: 0 0 12px;
}

.eyebrow-light { color: var(--brass-light); }

.section-title {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.08;
  color: var(--heading);
  margin: 0 0 16px;
}

.section-lead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 0 48px;
}

.section-lead.center { margin-left: auto; margin-right: auto; text-align: center; }

.text-accent { color: var(--brass-dark); }

/* Hero */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  min-height: 100dvh;
  color: var(--white);
  padding: calc(var(--header-h) + 48px) 0 72px;
  overflow: hidden;
  background: var(--navy);
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
  clip-path: inset(0 0 0 0);
  z-index: 0;
  will-change: transform, opacity, filter, clip-path;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-slide.is-outgoing {
  opacity: 1;
  z-index: 2;
}

.hero-slide.is-incoming {
  z-index: 3;
}

/* 1 → 2: premium side wipe */
.hero-slide.fx-wipe-in {
  opacity: 1;
  clip-path: inset(0 0 0 100%);
  transform: translate3d(8%, 0, 0) scale(1.04);
}

.hero-slide.fx-wipe-out {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transform: translate3d(0, 0, 0) scale(1);
}

.hero-slide.is-animating.fx-wipe-in {
  clip-path: inset(0 0 0 0);
  transform: translate3d(0, 0, 0) scale(1);
  transition:
    clip-path 0.95s cubic-bezier(0.65, 0.05, 0.36, 1),
    transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slide.is-animating.fx-wipe-out {
  clip-path: inset(0 100% 0 0);
  transform: translate3d(-6%, 0, 0) scale(1.02);
  transition:
    clip-path 0.95s cubic-bezier(0.65, 0.05, 0.36, 1),
    transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
}

/* 2 → 3: soft blur crossfade */
.hero-slide.fx-soft-in {
  opacity: 0;
  transform: scale(1.1);
  filter: blur(10px);
}

.hero-slide.fx-soft-out {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

.hero-slide.is-animating.fx-soft-in {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
  transition:
    opacity 0.9s ease,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.9s ease;
}

.hero-slide.is-animating.fx-soft-out {
  opacity: 0;
  transform: scale(0.94);
  filter: blur(6px);
  transition:
    opacity 0.9s ease,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.9s ease;
}

/* 3 → 4: cinematic zoom */
.hero-slide.fx-zoom-in {
  opacity: 0;
  transform: scale(1.28);
}

.hero-slide.fx-zoom-out {
  opacity: 1;
  transform: scale(1);
}

.hero-slide.is-animating.fx-zoom-in {
  opacity: 1;
  transform: scale(1);
  transition:
    opacity 0.75s ease,
    transform 1.05s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-slide.is-animating.fx-zoom-out {
  opacity: 0;
  transform: scale(1.12);
  transition:
    opacity 0.75s ease,
    transform 1.05s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 4 → 1: vertical rise / reverse curtain */
.hero-slide.fx-rise-in {
  opacity: 1;
  clip-path: inset(100% 0 0 0);
  transform: translate3d(0, 10%, 0) scale(1.05);
}

.hero-slide.fx-rise-out {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transform: translate3d(0, 0, 0) scale(1);
}

.hero-slide.is-animating.fx-rise-in {
  clip-path: inset(0 0 0 0);
  transform: translate3d(0, 0, 0) scale(1);
  transition:
    clip-path 0.95s cubic-bezier(0.65, 0.05, 0.36, 1),
    transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slide.is-animating.fx-rise-out {
  clip-path: inset(0 0 100% 0);
  transform: translate3d(0, -8%, 0) scale(1.03);
  transition:
    clip-path 0.95s cubic-bezier(0.65, 0.05, 0.36, 1),
    transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 72% 64% at 50% 48%,
      rgba(18, 20, 22, 0.42) 0%,
      rgba(18, 20, 22, 0.55) 100%
    ),
    linear-gradient(
      180deg,
      rgba(18, 20, 22, 0.38) 0%,
      rgba(18, 20, 22, 0.48) 42%,
      rgba(18, 20, 22, 0.58) 100%
    );
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
  transform: translateY(100px);
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1040px;
  width: 100%;
  min-width: 0;
  margin: 0 auto;
  padding: 0 12px;
  text-align: center;
}

.hero .eyebrow {
  color: var(--brass-light);
  margin: 0 0 16px;
  animation: hero-fade-up-soft 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.hero-content h1,
.hero-content .hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 1;
  margin: 0 0 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  perspective: 700px;
  max-width: 100%;
  width: 100%;
  gap: 0;
}

.hero-title-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  column-gap: 0.28em;
  row-gap: 0;
  max-width: 100%;
  line-height: 1;
  transform-style: preserve-3d;
}

.hero-title-word {
  display: inline-block;
  white-space: nowrap;
  line-height: 1;
}

.hero-title-line > .hero-letter--space {
  display: none;
}

.hero-title-line--accent,
.hero-title-line--accent .hero-letter {
  color: var(--brass);
}

.hero-letter {
  display: inline-block;
  opacity: 0;
  font: inherit;
  letter-spacing: inherit;
  line-height: 1;
  vertical-align: baseline;
  will-change: transform, opacity, filter;
  animation: hero-letter-in 0.85s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: calc(0.32s + (var(--i) * 0.048s));
}

.hero-letter--space {
  width: 0.32em;
}

.hero-content h1 .highlight {
  color: var(--brass);
}

.hero-desc {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.84);
  max-width: 46ch;
  margin: 0 auto 32px;
  animation: hero-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) 2.05s both;
}

.hero-actions {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 32px;
  animation: hero-fade-up 0.6s cubic-bezier(0.22, 1, 0.36, 1) 2.35s both;
}

.hero-actions .hero-btn {
  font-family: 'DM Sans', system-ui, sans-serif;
  height: 52px;
  padding: 0 26px;
  min-width: 168px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  border-radius: 6px;
  border-width: 1px;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.28s ease,
    border-color 0.28s ease,
    color 0.28s ease,
    box-shadow 0.28s ease;
}

.hero-actions .btn-primary {
  background: var(--button);
  color: var(--button-text);
  border-color: var(--button);
  box-shadow: 0 8px 20px rgba(253, 201, 0, 0.28);
}

.hero-actions .btn-primary:hover {
  background: var(--button-hover);
  border-color: var(--button-hover);
  color: var(--button-text);
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(253, 201, 0, 0.34);
}

.hero-actions .btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(253, 201, 0, 0.24);
}

.hero-btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: none;
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-3px);
}

.hero-btn-secondary:active {
  transform: translateY(0);
}

@keyframes hero-fade-up-soft {
  from {
    opacity: 0;
    transform: translate3d(0, 14px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes hero-letter-in {
  0% {
    opacity: 0;
    transform: translate3d(0, 42px, 0) scale(0.72) rotateX(28deg);
    filter: blur(8px);
    text-shadow: 0 0 0 transparent;
  }
  55% {
    opacity: 1;
    filter: blur(0);
  }
  75% {
    transform: translate3d(0, -4px, 0) scale(1.04) rotateX(0deg);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1) rotateX(0deg);
    filter: blur(0);
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  }
}

@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.hero-specs {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
}

.hero-spec {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.hero-spec-value,
.hero-spec-label {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.3;
}

.hero-spec-value {
  color: var(--white);
}

.hero-spec-label {
  font-weight: 500;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.62);
}

.hero-spec-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.22);
  align-self: stretch;
}

.hero-dots {
  position: absolute;
  top: 50%;
  right: 22px;
  left: auto;
  bottom: auto;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.hero-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.hero-dot::after {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: height 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.hero-dot.is-active::after {
  height: 22px;
  width: 7px;
  background: var(--brass);
  box-shadow: none;
}

.hero-dot:hover::after,
.hero-dot:focus-visible::after {
  background: rgba(255, 255, 255, 0.7);
}

.hero-dot.is-active:hover::after,
.hero-dot.is-active:focus-visible::after {
  background: var(--brass-light);
}

.hero-dot:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 2px;
  border-radius: 999px;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-slide.is-animating,
  .hero-slide.is-animating.fx-wipe-in,
  .hero-slide.is-animating.fx-wipe-out,
  .hero-slide.is-animating.fx-soft-in,
  .hero-slide.is-animating.fx-soft-out,
  .hero-slide.is-animating.fx-zoom-in,
  .hero-slide.is-animating.fx-zoom-out,
  .hero-slide.is-animating.fx-rise-in,
  .hero-slide.is-animating.fx-rise-out {
    transform: none;
    filter: none;
    clip-path: none;
    transition: opacity 0.4s ease;
  }

  .hero .eyebrow,
  .hero-content h1,
  .hero-desc,
  .hero-actions,
  .hero-letter {
    animation: none;
    opacity: 1;
    transform: none;
    filter: none;
  }

  .hero-dot::after {
    transition: none;
  }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Stats Bar Ã¢â€â‚¬Ã¢â€â‚¬ */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 0;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  position: relative;
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--line);
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.stat:last-child { border-right: none; }

.stats-bar.is-inview .stat {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.stats-bar.is-inview .stat:nth-child(1) { transition-delay: 0s; }
.stats-bar.is-inview .stat:nth-child(2) { transition-delay: 0.11s; }
.stats-bar.is-inview .stat:nth-child(3) { transition-delay: 0.22s; }
.stats-bar.is-inview .stat:nth-child(4) { transition-delay: 0.33s; }

.stats-bar.is-ready .stat {
  will-change: auto;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0s;
}

.stat-headline {
  position: relative;
  display: block;
  margin-bottom: 6px;
}

.stat-headline .stat-num {
  margin-bottom: 0;
  line-height: 1;
}

.stat-kicker {
  position: absolute;
  top: 3px;
  right: calc(90% + 8px);
  max-width: 7.4em;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass-dark);
  margin: 0;
  line-height: 1.25;
  text-align: right;
}

@media (max-width: 1024px) {
  .stat-kicker {
    position: static;
    display: block;
    right: auto;
    max-width: none;
    margin: 0 0 8px;
    text-align: center;
  }
}

.stat-num {
  font-size: 28px;
  color: var(--navy);
  display: block;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}

.stat-num.small {
  font-size: 18px;
  font-family: 'JetBrains Mono', monospace;
  opacity: 0;
  transform: translate3d(0, 8px, 0);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.stats-bar.is-inview .stat .stat-num.small {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.stats-bar.is-inview .stat:nth-child(2) .stat-num.small { transition-delay: 0.2s; }
.stats-bar.is-inview .stat:nth-child(3) .stat-num.small { transition-delay: 0.31s; }

.stats-bar.is-ready .stat-num.small {
  transition: none;
  transition-delay: 0s;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

@media (hover: hover) and (pointer: fine) {
  .stats-bar.is-ready .stat:hover {
    z-index: 1;
    transform: translate3d(0, -4px, 0) scale(1.015);
  }
}

@media (prefers-reduced-motion: reduce) {
  .stats-bar .stat,
  .stats-bar .stat-num.small,
  .stats-bar.is-inview .stat,
  .stats-bar.is-inview .stat .stat-num.small,
  .stats-bar.is-ready .stat {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }

  .stats-bar.is-ready .stat:hover {
    transform: none;
  }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Intro Ã¢â€â‚¬Ã¢â€â‚¬ */
.intro {
  padding: 80px 0;
  background: var(--paper-warm);
}

.intro-text {
  font-size: clamp(20px, 3vw, 26px);
  line-height: 1.55;
  color: var(--navy);
  max-width: 900px;
  margin: 0;
  font-weight: 500;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Sections Ã¢â€â‚¬Ã¢â€â‚¬ */
.section {
  padding: 100px 0;
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-dark .section-title { color: var(--white); }
.section-dark .section-lead { color: rgba(255, 255, 255, 0.7); }
.section-dark .eyebrow { color: var(--brass-light); }

.section-header {
  margin-bottom: 56px;
}

.section-header.center { text-align: center; }

/* ── Featured Services Showcase (homepage) ── */
.featured-services {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(ellipse 72% 52% at 6% -8%, rgba(253, 201, 0, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 48% 42% at 100% 108%, rgba(255, 255, 255, 0.04) 0%, transparent 58%),
    linear-gradient(168deg, #16191c 0%, #111416 46%, #0d0f11 100%);
  color: rgba(255, 255, 255, 0.88);
}

.featured-services > .container {
  position: relative;
  z-index: 2;
}

.svc-show-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.svc-show-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 40px 40px, 40px 40px, 160px 160px, 160px 160px;
  -webkit-mask-image: radial-gradient(ellipse 88% 82% at 50% 36%, #000 12%, transparent 78%);
  mask-image: radial-gradient(ellipse 88% 82% at 50% 36%, #000 12%, transparent 78%);
}

.svc-show-draw {
  position: absolute;
  pointer-events: none;
}

.svc-show-draw--frame {
  top: 10%;
  right: 3%;
  width: min(42%, 520px);
  height: 54%;
  border: 1px solid rgba(255, 255, 255, 0.055);
  background-image:
    linear-gradient(90deg, transparent 32.9%, rgba(255, 255, 255, 0.045) 32.9%, rgba(255, 255, 255, 0.045) 33.1%, transparent 33.1%, transparent 65.9%, rgba(255, 255, 255, 0.045) 65.9%, rgba(255, 255, 255, 0.045) 66.1%, transparent 66.1%),
    linear-gradient(180deg, transparent 24.9%, rgba(253, 201, 0, 0.07) 24.9%, rgba(253, 201, 0, 0.07) 25.1%, transparent 25.1%, transparent 49.9%, rgba(255, 255, 255, 0.04) 49.9%, rgba(255, 255, 255, 0.04) 50.1%, transparent 50.1%, transparent 74.9%, rgba(255, 255, 255, 0.04) 74.9%, rgba(255, 255, 255, 0.04) 75.1%, transparent 75.1%);
  opacity: 0.85;
}

.svc-show-draw--beam {
  top: 22%;
  left: -8%;
  width: 58%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1) 30%, rgba(253, 201, 0, 0.12) 58%, transparent);
  transform: rotate(-11deg);
  transform-origin: left center;
}

.svc-show-draw--circle {
  bottom: 7%;
  left: 5%;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 50%;
  outline: 1px solid rgba(255, 255, 255, 0.03);
  outline-offset: 32px;
}

.svc-show-draw--circle::before,
.svc-show-draw--circle::after {
  content: '';
  position: absolute;
  background: rgba(255, 255, 255, 0.055);
}

.svc-show-draw--circle::before {
  top: 12%;
  bottom: 12%;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
}

.svc-show-draw--circle::after {
  left: 12%;
  right: 12%;
  top: 50%;
  height: 1px;
  transform: translateY(-50%);
}

.svc-show-draw--diamond {
  top: 18%;
  right: 16%;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(253, 201, 0, 0.12);
  transform: rotate(45deg);
}

.svc-show-draw--ticks {
  top: 22px;
  left: 0;
  right: 0;
  height: 14px;
  background-image:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 8px),
    repeating-linear-gradient(90deg, rgba(253, 201, 0, 0.22) 0 1px, transparent 1px 40px);
  opacity: 0.28;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.svc-show-draw--ticks-y {
  top: 0;
  bottom: 0;
  left: 22px;
  width: 14px;
  background-image:
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 8px),
    repeating-linear-gradient(180deg, rgba(253, 201, 0, 0.2) 0 1px, transparent 1px 40px);
  opacity: 0.24;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 8%, #000 92%, transparent);
}

.svc-show-corner {
  position: absolute;
  z-index: 1;
  width: 28px;
  height: 28px;
  border-color: rgba(253, 201, 0, 0.32);
  border-style: solid;
  pointer-events: none;
}

.svc-show-corner--tl { top: 20px; left: 20px; border-width: 1px 0 0 1px; }
.svc-show-corner--tr { top: 20px; right: 20px; border-width: 1px 1px 0 0; }
.svc-show-corner--bl { bottom: 20px; left: 20px; border-width: 0 0 1px 1px; }
.svc-show-corner--br { bottom: 20px; right: 20px; border-width: 0 1px 1px 0; }

.svc-show-header {
  margin-bottom: 72px;
}

.svc-show-tech {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.svc-show-tech-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  white-space: nowrap;
}

.svc-show-tech-rule {
  display: block;
  width: 56px;
  height: 1px;
  background: var(--brass);
  opacity: 0.75;
}

.svc-show-header .eyebrow {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.18em;
}

.svc-show-header-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 40px 64px;
  align-items: end;
}

.svc-show-header .section-title {
  margin: 0;
  max-width: 14ch;
  color: #f5f5f3;
  font-weight: 700;
}

.svc-show-lead {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(196, 200, 204, 0.72);
  max-width: 42ch;
  padding-bottom: 6px;
}

.svc-show-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.svc-show-item {
  position: relative;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px 40px;
  padding: 48px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: inherit;
  overflow: visible;
  transform: none;
  transition: border-color 0.4s ease;
}

.svc-show-item::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 50%;
  height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  z-index: 1;
}

.svc-show-item::after {
  content: none;
}

.svc-show-item.reveal {
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.svc-show-item:hover,
.svc-show-item:focus-visible,
.featured-services .svc-show-item:hover,
.featured-services .svc-show-item:focus-visible {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
  padding-top: 48px;
  padding-bottom: 48px;
  grid-template-columns: 88px minmax(0, 1fr) auto;
  transform: none;
  outline: none;
}

.svc-show-item:hover::before,
.svc-show-item:focus-visible::before {
  transform: scaleX(1);
}

.svc-show-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  font-variant-numeric: tabular-nums;
  color: rgba(255, 255, 255, 0.38);
  transition: color 0.35s ease;
  align-self: start;
  padding-top: 6px;
}

.svc-show-item:hover .svc-show-num,
.svc-show-item:focus-visible .svc-show-num {
  color: var(--brass);
}

.svc-show-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.svc-show-cat {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 12px;
  opacity: 0.85;
}

.svc-show-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #f4f4f2;
  margin: 0;
  transition: color 0.35s ease;
}

.svc-show-item:hover .svc-show-title,
.svc-show-item:focus-visible .svc-show-title {
  color: #ffffff;
}

.svc-show-desc {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(176, 181, 186, 0.82);
  max-width: 46ch;
}

.svc-show-visual {
  display: none;
}

.svc-show-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-shrink: 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  white-space: nowrap;
  align-self: center;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: transparent;
  box-shadow: none;
  transition:
    color 0.35s ease,
    gap 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.svc-show-action-arrow {
  display: inline-block;
  font-size: 13px;
  line-height: 1;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.35s ease;
}

.svc-show-item:hover .svc-show-action,
.svc-show-item:focus-visible .svc-show-action {
  color: var(--button-text);
  gap: 12px;
  background: var(--button);
  border-color: var(--button);
  box-shadow: 0 8px 20px rgba(253, 201, 0, 0.28);
}

.svc-show-item:hover .svc-show-action-arrow,
.svc-show-item:focus-visible .svc-show-action-arrow {
  color: var(--button-text);
  transform: translateX(4px);
}

.svc-show-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 56px;
}

.svc-orb {
  --orb-size: 172px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--orb-size);
  height: var(--orb-size);
  aspect-ratio: 1;
  border-radius: 50%;
  color: var(--white);
  isolation: isolate;
  flex-shrink: 0;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.svc-orb::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #1a1d20;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.32);
  transition:
    border-color 0.4s ease,
    background 0.4s ease,
    box-shadow 0.4s ease;
}

.svc-orb-fill {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 50%;
  background: #25292d;
  transform: scale(0);
  transform-origin: center;
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.4s ease;
}

.svc-orb-ring {
  position: absolute;
  inset: 11px;
  z-index: 1;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  pointer-events: none;
  transition:
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s ease;
}

.svc-orb-tick {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brass);
  transform: translateX(-50%);
  z-index: 2;
  transition: background 0.4s ease, transform 0.45s ease;
}

.svc-orb-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  padding: 18px;
}

.svc-orb-kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  white-space: nowrap;
  transition: color 0.4s ease;
}

.svc-orb-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.svc-orb-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #f4f4f2;
  transition: color 0.4s ease;
}

.svc-orb-arrow {
  display: flex;
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.72);
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.4s ease;
}

.svc-orb-arrow svg {
  width: 100%;
  height: 100%;
}

.svc-orb:hover,
.svc-orb:focus-visible {
  transform: translateY(-3px);
  outline: none;
}

.svc-orb:focus-visible {
  box-shadow: 0 0 0 2px #111416, 0 0 0 4px var(--brass);
}

.svc-orb:hover::before,
.svc-orb:focus-visible::before {
  border-color: var(--button);
  background: var(--button);
  box-shadow: 0 8px 20px rgba(253, 201, 0, 0.28);
}

.svc-orb:hover .svc-orb-ring,
.svc-orb:focus-visible .svc-orb-ring {
  border-color: rgba(34, 34, 34, 0.28);
  transform: rotate(80deg);
}

.svc-orb:hover .svc-orb-fill,
.svc-orb:focus-visible .svc-orb-fill {
  background: var(--button);
  transform: scale(1);
}

.svc-orb:hover .svc-orb-tick,
.svc-orb:focus-visible .svc-orb-tick {
  background: var(--button-text);
  transform: translateX(-50%) scale(1.2);
}

.svc-orb:hover .svc-orb-kicker,
.svc-orb:focus-visible .svc-orb-kicker {
  color: var(--button-text);
}

.svc-orb:hover .svc-orb-title,
.svc-orb:focus-visible .svc-orb-title {
  color: var(--button-text);
}

.svc-orb:hover .svc-orb-arrow,
.svc-orb:focus-visible .svc-orb-arrow {
  color: var(--button-text);
  transform: translateX(4px);
}

@media (hover: none) {
  .svc-show-item:hover,
  .svc-show-item:focus-visible,
  .featured-services .svc-show-item:hover,
  .featured-services .svc-show-item:focus-visible {
    grid-template-columns: 88px minmax(0, 1fr) auto;
    transform: none;
    background: transparent;
    box-shadow: none;
  }

  .svc-show-item::before {
    transform: scaleX(0);
  }

  .svc-show-action {
    color: rgba(255, 255, 255, 0.55);
  }
}

.fee {
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
}

/* ── How It Works — engineering workflow timeline ── */
.workflow {
  position: relative;
  background: var(--paper-warm);
  padding: 112px 0 120px;
  overflow: hidden;
}

.workflow-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(34, 38, 40, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 38, 40, 0.035) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.workflow > .container {
  position: relative;
  z-index: 1;
}

.workflow-header {
  margin-bottom: 28px;
}

.workflow-header .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-size: clamp(12px, 2.4vw, 20px);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 18px;
  /* padding: 10px 22px; */
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(253, 201, 0, 0.28), rgba(253, 201, 0, 0.12));
  box-shadow:
    inset 0 0 0 1px rgba(253, 201, 0, 0.55),
    0 8px 22px rgba(253, 201, 0, 0.16);
}

.workflow-header .eyebrow::before,
.workflow-header .eyebrow::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brass);
  box-shadow: 0 0 0 4px rgba(253, 201, 0, 0.18);
  flex-shrink: 0;
}

.workflow-header .section-title {
  margin-top: 4px;
}

.workflow-header .section-lead {
  margin-bottom: 0;
}

.workflow-header::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  margin: 16px auto 0;
  background: var(--navy);
  opacity: 0.22;
}

.workflow-frame {
  --wf-title-row: 3.75em;
  --wf-node-row: 56px;
  --wf-ease: 450ms ease;
  position: relative;
  padding: 8px 4px 20px;
}

.workflow-frame.reveal {
  transform: none;
}

.workflow-tick {
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: var(--navy);
  border-style: solid;
  opacity: 0.28;
  pointer-events: none;
}

.workflow-tick--tl { top: 0; left: 0; border-width: 1px 0 0 1px; }
.workflow-tick--tr { top: 0; right: 0; border-width: 1px 1px 0 0; }
.workflow-tick--bl { bottom: 0; left: 0; border-width: 0 0 1px 1px; }
.workflow-tick--br { bottom: 0; right: 0; border-width: 0 1px 1px 0; }

.workflow-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin: 0 8px 28px;
}

.workflow-meta-rule {
  flex: 1;
  height: 1px;
  background: var(--navy);
  opacity: 0.12;
}

.workflow-rail {
  position: absolute;
  left: 10%;
  width: 80%;
  top: calc(32px + 1.2em + 28px + var(--wf-title-row) + (var(--wf-node-row) / 2));
  height: 2px;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}

.workflow-rail-base,
.workflow-rail-progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
}

.workflow-rail-base {
  width: 100%;
  background: var(--navy);
  opacity: 0.16;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.12s;
}

.workflow-frame.visible .workflow-rail-base {
  transform: scaleX(1);
}

.workflow-rail-progress {
  width: 100%;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.28s;
}

.workflow-frame.visible .workflow-rail-progress {
  transform: scaleX(1);
}

.workflow-arrows {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.workflow-arrows span {
  width: 6px;
  height: 6px;
  border-top: 1.5px solid var(--brass-dark);
  border-right: 1.5px solid var(--brass-dark);
  transform: rotate(45deg);
  opacity: 0;
  flex-shrink: 0;
}

.workflow-frame.visible .workflow-arrows span {
  opacity: 0.85;
  transition: opacity 0.4s ease;
}

.workflow-frame.visible .workflow-arrows span:nth-child(1) { transition-delay: 0.45s; }
.workflow-frame.visible .workflow-arrows span:nth-child(2) { transition-delay: 0.55s; }
.workflow-frame.visible .workflow-arrows span:nth-child(3) { transition-delay: 0.65s; }
.workflow-frame.visible .workflow-arrows span:nth-child(4) { transition-delay: 0.75s; }

.workflow-stages {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  column-gap: 28px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.workflow-stage {
  min-width: 0;
  opacity: 0;
  transform: translateY(20px);
}

.workflow-frame.visible .workflow-stage {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.workflow-frame.visible .workflow-stage:nth-child(1) { transition-delay: 0.18s; }
.workflow-frame.visible .workflow-stage:nth-child(2) { transition-delay: 0.28s; }
.workflow-frame.visible .workflow-stage:nth-child(3) { transition-delay: 0.38s; }
.workflow-frame.visible .workflow-stage:nth-child(4) { transition-delay: 0.48s; }
.workflow-frame.visible .workflow-stage:nth-child(5) { transition-delay: 0.58s; }

.workflow-hit {
  display: grid;
  grid-template-rows: var(--wf-title-row) var(--wf-node-row) 1fr;
  justify-items: center;
  align-items: start;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
}

.workflow-title {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  max-width: none;
  min-height: var(--wf-title-row);
  margin: 0;
  padding: 0 4px 4px;
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--heading);
  text-align: center;
  transition: color 0.28s ease;
}

.workflow-node {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 52px;
  height: var(--wf-node-row);
  background: var(--paper-warm);
}

.workflow-node::before {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border: 1px solid var(--navy);
  border-radius: 50%;
  opacity: 0.16;
  transition:
    border-color 0.35s ease,
    opacity 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.workflow-node::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(253, 201, 0, 0.55);
  opacity: 0;
  transform: scale(0.7);
  pointer-events: none;
}

.workflow-num {
  position: relative;
  z-index: 1;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--navy);
  background: var(--paper-warm);
  padding: 0 7px;
  opacity: 0;
  transform: scale(0.55) rotate(-8deg);
  transition: color 0.35s ease, transform 0.35s ease;
}

.workflow-frame.visible .workflow-num {
  opacity: 1;
  transform: none;
  animation: wf-num-pop 0.65s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.workflow-frame.visible .workflow-stage:nth-child(1) .workflow-num { animation-delay: 0.22s; }
.workflow-frame.visible .workflow-stage:nth-child(2) .workflow-num { animation-delay: 0.34s; }
.workflow-frame.visible .workflow-stage:nth-child(3) .workflow-num { animation-delay: 0.46s; }
.workflow-frame.visible .workflow-stage:nth-child(4) .workflow-num { animation-delay: 0.58s; }
.workflow-frame.visible .workflow-stage:nth-child(5) .workflow-num { animation-delay: 0.7s; }

.workflow-frame.visible .workflow-node::before {
  animation: wf-ring-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.workflow-frame.visible .workflow-stage:nth-child(1) .workflow-node::before { animation-delay: 0.2s; }
.workflow-frame.visible .workflow-stage:nth-child(2) .workflow-node::before { animation-delay: 0.32s; }
.workflow-frame.visible .workflow-stage:nth-child(3) .workflow-node::before { animation-delay: 0.44s; }
.workflow-frame.visible .workflow-stage:nth-child(4) .workflow-node::before { animation-delay: 0.56s; }
.workflow-frame.visible .workflow-stage:nth-child(5) .workflow-node::before { animation-delay: 0.68s; }

.workflow-stage.is-lit .workflow-node::before {
  border-color: var(--brass);
  opacity: 1;
  transform: scale(1.08);
  box-shadow: 0 0 0 7px rgba(253, 201, 0, 0.14);
}

.workflow-stage.is-lit .workflow-node::after {
  animation: wf-ring-pulse 1.6s ease-out infinite;
}

.workflow-stage.is-lit .workflow-num {
  color: var(--brass-dark);
  transform: scale(1.08);
}

.workflow-hit:hover .workflow-node::before,
.workflow-hit:focus-within .workflow-node::before {
  border-color: var(--brass);
  opacity: 1;
  transform: scale(1.1);
  box-shadow: 0 0 0 7px rgba(253, 201, 0, 0.16);
}

.workflow-hit:hover .workflow-node::after,
.workflow-hit:focus-within .workflow-node::after {
  animation: wf-ring-pulse 1.4s ease-out infinite;
}

.workflow-hit:hover .workflow-num,
.workflow-hit:focus-within .workflow-num {
  color: var(--brass-dark);
  transform: scale(1.1);
}

.workflow-hit:hover .workflow-title,
.workflow-hit:focus-within .workflow-title {
  color: var(--navy);
}

@keyframes wf-num-pop {
  0% {
    opacity: 0;
    transform: scale(0.45) rotate(-12deg) translateY(10px);
  }
  70% {
    opacity: 1;
    transform: scale(1.12) rotate(2deg) translateY(0);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg) translateY(0);
  }
}

@keyframes wf-ring-in {
  0% {
    opacity: 0;
    transform: scale(0.4);
  }
  100% {
    opacity: 0.16;
    transform: scale(1);
  }
}

@keyframes wf-ring-pulse {
  0% {
    opacity: 0.55;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.55);
  }
}

.workflow-copy {
  position: relative;
  display: block;
  align-self: start;
  width: 100%;
  max-width: none;
  min-height: 6.8em;
  margin: 16px 0 0;
  padding: 14px 10px 12px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--slate);
  text-align: center;
  border-radius: 8px;
  background: transparent;
  opacity: 0;
  transform: translateY(0);
  transition:
    color 0.28s ease,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.28s ease,
    box-shadow 0.28s ease;
}

.workflow-copy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brass), transparent);
  transform: translateX(-50%);
  transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.28s ease;
}

.workflow-frame.visible .workflow-copy {
  opacity: 1;
  animation: wf-copy-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.workflow-frame.visible .workflow-stage:nth-child(1) .workflow-copy { animation-delay: 0.38s; }
.workflow-frame.visible .workflow-stage:nth-child(2) .workflow-copy { animation-delay: 0.5s; }
.workflow-frame.visible .workflow-stage:nth-child(3) .workflow-copy { animation-delay: 0.62s; }
.workflow-frame.visible .workflow-stage:nth-child(4) .workflow-copy { animation-delay: 0.74s; }
.workflow-frame.visible .workflow-stage:nth-child(5) .workflow-copy { animation-delay: 0.86s; }

.workflow-frame.visible .workflow-copy::before {
  width: 36px;
  transition-delay: 0.55s;
}

.workflow-stage.is-lit .workflow-copy {
  color: var(--navy);
  transform: translateY(-2px);
  background: rgba(253, 201, 0, 0.06);
}

.workflow-stage.is-lit .workflow-copy::before {
  width: 56px;
  height: 2px;
  background: var(--brass);
}

.workflow-stage.is-lit .workflow-title {
  color: var(--navy);
}

.workflow-hit:hover .workflow-copy,
.workflow-hit:focus-within .workflow-copy {
  color: var(--navy);
  transform: translateY(-5px);
  background: rgba(253, 201, 0, 0.1);
  box-shadow: 0 10px 28px rgba(34, 38, 40, 0.08);
}

.workflow-hit:hover .workflow-copy::before,
.workflow-hit:focus-within .workflow-copy::before {
  width: 64px;
  background: var(--brass);
  transition-delay: 0s;
}

@keyframes wf-copy-rise {
  0% {
    opacity: 0;
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}

@media (min-width: 1280px) {
  .workflow-stages {
    column-gap: 36px;
  }

  .workflow-title {
    font-size: 15px;
  }

  .workflow-copy {
    font-size: 13.5px;
  }
}

@media (max-width: 1100px) {
  .workflow {
    padding: 88px 0 96px;
  }

  .workflow-frame {
    --wf-title-row: auto;
    --wf-node-row: 44px;
    padding: 8px 0 0;
  }

  .workflow-tick {
    display: none;
  }

  .workflow-meta {
    margin: 0 0 32px;
  }

  .workflow-rail {
    left: 21px;
    right: auto;
    top: 64px;
    bottom: 28px;
    width: 1px;
    height: auto;
  }

  .workflow-rail-base,
  .workflow-rail-progress {
    width: 1px;
    height: 100%;
  }

  .workflow-rail-base {
    transform: scaleY(0);
    transform-origin: top center;
  }

  .workflow-frame.visible .workflow-rail-base {
    transform: scaleY(1);
  }

  .workflow-rail-progress {
    width: 1px;
    height: 100%;
    transform: scaleY(0);
    transform-origin: top center;
  }

  .workflow-frame.visible .workflow-rail-progress {
    transform: scaleY(1);
  }

  .workflow-arrows {
    flex-direction: column;
    justify-content: space-around;
  }

  .workflow-arrows span {
    transform: rotate(135deg);
  }

  .workflow-stages {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .workflow-hit {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 20px;
    justify-items: start;
    text-align: left;
    padding: 0 0 36px;
  }

  .workflow-title {
    grid-column: 2;
    grid-row: 1;
    display: block;
    min-height: 0;
    max-width: none;
    align-items: flex-start;
    justify-content: flex-start;
    font-size: 18px;
    padding: 8px 0 0;
    text-align: left;
  }

  .workflow-node {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 44px;
    align-self: start;
    background: var(--paper-warm);
  }

  .workflow-num {
    transform: none;
    font-size: 15px;
  }

  .workflow-node::before {
    width: 36px;
    height: 36px;
  }

  .workflow-copy {
    grid-column: 2;
    grid-row: 2;
    max-width: none;
    min-height: 0;
    margin-top: 8px;
    padding: 0;
    font-size: 14px;
    text-align: left;
  }

  .workflow-stage:last-child .workflow-hit {
    padding-bottom: 8px;
  }
}

@media (max-width: 720px) {
  .workflow {
    padding: 72px 0 80px;
  }

  .workflow-header {
    margin-bottom: 24px;
  }

  .workflow-title {
    font-size: 16px;
  }

  .workflow-copy {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .workflow-rail-base,
  .workflow-rail-progress,
  .workflow-arrows span,
  .workflow-stage {
    transition: none;
  }

  .workflow-rail-base,
  .workflow-rail-progress,
  .workflow-frame.visible .workflow-rail-base,
  .workflow-frame.visible .workflow-rail-progress {
    transform: none;
  }

  .workflow-arrows span,
  .workflow-frame.visible .workflow-arrows span {
    opacity: 0.85;
  }

  .workflow-stage,
  .workflow-frame.visible .workflow-stage {
    opacity: 1;
    transform: none;
  }

  .workflow-num,
  .workflow-frame.visible .workflow-num,
  .workflow-node::before,
  .workflow-frame.visible .workflow-node::before,
  .workflow-stage.is-lit .workflow-node::after,
  .workflow-copy,
  .workflow-frame.visible .workflow-copy {
    animation: none;
    opacity: 1;
    transform: none;
    filter: none;
  }

  .workflow-stage.is-lit .workflow-node::after {
    opacity: 0;
  }

  .workflow-copy::before {
    width: 36px;
    transition: none;
  }
}

/* ── Why Vanguard — editorial ── */
.why-section {
  position: relative;
  padding: 120px 0 132px;
  overflow: hidden;
}

.why-editorial {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 72px 80px;
  align-items: start;
}

.why-editorial.reveal {
  opacity: 1;
  transform: none;
}

.why-lead,
.why-point {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.why-editorial.visible .why-lead {
  opacity: 1;
  transform: none;
}

.why-editorial.visible .why-point:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0.14s;
}

.why-editorial.visible .why-point:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: 0.28s;
}

.why-lead {
  position: relative;
  z-index: 1;
  padding-top: 8px;
}

.why-mark {
  position: absolute;
  top: -0.18em;
  left: -0.12em;
  font-family: 'Syne', sans-serif;
  font-size: clamp(200px, 24vw, 340px);
  font-weight: 800;
  line-height: 0.72;
  letter-spacing: -0.08em;
  color: var(--brass);
  opacity: 0;
  pointer-events: none;
  user-select: none;
  transform: translateY(18px) scale(0.96);
  transition: opacity 1.2s ease 0.18s, transform 1.2s ease 0.18s;
}

.why-editorial.visible .why-mark {
  opacity: 0.09;
  transform: none;
}

.why-lead .eyebrow {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.why-lead .eyebrow::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--brass);
  margin-top: 18px;
}

.why-heading {
  position: relative;
  z-index: 1;
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--white);
  margin: 0;
}

.why-word {
  display: inline-block;
  margin-right: 0.28em;
  opacity: 0;
  transform: translateY(28px);
  will-change: transform, opacity, filter;
}

.why-word:last-child {
  margin-right: 0;
}

.why-editorial.is-inview .why-word {
  animation: why-word-in 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: calc(0.12s + (var(--i) * 0.16s));
}

@keyframes why-word-in {
  0% {
    opacity: 0;
    transform: translateY(28px) scale(0.92);
    filter: blur(5px);
  }
  70% {
    opacity: 1;
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.why-points {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.why-point {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 28px 36px;
  align-items: start;
  padding: 40px 0 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  transition:
    border-color 0.35s ease,
    background 0.35s ease,
    transform 0.35s ease;
}

.why-point:first-child {
  padding-top: 8px;
  border-top: none;
}

.why-point:last-child {
  padding-bottom: 0;
}

.why-point-num {
  font-size: clamp(52px, 6.4vw, 84px);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: var(--brass);
  display: block;
  padding-top: 4px;
  opacity: 0;
  transform: translateX(-18px) scale(0.7);
  transition: transform 0.35s ease, text-shadow 0.35s ease, color 0.35s ease;
}

.why-point-body {
  min-width: 0;
}

.why-point-body h3 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--white);
  margin: 0 0 14px;
  opacity: 0;
  transform: translateY(18px);
  transition: color 0.3s ease, transform 0.3s ease;
}

.why-point-body p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.62);
  margin: 0;
  max-width: 46ch;
  opacity: 0;
  transform: translateY(14px);
  transition: color 0.3s ease;
}

.why-editorial.visible .why-point:nth-child(1) .why-point-num {
  animation: why-num-in 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.18s both;
}

.why-editorial.visible .why-point:nth-child(2) .why-point-num {
  animation: why-num-in 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.36s both;
}

.why-editorial.visible .why-point:nth-child(1) .why-point-body h3 {
  animation: why-title-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

.why-editorial.visible .why-point:nth-child(2) .why-point-body h3 {
  animation: why-title-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.48s both;
}

.why-editorial.visible .why-point:nth-child(1) .why-point-body p {
  animation: why-copy-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.42s both;
}

.why-editorial.visible .why-point:nth-child(2) .why-point-body p {
  animation: why-copy-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.6s both;
}

.why-point:hover {
  transform: translateX(6px);
}

.why-point:hover .why-point-num {
  color: var(--brass-light);
  text-shadow: 0 0 24px rgba(253, 201, 0, 0.35);
  transform: scale(1.06);
}

.why-point:hover .why-point-body h3 {
  color: var(--brass-light);
  transform: translateY(-2px);
}

.why-point:hover .why-point-body p {
  color: rgba(255, 255, 255, 0.82);
}

@keyframes why-num-in {
  0% {
    opacity: 0;
    transform: translateX(-24px) scale(0.55) rotate(-8deg);
    filter: blur(4px);
  }
  70% {
    opacity: 1;
    filter: blur(0);
    transform: translateX(4px) scale(1.08) rotate(0deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1) rotate(0deg);
    filter: blur(0);
  }
}

@keyframes why-title-in {
  0% {
    opacity: 0;
    transform: translateY(22px);
    filter: blur(3px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes why-copy-in {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ About Ã¢â€â‚¬Ã¢â€â‚¬ */
.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.4fr) minmax(0, 0.6fr);
  gap: 60px;
  align-items: start;
}

.about-visual {
  position: sticky;
  top: calc(var(--header-h) + 40px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 3 / 4;
  background: var(--navy);
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-content .section-title { margin-bottom: 24px; }

.about-content p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0 0 20px;
}

.about-highlight {
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
  font-style: italic;
  border-left: 3px solid var(--brass);
  padding-left: 20px;
  margin: 32px 0;
}

.about-tagline {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-top: 32px;
}

.credentials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 14px;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--slate);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Locations Ã¢â€â‚¬Ã¢â€â‚¬ */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.location-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.location-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brass-dark);
  margin: 0 0 12px;
}

.location-card address {
  font-style: normal;
  font-size: 16px;
  line-height: 1.6;
  color: var(--navy);
  margin: 0;
}

.location-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 12px 0 0;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Contact Ã¢â€â‚¬Ã¢â€â‚¬ */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.contact-info p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 24px;
}

.contact-email {
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 4px;
  margin-bottom: 16px;
  transition: color var(--transition);
}

.contact-email:hover { color: var(--accent-hover); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(253, 201, 0, 0.25);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-note {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  margin: 16px 0 0;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Footer Ã¢â€â‚¬Ã¢â€â‚¬ */
.site-footer {
  position: relative;
  background: var(--secondary);
  color: var(--text-subtle);
}

.footer-accent {
  height: 3px;
  background: var(--primary);
}

.footer-main {
  position: relative;
  padding: 64px 0 56px;
}

.footer-main .container {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, minmax(0, 1fr)) minmax(0, 1.15fr);
  gap: 40px 28px;
  align-items: start;
}

.footer-brand .footer-logo-wrap {
  display: block;
  width: 92px;
  height: 92px;
  margin: 0 0 20px;
  overflow: hidden;
  border-radius: 50%;
  flex-shrink: 0;
  line-height: 0;
  background: var(--white);
}

.footer-brand .footer-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.2);
  transform-origin: center center;
}

.footer-desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  max-width: 320px;
  color: var(--text-subtle);
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid var(--secondary-mid);
}

.footer-col--nav {
  min-width: 0;
}

.footer-col h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 24px;
  padding: 0 0 14px;
  border-bottom: 1px solid var(--secondary-mid);
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 28px;
  height: 2px;
  background: var(--primary);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0;
}

.footer-links li:last-child { margin-bottom: 0; }

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--text-subtle);
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.footer-links a::before {
  content: '';
  width: 5px;
  height: 5px;
  border-right: 1.5px solid var(--primary);
  border-bottom: 1.5px solid var(--primary);
  transform: rotate(-45deg);
  opacity: 0.45;
  flex-shrink: 0;
  transition: opacity 0.25s ease, border-color 0.25s ease;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-links a:hover::before {
  opacity: 1;
  border-color: var(--primary);
}

.footer-col--nav .footer-links a {
  display: flex;
  width: 100%;
}

.footer-links a.footer-email,
.footer-links a.footer-contact-link,
.footer-links .footer-contact-link--static {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  padding: 7px 0;
  font-size: 15px;
  font-weight: 400;
  color: var(--text-subtle);
  line-height: 1.45;
}

.footer-links a.footer-email::before,
.footer-links a.footer-contact-link::before {
  display: none;
}

.footer-email-icon,
.footer-contact-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--primary);
  opacity: 0.7;
  transition: opacity 0.25s ease;
}

.footer-links a.footer-email:hover .footer-email-icon,
.footer-links a.footer-contact-link:hover .footer-contact-icon {
  opacity: 1;
}

.footer-links .footer-contact-link--static {
  cursor: default;
}

.footer-bottom {
  background: #1a1d1f;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px 32px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.015em;
  color: rgba(163, 173, 178, 0.92);
  line-height: 1.45;
}

.footer-copy {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  min-width: 0;
  margin: 0;
}

.footer-copy-text,
.footer-copy-credit {
  color: inherit;
}

.footer-copy-sep,
.footer-legal-sep {
  color: rgba(255, 255, 255, 0.2);
  user-select: none;
}

.footer-ittrp-link {
  color: var(--primary);
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-ittrp-link:hover {
 color: var(--primary);
}

.footer-legal-nav {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  flex-shrink: 0;
  gap: 8px 12px;
}

.footer-legal-nav a {
  color: rgba(163, 173, 178, 0.92);
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  transition: color 0.2s ease, background-size 0.2s ease;
}

.footer-legal-nav a:hover {
  color: var(--primary);
  background-size: 100% 1px;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Service Page Ã¢â€â‚¬Ã¢â€â‚¬ */
.page-hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  padding: calc(var(--header-h) + 60px) 0 80px;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../assets/images/breadcrumbs/breadcrumb-bg.jpg');
  background-size: cover;
  background-position: center 42%;
  background-repeat: no-repeat;
  opacity: 0.38;
  filter: grayscale(0.55) contrast(1.08);
  pointer-events: none;
}

.page-hero-grid-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(34, 38, 40, 0.72) 0%, rgba(34, 38, 40, 0.82) 100%);
}

.page-hero-grid-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 18% 70%, #000 12%, transparent 72%);
  mask-image: radial-gradient(ellipse 80% 70% at 18% 70%, #000 12%, transparent 72%);
  pointer-events: none;
}

.page-hero > .container {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
}

.breadcrumb a { color: var(--brass-light); }
.breadcrumb a:hover { text-decoration: underline; }

.page-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
  margin: 0 0 20px;
  max-width: 800px;
}

.page-hero-desc {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  max-width: 640px;
  margin: 0 0 32px;
}

.page-hero-meta {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.page-hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-hero-meta-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.page-hero-meta-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--brass-light);
}

@media (max-width: 900px) {
  .page-hero::before {
    background-position: center 40%;
  }
}

@media (max-width: 640px) {
  .page-hero::before {
    background-position: center 36%;
  }
}

.content-section { padding: 80px 0; }

.content-section:nth-child(even) { background: var(--paper-warm); }

.content-block { margin-bottom: 48px; }
.content-block:last-child { margin-bottom: 0; }

.content-block h2 {
  font-size: 28px;
  color: var(--navy);
  margin: 0 0 20px;
}

.content-block p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0 0 16px;
}

.content-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.content-block li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.content-block li::before {
  content: 'Ã¢Å“â€œ';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.content-block li.exclude::before {
  content: 'Ã¢â‚¬â€';
  color: var(--text-light);
}

.faq-list { display: flex; flex-direction: column; gap: 16px; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  transition: background var(--transition);
}

.faq-question:hover { background: var(--paper); }

.faq-question::after {
  content: '+';
  flex-shrink: 0;
  font-size: 20px;
  color: var(--brass);
  transition: transform var(--transition);
}

.faq-item.open .faq-question::after { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

.faq-item.open .faq-answer { max-height: 320px; }

/* FAQ page — Q&A grid */
.faq-page .faq-section {
  background: var(--paper-warm);
  padding: 64px 0 96px;
}

.faq-page .faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.faq-page .faq-item {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-page .faq-item:hover {
  border-color: #d8d8d8;
  box-shadow: var(--shadow-md);
}

.faq-page .faq-item.open {
  border-color: var(--navy);
}

.faq-page .faq-question {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  letter-spacing: -0.02em;
  line-height: 1.35;
  padding: 24px 24px 18px;
}

.faq-page .faq-answer-inner {
  padding: 0 24px 24px;
}

.faq-page .faq-item.open .faq-answer {
  max-height: 420px;
}

@media (max-width: 900px) {
  .faq-page .faq-section {
    padding: 48px 0 72px;
  }

  .faq-page .faq-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .faq-page .faq-section {
    padding: 40px 0 64px;
  }

  .faq-page .faq-question {
    font-size: 16px;
    padding: 20px 18px 16px;
  }

  .faq-page .faq-answer-inner {
    padding: 0 18px 20px;
  }
}

.cta-banner {
  background: var(--navy);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.cta-banner h2 {
  font-size: 32px;
  margin: 0 0 16px;
  color: var(--white);
}

.cta-banner p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 28px;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Animations Ã¢â€â‚¬Ã¢â€â‚¬ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .why-lead,
  .why-point {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .why-mark,
  .why-editorial.visible .why-mark {
    opacity: 0.09;
    transform: none;
    transition: none;
  }
  .why-point-num,
  .why-point-body h3,
  .why-point-body p,
  .why-editorial.visible .why-point-num,
  .why-editorial.visible .why-point-body h3,
  .why-editorial.visible .why-point-body p,
  .why-word,
  .why-editorial.visible .why-word,
  .why-editorial.is-inview .why-word {
    animation: none;
    opacity: 1;
    transform: none;
    filter: none;
  }
  .hero-actions .btn-primary:hover,
  .hero-btn-secondary:hover { transform: none; }
  .site-header,
  .nav-link,
  .nav-link::after,
  .nav-cta,
  .nav-toggle,
  .nav-toggle span,
  .main-nav { transition: none; }
  .nav-cta:hover { transform: none; }
  .contact-info-card,
  .contact-info-icon,
  .contact-info-icon svg,
  .contact-info-title,
  .contact-info-text { transition: none; }
  .contact-info-card:hover { transform: none; }
  .contact-info-card:hover .contact-info-icon,
  .contact-info-card:hover .contact-info-icon svg { transform: none; }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Responsive Ã¢â€â‚¬Ã¢â€â‚¬ */
@media (max-width: 1100px) {
  .main-nav { gap: 2px; }
  .nav-link { padding: 10px 8px; }
  .nav-link::after { left: 8px; right: 8px; }
  .nav-cta { margin-left: 6px; padding: 8px 12px; }
}

@media (max-width: 1024px) {
  .hero {
    padding: calc(var(--header-h) + 40px) 0 56px;
  }
  .hero-dots {
    right: 16px;
  }
  .hero-slide {
    background-position: 58% center;
  }
  .hero-overlay {
    background:
      radial-gradient(
        ellipse 80% 70% at 50% 48%,
        rgba(18, 20, 22, 0.44) 0%,
        rgba(18, 20, 22, 0.58) 100%
      ),
      linear-gradient(
        180deg,
        rgba(18, 20, 22, 0.36) 0%,
        rgba(18, 20, 22, 0.5) 100%
      );
  }
  .hero-content {
    max-width: 860px;
    padding: 0 8px;
  }
  .hero-inner {
    transform: translateY(88px);
  }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat { border-bottom: 1px solid var(--line); }
  .stat:nth-child(2) { border-right: none; }
  .svc-show-header-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .svc-show-header .section-title {
    max-width: none;
  }

  .svc-show-item {
    grid-template-columns: 64px minmax(0, 1fr) auto;
    gap: 16px 24px;
    padding: 40px 0;
  }

  .svc-show-item:hover,
  .svc-show-item:focus-visible,
  .featured-services .svc-show-item:hover,
  .featured-services .svc-show-item:focus-visible {
    grid-template-columns: 64px minmax(0, 1fr) auto;
    padding-top: 40px;
    padding-bottom: 40px;
    background: transparent;
    box-shadow: none;
  }

  .svc-show-draw--frame,
  .svc-show-draw--diamond {
    opacity: 0.45;
  }

  .why-editorial {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .why-lead {
    position: relative;
    padding-bottom: 4px;
  }
  .why-mark {
    font-size: clamp(140px, 38vw, 220px);
    top: -0.2em;
    left: -0.06em;
  }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual {
    position: static;
    max-width: 520px;
    width: 100%;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 48px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand .footer-logo-wrap {
    width: 84px;
    height: 84px;
  }
  .footer-desc { max-width: none; }
}

@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex: none;
    justify-content: stretch;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    border-bottom: 1px solid transparent;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      max-height 0.35s ease,
      opacity 0.25s ease,
      visibility 0.25s ease,
      padding 0.35s ease,
      border-color 0.25s ease,
      box-shadow 0.25s ease;
  }

  .main-nav.open {
    max-height: min(560px, calc(100vh - var(--header-h)));
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    overflow-y: auto;
    padding: 8px 0 20px;
    border-bottom-color: var(--line);
    box-shadow: 0 16px 40px rgba(34, 38, 40, 0.1);
  }

  .nav-link {
    padding: 16px 24px;
    border-bottom: 1px solid var(--line);
    color: var(--secondary);
  }

  .nav-link::after {
    left: 24px;
    right: auto;
    bottom: 12px;
    width: 24px;
    transform: scaleX(0);
    transform-origin: left center;
  }

  .nav-link:hover::after,
  .nav-link[aria-current="page"]::after {
    transform: scaleX(1);
  }

  .nav-link:hover,
  .nav-link[aria-current="page"] {
    background: var(--paper);
    color: var(--navy);
  }

  .nav-cta {
    margin: 16px 24px 4px;
    text-align: center;
    justify-content: center;
    display: flex;
    border-bottom: none;
    box-shadow: none;
    font-size: 11px;
    padding: 12px 18px;
  }

  .nav-cta:hover {
    transform: none;
    box-shadow: none;
  }

  .nav-cta::after { display: none; }

  .nav-toggle { display: flex; }

  .brand-logo-wrap {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--white);
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
    padding: calc(var(--header-h) + 32px) 0 56px;
  }

  .hero-dots {
    top: auto;
    right: auto;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    flex-direction: row;
    gap: 8px;
  }

  .hero-dot {
    width: 32px;
    height: 32px;
  }

  .hero-dot::after {
    width: 7px;
    height: 7px;
  }

  .hero-dot.is-active::after {
    width: 22px;
    height: 7px;
  }

  .hero-slide {
    background-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(18, 20, 22, 0.48) 0%,
        rgba(18, 20, 22, 0.58) 48%,
        rgba(18, 20, 22, 0.66) 100%
      );
  }

  .hero-content {
    max-width: none;
    padding: 0 2px;
  }

  .hero-inner {
    transform: translateY(20px);
  }

  .hero-content h1,
  .hero-content .hero-title {
    font-size: clamp(24px, 7vw, 34px);
    margin-bottom: 16px;
    letter-spacing: -0.03em;
  }

  .hero .eyebrow {
    max-width: 100%;
    white-space: normal;
    text-wrap: balance;
  }

  .hero-desc {
    font-size: 16px;
    margin: 0 auto 24px;
    max-width: 38ch;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
    width: 100%;
  }

  .hero-actions .hero-btn {
    width: min(100%, 320px);
    min-width: 0;
  }

  .hero-specs {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: 100%;
    max-width: 220px;
  }

  .hero-spec-divider {
    width: 32px;
    height: 1px;
    align-self: center;
  }

  .locations-grid,
  .contact-grid { grid-template-columns: 1fr; }

  .svc-show-header {
    margin-bottom: 44px;
  }

  .svc-show-tech {
    margin-bottom: 22px;
  }

  .svc-show-item {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 8px 16px;
    padding: 36px 0;
  }

  .svc-show-item:hover,
  .svc-show-item:focus-visible,
  .featured-services .svc-show-item:hover,
  .featured-services .svc-show-item:focus-visible {
    grid-template-columns: 44px minmax(0, 1fr);
    padding-top: 36px;
    padding-bottom: 36px;
    background: transparent;
    box-shadow: none;
  }

  .svc-show-num {
    font-size: 11px;
    padding-top: 6px;
  }

  .svc-show-title {
    font-size: clamp(20px, 5.5vw, 26px);
  }

  .svc-show-action {
    grid-column: 2;
    padding: 10px 20px;
    align-self: start;
    justify-self: start;
  }

  .svc-show-corner {
    width: 20px;
    height: 20px;
  }

  .svc-show-corner--tl { top: 12px; left: 12px; }
  .svc-show-corner--tr { top: 12px; right: 12px; }
  .svc-show-corner--bl { bottom: 12px; left: 12px; }
  .svc-show-corner--br { bottom: 12px; right: 12px; }

  .svc-show-draw--circle {
    width: 140px;
    height: 140px;
    outline-offset: 18px;
  }

  .svc-show-footer {
    justify-content: center;
    margin-top: 40px;
  }

  .svc-orb {
    --orb-size: 148px;
  }

  .svc-orb-title {
    font-size: 16px;
  }

  .stats-inner { grid-template-columns: 1fr; }
  .stat { border-right: none; }

  .why-section { padding: 80px 0 88px; }
  .why-editorial { gap: 48px; }
  .why-heading { font-size: clamp(28px, 8vw, 36px); }
  .why-point {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 32px 0 36px;
  }
  .why-point:first-child { padding-top: 0; }
  .why-point-num { font-size: 44px; padding-top: 0; }
  .why-point-body p { font-size: 15px; }

  .footer-main { padding: 48px 0 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand .footer-logo-wrap {
    width: 76px;
    height: 76px;
    margin-bottom: 16px;
  }
  .footer-bottom { padding: 18px 0; }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
  }
  .footer-copy {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
  .footer-copy-sep { display: none; }
  .footer-legal-nav {
    justify-content: center;
    gap: 8px 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .svc-show-item,
  .svc-show-item::before,
  .svc-show-item::after,
  .svc-show-visual,
  .svc-show-visual img,
  .svc-show-action,
  .svc-show-action-arrow,
  .svc-show-num,
  .svc-orb,
  .svc-orb::before,
  .svc-orb-fill,
  .svc-orb-ring,
  .svc-orb-tick,
  .svc-orb-kicker,
  .svc-orb-title,
  .svc-orb-arrow {
    transition: none;
  }

  .svc-show-item:hover,
  .svc-show-item:focus-visible,
  .featured-services .svc-show-item:hover,
  .featured-services .svc-show-item:focus-visible,
  .svc-show-item:hover .svc-show-action-arrow,
  .svc-show-item:focus-visible .svc-show-action-arrow,
  .svc-orb:hover,
  .svc-orb:focus-visible,
  .svc-orb:hover .svc-orb-ring,
  .svc-orb:focus-visible .svc-orb-ring,
  .svc-orb:hover .svc-orb-arrow,
  .svc-orb:focus-visible .svc-orb-arrow {
    transform: none;
  }

  .svc-show-item:hover::before,
  .svc-show-item:focus-visible::before {
    transform: scaleX(1);
  }

  .svc-orb:hover .svc-orb-fill,
  .svc-orb:focus-visible .svc-orb-fill {
    transform: scale(0);
  }

  .svc-orb:hover .svc-orb-tick,
  .svc-orb:focus-visible .svc-orb-tick {
    transform: translateX(-50%);
  }
}

/* Contact page — balanced 60/40 enquiry layout */
.contact-page .contact-hero {
  padding: calc(var(--header-h) + 36px) 0 40px;
}

.contact-page .contact-hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  height: 3px;
  background: var(--primary);
}

.contact-page .contact-hero .breadcrumb {
  margin-bottom: 14px;
}

.contact-page .contact-hero h1 {
  margin-bottom: 10px;
  max-width: none;
  white-space: nowrap;
}

.contact-page .contact-hero .page-hero-desc {
  font-size: 16px;
  line-height: 1.6;
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

/* Contact page — info cards (directly above FAQ CTA) */
.contact-info-section {
  background: var(--background);
  padding: 56px 0 28px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.contact-info-card {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 32px 24px 28px;
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-info-card:hover {
  border-color: rgba(253, 201, 0, 0.55);
  box-shadow: 0 14px 32px rgba(34, 38, 40, 0.1);
  transform: translateY(-6px);
}

.contact-info-card--accent {
  border-color: var(--line);
}

.contact-info-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(253, 201, 0, 0.14);
  color: var(--navy);
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.35s ease,
    color 0.35s ease,
    box-shadow 0.35s ease;
}

.contact-info-icon svg {
  width: 24px;
  height: 24px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-info-icon--solid {
  background: var(--navy);
  color: var(--white);
}

.contact-info-card:hover .contact-info-icon {
  transform: scale(1.08);
  background: var(--button);
  color: var(--button-text);
  box-shadow: 0 8px 18px rgba(253, 201, 0, 0.28);
}

.contact-info-card:hover .contact-info-icon--solid {
  background: var(--button);
  color: var(--button-text);
}

.contact-info-card:hover .contact-info-icon svg {
  transform: scale(1.06);
}

.contact-info-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--heading);
  margin: 0 0 8px;
  transition: color 0.35s ease;
}

.contact-info-card:hover .contact-info-title {
  color: var(--navy);
}

.contact-info-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
  word-break: break-word;
  transition: color 0.35s ease;
}

.contact-info-card:hover .contact-info-text,
.contact-info-card:hover .contact-info-text a {
  color: var(--text);
}

.contact-info-text a {
  color: var(--text-muted);
  transition: color var(--transition);
}

.contact-info-text a:hover {
  color: var(--navy);
}

.contact-page .contact-section {
  background: var(--paper-warm);
  padding: 56px 0 72px;
}

.contact-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  column-gap: 56px;
  row-gap: 48px;
  align-items: stretch;
}

/* Shared panel titles — keep both columns aligned */
.contact-panel-title {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--heading);
  margin: 0 0 10px;
}

.contact-panel-lead {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
  max-width: 42ch;
}

.contact-form-header,
.contact-aside-header {
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.contact-form-header .eyebrow,
.contact-aside-header .eyebrow {
  margin-bottom: 6px;
}

/* LEFT — enquiry panel */
.contact-page .contact-form {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
  box-shadow: none;
}

.contact-page .contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  border-radius: var(--radius) var(--radius) 0 0;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
}

.contact-page .form-group {
  margin-bottom: 16px;
}

.contact-page .form-group:last-of-type {
  margin-bottom: 20px;
}

.contact-page .form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}

.contact-page .form-group input,
.contact-page .form-group select,
.contact-page .form-group textarea {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.4;
  background: var(--white);
  border: 1px solid #e2e2e2;
  border-radius: var(--radius);
  color: var(--heading);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-page .form-group textarea {
  height: auto;
  min-height: 96px;
  padding: 10px 12px;
  resize: vertical;
}

.contact-page .form-group input::placeholder,
.contact-page .form-group textarea::placeholder {
  color: var(--text-light);
}

.contact-page .form-group input:hover,
.contact-page .form-group select:hover,
.contact-page .form-group textarea:hover {
  border-color: #cfcfcf;
}

.contact-page .form-group input:focus,
.contact-page .form-group select:focus,
.contact-page .form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(253, 201, 0, 0.16);
  outline: none;
}

.contact-page .form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23222628' d='M1.4 0.6L6 5.2 10.6 0.6 12 2 6 8 0 2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

.contact-page .contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 180px;
  padding: 13px 22px;
  letter-spacing: 0.04em;
}

.contact-page .contact-submit span {
  font-size: 1.05em;
  line-height: 1;
  transition: transform var(--transition);
}

.contact-page .contact-submit:hover span {
  transform: translateX(3px);
}

.contact-page .form-note {
  margin-top: 12px;
  margin-bottom: 0;
  font-size: 12px;
  color: var(--text-light);
  text-align: left;
}

/* RIGHT — map */
.contact-map {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  gap: 12px;
}

.contact-map-frame {
  position: relative;
  flex: 1 1 auto;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.contact-map-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  z-index: 1;
}

.contact-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.contact-map-caption {
  margin: 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

/* Contact page — FAQ CTA */
.contact-faq-cta {
  padding: 28px 0 80px;
  background: var(--background);
}

.contact-faq-cta-card {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: var(--navy);
  color: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 64px 48px 56px;
}

.contact-faq-cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.contact-faq-cta-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brass) 0%, var(--brass-light) 45%, var(--brass-dark) 100%);
  pointer-events: none;
}

.contact-faq-cta-bg {
  position: absolute;
  inset: 0;
  color: rgba(253, 201, 0, 0.09);
  pointer-events: none;
  z-index: 0;
}

.contact-faq-cta-drawing {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
}

.contact-faq-cta-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.contact-faq-cta-content .eyebrow {
  margin-bottom: 16px;
}

.contact-faq-cta-content h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--white);
  margin: 0 0 16px;
}

.contact-faq-cta-desc {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 auto 32px;
  max-width: 52ch;
}

.contact-faq-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 180px;
  padding: 13px 24px;
  letter-spacing: 0.04em;
}

.contact-faq-cta-btn span {
  font-size: 1.05em;
  line-height: 1;
  transition: transform var(--transition);
}

.contact-faq-cta-btn:hover span {
  transform: translateX(3px);
}

@media (max-width: 1100px) {
  .contact-page-layout {
    grid-template-columns: minmax(0, 11fr) minmax(0, 9fr);
    column-gap: 40px;
  }
}

@media (max-width: 900px) {
  .contact-info-section {
    padding: 40px 0 20px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-page .contact-section {
    padding: 48px 0 64px;
  }

  .contact-page-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-page .contact-form {
    padding: 24px 22px 22px;
  }

  .contact-map-frame,
  .contact-map-frame iframe {
    min-height: 300px;
  }

  .contact-faq-cta {
    padding: 20px 0 72px;
  }

  .contact-faq-cta-card {
    padding: 52px 32px 48px;
  }
}

@media (max-width: 640px) {
  .about-visual {
    max-width: none;
    aspect-ratio: 4 / 5;
  }

  .contact-page .contact-hero {
    padding: calc(var(--header-h) + 28px) 0 36px;
  }

  .contact-info-section {
    padding: 32px 0 16px;
  }

  .contact-info-card {
    padding: 28px 20px 24px;
  }

  .contact-page .contact-section {
    padding: 40px 0 56px;
  }

  .contact-panel-title {
    font-size: 24px;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .contact-page .contact-form {
    padding: 22px 18px 20px;
  }

  .contact-page .contact-submit {
    width: 100%;
  }

  .contact-map-frame,
  .contact-map-frame iframe {
    min-height: 260px;
  }

  .contact-faq-cta {
    padding: 16px 0 64px;
  }

  .contact-faq-cta-card {
    padding: 44px 24px 40px;
    border-radius: var(--radius);
  }

  .contact-faq-cta-content h2 {
    font-size: clamp(24px, 7vw, 30px);
  }

  .contact-faq-cta-desc {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .contact-faq-cta-btn {
    width: 100%;
    max-width: 280px;
  }
}
