:root {
  --accent: #f48312;
  --accent-dark: #d96d00;
  --accent-soft: #fff3e8;
  --accent-line: rgba(244, 131, 18, 0.34);
  --ink: #1f2937;
  --muted: #64748b;
  --brand-neutral: #5f6f86;
  --brand-neutral-dark: #344256;
  --brand-wash: #f3f5f8;
  --line: #e5eaf0;
  --soft: #f6f8fb;
  --panel: #ffffff;
  --blue: #38bdf8;
  --shadow: 0 22px 60px rgba(31, 41, 55, 0.08);
}

body[data-theme="dark"] {
  --ink: #e5edf7;
  --muted: #a8b4c7;
  --brand-neutral: #b6c1d2;
  --brand-neutral-dark: #d7dfec;
  --brand-wash: #172132;
  --line: #263449;
  --soft: #0d1420;
  --panel: #111b2a;
  --accent-soft: rgba(244, 131, 18, 0.12);
  --accent-line: rgba(244, 131, 18, 0.42);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--soft);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  width: var(--scroll-progress, 0%);
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  box-shadow: none;
  pointer-events: none;
}

img {
  max-width: 100%;
}

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

.container {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid rgba(229, 234, 240, 0.9);
}

.nav {
  width: min(1180px, calc(100% - 36px));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.nav.is-scrolled {
  background: transparent;
}

.brand-link-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-light {
  width: 50px;
  height: auto;
  display: block;
}

.logo-wordmark {
  width: 132px;
  height: auto;
  display: block;
  margin-left: 8px;
}

.logo-main {
  width: 220px;
  height: auto;
  display: block;
}

.mobile-brand {
  display: none;
}

.mobile-brand-symbol,
.mobile-brand-wordmark {
  display: block;
  width: auto;
  height: auto;
}

.logo-main-dark,
.mobile-brand-symbol-dark,
.mobile-brand-wordmark-dark {
  display: none;
}

body[data-theme="dark"] .logo-main-light,
body[data-theme="dark"] .mobile-brand-symbol-light,
body[data-theme="dark"] .mobile-brand-wordmark-light {
  display: none;
}

body[data-theme="dark"] .logo-main-dark,
body[data-theme="dark"] .mobile-brand-symbol-dark,
body[data-theme="dark"] .mobile-brand-wordmark-dark {
  display: block;
}

.hero-page .nav {
  background: #ffffff;
}

.page-intro {
  padding: 42px 0 16px;
}

.page-intro h1 {
  max-width: 820px;
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.page-intro p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 18px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-link {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--accent-dark);
}

.nav-link.active {
  color: var(--accent-dark);
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  margin-left: 10px;
}

.control-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 34px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.control-button:hover {
  background: var(--accent-soft);
  color: var(--accent-dark);
  border-color: var(--accent-line);
}

.theme-toggle {
  width: 34px;
  padding: 0;
}

.theme-toggle svg,
.language-toggle svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-toggle svg {
  width: 16px;
  height: 16px;
}

.language-toggle svg {
  width: 13px;
  height: 13px;
}

.nav-cta {
  margin-left: auto;
  flex-shrink: 0;
}

.nav-cta-icon {
  width: 16px;
  height: 16px;
  display: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 13px 22px;
  border: 1px solid var(--accent);
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(31, 41, 55, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button::before {
  content: none;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
  box-shadow: 0 16px 34px rgba(31, 41, 55, 0.16);
}

.button:hover::before {
  left: 120%;
}

.button span {
  position: relative;
  z-index: 1;
  display: inline-block;
  transition: transform 0.22s ease;
}

.button:hover span {
  transform: translateX(4px);
}

.button-secondary:hover span {
  transform: translateY(3px);
}

.button-animated {
  animation: none;
}

.button-secondary.button-animated {
  animation: none;
}

.button-secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}

.button-secondary:hover {
  background: #fff;
  color: var(--accent-dark);
  border-color: var(--accent);
}

.button-small {
  min-height: 38px;
  padding: 9px 16px;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 38px 0 30px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  filter: blur(82px);
  pointer-events: none;
}

.hero::before {
  top: -150px;
  left: -160px;
  background: rgba(95, 111, 134, 0.13);
}

.hero::after {
  right: -190px;
  top: 120px;
  background: rgba(95, 111, 134, 0.09);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 46px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 7px;
}

.eyebrow-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--accent-dark);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(2.25rem, 4.8vw, 3.95rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.18;
}

.hero-lead,
.section-title p,
.split-panel p,
.cta-box p {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 22px;
}

.hero .hero-lead,
.hero .hero-actions,
.hero .hero-photo-overlay {
  display: none;
}

.hero-followup {
  padding: 10px 0 34px;
}

.hero-followup-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 22px 28px;
  border: 1px solid var(--accent-line);
  border-left: 4px solid var(--accent);
  border-radius: 18px;
  background: var(--accent-soft);
  box-shadow: 0 8px 28px rgba(31, 41, 55, 0.07);
}

.hero-followup-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--accent-dark);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.7;
}

.hero-followup-copy {
  flex: 1;
  min-width: 0;
}

.hero-followup .hero-lead {
  margin: 0;
}

.hero-followup-divider {
  width: 1px;
  height: 44px;
  background: var(--accent-line);
  flex-shrink: 0;
}

.hero-followup-actions {
  flex-shrink: 0;
}

.hero-responsibility {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.hero-responsibility strong {
  color: var(--ink);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-actions.center {
  justify-content: center;
}

.small-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 620px;
  margin-top: 18px;
}

.stats-strip-context,
.stats-strip-profile {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: none;
  margin: 0 0 14px;
}

.stats-strip-profile {
  margin-top: 14px;
  margin-bottom: 10px;
}

.stat-card {
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 30px rgba(31, 41, 55, 0.055);
}

.stat-card .line-icon,
.profile-stat .line-icon {
  width: 34px;
  height: 34px;
  margin: 0 0 8px;
}

.stat-card strong {
  display: block;
  color: var(--brand-neutral-dark);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1;
}

.stat-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.hero-card {
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.hero-photo-card {
  position: relative;
  min-height: 390px;
  margin-bottom: 0;
  padding: 0;
  overflow: hidden;
  background: #ffffff;
  border-radius: 18px;
  animation: none;
}

.hero-photo-card > img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  display: block;
  object-fit: cover;
  object-position: 62% 58%;
  border-radius: 18px;
  animation: heroPhotoZoom 14s ease-in-out infinite;
  transform-origin: 62% 58%;
}

.hero-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0), rgba(15, 23, 42, 0.22));
}

.hero-photo-overlay {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: none;
  animation: none;
}

.hero-photo-overlay p {
  margin: 0 0 4px;
  color: var(--muted);
  font-weight: 800;
}

.hero-photo-overlay strong {
  display: block;
  font-size: 1.15rem;
  line-height: 1.25;
}

.dashboard-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 20px;
  background: #ffffff;
}

.dashboard-card p {
  margin: 0 0 4px;
  color: var(--muted);
  font-weight: 700;
}

.dashboard-card strong {
  font-size: 1.25rem;
}

.status-dot {
  display: inline-block;
  width: 38px;
  height: 3px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: none;
}

.flow-visual {
  display: grid;
  grid-template-columns: 1fr 36px 1fr 36px 1fr;
  align-items: center;
  gap: 10px;
  margin: 22px 0;
}

.flow-node {
  min-height: 76px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  font-weight: 900;
}

.flow-node-accent {
  color: #fff;
  background: var(--brand-neutral-dark);
  border-color: var(--brand-neutral-dark);
}

.flow-line {
  height: 2px;
  background: linear-gradient(90deg, var(--brand-neutral-dark), var(--brand-neutral));
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.metric-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  background: #fff;
}

.metric-card span,
.number-badge,
.step-card span {
  color: var(--accent-dark);
  font-weight: 950;
}

.metric-card strong {
  display: block;
}

.metric-card p {
  margin: 0;
  color: var(--muted);
}

[id] {
  scroll-margin-top: 78px;
}

.section {
  padding: 78px 0;
}

.legal-page {
  width: min(980px, calc(100% - 36px));
  margin: 34px auto;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.legal-page h1 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.legal-page h2 {
  margin-top: 30px;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  letter-spacing: -0.02em;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
}

.legal-page a {
  color: var(--accent-dark);
  font-weight: 700;
  overflow-wrap: anywhere;
}

body:has(.legal-page) main .section:not(.legal-page) {
  width: min(980px, calc(100% - 36px));
  margin: 20px auto;
  padding: 30px 36px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(31, 41, 55, 0.05);
}

body:has(.legal-page) main .section:not(.legal-page) h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  letter-spacing: -0.02em;
}

body:has(.legal-page) main .section:not(.legal-page) p,
body:has(.legal-page) main .section:not(.legal-page) li {
  color: var(--muted);
}

.section-title {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-title .eyebrow {
  justify-content: center;
}

.section-title.compact {
  margin-bottom: 26px;
}

.card-grid {
  display: grid;
  gap: 18px;
  align-items: start;
}

.card-grid.three {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .card-grid.three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 981px) {
  .card-grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.service-overview {
  max-width: 980px;
  margin: 0 auto;
  gap: 16px;
}

.info-card,
.service-card,
.step-card,
.compare-card,
details {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(31, 41, 55, 0.055);
  position: relative;
  z-index: 0;
}

.info-card,
.service-card,
.step-card {
  padding: 26px;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-overview .service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 28px;
  text-align: left;
}

.service-overview .line-icon {
  width: 46px;
  height: 46px;
  margin: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
}

.service-card-head {
  display: grid;
  justify-items: start;
  gap: 13px;
  width: 100%;
  margin-bottom: 16px;
}

.service-card-head .area-badge {
  margin-bottom: 8px;
}

.service-overview .area-badge,
.area-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 6px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-overview h3 {
  margin: 0;
  line-height: 1.18;
}

.service-overview > .service-card > p {
  max-width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  text-wrap: pretty;
}

@media (min-width: 981px) {
  .service-overview .service-card h3,
  .service-overview .service-card > p,
  .service-overview .service-points,
  .service-overview .service-keywords {
    min-height: 0;
  }
}

@media (min-width: 981px) {
  .service-card h3 {
    min-height: 52px;
  }

  .service-card > p {
    min-height: 78px;
  }
}

.info-card,
.service-card,
.step-card,
.compare-card,
.crew-panel article,
.process-flow div {
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.info-card:hover,
.service-card:hover,
.step-card:hover,
.compare-card:hover,
.crew-panel article:hover,
.process-flow div:hover {
  transform: translateY(-5px);
  border-color: var(--accent-line);
  box-shadow: 0 22px 50px rgba(244, 131, 18, 0.12);
  z-index: 1;
}

.info-card img {
  width: 86px;
  height: 86px;
  object-fit: contain;
  padding: 12px;
  margin-bottom: 18px;
  border: 1px solid var(--accent-line);
  border-radius: 16px;
  background: var(--accent-soft);
}

.info-card .line-icon {
  width: 58px;
  height: 58px;
  padding: 13px;
  border: 1px solid var(--accent-line);
  border-radius: 16px;
  background: var(--accent-soft);
  margin-bottom: 18px;
}

.section-title-icon {
  width: 46px;
  height: 46px;
  display: block;
  margin: 0 auto 14px;
  fill: none;
  stroke: var(--accent-dark);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.summary-content {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.summary-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--accent-dark);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-top: 2px;
}

.digital-bridge-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--accent-dark);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (min-width: 981px) {
  .info-card,
  .service-card,
  .step-card,
  .compare-card,
  .digital-grid article,
  .process-flow div,
  .crew-panel article,
  .stat-card,
  .profile-stat {
    text-align: center;
  }

  .info-card img,
  .info-card .line-icon,
  .section-title-icon,
  .digital-grid .line-icon,
  .stat-card .line-icon,
  .profile-stat .line-icon,
  .service-card .line-icon,
  .step-card .line-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .number-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .tag-row {
    justify-content: center;
  }

  .service-overview .line-icon {
    margin-left: 0;
    margin-right: 0;
  }

  .service-overview .tag-row {
    justify-content: flex-start;
  }

  .crew-panel .line-icon {
    margin: -34px auto 10px;
  }

  .crew-panel span {
    margin-left: auto;
    margin-right: auto;
  }

  .profile-card {
    text-align: center;
  }

  .profile-stat {
    text-align: left;
  }

  .profile-stat .line-icon {
    margin-left: 0;
    margin-right: 0;
  }

  .profile-card h2 {
    margin-left: auto;
    margin-right: auto;
  }

  .profile-card p {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }
}

.info-card p,
.service-card p,
.step-card p,
.compare-card p,
details p,
.profile-card p,
.crew-panel p {
  color: var(--muted);
}

.section-panel {
  padding: 30px 0;
}

.split-panel,
.hub-box,
.cta-box,
.contact-box {
  border: 1px solid var(--accent-line);
  border-radius: 34px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.split-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 38px;
  align-items: center;
  padding: 44px;
}

.truth-list {
  display: grid;
  gap: 12px;
}

.truth-media {
  position: relative;
}

.truth-media > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  object-position: 62% 48%;
  margin-bottom: 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
}

.truth-list div {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: var(--muted);
  font-weight: 700;
}

.truth-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.truth-icon-yes {
  stroke: var(--accent-dark);
}

.truth-icon-warn {
  stroke: var(--accent-dark);
  opacity: 0.7;
}

.number-badge {
  display: inline-grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin-bottom: 18px;
  border: 1px solid var(--accent-line);
  border-radius: 16px;
  background: var(--accent-soft);
  font-size: 1.25rem;
}

.tag-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.tag-row span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border: 1px solid var(--accent-line);
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.service-points {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.service-overview .service-points {
  width: min(100%, 640px);
}

.service-overview .service-points li::before {
  border-color: var(--line);
  box-shadow: inset 0 0 0 4px #ffffff;
  background: var(--muted);
  opacity: 0.38;
}

@media (min-width: 981px) {
  .service-points {
    min-height: 128px;
  }
}

.service-points li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.service-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.38em;
  width: 14px;
  height: 14px;
  border: 1px solid var(--accent-line);
  border-radius: 50%;
  background: #ffffff;
  box-shadow: inset 0 0 0 4px var(--accent-soft);
}

.service-keywords {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.service-overview .service-keywords {
  width: min(100%, 640px);
  margin-top: 18px;
  padding: 14px 0 0;
}

.service-overview .tag-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
}

.service-overview .tag-row span {
  min-height: 0;
  padding: 6px 10px;
  border-color: var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

@media (min-width: 981px) {
  .service-keywords {
    min-height: 132px;
  }
}

.keyword-label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-overview .keyword-label {
  margin-bottom: 9px;
  font-size: 0.68rem;
}

.section-digital {
  padding-top: 34px;
}

.digital-box {
  padding: 44px;
  border: 1px solid var(--accent-line);
  border-radius: 34px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.digital-intro {
  max-width: 840px;
  margin-bottom: 28px;
}

.digital-intro p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.digital-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.digital-grid article {
  padding: 20px;
  border: 1px solid var(--accent-line);
  border-radius: 20px;
  background: #fff;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.digital-grid article:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 22px 50px rgba(244, 131, 18, 0.12);
}

.digital-grid .line-icon {
  margin: 0 auto 14px;
}

.digital-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-more {
  margin: 18px 0 0;
  padding: 0;
  border: 1px solid rgba(244, 131, 18, 0.24);
  border-radius: 20px;
  background:
    radial-gradient(circle at 10% 0%, rgba(244, 131, 18, 0.18), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #fff9f4 54%, #fff1e5 100%);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  position: relative;
  transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease, background 0.24s ease;
}

.service-more::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(244, 131, 18, 0.85), rgba(244, 131, 18, 0)) 0 0 / 4px 100% no-repeat,
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.74) 45%, transparent 70%);
  opacity: 0;
  transform: translateX(-70%);
  transition: opacity 0.24s ease, transform 0.6s ease;
  pointer-events: none;
}

.service-more::after {
  content: '';
  position: absolute;
  right: -46px;
  top: -58px;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(244, 131, 18, 0.22), transparent 66%);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.28s ease, transform 0.28s ease;
  pointer-events: none;
}

.service-overview .service-more {
  width: min(100%, 640px);
}

.service-more:hover {
  border-color: rgba(244, 131, 18, 0.5);
  box-shadow: 0 24px 54px rgba(244, 131, 18, 0.16);
  transform: translateY(-2px);
}

.service-more:hover::before {
  opacity: 1;
  transform: translateX(70%);
}

.service-overview .service-more summary {
  color: var(--ink);
}

.service-overview .service-more[open] {
  border-color: rgba(244, 131, 18, 0.58);
  background:
    radial-gradient(circle at 88% 0%, rgba(244, 131, 18, 0.24), transparent 32%),
    radial-gradient(circle at 0% 100%, rgba(244, 131, 18, 0.12), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #fffaf6 48%, #fff0df 100%);
}

.service-more summary {
  min-height: 58px;
  padding: 12px 14px 12px 18px;
  border: 0;
  border-radius: 20px;
  background: transparent;
  color: var(--ink);
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  align-items: center;
  position: relative;
  z-index: 1;
  transition: color 0.22s ease, background 0.22s ease;
}

.service-more summary::before {
  content: "";
  width: 42px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(244, 131, 18, 0.25), rgba(244, 131, 18, 0.85));
  order: -1;
  opacity: 0.85;
  transform: scaleX(0.72);
  transform-origin: left center;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.service-more:hover summary::before,
.service-more[open] summary::before {
  opacity: 1;
  transform: scaleX(1);
}

.service-more.is-swiping summary::before {
  transform: scaleX(1.25);
}

.service-more-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
  flex: 1;
}

.service-more-kicker {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.service-more-title {
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 950;
  line-height: 1.2;
  transition: color 0.22s ease, transform 0.22s ease;
}

.service-more:hover .service-more-title,
.service-more[open] .service-more-title {
  color: var(--accent-dark);
  transform: translateX(2px);
}

.service-more summary:hover {
  color: var(--accent-dark);
}

.service-more summary::after {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(244, 131, 18, 0.28);
  border-radius: 999px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.95), transparent 32%),
    #ffffff;
  box-shadow: 0 10px 24px rgba(244, 131, 18, 0.18);
  color: var(--accent-dark);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1;
  margin-top: 0;
  transform: rotate(0deg);
  transition: transform 0.24s ease, background 0.24s ease, color 0.24s ease, box-shadow 0.24s ease;
}

.service-more:hover summary::after {
  box-shadow: 0 14px 30px rgba(244, 131, 18, 0.28);
  transform: rotate(90deg) scale(1.04);
}

.service-more p {
  margin: 0;
  padding: 4px 22px 0 28px;
  color: var(--muted);
  text-align: left;
  position: relative;
  z-index: 1;
}

.service-more[open] summary {
  border-radius: 20px 20px 0 0;
  color: var(--accent-dark);
}

.service-more[open] {
  border-color: rgba(244, 131, 18, 0.58);
  box-shadow: 0 26px 62px rgba(244, 131, 18, 0.18);
  transform: translateY(-2px);
}

.service-more[open]::before {
  opacity: 1;
  transform: translateX(0);
}

.service-more[open]::after {
  opacity: 1;
  transform: scale(1);
}

.service-more[open] summary::after {
  content: '-';
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(244, 131, 18, 0.32);
  transform: none;
}

.service-more[open] p,
.service-more[open] .keyword-list {
  animation: serviceMoreReveal 0.34s ease both;
}

.service-more[open] .keyword-list {
  animation-delay: 0.04s;
}

.service-more .keyword-list {
  counter-reset: service-more-list;
  gap: 10px;
  padding: 16px 20px 20px 28px;
  position: relative;
  z-index: 1;
}

.service-more .keyword-list li {
  counter-increment: service-more-list;
  padding: 12px 14px 12px 48px;
  border: 1px solid rgba(244, 131, 18, 0.18);
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(244, 131, 18, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  text-align: left;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
  transform: translateX(0);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.service-more .keyword-list li:hover {
  border-color: rgba(244, 131, 18, 0.38);
  background:
    linear-gradient(90deg, rgba(244, 131, 18, 0.14), transparent 38%),
    #ffffff;
  box-shadow: 0 14px 28px rgba(244, 131, 18, 0.13);
  transform: translateX(5px);
}

.service-more .keyword-list li::before {
  content: counter(service-more-list, decimal-leading-zero);
  left: 12px;
  top: 50%;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%);
}

@keyframes serviceMoreReveal {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.keyword-list {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.keyword-list li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.45;
}

.keyword-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}

.content-accordion {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.content-accordion details {
  margin-bottom: 0;
  border-color: var(--accent-line);
  background: #ffffff;
}

.content-accordion p {
  color: var(--muted);
}

.keyword-list-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 22px;
}

.digital-bridge {
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid var(--accent-line);
  border-left: 4px solid var(--accent);
  border-radius: 20px;
  background: var(--accent-soft);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.digital-bridge-text {
  flex: 1;
}

.digital-bridge strong {
  display: block;
  margin-bottom: 6px;
}

.digital-bridge p {
  margin-bottom: 0;
  color: var(--muted);
}

.hub-box {
  padding: 44px;
}

.hub-lead {
  max-width: 900px;
  margin: 18px auto 26px;
  color: var(--muted);
  text-align: center;
}

.hub-visual-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  max-width: 1120px;
  margin: 12px auto 34px;
}

.hub-visual-card {
  --hub-delay: 0s;
  position: relative;
  margin: 0;
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgba(244, 131, 18, 0.22);
  border-radius: 20px;
  background:
    radial-gradient(circle at 20% 0%, rgba(244, 131, 18, 0.16), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #fffaf6 58%, #fff1e4 100%);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.09);
  opacity: 0;
  transform: translateY(14px);
  animation: hubVisualIntro 1.1s ease-out forwards;
  animation-delay: var(--hub-delay);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.hub-visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.72) 42%, transparent 70%);
  opacity: 0;
  transform: translateX(-60%);
  transition: opacity 0.25s ease, transform 0.7s ease;
  pointer-events: none;
}

.hub-visual-card::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 18px;
  bottom: 58px;
  width: 34%;
  border-radius: 18px;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.75) 46%, rgba(244, 131, 18, 0.16) 50%, transparent 100%);
  filter: blur(0.2px);
  opacity: 0;
  transform: translateX(-120%);
  animation: hubVisualIntroScan 1.45s ease-out forwards;
  animation-delay: var(--hub-delay);
  pointer-events: none;
}

.hub-visual-card:hover {
  transform: translateY(-6px);
  border-color: rgba(244, 131, 18, 0.42);
  box-shadow: 0 28px 68px rgba(244, 131, 18, 0.16);
}

.hub-visual-card:hover::before {
  opacity: 1;
  transform: translateX(60%);
}

.hub-visual-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 13px;
  animation: hubImageIntro 1.15s ease-out forwards;
  animation-delay: var(--hub-delay);
}

.hub-image-dark {
  display: none !important;
}

body[data-theme="dark"] .hub-image-light {
  display: none !important;
}

body[data-theme="dark"] .hub-image-dark {
  display: block !important;
}

.hub-visual-tag {
  position: absolute;
  z-index: 3;
  top: 24px;
  left: 24px;
  padding: 7px 10px;
  border: 1px solid rgba(244, 131, 18, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--accent-dark);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  animation: hubTagIntro 0.9s ease-out forwards;
  animation-delay: var(--hub-delay);
}

.hub-visual-card figcaption {
  position: relative;
  z-index: 1;
  margin: 14px 4px 2px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 850;
  text-align: center;
  animation: hubCaptionIntro 0.9s ease-out forwards;
  animation-delay: var(--hub-delay);
}

.hub-visual-card[data-lang-visual="de"]:nth-of-type(1),
.hub-visual-card[data-lang-visual="en"]:nth-of-type(3) {
  --hub-delay: 0s;
}

.hub-visual-card[data-lang-visual="de"]:nth-of-type(2),
.hub-visual-card[data-lang-visual="en"]:nth-of-type(4) {
  --hub-delay: 0.35s;
}

@keyframes hubVisualIntro {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.992);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes hubVisualIntroScan {
  0% {
    opacity: 0;
    transform: translateX(-120%);
  }

  22% {
    opacity: 0.75;
  }

  78% {
    opacity: 0.26;
    transform: translateX(315%);
  }

  100% {
    opacity: 0;
    transform: translateX(315%);
  }
}

@keyframes hubImageIntro {
  from {
    transform: scale(1.014);
    filter: saturate(0.96) contrast(0.98);
  }

  to {
    transform: scale(1);
    filter: none;
  }
}

@keyframes hubTagIntro {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hubCaptionIntro {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hub-visual-card[data-lang-visual="en"] {
  display: none;
}

body[data-lang="en"] .hub-visual-card[data-lang-visual="de"] {
  display: none;
}

body[data-lang="en"] .hub-visual-card[data-lang-visual="en"],
body[data-lang="de"] .hub-visual-card[data-lang-visual="de"] {
  display: block;
}

.hub-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 900px;
  margin: 22px auto 0;
}

.hub-value-grid div {
  padding: 20px 18px;
  border: 1px solid var(--accent-line);
  border-radius: 18px;
  background: var(--accent-soft);
  text-align: center;
}

.hub-value-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

.hub-value-icon {
  width: 38px;
  height: 38px;
  display: block;
  margin: 0 auto 12px;
  padding: 8px;
  border: 1px solid var(--accent-line);
  border-radius: 13px;
  background: #ffffff;
  fill: none;
  stroke: var(--accent-dark);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hub-value-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

@media (min-width: 981px) {
  .process-flow div:nth-child(5) {
    grid-column: 1 / span 1;
    transform: translateX(calc(50% + 6px));
  }

  .process-flow div:nth-child(6) {
    grid-column: 2 / span 1;
    transform: translateX(calc(50% + 6px));
  }

  .process-flow div:nth-child(7) {
    grid-column: 3 / span 1;
    transform: translateX(calc(50% + 6px));
  }

  .process-flow div:nth-child(n + 5):hover {
    transform: translateX(calc(50% + 6px)) translateY(-5px);
  }
}

.process-flow div {
  min-height: 188px;
  padding: 18px 16px;
  border: 1px solid var(--accent-line);
  border-radius: 18px;
  background: #fff;
  text-align: center;
  font-weight: 900;
}

.line-icon {
  width: 44px;
  height: 44px;
  display: block;
  margin: 0 auto 10px;
  fill: none;
  stroke: var(--accent-dark);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-flow span {
  display: block;
  margin-bottom: 4px;
  color: var(--accent-dark);
}

.process-flow strong {
  display: block;
  color: var(--ink);
}

.process-flow p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.45;
}

.hub-actions {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.crew-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
}

.crew-layout > .profile-card {
  grid-row: 1;
}

.crew-layout > .profile-stat {
  grid-row: 2;
}

.crew-layout > .crew-stack {
  grid-row: 3;
}

.profile-card,
.crew-stack {
  border: 1px solid var(--accent-line);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow);
}

.profile-card {
  padding: 28px;
}

.profile-card img {
  width: 190px;
  height: 190px;
  flex-shrink: 0;
  object-fit: cover;
  object-position: 33% 16%;
  border-radius: 14px;
}

.profile-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  text-align: left;
}

.profile-header-text {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.profile-header-text h2 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  margin-left: 0;
  margin-right: 0;
}

.profile-header-text p {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.profile-header-text .eyebrow {
  justify-content: flex-start;
}

.founder-bio {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.founder-bio article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  text-align: center;
}

.bio-icon {
  width: 38px;
  height: 38px;
  display: block;
  margin: 0 auto 12px;
  padding: 8px;
  border: 1px solid var(--accent-line);
  border-radius: 13px;
  background: var(--accent-soft);
  fill: none;
  stroke: var(--accent-dark);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.founder-bio strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

.founder-bio p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.profile-stat {
  overflow: hidden;
  grid-column: 1 / -1;
  width: 100%;
  margin: 0;
  min-height: 58px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  text-align: left;
}

.profile-stat-head {
  display: none;
}

.profile-stat-head > div {
  min-width: 0;
}

.profile-stat-head span {
  display: block;
  margin-bottom: 3px;
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.profile-stat strong {
  display: block;
  color: var(--brand-neutral-dark);
  font-size: 1rem;
  line-height: 1.2;
}

.profile-stat p {
  margin: 6px auto 0;
  font-weight: 800;
  text-align: center;
  max-width: 320px;
}

.profile-focus-list {
  width: max-content;
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 30px;
  min-height: 58px;
  padding: 0 30px;
  animation: profileTicker var(--ticker-duration, 62s) linear infinite;
  will-change: transform;
}

.profile-focus-list::before {
  content: "Kompetenzfelder  ·  Kompetenzen, die zusammenarbeiten";
  flex: 0 0 auto;
  color: var(--brand-neutral-dark);
  font-size: 0.94rem;
  font-weight: 900;
  white-space: nowrap;
}

body[data-lang="en"] .profile-focus-list::before {
  content: "Competence fields  ·  Competencies that work together";
}

.profile-focus-list span {
  min-width: 0;
  min-height: 38px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.15;
  overflow-wrap: anywhere;
  word-break: normal;
  white-space: nowrap;
}

@keyframes profileTicker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(var(--ticker-offset, -50%));
  }
}

@media (prefers-reduced-motion: reduce) {
  .profile-stat {
    flex-wrap: wrap;
    gap: 14px 22px;
  }

  .profile-stat-head {
    animation: none;
    transform: none;
  }

  .profile-focus-list {
    width: auto;
    flex-wrap: wrap;
    animation: none;
    transform: none;
  }
}

.profile-focus-list svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--accent-dark);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.crew-stack {
  padding: 16px;
  border-color: var(--line);
}

.crew-stack-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
  object-position: 63% 54%;
  margin-bottom: 14px;
  border-radius: 22px;
}

.career-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
}

.career-strip-title {
  width: 100%;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.career-strip span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f8fafc;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.founder-quote {
  margin: 0 0 14px;
  padding: 18px 20px 18px 58px;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.5;
}

.founder-quote::before {
  content: "“";
  position: absolute;
  left: 18px;
  top: 18px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--accent-line);
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-family: Georgia, serif;
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1;
}

.crew-model {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.crew-model article {
  min-height: 168px;
  padding: 16px 14px;
  border: 1px solid rgba(244, 131, 18, 0.18);
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 0%, rgba(244, 131, 18, 0.14), transparent 35%),
    #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  text-align: center;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.crew-model article:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 131, 18, 0.38);
  box-shadow: 0 18px 38px rgba(244, 131, 18, 0.13);
}

.crew-model .line-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 10px;
  padding: 9px;
  border: 1px solid var(--accent-line);
  border-radius: 14px;
  background: var(--accent-soft);
  stroke-width: 1.7;
}

.crew-model strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 0.94rem;
}

.crew-model p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.crew-panel-intro {
  margin-bottom: 12px;
  text-align: center;
}

.crew-panel-intro span {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.crew-panel-intro p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.crew-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.crew-panel article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  text-align: center;
}

.crew-panel span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 34px;
  margin-bottom: 8px;
  border: 1px solid var(--accent-line);
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 900;
}

.crew-panel .line-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 12px;
  padding: 9px;
  border: 1px solid var(--accent-line);
  border-radius: 14px;
  background: var(--accent-soft);
  stroke-width: 1.7;
}

.crew-panel strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.98rem;
}

.crew-panel p {
  margin-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.45;
}

.step-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--accent-dark);
  font-size: 3rem;
  line-height: 1;
}

.compare-section {
  padding-top: 40px;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.compare-card {
  padding: 28px;
}

.compare-icon {
  width: 44px;
  height: 44px;
  display: block;
  margin: 0 auto 14px;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  padding: 12px;
  border-radius: 16px;
}

.compare-icon-negative {
  stroke: #94a3b8;
  background: rgba(148, 163, 184, 0.14);
}

.compare-icon-positive {
  stroke: var(--accent-dark);
  background: var(--accent-soft);
}

.compare-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.compare-list li {
  position: relative;
  padding: 12px 14px 12px 42px;
  border: 1px solid rgba(229, 234, 240, 0.9);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.compare-list li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 17px;
  width: 16px;
  height: 16px;
  border: 1.5px solid #94a3b8;
  border-radius: 50%;
  background: #ffffff;
}

.compare-list li::after {
  content: "";
  position: absolute;
  left: 19px;
  top: 24px;
  width: 6px;
  height: 1.5px;
  border-radius: 999px;
  background: #94a3b8;
}

.compare-list-positive li::before {
  border-color: var(--accent);
}

.compare-list-positive li::after {
  left: 19px;
  top: 22px;
  width: 8px;
  height: 5px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  border-radius: 0;
  background: transparent;
  transform: rotate(-45deg);
}

.compare-card-featured {
  border-color: var(--accent-line);
  background: #ffffff;
  box-shadow: 0 24px 58px rgba(31, 41, 55, 0.1);
}

.compare-card-featured .button {
  margin-top: 24px;
}

.faq-container {
  max-width: 920px;
}

details {
  padding: 20px 24px;
  margin-bottom: 12px;
}

summary {
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 900;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent-dark);
  flex-shrink: 0;
  line-height: 1;
  margin-top: 1px;
  transition: transform 0.22s ease;
  display: block;
}

details[open] summary::after {
  content: '-';
  transform: none;
}

details p {
  margin: 14px 0 0;
}

.cta-box {
  max-width: 980px;
  padding: 54px 28px;
  text-align: center;
}

.cta-box p {
  max-width: 760px;
  margin: 0 auto 26px;
}

.contact-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  padding: 44px;
}

.contact-details {
  padding-right: 10px;
}

.contact-details p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-intro-note {
  margin-top: 14px;
  padding: 14px 16px;
  border-left: 3px solid var(--accent);
  border-radius: 14px;
  background: rgba(244, 131, 18, 0.07);
  color: var(--brand-neutral-dark) !important;
  font-size: 0.96rem !important;
  font-weight: 750;
  line-height: 1.5;
}

.contact-list {
  display: grid;
  gap: 0;
  margin: 24px 0 0;
  border-top: 1px solid var(--line);
}

.contact-list > a,
.contact-list > div {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-height: auto;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.contact-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--accent-dark);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-top: 2px;
}

.contact-list span,
.form-field label span,
.form-note {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.contact-list strong {
  display: block;
  margin-top: 2px;
  color: var(--ink);
  line-height: 1.35;
}

.contact-form {
  align-self: center;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 0 0 0 42px;
  border: 0;
  border-left: 1px solid var(--accent-line);
  border-radius: 0;
  background: transparent;
}

.form-field-wide,
.form-field-hidden,
.form-consent,
.form-submit-row,
.form-note,
.form-success-note {
  grid-column: 1 / -1;
}

.form-field-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field label {
  color: var(--ink);
  font-weight: 900;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 14px;
  background: #f8fafc;
  color: var(--ink);
  font: inherit;
}

.form-field textarea {
  resize: vertical;
  min-height: 150px;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: 2px solid rgba(244, 131, 18, 0.22);
  border-color: var(--accent);
  background: #ffffff;
}

.form-note {
  margin: 0;
  line-height: 1.45;
}

.form-note a {
  color: var(--accent-dark);
  font-weight: 800;
}

.form-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  color: var(--ink);
  font-size: 0.95rem;
}

.form-consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  display: grid;
  place-content: center;
  appearance: none;
  border: 1.5px solid #9ca3af;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
}

.form-consent input::before {
  content: "";
  width: 9px;
  height: 5px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg) scale(0);
  transform-origin: center;
  transition: transform 0.12s ease;
}

.form-consent input:checked {
  border-color: var(--accent);
  background: var(--accent);
}

.form-consent input:checked::before {
  transform: rotate(-45deg) scale(1);
}

.form-consent input:focus-visible {
  outline: 2px solid rgba(244, 131, 18, 0.28);
  outline-offset: 2px;
}

.form-consent .consent-text + span {
  display: none;
}

.form-submit-row {
  display: flex;
  align-items: center;
}

.form-submit-row .button {
  min-height: 38px;
  padding: 9px 20px;
  border-radius: 999px;
}

.form-submit-row .button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-success-note {
  display: none;
  margin: 0;
  padding: 13px 14px;
  border: 1px solid var(--accent);
  border-radius: 10px;
  background: #fff6d8;
  color: var(--ink);
  font-weight: 900;
}

.form-success-note.is-visible {
  display: block;
}

.form-success-note.is-error {
  border-color: #ef4444;
  background: #fff1f2;
  color: #991b1b;
}

.site-footer {
  padding: 18px 0 22px;
  background: var(--soft);
}

.footer-inner {
  width: min(1180px, calc(100% - 36px));
  min-height: 118px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  padding: 24px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  box-shadow: 0 14px 36px rgba(31, 41, 55, 0.08);
  backdrop-filter: blur(16px);
}

.footer-claim {
  margin: 0;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
}

.footer-badge-icon {
  width: 15px;
  height: 15px;
  display: inline-block;
  vertical-align: -3px;
  fill: none;
  stroke: var(--accent-dark);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-right: 4px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 14px 24px;
  flex-wrap: wrap;
  padding: 0 12px;
}

.footer-links a,
.footer-links button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
}

.footer-links a:hover,
.footer-links button:hover {
  color: var(--accent-dark);
}

.footer-inner small {
  color: var(--muted);
  font-size: 0.78rem;
}

.cookie-modal-open {
  overflow: auto;
}

.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: grid;
  align-items: end;
  justify-items: center;
  padding: 16px;
  background: transparent;
  pointer-events: none;
}

.cookie-modal {
  width: min(560px, calc(100vw - 24px));
  max-height: min(82vh, 720px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.24);
  pointer-events: auto;
}

.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px 4px;
}

.cookie-modal-header h2 {
  margin: 0;
  font-size: 1.05rem;
}

.cookie-close {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--brand-wash);
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.cookie-modal-content {
  overflow: auto;
  padding: 4px 16px 10px;
}

.cookie-modal-content p {
  margin: 8px 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.cookie-summary {
  margin-bottom: 0;
}

.cookie-modal-content a {
  color: var(--accent-dark);
  font-weight: 700;
}

.cookie-accordion-item {
  margin-top: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--brand-wash);
}

.cookie-accordion-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.cookie-chevron {
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.cookie-accordion-toggle[aria-expanded="true"] .cookie-chevron {
  transform: rotate(225deg);
}

.cookie-panel {
  padding: 0 16px 16px;
}

.cookie-panel h3 {
  margin: 16px 0 6px;
  font-size: 1rem;
}

.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cookie-switch {
  width: 54px;
  height: 30px;
  flex: 0 0 auto;
  padding: 3px;
  border: 0;
  border-radius: 999px;
  background: #cbd5e1;
  cursor: pointer;
  transition: background 0.2s ease;
}

.cookie-switch-knob {
  width: 24px;
  height: 24px;
  display: block;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.2);
  transition: transform 0.2s ease;
}

.cookie-switch.is-on {
  background: var(--brand-neutral-dark);
}

.cookie-switch.is-on .cookie-switch-knob {
  transform: translateX(24px);
}

.cookie-modal-actions {
  padding: 10px 16px 14px;
  border-top: 1px solid var(--line);
  background: #f8fafc;
}

.cookie-action-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 8px;
}

.cookie-action {
  min-height: 40px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 900;
  cursor: pointer;
}

.cookie-action.primary {
  border-color: var(--brand-neutral-dark);
  background: var(--brand-neutral-dark);
  color: #ffffff;
}

.cookie-action.ghost,
.cookie-action.outline {
  background: #ffffff;
  color: var(--ink);
}

.cookie-action.outline {
  width: 100%;
}

.cookie-confirm {
  margin-top: 8px;
}

body[data-theme="dark"] .site-header,
body[data-theme="dark"] .hero-page .nav,
body[data-theme="dark"] .nav-toggle,
body[data-theme="dark"] .button-secondary,
body[data-theme="dark"] .hero-card,
body[data-theme="dark"] .dashboard-card,
body[data-theme="dark"] .legal-page,
body[data-theme="dark"] .info-card,
body[data-theme="dark"] .service-card,
body[data-theme="dark"] .step-card,
body[data-theme="dark"] .compare-card,
body[data-theme="dark"] details,
body[data-theme="dark"] .split-panel,
body[data-theme="dark"] .hub-box,
body[data-theme="dark"] .cta-box,
body[data-theme="dark"] .contact-box,
body[data-theme="dark"] .digital-box,
body[data-theme="dark"] .digital-grid article,
body[data-theme="dark"] .digital-bridge,
body[data-theme="dark"] .hub-visual-card,
body[data-theme="dark"] .process-flow div,
body[data-theme="dark"] .profile-card,
body[data-theme="dark"] .crew-stack,
body[data-theme="dark"] .crew-model article,
body[data-theme="dark"] .crew-panel article,
body[data-theme="dark"] .profile-stat,
body[data-theme="dark"] .founder-bio article,
body[data-theme="dark"] .career-strip,
body[data-theme="dark"] .career-strip span,
body[data-theme="dark"] .contact-list > a,
body[data-theme="dark"] .contact-list > div,
body[data-theme="dark"] .footer-inner,
body[data-theme="dark"] .hero-followup-inner,
body[data-theme="dark"] .cookie-modal,
body[data-theme="dark"] .cookie-accordion-item,
body[data-theme="dark"] .cookie-action.ghost,
body[data-theme="dark"] .cookie-action.outline {
  background: var(--panel);
  color: var(--ink);
}

body[data-theme="dark"] .profile-stat {
  background: rgba(15, 23, 42, 0.52);
  border-color: rgba(255, 255, 255, 0.12);
}

body[data-theme="dark"] .service-more {
  border-color: rgba(244, 131, 18, 0.28);
  background:
    radial-gradient(circle at 12% 0%, rgba(244, 131, 18, 0.2), transparent 30%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.62) 0%, rgba(30, 41, 59, 0.54) 58%, rgba(244, 131, 18, 0.09) 100%);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
}

body[data-theme="dark"] .service-more summary,
body[data-theme="dark"] .service-more[open] summary {
  border-color: transparent;
  background: transparent;
  color: var(--ink);
}

body[data-theme="dark"] .service-more summary::after {
  border-color: rgba(244, 131, 18, 0.38);
  background: rgba(15, 23, 42, 0.72);
  color: var(--accent);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

body[data-theme="dark"] .service-more[open] {
  border-color: rgba(244, 131, 18, 0.48);
  background:
    radial-gradient(circle at 88% 0%, rgba(244, 131, 18, 0.22), transparent 32%),
    radial-gradient(circle at 0% 100%, rgba(244, 131, 18, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.68) 0%, rgba(30, 41, 59, 0.58) 52%, rgba(244, 131, 18, 0.11) 100%);
}

body[data-theme="dark"] .service-more[open] summary::after {
  background: var(--accent);
  color: #ffffff;
}

body[data-theme="dark"] .service-more::before {
  background:
    linear-gradient(90deg, rgba(244, 131, 18, 0.7), rgba(244, 131, 18, 0)) 0 0 / 4px 100% no-repeat,
    linear-gradient(120deg, transparent 0%, rgba(244, 131, 18, 0.07) 45%, transparent 70%);
}

body[data-theme="dark"] .service-more .keyword-list li {
  border-color: rgba(244, 131, 18, 0.2);
  background:
    linear-gradient(90deg, rgba(244, 131, 18, 0.12), transparent 34%),
    rgba(15, 23, 42, 0.48);
}

body[data-theme="dark"] .service-overview .area-badge,
body[data-theme="dark"] .service-overview .line-icon,
body[data-theme="dark"] .service-overview .tag-row span,
body[data-theme="dark"] .service-overview .service-more .keyword-list li {
  border-color: rgba(148, 163, 184, 0.26);
  background:
    linear-gradient(90deg, rgba(244, 131, 18, 0.12), transparent 34%),
    rgba(15, 23, 42, 0.28);
  color: var(--ink);
}

body[data-theme="dark"] .hub-value-icon {
  background: rgba(15, 23, 42, 0.42);
}

body[data-theme="dark"] .hub-visual-card {
  border-color: rgba(244, 131, 18, 0.26);
  background:
    radial-gradient(circle at 20% 0%, rgba(244, 131, 18, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.62), rgba(30, 41, 59, 0.5));
}

body[data-theme="dark"] .hub-visual-card img {
  background: rgba(15, 23, 42, 0.42);
}

body[data-theme="dark"] .hub-visual-tag {
  border-color: rgba(244, 131, 18, 0.34);
  background: rgba(15, 23, 42, 0.7);
  color: var(--accent);
}

body[data-theme="dark"] .service-keywords {
  border-top-color: rgba(148, 163, 184, 0.28);
}

body[data-theme="dark"] .service-points li::before {
  background: var(--panel);
}

body[data-theme="dark"] .contact-form,
body[data-theme="dark"] .contact-list > a,
body[data-theme="dark"] .contact-list > div {
  background: transparent;
}

body[data-theme="dark"] .contact-form {
  border-left-color: rgba(244, 131, 18, 0.42);
}

body[data-theme="dark"] .contact-list {
  border-top-color: rgba(148, 163, 184, 0.22);
}

body[data-theme="dark"] .contact-list > a,
body[data-theme="dark"] .contact-list > div {
  border-bottom-color: rgba(148, 163, 184, 0.22);
}

body[data-theme="dark"] .site-header {
  border-bottom-color: var(--line);
}

body[data-theme="dark"] .hero-photo-overlay,
body[data-theme="dark"] .stat-card,
body[data-theme="dark"] .metric-card,
body[data-theme="dark"] .flow-node,
body[data-theme="dark"] .tag-row span,
body[data-theme="dark"] .number-badge,
body[data-theme="dark"] .crew-panel span,
body[data-theme="dark"] .form-field input,
body[data-theme="dark"] .form-field textarea,
body[data-theme="dark"] .form-success-note,
body[data-theme="dark"] .cookie-modal-actions,
body[data-theme="dark"]:has(.legal-page) main .section:not(.legal-page),
body[data-theme="dark"] .compare-list li {
  background: var(--brand-wash);
  color: var(--ink);
}

body[data-theme="dark"] .founder-quote {
  border-color: rgba(244, 131, 18, 0.36);
  background: rgba(244, 131, 18, 0.08);
}

body[data-theme="dark"] .crew-model article {
  border-color: rgba(244, 131, 18, 0.24);
  background:
    radial-gradient(circle at 18% 0%, rgba(244, 131, 18, 0.16), transparent 35%),
    rgba(15, 23, 42, 0.36);
}

body[data-theme="dark"] .bio-icon {
  background: rgba(244, 131, 18, 0.08);
}

body[data-theme="dark"] .button {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

body[data-theme="dark"] .button:hover {
  background: var(--accent-dark);
  color: #ffffff;
}

body[data-theme="dark"] .button-secondary {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

body[data-theme="dark"] .button-secondary:hover {
  border-color: var(--accent);
  background: rgba(244, 131, 18, 0.1);
  color: var(--accent);
}

body[data-theme="dark"] .nav-toggle span {
  background: var(--ink);
}

body[data-theme="dark"] .logo-dark {
  filter: brightness(0) invert(1);
}

body[data-theme="dark"] .logo-main,
body[data-theme="dark"] .mobile-brand-symbol,
body[data-theme="dark"] .mobile-brand-wordmark {
  filter: none;
}

body[data-theme="dark"] .compare-card-featured {
  border-color: rgba(215, 223, 236, 0.38);
}

body[data-theme="dark"] .hero::before {
  background: rgba(182, 193, 210, 0.12);
}

body[data-theme="dark"] .hero::after {
  background: rgba(244, 131, 18, 0.08);
}

body[data-theme="dark"] .cookie-modal-backdrop {
  background: transparent;
}

body[data-theme="dark"] .control-button {
  color: var(--muted);
  border-color: var(--line);
}

body[data-theme="dark"] .control-button:hover {
  color: var(--ink);
  background: var(--accent-soft);
  border-color: var(--accent-line);
}

body[data-theme="dark"] .form-success-note {
  border-color: var(--accent);
}

body[data-theme="dark"] .form-consent input {
  background: var(--brand-wash);
  border-color: var(--muted);
}

body[data-theme="dark"] .form-consent input:checked {
  background: var(--accent);
  border-color: var(--accent);
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition: opacity 0.72s ease, transform 0.72s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

.reveal.from-left {
  transform: translateX(-32px) translateY(12px) scale(0.99);
}

.reveal.from-right {
  transform: translateX(32px) translateY(12px) scale(0.99);
}

/* Hover override — placed after .reveal.is-visible so cascade wins */
.info-card:hover,
.service-card:hover,
.step-card:hover,
.compare-card:hover {
  transform: translateY(-5px);
  z-index: 1;
}

/* Step card connector lines */
@media (min-width: 981px) {
  .step-card {
    position: relative;
  }

  .step-card:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50px;
    right: -18px;
    width: 18px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-line), var(--accent-dark));
    border-radius: 2px;
    transform-origin: left center;
    transform: scaleX(0);
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.55s;
  }

  .step-card.is-visible:not(:last-child)::after {
    transform: scaleX(1);
  }
}

/* Section heading animated accent underline */
.h2-accent {
  position: relative;
}

.h2-accent::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 38px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  transform-origin: left center;
  transform: scaleX(0);
  opacity: 0;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.18s,
              opacity 0.3s ease 0.18s;
}

.h2-accent.is-h2-visible::after {
  transform: scaleX(1);
  opacity: 1;
}

@keyframes imageFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

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

@keyframes heroPhotoZoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.07);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes buttonPulse {
  0%,
  100% {
    box-shadow: 0 12px 28px rgba(31, 41, 55, 0.12);
  }
  50% {
    box-shadow: 0 16px 34px rgba(31, 41, 55, 0.16);
  }
}

@keyframes secondaryButtonPulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(31, 41, 55, 0);
    border-color: var(--line);
  }
  50% {
    box-shadow: 0 12px 30px rgba(31, 41, 55, 0.08);
    border-color: rgba(95, 111, 134, 0.38);
  }
}

@media (max-width: 980px) {
  .reveal.from-left,
  .reveal.from-right {
    transform: translateY(24px) scale(0.988);
  }

  [id] {
    scroll-margin-top: 72px;
  }

  .nav {
    height: 72px;
    min-height: 72px;
    flex-wrap: wrap;
    padding: 8px 0;
    column-gap: 7px;
    row-gap: 0;
    align-items: center;
  }

  .nav:has(.nav-menu.is-open) {
    height: auto;
  }

  .brand-link {
    order: 1;
    flex: 1 1 auto;
    min-width: 0;
  }

  .nav-cta {
    order: 2;
    width: 42px;
    min-width: 42px;
    height: 42px;
    min-height: 42px;
    padding: 0;
    margin-left: auto;
    border-radius: 14px;
  }

  .nav-cta span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .nav-cta-icon {
    display: block;
  }

  .nav-controls {
    order: 3;
    width: auto;
    justify-content: flex-end;
    margin-left: 0;
  }

  .nav-toggle {
    order: 4;
    display: block;
    margin-left: 0;
  }

  .nav-menu {
    order: 5;
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 12px 0 4px;
    position: static;
    transform: none;
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-link {
    padding: 8px 0;
  }

  .hero-grid,
  .hero-followup-inner,
  .split-panel,
  .contact-box,
  .crew-layout,
  .compare-grid {
    grid-template-columns: 1fr;
  }

  .hero-followup-inner {
    flex-direction: column;
    align-items: flex-start;
    border-left-width: 4px;
  }

  .hero-followup-icon {
    display: none;
  }

  .hero-followup-divider {
    display: none;
  }

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

  .digital-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hub-value-grid {
    grid-template-columns: 1fr;
  }

  .contact-list {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 24px 0 0;
    border-left: 0;
    border-top: 1px solid var(--accent-line);
  }

  .keyword-list-columns {
    grid-template-columns: 1fr;
  }

  .hub-visual-showcase {
    gap: 14px;
  }

  .process-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .crew-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .crew-model {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .section-title {
    text-align: left;
  }

  .section-title .eyebrow {
    justify-content: flex-start;
  }

  .info-card,
  .service-card,
  .step-card,
  .stat-card,
  .profile-stat {
    text-align: left;
  }

  .service-card .line-icon,
  .step-card .line-icon,
  .info-card .line-icon,
  .stat-card .line-icon,
  .profile-stat .line-icon,
  .section-title-icon {
    margin-left: 0;
    margin-right: 0;
  }

  .profile-stat p {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }

  .info-card img {
    margin-left: 0;
    margin-right: 0;
  }

  .number-badge {
    margin-left: 0;
    margin-right: 0;
  }

  .tag-row {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .container,
  .nav {
    width: min(100% - 24px, 1180px);
  }

  .legal-page {
    width: min(100% - 28px, 980px);
    padding: 26px 22px;
  }

  body:has(.legal-page) main .section:not(.legal-page) {
    width: min(100% - 28px, 980px);
    padding: 24px 22px;
  }

  .footer-inner {
    width: min(100% - 24px, 1180px);
  }

  .cookie-modal-header {
    padding: 14px 14px 4px;
  }

  .service-more summary {
    gap: 10px;
    padding: 13px 12px 13px 14px;
    font-size: 0.86rem;
  }

  .service-more summary::before {
    display: none;
  }

  .service-more-kicker {
    font-size: 0.62rem;
  }

  .service-more-title {
    font-size: 0.9rem;
  }

  .service-more p {
    padding: 2px 16px 0 20px;
  }

  .service-more .keyword-list {
    padding: 14px 14px 16px 20px;
  }

  .service-more .keyword-list li {
    padding-left: 44px;
  }

  .profile-stat {
    display: none;
  }

  .profile-stat-head {
    align-items: flex-start;
    padding-left: 14px;
  }

  .profile-focus-list {
    gap: 24px;
    padding: 0 14px 0 0;
  }

  .profile-focus-list span {
    width: auto;
  }

  .profile-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .profile-card img.profile-person-photo {
    width: min(100%, 230px);
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .cookie-modal-content {
    padding: 4px 14px 10px;
  }

  .cookie-modal-actions {
    padding: 10px 14px 14px;
  }

  .cookie-action-row {
    grid-template-columns: 1fr;
  }

  .logo-light {
    width: 44px;
  }

  .logo-wordmark {
    width: 118px;
  }

  .logo-main {
    display: none;
  }

  .mobile-brand {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-width: 0;
  }

  .mobile-brand-symbol {
    width: 36px;
    flex: 0 0 auto;
  }

  .mobile-brand-wordmark {
    width: 126px;
    flex: 0 1 auto;
    min-width: 0;
  }

  .nav-cta {
    width: 36px;
    min-width: 36px;
    height: 36px;
    min-height: 36px;
    border-radius: 11px;
  }

  .nav-toggle {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .control-button {
    height: 32px;
    padding: 0 8px;
  }

  .language-toggle {
    width: 42px;
    min-width: 42px;
    padding: 0;
    gap: 0;
    justify-content: center;
    text-align: center;
    letter-spacing: 0.02em;
  }

  .language-toggle svg {
    display: none;
  }

  .theme-toggle {
    width: 32px;
  }

  .hero {
    padding: 30px 0 20px;
  }

  .hero-photo-card,
  .hero-photo-card > img {
    min-height: 300px;
  }

  .hero-photo-card {
    margin-bottom: 0;
  }

  .hero-photo-overlay {
    bottom: 16px;
  }

  .hero-photo-card > img {
    object-position: 60% 60%;
  }

  .stats-strip {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .hero-actions.center {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-followup {
    padding: 8px 0 24px;
  }

  .hero-followup-inner {
    align-items: stretch;
    padding: 18px;
  }

  .button {
    width: 100%;
  }

  .flow-visual,
  .metric-grid,
  .hub-visual-showcase,
  .process-flow,
  .crew-model,
  .crew-panel {
    grid-template-columns: 1fr;
  }

  .hub-visual-card {
    padding: 6px;
    padding-top: 36px;
    border-radius: 16px;
  }

  .hub-visual-card img {
    min-height: auto;
    border-radius: 11px;
  }

  .hub-visual-tag {
    top: 5px;
    left: 10px;
  }

  .founder-bio {
    grid-template-columns: 1fr;
  }

  .process-flow div {
    min-height: auto;
  }

  .flow-line {
    width: 2px;
    height: 26px;
    margin: 0 auto;
  }

  .split-panel,
  .digital-box,
  .hub-box,
  .contact-box,
  .cta-box {
    padding: 26px 18px;
    border-radius: 24px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 22px 0 0;
    border-left: 0;
    border-top: 1px solid var(--accent-line);
  }

  .tag-row {
    grid-template-columns: 1fr;
  }

  .digital-grid {
    grid-template-columns: 1fr;
  }

  .digital-bridge {
    flex-direction: column;
    gap: 10px;
  }

  .digital-bridge-icon {
    margin-bottom: 2px;
  }

  .section {
    padding: 54px 0;
  }

  .nav-controls {
    gap: 4px;
    margin-left: 0;
  }

  .control-button {
    height: 32px;
    font-size: 0.75rem;
  }

  .theme-toggle {
    width: 32px;
  }
}

@media (max-width: 380px) {
  .legal-page {
    width: min(100% - 20px, 980px);
    padding: 24px 18px;
  }

  body:has(.legal-page) main .section:not(.legal-page) {
    width: min(100% - 20px, 980px);
    padding: 22px 18px;
  }

  .mobile-brand {
    gap: 6px;
  }

  .mobile-brand-symbol {
    width: 32px;
  }

  .mobile-brand-wordmark {
    width: 112px;
  }

  .nav {
    column-gap: 5px;
  }

  .control-button,
  .theme-toggle,
  .nav-cta,
  .nav-toggle {
    width: 32px;
    min-width: 32px;
    height: 32px;
    min-height: 32px;
  }

  .language-toggle {
    width: 38px;
    min-width: 38px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .h2-accent::after {
    transition: none;
    transform: scaleX(1);
    opacity: 1;
  }

  .step-card:not(:last-child)::after {
    transition: none;
    transform: scaleX(1);
  }

  .hero-photo-card {
    animation: none;
  }

  .hero-photo-card > img {
    animation: none;
  }

  .hero-photo-overlay {
    animation: none;
  }

  .button-animated,
  .button-secondary.button-animated {
    animation: none;
  }
}
