:root {
  --ink: #0b0b0b;
  --ink-soft: #222;
  --muted: #5a5a5a;
  --paper: #ffffff;
  --paper-2: #f6f6f6;
  --paper-3: #fafafa;
  --white: #ffffff;
  --red: #e30613;
  --red-deep: #b50510;
  --red-soft: rgba(227, 6, 19, 0.08);
  --line: rgba(11, 11, 11, 0.12);
  --shadow: 0 24px 60px rgba(11, 11, 11, 0.1);
  --shadow-soft: 0 18px 40px rgba(11, 11, 11, 0.1);
  --header-glass: rgba(255, 255, 255, 0.62);
  --header-border: rgba(255, 255, 255, 0.55);
  --input-bg: transparent;
  --card-bg: #ffffff;
  --elevated: #ffffff;
  --invert-logo: 0;
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Sora", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 5.5rem;
  --body-glow: rgba(227, 6, 19, 0.05);
  --body-top: #ffffff;
  --body-mid: #fafafa;
  --body-bottom: #f4f4f4;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --ink: #f3f3f4;
  --ink-soft: #e6e6e8;
  --muted: #a3a3aa;
  --paper: #121214;
  --paper-2: #18181b;
  --paper-3: #1e1e22;
  --red: #ff3b47;
  --red-deep: #e30613;
  --red-soft: rgba(255, 59, 71, 0.14);
  --line: rgba(255, 255, 255, 0.1);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.35);
  --header-glass: rgba(18, 18, 20, 0.78);
  --header-border: rgba(255, 255, 255, 0.1);
  --input-bg: rgba(255, 255, 255, 0.03);
  --card-bg: #1a1a1e;
  --elevated: #1f1f24;
  --body-glow: rgba(227, 6, 19, 0.16);
  --body-top: #0c0c0e;
  --body-mid: #121214;
  --body-bottom: #0f0f11;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background:
    radial-gradient(1100px 520px at 8% -8%, var(--body-glow), transparent 55%),
    linear-gradient(180deg, var(--body-top) 0%, var(--body-mid) 50%, var(--body-bottom) 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background 0.35s ease, color 0.35s ease;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  max-width: 16ch;
}

h3 {
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wrap {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.dot {
  color: var(--red);
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.85rem;
}

.section {
  padding: clamp(4.5rem, 10vw, 7.5rem) 0;
  position: relative;
}

.section-head {
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-head p:last-child {
  max-width: 46ch;
  color: var(--muted);
}

.section-head-center {
  text-align: center;
}

.section-head-center h2 {
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
}

.section-head-center p:last-child {
  margin-left: auto;
  margin-right: auto;
}

/* Header — SaaS landing composition */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 1rem 1.25rem 0;
  pointer-events: none;
  animation: headerEnter 0.7s var(--ease) both;
}

@keyframes headerEnter {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.header-inner {
  pointer-events: auto;
  position: relative;
  width: min(1152px, 100%);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  min-height: 3.5rem;
  padding: 0.45rem 0.55rem 0.45rem 0.9rem;
  border: 1px solid transparent;
  border-radius: 1rem;
  background: transparent;
  box-shadow: none;
  transition:
    border-color 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    padding 0.4s var(--ease);
}

.header-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: transparent;
  border: 1px solid transparent;
  box-shadow: none;
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  transition:
    background 0.4s var(--ease),
    border-color 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    opacity 0.4s var(--ease),
    backdrop-filter 0.4s var(--ease),
    -webkit-backdrop-filter 0.4s var(--ease);
}

.site-header.is-scrolled .header-inner {
  border-color: transparent;
  box-shadow: none;
}

.site-header.is-scrolled .header-inner::before {
  opacity: 1;
  background: var(--header-glass);
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
  border-color: var(--header-border);
  box-shadow:
    0 10px 30px rgba(11, 11, 11, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.65) inset;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-width: 0;
  position: relative;
}

.brand-logo {
  height: 2.35rem;
  width: auto;
  display: block;
  transition: height 0.35s var(--ease), opacity 0.3s ease;
}

.brand-logo-light {
  display: none;
}

.site-header:not(.is-scrolled) .brand-logo-dark {
  display: none;
}

.site-header:not(.is-scrolled) .brand-logo-light {
  display: block;
}

.site-header.is-scrolled .brand-logo {
  height: 2.1rem;
}

.page-service .site-header .brand-logo-dark {
  display: block;
}

.page-service .site-header .brand-logo-light {
  display: none;
}

.brand-footer img {
  height: 2.4rem;
}

.nav-center {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  justify-self: center;
}

.nav-center > a,
.nav-dropdown-toggle {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(34, 34, 34, 0.55);
  transition: color 0.2s ease;
  padding: 0.45rem 0.7rem;
  border-radius: 0.55rem;
}

.nav-center > a:hover,
.nav-dropdown-toggle:hover,
.nav-dropdown.is-open .nav-dropdown-toggle,
.nav-dropdown.is-active .nav-dropdown-toggle {
  color: var(--ink);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.nav-dropdown-toggle svg {
  transition: transform 0.25s var(--ease);
  opacity: 0.7;
}

.nav-dropdown.is-open .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.85rem);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: min(36rem, calc(100vw - 2rem));
  padding: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(11, 11, 11, 0.08);
  border-radius: 1rem;
  box-shadow:
    0 24px 60px rgba(11, 11, 11, 0.14),
    0 2px 0 rgba(255, 255, 255, 0.8) inset;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0.28s;
  z-index: 120;
}

.nav-dropdown.is-open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-mega-head {
  padding: 1.1rem 1.2rem 0.95rem;
  background:
    linear-gradient(135deg, rgba(227, 6, 19, 0.08), transparent 55%),
    linear-gradient(180deg, #fafafa, #fff);
  border-bottom: 1px solid var(--line);
}

.nav-mega-eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}

.nav-mega-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: var(--ink);
  max-width: 28ch;
}

.nav-mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.2rem;
  padding: 0.55rem;
}

.nav-mega-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
  padding: 0.75rem 0.8rem;
  border-radius: 0.75rem;
  transition: background 0.2s ease, transform 0.2s var(--ease);
}

.nav-mega-item:hover,
.nav-mega-item[aria-current="page"] {
  background: rgba(227, 6, 19, 0.05);
}

.nav-mega-item:hover {
  transform: translateY(-1px);
}

.nav-mega-index {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1.4;
  padding-top: 0.1rem;
}

.nav-mega-copy {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.nav-mega-copy strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.nav-mega-copy small {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.35;
}

.nav-mega-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.15rem;
  border-top: 1px solid var(--line);
  background: #fafafa;
}

.nav-mega-foot span {
  font-size: 0.8rem;
  color: var(--muted);
}

.nav-mega-foot a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--red);
  white-space: nowrap;
}

.nav-mega-foot a:hover {
  color: var(--red-deep);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem;
  justify-self: end;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-inline-end: 0.15rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(34, 34, 34, 0.55);
}

.lang-switch a {
  color: inherit;
  text-decoration: none;
  padding: 0.15rem 0.2rem;
  transition: color 0.2s ease;
}

.lang-switch a[aria-current="page"] {
  color: var(--red, #e30613);
}

.lang-switch a:hover {
  color: var(--red, #e30613);
}

.site-header.is-scrolled .lang-switch,
html[data-theme="dark"] .site-header.is-scrolled .lang-switch {
  color: rgba(34, 34, 34, 0.55);
}

html[data-theme="dark"] .lang-switch {
  color: rgba(245, 245, 245, 0.65);
}

html[data-theme="dark"] .lang-switch a[aria-current="page"],
html[data-theme="dark"] .lang-switch a:hover {
  color: var(--red, #e30613);
}

.site-header:not(.is-scrolled) .lang-switch {
  color: rgba(255, 255, 255, 0.75);
}

.page-service .lang-switch {
  color: rgba(34, 34, 34, 0.55);
}

.theme-toggle {
  width: 2.35rem;
  height: 2.35rem;
  border: 0;
  border-radius: 0.7rem;
  background: transparent;
  color: rgba(34, 34, 34, 0.6);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.theme-toggle:hover {
  background: rgba(11, 11, 11, 0.05);
  color: var(--ink);
}

.theme-toggle .icon-moon {
  display: none;
}

html[data-theme="dark"] .theme-toggle .icon-sun {
  display: none;
}

html[data-theme="dark"] .theme-toggle .icon-moon {
  display: block;
}

.btn-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  padding: 0.45rem 0.95rem;
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 600;
  border-radius: 0.7rem;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s var(--ease);
}

.btn-header:hover {
  transform: translateY(-1px);
}

.btn-header-glass {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--ink);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.site-header.is-scrolled .btn-header-glass {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(11, 11, 11, 0.08);
}

.btn-header-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(227, 6, 19, 0.22);
}

.btn-header-primary:hover {
  background: var(--red-deep);
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 1.2rem;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 0.3s var(--ease);
}

@media (min-width: 900px) {
  .nav-center {
    display: flex;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.35rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--red-deep);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
  background: transparent;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-ghost.dark {
  border-color: var(--ink);
  color: var(--ink);
}

.btn-ghost.dark:hover {
  background: var(--ink);
  color: var(--white);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

.hero-help {
  margin: 0;
  width: 100%;
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
}

.hero-help a {
  margin-left: 0.35rem;
  font-weight: 600;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.hero-help a:hover {
  color: #ff6b73;
  border-bottom-color: #ff6b73;
}

@media (min-width: 640px) {
  .hero-help {
    width: auto;
    margin-left: 0.35rem;
    padding-left: 1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.22);
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-content: end;
  padding: calc(var(--header-h) + 2rem) clamp(1.25rem, 4vw, 2.5rem) 2rem;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: heroZoom 14s var(--ease) forwards;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.35) 0%, rgba(8, 8, 8, 0.55) 45%, rgba(8, 8, 8, 0.88) 100%),
    radial-gradient(800px 500px at 70% 20%, rgba(227, 6, 19, 0.18), transparent 60%);
}

.hero-content,
.hero-meta {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 42rem;
  animation: riseIn 1s var(--ease) both;
}

.hero-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.85;
  margin-bottom: 1rem;
}

.hero-brand {
  margin: 0 0 1.25rem;
}

.hero-logo {
  width: min(100%, 34rem);
  height: auto;
}

.hero-lede {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  max-width: 38ch;
  opacity: 0.92;
  margin-bottom: 1.75rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-top: clamp(2.5rem, 8vw, 5rem);
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  animation: riseIn 1.1s 0.15s var(--ease) both;
}

.hero-meta-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  opacity: 0.85;
}

.hero-meta-cta {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-left: auto;
}

.hero-call,
.hero-mail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.4rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s var(--ease), color 0.2s ease;
}

.hero-call {
  padding: 0.45rem 0.95rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-mail {
  width: 2.4rem;
  padding: 0;
}

.hero-call:hover,
.hero-mail:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-1px);
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* About — editorial interactive stage */
.about {
  background:
    linear-gradient(180deg, transparent 0%, rgba(227, 6, 19, 0.03) 40%, transparent 100%),
    var(--paper);
  overflow: hidden;
}

.about-stage {
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
}

.about-main {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

@media (min-width: 960px) {
  .about-main {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.about-intro {
  position: relative;
  padding-left: 1.15rem;
}

.about-spine {
  position: absolute;
  left: 0;
  top: 0.35rem;
  bottom: 0.35rem;
  width: 2px;
  background: linear-gradient(180deg, var(--red), rgba(227, 6, 19, 0.15));
}

.about-intro h2 {
  max-width: 12ch;
}

.about-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1.5rem 0 1.25rem;
}

.about-tab {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.55rem 0.95rem;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s var(--ease);
}

.about-tab:hover {
  color: var(--ink);
  border-color: rgba(227, 6, 19, 0.35);
  transform: translateY(-1px);
}

.about-tab.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

html[data-theme="dark"] .about-tab.is-active {
  color: #0c0c0e;
}

.about-panels {
  position: relative;
  min-height: 9.5rem;
}

.about-panel {
  display: none;
  animation: aboutPanelIn 0.4s var(--ease) both;
}

.about-panel.is-active {
  display: grid;
  gap: 0.85rem;
}

.about-panel p {
  margin: 0;
  color: var(--muted);
  max-width: 48ch;
  font-size: 1.02rem;
  line-height: 1.65;
}

@keyframes aboutPanelIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-visual-frame {
  position: relative;
  margin: 0;
  isolation: isolate;
  clip-path: polygon(8% 0, 100% 0, 100% 92%, 92% 100%, 0 100%, 0 8%);
  overflow: hidden;
  background: var(--paper-2);
  box-shadow: var(--shadow);
  transition: transform 0.5s var(--ease);
}

.about-visual-frame:hover {
  transform: translateY(-6px);
}

.about-visual-frame img {
  width: 100%;
  height: min(540px, 72vw);
  object-fit: cover;
  transition: transform 1.1s var(--ease), filter 0.5s ease;
}

.about-visual-frame:hover img {
  transform: scale(1.06);
  filter: saturate(1.05) contrast(1.02);
}

.about-visual-glow {
  position: absolute;
  inset: auto -10% -20% auto;
  width: 55%;
  height: 55%;
  background: radial-gradient(circle, rgba(227, 6, 19, 0.35), transparent 70%);
  pointer-events: none;
  opacity: 0.55;
  transition: opacity 0.4s ease, transform 0.5s var(--ease);
}

.about-visual-frame:hover .about-visual-glow {
  opacity: 0.9;
  transform: scale(1.15);
}

.about-visual-badge {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  display: grid;
  gap: 0.15rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  backdrop-filter: blur(10px);
  border-left: 3px solid var(--red);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

html[data-theme="dark"] .about-visual-badge {
  background: rgba(18, 18, 20, 0.92);
  color: #f3f3f4;
}

.about-visual-badge strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -0.04em;
  line-height: 1;
}

.about-visual-badge span {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.about-signals {
  display: grid;
  gap: 1px;
  grid-template-columns: 1fr;
  background: var(--line);
  border: 1px solid var(--line);
}

@media (min-width: 700px) {
  .about-signals {
    grid-template-columns: repeat(4, 1fr);
  }
}

.about-signal {
  background: var(--card-bg);
  padding: 1.25rem 1.15rem;
  display: grid;
  gap: 0.3rem;
  transition: background 0.3s ease, transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  cursor: default;
}

.about-signal:hover {
  background: var(--elevated);
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  position: relative;
  z-index: 1;
}

.about-signal-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}

.about-signal strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.about-signal p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

/* Shared grids used by community/contact */
.community-grid,
.contact-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 900px) {
  .community-grid,
  .contact-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.community-copy p,
.contact-copy > p {
  color: var(--muted);
  max-width: 48ch;
}

.community-figure {
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: var(--shadow);
}

.community-figure img {
  width: 100%;
  height: min(520px, 70vw);
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.community-figure:hover img {
  transform: scale(1.04);
}

/* Services — interactive stage */
.services {
  position: relative;
  overflow: hidden;
  background: #0c0c0e;
  color: #f5f5f5;
  isolation: isolate;
}

.services-atmosphere {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 480px at 12% 8%, rgba(227, 6, 19, 0.22), transparent 60%),
    radial-gradient(700px 420px at 88% 90%, rgba(255, 255, 255, 0.06), transparent 55%),
    linear-gradient(165deg, #101014 0%, #0c0c0e 45%, #141018 100%);
  z-index: 0;
  pointer-events: none;
}

.services .wrap {
  position: relative;
  z-index: 1;
}

.services .eyebrow {
  color: rgba(255, 255, 255, 0.55);
}

.services-head {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}

.services-head-copy {
  max-width: 40rem;
}

.services-head h2 {
  margin: 0.35rem 0 0.75rem;
  font-size: clamp(1.85rem, 3.4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
}

.services-head p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.02rem;
  max-width: 36rem;
}

.services-head-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.3s var(--ease), border-color 0.3s ease, transform 0.3s var(--ease);
}

.services-head-cta:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
}

.services-head-cta span {
  transition: transform 0.3s var(--ease);
}

.services-head-cta:hover span {
  transform: translateX(4px);
}

.services-stage {
  display: grid;
  gap: 1.75rem;
  align-items: stretch;
}

@media (min-width: 980px) {
  .services-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3rem;
  }

  .services-stage {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 2rem;
    min-height: 34rem;
  }
}

.services-preview {
  display: none;
}

@media (min-width: 980px) {
  .services-preview {
    display: block;
    position: sticky;
    top: calc(var(--header-h) + 1rem);
    align-self: start;
  }
}

.services-preview-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-height: min(72vh, 38rem);
  background: #1a1a1e;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.services-preview-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: opacity 0.45s var(--ease), transform 1.1s var(--ease);
}

.services-preview-frame.is-swapping img {
  opacity: 0;
  transform: scale(1.1);
}

.services-preview-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 35%, rgba(8, 8, 10, 0.88) 100%),
    linear-gradient(90deg, rgba(227, 6, 19, 0.12), transparent 45%);
  pointer-events: none;
}

.services-preview-meta {
  position: absolute;
  left: 1.35rem;
  right: 1.35rem;
  bottom: 1.35rem;
  z-index: 1;
  display: grid;
  gap: 0.35rem;
}

.services-preview-meta [data-services-index] {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: var(--red);
}

.services-preview-meta [data-services-title] {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
}

.services-preview-meta [data-services-blurb] {
  margin: 0.15rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.45;
  max-width: 28rem;
}

.services-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.services-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 0.35rem 1.15rem 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: inherit;
  text-decoration: none;
  position: relative;
  transition: background 0.3s var(--ease), padding 0.35s var(--ease);
  opacity: 0;
  transform: translateY(18px);
}

.services-list.reveal.is-visible .services-row,
.services-row.is-visible {
  opacity: 1;
  transform: none;
  transition:
    background 0.3s var(--ease),
    padding 0.35s var(--ease),
    opacity 0.55s var(--ease),
    transform 0.55s var(--ease);
}

.services-list.reveal.is-visible .services-row:nth-child(1) { transition-delay: 0.05s; }
.services-list.reveal.is-visible .services-row:nth-child(2) { transition-delay: 0.1s; }
.services-list.reveal.is-visible .services-row:nth-child(3) { transition-delay: 0.15s; }
.services-list.reveal.is-visible .services-row:nth-child(4) { transition-delay: 0.2s; }
.services-list.reveal.is-visible .services-row:nth-child(5) { transition-delay: 0.25s; }
.services-list.reveal.is-visible .services-row:nth-child(6) { transition-delay: 0.3s; }
.services-list.reveal.is-visible .services-row:nth-child(7) { transition-delay: 0.35s; }
.services-list.reveal.is-visible .services-row:nth-child(8) { transition-delay: 0.4s; }

.services-row::before {
  content: "";
  position: absolute;
  inset-block: 0;
  inset-inline-start: 0;
  width: 3px;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.35s var(--ease);
}

.services-row:hover,
.services-row:focus-visible,
.services-row.is-active {
  background: rgba(255, 255, 255, 0.04);
  padding-inline-start: 1.15rem;
  outline: none;
}

.services-row:hover::before,
.services-row:focus-visible::before,
.services-row.is-active::before {
  transform: scaleY(1);
}

.services-row-index {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.35);
  min-width: 1.75rem;
  transition: color 0.25s ease, transform 0.35s var(--ease);
}

.services-row:hover .services-row-index,
.services-row:focus-visible .services-row-index,
.services-row.is-active .services-row-index {
  color: var(--red);
  transform: scale(1.08);
}

.services-row-copy {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}

.services-row-copy strong {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.2;
}

.services-row-copy small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.86rem;
  line-height: 1.35;
}

.services-row-go {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.55);
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.35s var(--ease);
}

.services-row:hover .services-row-go,
.services-row:focus-visible .services-row-go,
.services-row.is-active .services-row-go {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: translateX(3px);
}

@media (max-width: 979px) {
  .services-row-copy small {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-row,
  .services-list.reveal.is-visible .services-row,
  .services-preview-frame img,
  .services-row-go,
  .services-head-cta {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

html[dir="rtl"] .services-head-cta:hover span,
html[dir="rtl"] .services-row:hover .services-row-go,
html[dir="rtl"] .services-row:focus-visible .services-row-go,
html[dir="rtl"] .services-row.is-active .services-row-go {
  transform: translateX(-3px);
}

html[dir="rtl"] .services-row-go svg {
  transform: scaleX(-1);
}

/* Why */
.why {
  background: var(--card-bg);
}

.why-widgets {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .why-widgets {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .why-widgets {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-widget {
  display: grid;
  align-content: start;
  gap: 0.65rem;
  min-height: 100%;
  padding: 1.35rem 1.25rem 1.4rem;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-top: 2px solid transparent;
  transition:
    transform 0.35s var(--ease),
    border-color 0.25s ease,
    box-shadow 0.35s var(--ease),
    background 0.25s ease;
}

.why-widget:hover {
  transform: translateY(-6px);
  background: var(--elevated);
  border-color: rgba(227, 6, 19, 0.28);
  border-top-color: var(--red);
  box-shadow: var(--shadow-soft);
}

.why-widget-index {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--red);
}

.why-widget h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.2;
}

.why-widget p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.why-widget-feature {
  background:
    linear-gradient(160deg, rgba(227, 6, 19, 0.06), transparent 55%),
    var(--paper-2);
}

.why-widget-link {
  margin-top: 0.45rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 0.2s ease;
}

.why-widget:hover .why-widget-link {
  color: var(--red);
}

.value-widgets {
  display: grid;
  gap: 1.15rem;
  margin-top: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 800px) {
  .value-widgets {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-widget {
  padding: 1.25rem 1.2rem;
  border: 1px solid var(--line);
  background: var(--card-bg);
  transition: transform 0.35s var(--ease), border-color 0.25s ease, box-shadow 0.35s var(--ease);
}

.value-widget:hover {
  transform: translateY(-4px);
  border-color: rgba(227, 6, 19, 0.3);
  box-shadow: 0 14px 32px rgba(11, 11, 11, 0.08);
}

.value-dot {
  display: block;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--red);
  margin-bottom: 0.85rem;
}

.value-widget strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}

.value-widget p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Industries — bento mosaic */
.industries {
  background:
    radial-gradient(900px 420px at 90% 10%, rgba(227, 6, 19, 0.05), transparent 60%),
    var(--paper-2);
}

.industry-bento {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .industry-bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(9.5rem, auto);
  }

  .industry-tile-lg {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 20rem;
  }

  .industry-tile-wide {
    grid-column: span 2;
  }
}

@media (min-width: 1024px) {
  .industry-bento {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(10rem, auto);
  }

  .industry-tile-lg {
    grid-column: span 2;
    grid-row: span 2;
  }

  .industry-tile-wide {
    grid-column: span 2;
  }
}

.industry-tile {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.4rem;
  padding: 1.25rem 1.2rem;
  background: var(--card-bg);
  border: 1px solid var(--line);
  isolation: isolate;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    border-color 0.25s ease,
    background 0.35s ease,
    color 0.35s ease;
}

.industry-tile::before {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  background: rgba(227, 6, 19, 0.08);
  transform: translate(20%, 20%);
  transition: transform 0.5s var(--ease), background 0.35s ease;
  z-index: -1;
}

.industry-tile:hover {
  transform: translateY(-6px) rotate(-0.4deg);
  border-color: rgba(227, 6, 19, 0.35);
  box-shadow: 0 22px 44px rgba(11, 11, 11, 0.12);
}

.industry-tile:hover::before {
  transform: translate(8%, 8%) scale(1.35);
  background: rgba(227, 6, 19, 0.16);
}

.industry-mono {
  position: absolute;
  top: 0.85rem;
  right: 0.95rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 1;
  color: rgba(11, 11, 11, 0.06);
  transition: color 0.35s ease, transform 0.45s var(--ease);
  pointer-events: none;
}

.industry-tile:hover .industry-mono {
  color: rgba(227, 6, 19, 0.14);
  transform: scale(1.06) translateX(-4px);
}

.industry-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--red);
}

.industry-tile h3 {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  max-width: 12ch;
}

.industry-tile p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 28ch;
  line-height: 1.45;
}

.industry-tile-lg h3 {
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  max-width: 10ch;
}

.industry-tile-lg p {
  font-size: 1rem;
  max-width: 32ch;
}

.industry-tile-ink {
  background: #111;
  border-color: #111;
  color: var(--white);
}

.industry-tile-ink .industry-mono {
  color: rgba(255, 255, 255, 0.08);
}

.industry-tile-ink p {
  color: rgba(255, 255, 255, 0.68);
}

.industry-tile-ink:hover {
  background: #1a1a1a;
  border-color: var(--red);
}

.industry-tile-ink:hover .industry-mono {
  color: rgba(227, 6, 19, 0.28);
}

.industry-tile-ink::before {
  background: rgba(227, 6, 19, 0.18);
}

.industry-tile-accent {
  background: linear-gradient(145deg, #fff 0%, #fff5f5 100%);
  border-color: rgba(227, 6, 19, 0.18);
}

.industry-tile-accent:hover {
  background: linear-gradient(145deg, #fff 0%, #ffe8ea 100%);
}

/* Integrations */
.logo-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2.25rem;
  padding: 1.5rem 0;
}

.logo-row img {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.05);
  opacity: 0.75;
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s var(--ease);
}

.logo-row img:hover {
  filter: none;
  opacity: 1;
  transform: translateY(-3px);
}

/* Testimonials carousel */
.testimonials {
  color: var(--white);
  overflow: hidden;
  padding-bottom: 0;
}

.testimonials-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.testimonials-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.82), rgba(8, 8, 8, 0.92));
}

.testimonials .wrap,
.testimonials .testimonial-carousel,
.testimonials .testimonial-marquee {
  position: relative;
  z-index: 1;
}

.testimonials .eyebrow {
  color: #ff6b73;
}

.testimonials .section-head p:last-child,
.testimonials h2 {
  color: var(--white);
}

.testimonials .section-head-center h2 {
  max-width: 14ch;
}

.testimonial-carousel {
  position: relative;
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0.5rem auto 0;
  padding: 0 3.25rem 2.5rem;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: 1rem;
}

.carousel-track {
  display: flex;
  transition: transform 0.55s var(--ease);
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 100%;
  min-width: 100%;
  box-sizing: border-box;
  padding: clamp(1.6rem, 4vw, 2.4rem);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.25);
  display: grid;
  gap: 1.1rem;
  align-content: start;
  min-height: 17rem;
  transition: transform 0.35s var(--ease), background 0.35s ease;
}

@media (min-width: 820px) {
  .testimonial-card {
    flex-basis: calc((100% - 1.2rem) / 2);
    min-width: calc((100% - 1.2rem) / 2);
    margin-right: 1.2rem;
  }
}

@media (min-width: 1100px) {
  .testimonial-card {
    flex-basis: calc((100% - 2.4rem) / 3);
    min-width: calc((100% - 2.4rem) / 3);
  }
}

.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 0.7;
  color: var(--red);
  font-weight: 800;
}

.testimonial-card p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.94);
}

.testimonial-card footer {
  display: grid;
  gap: 0.2rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.testimonial-card footer strong {
  font-size: 0.95rem;
}

.testimonial-card footer span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.carousel-btn {
  position: absolute;
  top: calc(50% - 2.5rem);
  z-index: 2;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: background 0.2s ease, transform 0.2s var(--ease), border-color 0.2s ease;
}

.carousel-btn:hover {
  background: rgba(227, 6, 19, 0.9);
  border-color: var(--red);
  transform: scale(1.05);
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.35rem;
}

.carousel-dot {
  width: 0.5rem;
  height: 0.5rem;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: width 0.25s var(--ease), background 0.25s ease;
}

.carousel-dot.is-active {
  width: 1.4rem;
  background: var(--red);
}

.testimonial-marquee {
  margin-top: 0.5rem;
  padding: 1rem 0 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.testimonial-marquee-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marqueeMove 28s linear infinite;
}

.testimonial-marquee-track span {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
}

.testimonial-marquee-track span::before {
  content: "";
  display: inline-block;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--red);
  margin-right: 2.5rem;
  vertical-align: middle;
}

@keyframes marqueeMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .carousel-track {
    transition: none;
  }

  .testimonial-marquee-track {
    animation: none;
  }
}

/* Community */
.community {
  background: linear-gradient(120deg, #111 0%, #1c1c1c 55%, #2a1214 100%);
  color: var(--white);
}

.community .eyebrow {
  color: #ff6b73;
}

.community-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.community-figure {
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

/* Contact */
.contact-details {
  display: grid;
  gap: 1.1rem;
  margin: 1.75rem 0 2rem;
}

.contact-details li span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.contact-details a,
.contact-details address,
.contact-details p {
  font-style: normal;
  font-weight: 500;
  margin: 0;
  font-size: 1.05rem;
}

.contact-details li a + a {
  display: block;
  width: fit-content;
  margin-top: 0.2rem;
}

.contact-details a:hover {
  color: var(--red);
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.75rem;
  background: var(--card-bg);
  border: 1px solid var(--line);
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 0.7rem 0;
  font: inherit;
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0;
  font-size: 1rem;
  font-weight: 400;
  outline: none;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--red);
}

.contact-form .btn {
  margin-top: 0.5rem;
  justify-self: start;
}

.form-note {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0;
}

.form-note.is-success {
  color: #0f7a3a;
}

.form-note.is-error {
  color: var(--red);
}

/* Footer */
.site-footer {
  padding: 3rem 0 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #0b0b0b;
  color: rgba(255, 255, 255, 0.7);
}

.footer-inner {
  display: grid;
  gap: 0.75rem;
}

.footer-social a:hover {
  color: var(--red);
}

.copyright {
  font-size: 0.8rem;
  opacity: 0.6;
  margin: 0.5rem 0 0;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile nav + site polish */
@media (max-width: 899px) {
  .site-header {
    padding: 0.65rem 0.75rem 0;
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    min-height: 3.25rem;
    padding: 0.4rem 0.45rem 0.4rem 0.7rem;
    width: 100%;
  }

  .brand {
    position: relative;
    z-index: 120;
    flex-shrink: 0;
  }

  .brand-logo {
    height: 2rem;
  }

  .nav-actions {
    position: relative;
    z-index: 120;
    gap: 0.3rem;
    flex-shrink: 0;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    width: 2.4rem;
    height: 2.4rem;
    flex-shrink: 0;
  }

  .btn-header-glass {
    display: none;
  }

  .btn-header {
    min-height: 2.2rem;
    padding: 0.4rem 0.7rem;
    font-size: 0.78rem;
  }

  .lang-switch {
    font-size: 0.72rem;
    margin-inline-end: 0;
    gap: 0.2rem;
  }

  .theme-toggle {
    width: 2.2rem;
    height: 2.2rem;
  }

  .nav-center {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0.35rem;
    background: rgba(255, 255, 255, 0.98);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 5.5rem 1.25rem 2.5rem;
    z-index: 110;
    transform: none;
  }

  .nav-center.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-header.is-nav-open .brand-logo-dark {
    display: block;
  }

  .site-header.is-nav-open .brand-logo-light {
    display: none;
  }

  .site-header.is-nav-open .nav-toggle span {
    background: var(--ink);
  }

  .site-header.is-nav-open .theme-toggle {
    color: var(--ink);
  }

  .site-header.is-nav-open .lang-switch {
    color: rgba(34, 34, 34, 0.55);
  }

  .site-header.is-nav-open .header-inner {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
  }

  .site-header.is-nav-open .header-inner::before {
    opacity: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-center > a,
  .nav-dropdown-toggle {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 6vw, 1.7rem);
    font-weight: 700;
    color: var(--ink);
    text-align: left;
    width: 100%;
    padding: 0.85rem 0.25rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(11, 11, 11, 0.08);
  }

  .nav-dropdown {
    width: 100%;
    text-align: left;
  }

  .nav-dropdown-toggle {
    margin-inline: 0;
    justify-content: space-between;
    width: 100%;
  }

  .nav-dropdown-menu,
  .nav-dropdown:hover .nav-dropdown-menu {
    position: static;
    transform: none;
    width: 100%;
    margin: 0.35rem 0 0.75rem;
    left: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border: 1px solid var(--line);
    border-radius: 0.85rem;
    background: #f7f7f7;
    padding: 0;
    display: none;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    display: block;
  }

  .nav-mega-grid {
    grid-template-columns: 1fr;
  }

  .nav-mega-head {
    text-align: left;
    padding: 0.95rem 1rem 0.8rem;
  }

  .nav-mega-title {
    max-width: none;
    font-size: 0.95rem;
  }

  .nav-mega-foot {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-mega-copy strong {
    color: var(--ink);
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .hero {
    min-height: 100svh;
    padding: calc(var(--header-h) + 1rem) 1.1rem 1.5rem;
    align-content: end;
  }

  .hero-kicker {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    margin-bottom: 0.75rem;
  }

  .hero-logo {
    width: min(100%, 18rem);
  }

  .hero-lede {
    font-size: 0.98rem;
    max-width: none;
    margin-bottom: 1.25rem;
  }

  .hero-actions {
    gap: 0.65rem;
  }

  .hero-actions .btn {
    flex: 1 1 auto;
    min-width: min(100%, 9.5rem);
  }

  .hero-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 2rem;
  }

  .hero-meta-facts {
    gap: 0.55rem 0.9rem;
    font-size: 0.72rem;
  }

  .hero-meta-cta {
    margin-left: 0;
    width: 100%;
  }

  .hero-call {
    flex: 1;
  }

  .wrap {
    width: min(1120px, calc(100% - 1.75rem));
  }

  .section {
    padding: clamp(3.25rem, 12vw, 5rem) 0;
  }

  .section-head-center h2 {
    max-width: 18ch;
  }

  .about-tabs {
    gap: 0.35rem;
  }

  .about-tab {
    flex: 1 1 auto;
    text-align: center;
    padding: 0.55rem 0.7rem;
    font-size: 0.82rem;
  }

  .about-intro h2 {
    max-width: none;
    font-size: clamp(1.7rem, 7vw, 2.3rem);
  }

  .about-signals {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .about-signal {
    padding: 0.9rem;
  }

  .services-head {
    margin-bottom: 1.75rem;
  }

  .services-head h2 {
    font-size: clamp(1.55rem, 7vw, 2.2rem);
  }

  .services-head-cta {
    width: 100%;
    justify-content: center;
  }

  .services-row {
    grid-template-columns: auto 1fr auto;
    gap: 0.75rem;
    padding: 1rem 0.15rem 1rem 0.65rem;
  }

  .services-row-copy strong {
    font-size: 1rem;
  }

  .services-row-copy small {
    font-size: 0.8rem;
  }

  .services-row-go {
    width: 2.1rem;
    height: 2.1rem;
  }

  .why-widget,
  .value-widget {
    padding: 1.15rem;
  }

  .industry-tile {
    min-height: 9.5rem;
    padding: 1.1rem;
  }

  .industry-tile-lg {
    min-height: 12rem;
  }

  .logo-row {
    gap: 1.25rem 1.5rem;
    justify-content: center;
  }

  .logo-row img {
    max-height: 28px;
    max-width: 110px;
  }

  .testimonial-carousel {
    width: min(1120px, calc(100% - 1.25rem));
    padding: 0 2.6rem 2rem;
  }

  .carousel-btn {
    width: 2.35rem;
    height: 2.35rem;
  }

  .carousel-prev {
    left: 0;
  }

  .carousel-next {
    right: 0;
  }

  .testimonial-card {
    min-height: 15rem;
    padding: 1.35rem;
  }

  .testimonial-card p {
    font-size: 1.05rem;
  }

  .community-figure img {
    height: min(320px, 70vw);
  }

  .contact-form {
    padding: 1.25rem;
  }

  .contact-details a,
  .contact-details address {
    font-size: 0.98rem;
    word-break: break-word;
  }

  .footer-inner {
    text-align: left;
    gap: 0.9rem;
  }

  .footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.55rem;
    line-height: 1.6;
  }

  .service-hero {
    min-height: 68svh;
    padding: calc(var(--header-h) + 1.5rem) 0 2.5rem;
  }

  .service-hero-content {
    width: min(1120px, calc(100% - 1.75rem));
    margin-inline: auto;
  }

  .service-hero h1 {
    font-size: clamp(1.9rem, 9vw, 3rem);
    max-width: none;
  }

  .process-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .site-header:not(.is-scrolled):not(.is-nav-open) .nav-toggle span {
    background: var(--white);
  }

  .site-header:not(.is-scrolled):not(.is-nav-open) .theme-toggle {
    color: rgba(255, 255, 255, 0.85);
  }

  .site-header:not(.is-scrolled):not(.is-nav-open) .lang-switch {
    color: rgba(255, 255, 255, 0.75);
  }
}

@media (max-width: 480px) {
  .btn-header-primary {
    display: none;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-help {
    width: 100%;
  }

  .about-signals {
    grid-template-columns: 1fr;
  }

  .testimonial-carousel {
    padding: 0 0 2rem;
  }

  .carousel-btn {
    display: none;
  }

  .carousel-dots {
    margin-top: 1rem;
  }
}

@media (min-width: 900px) {
  .site-header:not(.is-scrolled) .nav-center > a,
  .site-header:not(.is-scrolled) .nav-dropdown-toggle {
    color: rgba(255, 255, 255, 0.62);
  }

  .site-header:not(.is-scrolled) .nav-center > a:hover,
  .site-header:not(.is-scrolled) .nav-dropdown-toggle:hover,
  .site-header:not(.is-scrolled) .nav-dropdown.is-open .nav-dropdown-toggle {
    color: var(--white);
  }

  .site-header:not(.is-scrolled) .theme-toggle {
    color: rgba(255, 255, 255, 0.75);
  }

  .site-header:not(.is-scrolled) .theme-toggle:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
  }

  .site-header:not(.is-scrolled) .btn-header-glass {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.12);
  }

  .page-service .site-header .nav-center > a,
  .page-service .site-header .nav-dropdown-toggle {
    color: rgba(34, 34, 34, 0.55);
  }

  .page-service .site-header .theme-toggle {
    color: rgba(34, 34, 34, 0.6);
  }
}

/* ========= Complete dark mode details ========= */
html[data-theme="dark"] .site-header.is-scrolled .header-inner::before {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}

html[data-theme="dark"] .site-header.is-scrolled .nav-center > a,
html[data-theme="dark"] .site-header.is-scrolled .nav-dropdown-toggle {
  color: rgba(243, 243, 244, 0.55);
}

html[data-theme="dark"] .site-header.is-scrolled .nav-center > a:hover,
html[data-theme="dark"] .site-header.is-scrolled .nav-dropdown-toggle:hover,
html[data-theme="dark"] .site-header.is-scrolled .nav-dropdown.is-open .nav-dropdown-toggle {
  color: #fff;
}

html[data-theme="dark"] .site-header.is-scrolled .theme-toggle {
  color: rgba(243, 243, 244, 0.75);
}

html[data-theme="dark"] .site-header.is-scrolled .theme-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

html[data-theme="dark"] .site-header.is-scrolled .brand-logo-dark {
  display: none;
}

html[data-theme="dark"] .site-header.is-scrolled .brand-logo-light {
  display: block;
}

html[data-theme="dark"] .site-header.is-scrolled .nav-toggle span {
  background: #f3f3f4;
}

html[data-theme="dark"] .btn-header-glass,
html[data-theme="dark"] .site-header.is-scrolled .btn-header-glass {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .btn-header-primary {
  box-shadow: 0 10px 24px rgba(227, 6, 19, 0.35);
}

html[data-theme="dark"] .nav-dropdown-menu {
  background: rgba(22, 22, 26, 0.98);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

html[data-theme="dark"] .nav-mega-head {
  background:
    linear-gradient(135deg, rgba(227, 6, 19, 0.18), transparent 55%),
    linear-gradient(180deg, #1c1c20, #16161a);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .nav-mega-title,
html[data-theme="dark"] .nav-mega-copy strong {
  color: #f3f3f4;
}

html[data-theme="dark"] .nav-mega-copy small,
html[data-theme="dark"] .nav-mega-foot span {
  color: rgba(243, 243, 244, 0.55);
}

html[data-theme="dark"] .nav-mega-item:hover,
html[data-theme="dark"] .nav-mega-item[aria-current="page"] {
  background: rgba(255, 59, 71, 0.12);
}

html[data-theme="dark"] .nav-mega-foot {
  background: #141418;
  border-top-color: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .nav-center.is-open {
  background: rgba(14, 14, 16, 0.98);
}

html[data-theme="dark"] .value-widget,
html[data-theme="dark"] .contact-form,
html[data-theme="dark"] .process-card,
html[data-theme="dark"] .detail-list li {
  background: var(--card-bg);
  border-color: var(--line);
}

html[data-theme="dark"] .detail-list.outcomes li {
  background: transparent;
  border-bottom-color: var(--line);
}

html[data-theme="dark"] .why-widget:hover,
html[data-theme="dark"] .value-widget:hover {
  background: var(--elevated);
  border-color: rgba(255, 59, 71, 0.38);
  box-shadow: var(--shadow-soft);
}

html[data-theme="dark"] .why-widget {
  background: var(--paper-2);
  border-color: var(--line);
}

html[data-theme="dark"] .why-widget:hover {
  border-top-color: var(--red);
}

html[data-theme="dark"] .why-widget-feature {
  background:
    linear-gradient(160deg, rgba(255, 59, 71, 0.12), transparent 55%),
    var(--paper-2);
}

html[data-theme="dark"] .industry-tile {
  background: var(--card-bg);
  border-color: var(--line);
}

html[data-theme="dark"] .industry-mono {
  color: rgba(255, 255, 255, 0.05);
}

html[data-theme="dark"] .industry-tile:hover .industry-mono {
  color: rgba(255, 59, 71, 0.2);
}

html[data-theme="dark"] .industry-tile-ink {
  background: #0a0a0c;
  border-color: rgba(255, 255, 255, 0.08);
  color: #fff;
}

html[data-theme="dark"] .industry-tile-ink:hover {
  background: #101014;
  border-color: var(--red);
}

html[data-theme="dark"] .industry-tile-accent {
  background: linear-gradient(145deg, #1a1214 0%, #221416 100%);
  border-color: rgba(255, 59, 71, 0.28);
}

html[data-theme="dark"] .industry-tile-accent:hover {
  background: linear-gradient(145deg, #221416 0%, #2a1518 100%);
}

html[data-theme="dark"] .industries {
  background:
    radial-gradient(900px 420px at 90% 10%, rgba(227, 6, 19, 0.12), transparent 60%),
    var(--paper-2);
}

html[data-theme="dark"] .logo-row img {
  filter: grayscale(1) contrast(1.05) brightness(1.4);
  opacity: 0.72;
}

html[data-theme="dark"] .logo-row img:hover {
  filter: none;
  opacity: 1;
}

html[data-theme="dark"] .testimonials-bg::after {
  background: linear-gradient(180deg, rgba(5, 5, 6, 0.88), rgba(5, 5, 6, 0.95));
}

html[data-theme="dark"] .testimonial-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

html[data-theme="dark"] .community {
  background: linear-gradient(120deg, #0a0a0c 0%, #141416 55%, #2a1014 100%);
}

html[data-theme="dark"] .contact-form input,
html[data-theme="dark"] .contact-form textarea {
  background: var(--input-bg);
  color: var(--ink);
  border-bottom-color: var(--line);
  caret-color: var(--red);
}

html[data-theme="dark"] .contact-form input::placeholder,
html[data-theme="dark"] .contact-form textarea::placeholder {
  color: rgba(243, 243, 244, 0.35);
}

html[data-theme="dark"] .btn-ghost.dark {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--ink);
}

html[data-theme="dark"] .btn-ghost.dark:hover {
  background: var(--ink);
  color: #0c0c0e;
}

html[data-theme="dark"] .site-footer {
  background: #08080a;
  border-top-color: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .form-note.is-success {
  color: #5ddea0;
}

html[data-theme="dark"] .service-hero .eyebrow {
  background: rgba(255, 255, 255, 0.95);
  color: #e30613;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

html[data-theme="dark"] .related-card {
  background: #121214;
}

html[data-theme="dark"] .related-card:hover {
  background: #1a1a1e;
}

html[data-theme="dark"] .page-service .site-header .nav-center > a,
html[data-theme="dark"] .page-service .site-header .nav-dropdown-toggle {
  color: rgba(243, 243, 244, 0.55);
}

html[data-theme="dark"] .page-service .site-header .theme-toggle {
  color: rgba(243, 243, 244, 0.75);
}

@media (max-width: 899px) {
  html[data-theme="dark"] .nav-dropdown-menu,
  html[data-theme="dark"] .nav-dropdown:hover .nav-dropdown-menu {
    background: #1a1a1e;
    border-color: rgba(255, 255, 255, 0.1);
  }

  html[data-theme="dark"] .nav-center {
    background: rgba(14, 14, 16, 0.98);
  }

  html[data-theme="dark"] .nav-center > a,
  html[data-theme="dark"] .nav-dropdown-toggle {
    color: #f3f3f4;
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  html[data-theme="dark"] .site-header.is-nav-open .brand-logo-dark {
    display: none;
  }

  html[data-theme="dark"] .site-header.is-nav-open .brand-logo-light {
    display: block;
  }

  html[data-theme="dark"] .site-header.is-nav-open .nav-toggle span {
    background: #f3f3f4;
  }

  html[data-theme="dark"] .site-header.is-nav-open .theme-toggle,
  html[data-theme="dark"] .site-header.is-nav-open .lang-switch {
    color: rgba(243, 243, 244, 0.75);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .site-header,
  .hero-media img,
  .hero-content,
  .hero-meta,
  .about-panel,
  .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Service detail pages */
.page-service .site-header.is-scrolled .header-inner::before {
  background: rgba(255, 255, 255, 0.78);
}

.service-hero {
  position: relative;
  min-height: 72svh;
  display: grid;
  align-content: end;
  padding: calc(var(--header-h) + 2.5rem) 0 3.5rem;
  color: var(--white);
  overflow: hidden;
}

.service-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.service-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroZoom 12s var(--ease) forwards;
}

.service-hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.4) 0%, rgba(8, 8, 8, 0.62) 48%, rgba(8, 8, 8, 0.9) 100%),
    radial-gradient(700px 420px at 80% 15%, rgba(227, 6, 19, 0.22), transparent 60%);
}

.service-hero-content {
  position: relative;
  z-index: 1;
  max-width: 46rem;
  margin-inline: clamp(1.25rem, 4vw, 2.5rem) auto;
  width: min(1120px, calc(100% - 2.5rem));
  animation: riseIn 0.9s var(--ease) both;
}

.service-hero .back-link {
  display: block;
  width: fit-content;
  margin-bottom: 1rem;
}

.service-hero .eyebrow {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 1rem;
  padding: 0.35rem 0.65rem;
  background: rgba(255, 255, 255, 0.96);
  color: var(--red);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.back-link {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 1.25rem;
}

.back-link:hover {
  opacity: 1;
  color: #ff6b73;
}

.service-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  max-width: 14ch;
  margin-bottom: 1rem;
}

.service-hero-lede {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  max-width: 42ch;
  opacity: 0.92;
  margin-bottom: 1.75rem;
}

.service-detail-grid,
.service-split {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 900px) {
  .service-detail-grid,
  .service-split {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.service-detail-grid p,
.who-for {
  color: var(--muted);
  max-width: 52ch;
}

.who-for {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.who-for strong {
  color: var(--ink);
}

.service-side-figure {
  margin: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-side-figure img {
  width: 100%;
  height: min(520px, 70vw);
  object-fit: cover;
}

.service-offerings {
  background: var(--paper-2);
}

.detail-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.detail-list li {
  position: relative;
  padding: 0.9rem 0.9rem 0.9rem 1.75rem;
  background: var(--card-bg);
  border: 1px solid var(--line);
  font-weight: 500;
}

.detail-list li::before {
  content: "";
  position: absolute;
  left: 0.75rem;
  top: 1.25rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--red);
}

.detail-list.outcomes li {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding-left: 1.5rem;
}

.process-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.process-card {
  padding: 1.5rem 1.25rem;
  border-top: 2px solid var(--red);
  background: var(--card-bg);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.process-step {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.process-card p {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}

.related-services {
  background: #0b0b0b;
  color: var(--white);
}

.related-services .eyebrow {
  color: #ff6b73;
}

.related-services h2,
.related-services .section-head p {
  color: var(--white);
}

.related-grid {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 3rem;
}

@media (min-width: 700px) {
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.related-card {
  display: grid;
  gap: 0.35rem;
  padding: 1.35rem 1.2rem;
  background: #141414;
  transition: background 0.25s ease;
}

.related-card span {
  color: #ff6b73;
  font-size: 0.8rem;
  font-weight: 700;
}

.related-card:hover {
  background: #1d1d1d;
}

.service-cta {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.service-cta h2 {
  max-width: 18ch;
}

.service-cta p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 42ch;
}
