:root {
  --bg: #f6f0e6;
  --bg-deep: #efe3d4;
  --panel: rgba(255, 252, 247, 0.82);
  --panel-strong: #ffffff;
  --panel-dark: #10212d;
  --ink: #16222c;
  --ink-soft: #4d5c68;
  --ink-on-dark: #f7f1e8;
  --accent: #de7d34;
  --accent-dark: #b7601f;
  --accent-soft: rgba(222, 125, 52, 0.12);
  --jade: #2d6f69;
  --jade-soft: rgba(45, 111, 105, 0.12);
  --stroke: rgba(22, 34, 44, 0.12);
  --stroke-strong: rgba(22, 34, 44, 0.2);
  --shadow: 0 28px 60px rgba(16, 33, 45, 0.12);
  --shadow-soft: 0 16px 32px rgba(16, 33, 45, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1180px;
  --header-height: 84px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(222, 125, 52, 0.14), transparent 32%),
    radial-gradient(circle at top right, rgba(45, 111, 105, 0.14), transparent 28%),
    linear-gradient(180deg, #fbf7f2 0%, var(--bg) 48%, var(--bg-deep) 100%);
  min-width: 320px;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

body::before {
  background-image:
    linear-gradient(rgba(22, 34, 44, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 34, 44, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent 88%);
}

body::after {
  background: radial-gradient(circle at center, transparent 0, transparent 60%, rgba(246, 240, 230, 0.4) 100%);
  z-index: -1;
}

body.nav-open {
  overflow: hidden;
}

::selection {
  background: rgba(222, 125, 52, 0.2);
  color: var(--ink);
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  background: transparent;
  color: inherit;
}

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

main {
  overflow: clip;
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.shell {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 104px 0;
}

.section-compact {
  padding: 88px 0;
}

.section-dark {
  color: var(--ink-on-dark);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 8px 16px;
  border: 1px solid rgba(22, 34, 44, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(222, 125, 52, 0.12);
}

.section-title {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.section-title.medium {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.section-intro {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.75;
}

.split-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 28px;
  align-items: end;
  margin-bottom: 44px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--jade);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
}

.lead {
  color: var(--ink-soft);
  font-size: 1.1rem;
  line-height: 1.78;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--ink);
  color: var(--ink-on-dark);
  font-weight: 800;
  letter-spacing: -0.015em;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
  box-shadow: 0 18px 36px rgba(22, 34, 44, 0.16);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(22, 34, 44, 0.2);
}

.button.secondary {
  background: var(--accent);
  color: #fff8f0;
}

.button.ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--stroke-strong);
  box-shadow: none;
}

.button.small {
  min-height: 46px;
  padding: 0 18px;
  font-size: 0.95rem;
}

.link-inline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-dark);
  font-weight: 800;
}

.link-inline::after {
  content: "->";
  transition: transform 180ms ease;
}

.link-inline:hover::after,
.link-inline:focus-visible::after {
  transform: translateX(4px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 16px 0;
  transition: padding 180ms ease, background-color 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
}

.site-header.scrolled {
  padding: 10px 0;
  background: rgba(246, 240, 230, 0.7);
  backdrop-filter: blur(22px);
  box-shadow: 0 8px 26px rgba(16, 33, 45, 0.08);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px 16px;
  border: 1px solid rgba(22, 34, 44, 0.08);
  border-radius: 24px;
  background: rgba(255, 252, 247, 0.68);
  backdrop-filter: blur(22px);
}

.brand {
  display: grid;
  gap: 4px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand-mark::before {
  content: "SC";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(222, 125, 52, 0.18), rgba(45, 111, 105, 0.22)),
    var(--panel-strong);
  border: 1px solid rgba(22, 34, 44, 0.1);
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 800;
}

.brand-subtitle {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-link,
.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.96rem;
  font-weight: 700;
  transition: background-color 160ms ease, color 160ms ease;
}

.nav-link:hover,
.nav-trigger:hover,
.nav-link:focus-visible,
.nav-trigger:focus-visible,
.nav-link.current,
.nav-trigger.current {
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.nav-group {
  position: relative;
}

.nav-trigger::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  display: grid;
  gap: 8px;
  min-width: 300px;
  padding: 14px;
  border: 1px solid rgba(22, 34, 44, 0.08);
  border-radius: 22px;
  background: rgba(255, 252, 247, 0.96);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
}

.nav-group:hover .submenu,
.nav-group:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu a {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(22, 34, 44, 0.03);
  transition: transform 180ms ease, background-color 180ms ease;
}

.submenu a span {
  display: block;
  color: var(--ink);
  font-weight: 800;
}

.submenu a small {
  display: block;
  margin-top: 4px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.submenu a:hover,
.submenu a:focus-visible {
  background: rgba(222, 125, 52, 0.1);
  transform: translateX(4px);
}

.nav-toggle {
  display: none;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(22, 34, 44, 0.12);
  background: rgba(255, 255, 255, 0.9);
}

.nav-toggle-box {
  display: grid;
  gap: 5px;
}

.nav-toggle-line {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  padding: 38px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 32px;
  align-items: stretch;
}

.hero-copy {
  position: relative;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(22, 34, 44, 0.08);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 252, 247, 0.9)),
    rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: 24px auto auto 24px;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(222, 125, 52, 0.24), transparent 70%);
  z-index: 0;
}

.hero-copy > * {
  position: relative;
  z-index: 1;
}

.hero-title {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(3rem, 7vw, 5.75rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.hero-title span {
  color: var(--accent-dark);
}

.hero-text {
  max-width: 720px;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: 1.12rem;
  line-height: 1.78;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(22, 34, 44, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
  font-weight: 700;
}

.hero-note::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--jade);
}

.hero-panel {
  position: relative;
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 34px);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(16, 33, 45, 0.96), rgba(12, 25, 35, 0.98));
  color: var(--ink-on-dark);
  overflow: hidden;
  box-shadow: 0 34px 60px rgba(16, 33, 45, 0.22);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 16%, rgba(222, 125, 52, 0.24), transparent 26%),
    radial-gradient(circle at 82% 12%, rgba(45, 111, 105, 0.34), transparent 22%),
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.04) 50%, transparent 100%);
}

.hero-panel > * {
  position: relative;
  z-index: 1;
}

.hero-panel-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.hero-panel-label {
  color: rgba(247, 241, 232, 0.72);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-panel-title {
  margin: 10px 0 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 2.2rem;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(247, 241, 232, 0.14);
  border-radius: 999px;
  background: rgba(247, 241, 232, 0.08);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.signal-stack {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.signal-card {
  display: grid;
  gap: 8px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(247, 241, 232, 0.12);
  border-radius: 22px;
  background: rgba(247, 241, 232, 0.06);
  backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  animation: drift 8s ease-in-out infinite;
}

.signal-card:nth-child(2) {
  animation-delay: 1.5s;
}

.signal-card:nth-child(3) {
  animation-delay: 3s;
}

.signal-card strong {
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}

.signal-card span {
  color: rgba(247, 241, 232, 0.7);
  line-height: 1.65;
}

.signal-card small {
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.metric-card {
  padding: 18px;
  border-radius: 20px;
  background: rgba(247, 241, 232, 0.06);
  border: 1px solid rgba(247, 241, 232, 0.12);
}

.metric-card strong {
  display: block;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.7rem;
  letter-spacing: -0.05em;
}

.metric-card span {
  display: block;
  margin-top: 6px;
  color: rgba(247, 241, 232, 0.72);
  font-size: 0.92rem;
  line-height: 1.55;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.stat-card {
  padding: 22px;
  border: 1px solid rgba(22, 34, 44, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-soft);
}

.stat-card strong {
  display: block;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -0.06em;
}

.stat-card span {
  display: block;
  margin-top: 8px;
  color: var(--ink-soft);
  line-height: 1.65;
}

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

.service-card,
.panel-card,
.proof-card,
.faq-card,
.contact-card,
.form-card,
.list-card,
.industry-card,
.timeline-card,
.outcome-card,
.detail-card,
.legal-box {
  border: 1px solid rgba(22, 34, 44, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.service-card {
  display: grid;
  gap: 20px;
  padding: 28px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(222, 125, 52, 0.2);
  box-shadow: 0 24px 40px rgba(16, 33, 45, 0.12);
}

.service-card-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.service-index {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(222, 125, 52, 0.1);
  color: var(--accent-dark);
  display: grid;
  place-items: center;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-weight: 800;
}

.service-card h3,
.timeline-card h3,
.proof-card h3,
.industry-card h3,
.detail-card h3 {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  letter-spacing: -0.04em;
}

.service-card p,
.industry-card p,
.timeline-card p,
.detail-card p,
.contact-card p,
.legal-box p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.bullet-list,
.detail-list,
.contact-list,
.meta-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.bullet-list li,
.detail-list li,
.contact-list li,
.meta-list li {
  position: relative;
  padding-left: 20px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.bullet-list li::before,
.detail-list li::before,
.contact-list li::before,
.meta-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--jade));
}

.service-visual {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(16, 33, 45, 0.96), rgba(20, 38, 49, 0.92));
  color: var(--ink-on-dark);
}

.service-visual span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 16px;
  background: rgba(247, 241, 232, 0.08);
  font-size: 0.94rem;
  font-weight: 700;
}

.service-visual span::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
}

.industry-grid,
.timeline-grid,
.proof-grid,
.detail-grid,
.outcome-grid,
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.industry-card,
.timeline-card,
.proof-card,
.detail-card,
.outcome-card {
  padding: 28px;
}

.industry-card .tag,
.proof-card .tag,
.detail-card .tag,
.outcome-card .tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.timeline-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border-radius: 14px;
  background: rgba(45, 111, 105, 0.12);
  color: var(--jade);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-weight: 800;
}

.panel-card {
  padding: 30px;
}

.panel-dark {
  background: linear-gradient(180deg, rgba(16, 33, 45, 0.96), rgba(20, 38, 49, 0.96));
  color: var(--ink-on-dark);
  border-color: rgba(247, 241, 232, 0.08);
}

.panel-dark p,
.panel-dark li,
.panel-dark span {
  color: rgba(247, 241, 232, 0.72);
}

.panel-dark .section-kicker,
.panel-dark .tag {
  background: rgba(247, 241, 232, 0.08);
  border-color: rgba(247, 241, 232, 0.08);
  color: rgba(247, 241, 232, 0.78);
}

.panel-dark .section-title,
.panel-dark h2,
.panel-dark h3,
.panel-dark strong,
.panel-dark .link-inline {
  color: var(--ink-on-dark);
}

.architecture {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 24px;
}

.flow-grid {
  display: grid;
  gap: 14px;
}

.flow-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px;
  border-radius: 20px;
  background: rgba(247, 241, 232, 0.06);
  border: 1px solid rgba(247, 241, 232, 0.08);
}

.flow-item strong {
  display: block;
  color: var(--ink-on-dark);
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.flow-item p {
  margin: 8px 0 0;
}

.flow-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(222, 125, 52, 0.14);
  color: var(--accent);
  font-weight: 800;
}

.quote-card {
  padding: 32px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.quote-card blockquote {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  line-height: 1.32;
  letter-spacing: -0.04em;
}

.quote-card footer {
  margin-top: 18px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-card {
  overflow: hidden;
}

.faq-card summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 24px 28px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card summary::after {
  content: "+";
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 1.35rem;
  line-height: 1;
}

.faq-card[open] summary::after {
  content: "-";
}

.faq-card .faq-content {
  padding: 0 28px 24px;
  color: var(--ink-soft);
  line-height: 1.78;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.82fr);
  gap: 22px;
}

.form-card,
.contact-card {
  padding: 30px;
}

.form-card form {
  display: grid;
  gap: 16px;
}

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

.field,
.field-full {
  display: grid;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.field-full label {
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--ink);
}

.field input:not([type="checkbox"]),
.field select,
.field textarea,
.field-full input:not([type="checkbox"]),
.field-full select,
.field-full textarea {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid rgba(22, 34, 44, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.field textarea,
.field-full textarea {
  min-height: 150px;
  padding: 16px;
  resize: vertical;
}

.field input:not([type="checkbox"]):focus,
.field select:focus,
.field textarea:focus,
.field-full input:not([type="checkbox"]):focus,
.field-full select:focus,
.field-full textarea:focus {
  border-color: rgba(222, 125, 52, 0.42);
  box-shadow: 0 0 0 4px rgba(222, 125, 52, 0.1);
  transform: translateY(-1px);
}

.checkbox-row {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 14px;
  align-items: flex-start;
  color: var(--ink-soft);
  line-height: 1.65;
}

.checkbox-row input {
  width: 22px;
  min-width: 22px;
  height: 22px;
  min-height: 22px;
  margin: 3px 0 0;
  padding: 0;
  border-radius: 6px;
  accent-color: var(--accent);
  transform: none;
  box-shadow: none;
}

.checkbox-row input:focus {
  transform: none;
  box-shadow: none;
}

.checkbox-row span {
  display: block;
}

.form-status {
  display: none;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(45, 111, 105, 0.12);
  color: var(--jade);
  font-weight: 700;
}

.form-status.error {
  display: block;
  background: rgba(187, 81, 81, 0.12);
  color: #9b4040;
}

.form-status.success {
  display: block;
}

.contact-card {
  display: grid;
  gap: 24px;
  align-content: start;
}

.contact-card h3 {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.7rem;
  letter-spacing: -0.04em;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 800;
}

.contact-link::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--jade));
}

.mini-panel {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(22, 34, 44, 0.04);
}

.mini-panel strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.mini-panel p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.cta-band {
  padding: 34px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top left, rgba(222, 125, 52, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(16, 33, 45, 0.96), rgba(20, 38, 49, 0.96));
  color: var(--ink-on-dark);
  box-shadow: 0 32px 56px rgba(16, 33, 45, 0.18);
}

.cta-band h2 {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.cta-band p {
  max-width: 760px;
  margin: 16px 0 0;
  color: rgba(247, 241, 232, 0.72);
  line-height: 1.78;
}

.page-hero {
  padding: 44px 0 24px;
}

.page-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(290px, 0.96fr);
  gap: 24px;
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 252, 247, 0.92));
  border: 1px solid rgba(22, 34, 44, 0.08);
  box-shadow: var(--shadow);
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 700;
}

.breadcrumb span:last-child {
  color: var(--ink);
}

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

.hero-side-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(22, 34, 44, 0.04);
}

.hero-side-item strong {
  display: block;
  font-size: 1rem;
}

.hero-side-item span {
  display: block;
  margin-top: 4px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.hero-side-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(222, 125, 52, 0.12), rgba(45, 111, 105, 0.12));
  color: var(--ink);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-weight: 800;
}

.highlight-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.highlight-box {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(22, 34, 44, 0.08);
  box-shadow: var(--shadow-soft);
}

.highlight-box strong {
  display: block;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.55rem;
  letter-spacing: -0.04em;
}

.highlight-box span {
  display: block;
  margin-top: 8px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.legal-box {
  padding: 28px;
}

.legal-box h2,
.legal-box h3 {
  margin: 0 0 14px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  letter-spacing: -0.04em;
}

.legal-box + .legal-box {
  margin-top: 18px;
}

.legal-warning {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(222, 125, 52, 0.1);
  color: var(--accent-dark);
  font-weight: 700;
  line-height: 1.65;
}

.site-footer {
  padding: 38px 0 48px;
}

.footer-shell {
  display: grid;
  gap: 18px;
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(22, 34, 44, 0.08);
  background: rgba(255, 252, 247, 0.78);
  box-shadow: var(--shadow-soft);
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}

.footer-nav,
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--ink-soft);
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-meta a:hover,
.footer-meta a:focus-visible {
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(22, 34, 44, 0.08);
  color: var(--ink-soft);
  font-size: 0.95rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

[data-reveal].in-view {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 100ms;
}

.delay-2 {
  transition-delay: 200ms;
}

.delay-3 {
  transition-delay: 300ms;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

@media (max-width: 1100px) {
  .hero-grid,
  .page-hero-card,
  .architecture,
  .contact-grid,
  .split-head {
    grid-template-columns: 1fr;
  }

  .industry-grid,
  .timeline-grid,
  .proof-grid,
  .detail-grid,
  .outcome-grid,
  .comparison-grid,
  .highlight-band,
  .stats-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-header {
    padding-top: 12px;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: grid;
    gap: 8px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 252, 247, 0.98);
    border: 1px solid rgba(22, 34, 44, 0.08);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  body.nav-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-link,
  .nav-trigger,
  .site-nav .button {
    justify-content: space-between;
    width: 100%;
    min-height: 52px;
    border-radius: 18px;
    padding: 0 16px;
    background: rgba(22, 34, 44, 0.04);
    color: var(--ink);
  }

  .field-grid,
  .card-grid,
  .metrics-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section,
  .section-compact {
    padding: 78px 0;
  }

  .shell {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .hero {
    padding-top: 26px;
  }

  .hero-copy,
  .hero-panel,
  .page-hero-card,
  .panel-card,
  .proof-card,
  .service-card,
  .timeline-card,
  .industry-card,
  .detail-card,
  .outcome-card,
  .form-card,
  .contact-card,
  .cta-band,
  .footer-shell {
    padding: 24px;
  }

  .hero-title {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .industry-grid,
  .timeline-grid,
  .proof-grid,
  .detail-grid,
  .outcome-grid,
  .comparison-grid,
  .highlight-band,
  .stats-strip {
    grid-template-columns: 1fr;
  }

  .button-row,
  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Visual Refresh */
:root {
  --bg: #eef4fb;
  --bg-deep: #dde7f2;
  --panel: rgba(255, 255, 255, 0.84);
  --panel-strong: #ffffff;
  --panel-dark: #0d1b2e;
  --ink: #0f1728;
  --ink-soft: #5b6a80;
  --ink-on-dark: #eef5ff;
  --accent: #ef5b3f;
  --accent-dark: #d7472b;
  --accent-soft: rgba(239, 91, 63, 0.1);
  --jade: #0f95a8;
  --jade-soft: rgba(15, 149, 168, 0.14);
  --stroke: rgba(15, 23, 40, 0.08);
  --stroke-strong: rgba(15, 23, 40, 0.16);
  --shadow: 0 30px 70px rgba(15, 23, 40, 0.12);
  --shadow-soft: 0 16px 36px rgba(15, 23, 40, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;
}

body {
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(15, 149, 168, 0.12), transparent 24%),
    radial-gradient(circle at 12% 8%, rgba(239, 91, 63, 0.12), transparent 20%),
    linear-gradient(180deg, #f8fbff 0%, #eef4fb 52%, #dfe9f5 100%);
}

body::before {
  background-image:
    linear-gradient(rgba(15, 23, 40, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 40, 0.035) 1px, transparent 1px);
  background-size: 88px 88px;
}

.section-kicker,
.eyebrow {
  font-family: "Sora", "Segoe UI", sans-serif;
}

.section-title,
.hero-title,
.hero-panel-title,
.service-card h3,
.timeline-card h3,
.proof-card h3,
.industry-card h3,
.detail-card h3,
.cta-band h2,
.contact-card h3,
.quote-card blockquote,
.faq-card summary,
.brand-mark,
.metric-card strong,
.stat-card strong,
.highlight-box strong {
  font-family: "Sora", "Segoe UI", sans-serif;
}

.site-header {
  padding: 18px 0;
}

.site-header.scrolled {
  background: rgba(238, 244, 251, 0.78);
  box-shadow: 0 10px 28px rgba(15, 23, 40, 0.08);
}

.header-shell {
  padding: 14px 18px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 251, 255, 0.8));
  border: 1px solid rgba(15, 23, 40, 0.08);
}

.brand-mark {
  font-size: 1rem;
  letter-spacing: -0.05em;
}

.brand-mark::before {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(239, 91, 63, 0.16), rgba(15, 149, 168, 0.18)),
    #ffffff;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 40, 0.06);
}

.brand-subtitle {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-link,
.nav-trigger {
  min-height: 42px;
  padding: 0 15px;
  border-radius: 14px;
  font-weight: 700;
}

.nav-link:hover,
.nav-trigger:hover,
.nav-link:focus-visible,
.nav-trigger:focus-visible,
.nav-link.current,
.nav-trigger.current {
  background: rgba(15, 149, 168, 0.08);
  color: var(--ink);
}

.submenu {
  border-radius: 20px;
  padding: 12px;
}

.submenu a {
  border: 1px solid rgba(15, 23, 40, 0.05);
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.82), rgba(255, 255, 255, 0.9));
}

.submenu a:hover,
.submenu a:focus-visible {
  background: rgba(15, 149, 168, 0.08);
  border-color: rgba(15, 149, 168, 0.16);
}

.button {
  min-height: 54px;
  border-radius: 16px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.95rem;
  box-shadow: 0 16px 30px rgba(15, 23, 40, 0.12);
}

.button.secondary {
  background: linear-gradient(135deg, #ef5b3f, #f47c46);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.7);
}

.hero {
  padding: 46px 0 28px;
}

.hero-copy {
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(250, 252, 255, 0.86));
  border: 1px solid rgba(15, 23, 40, 0.08);
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 220px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--jade));
}

.hero-copy::after {
  inset: auto 26px 26px auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(15, 149, 168, 0.12), transparent 68%);
}

.hero-title {
  max-width: 13ch;
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 0.92;
}

.hero-title span {
  color: var(--jade);
}

.hero-text {
  max-width: 62ch;
  font-size: 1.16rem;
  line-height: 1.7;
}

.hero-note {
  border-radius: 14px;
  background: rgba(15, 149, 168, 0.07);
  border-color: rgba(15, 149, 168, 0.12);
}

.hero-panel {
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(13, 27, 46, 0.98), rgba(9, 22, 37, 0.98));
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 100%);
}

.hero-badge,
.signal-card,
.metric-card,
.flow-item,
.service-visual {
  border-radius: 18px;
}

.signal-card,
.metric-card,
.flow-item {
  border-color: rgba(255, 255, 255, 0.1);
}

.stats-strip {
  gap: 18px;
}

.stat-card,
.service-card,
.panel-card,
.proof-card,
.faq-card,
.contact-card,
.form-card,
.industry-card,
.timeline-card,
.outcome-card,
.detail-card,
.legal-box,
.quote-card,
.page-hero-card,
.highlight-box {
  border-color: rgba(15, 23, 40, 0.07);
}

.stat-card,
.service-card,
.proof-card,
.industry-card,
.timeline-card,
.detail-card,
.outcome-card,
.highlight-box,
.quote-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 250, 255, 0.84));
}

.stat-card {
  position: relative;
  overflow: hidden;
}

.stat-card::before,
.service-card::before,
.detail-card::before,
.industry-card::before,
.timeline-card::before,
.proof-card::before,
.highlight-box::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--jade));
  opacity: 0.9;
}

.service-card,
.detail-card,
.industry-card,
.timeline-card,
.proof-card,
.highlight-box {
  position: relative;
  overflow: hidden;
}

.service-card:hover,
.service-card:focus-within,
.detail-card:hover,
.industry-card:hover,
.timeline-card:hover,
.proof-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 42px rgba(15, 23, 40, 0.12);
}

.service-index,
.timeline-index,
.hero-side-icon {
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(239, 91, 63, 0.12), rgba(15, 149, 168, 0.14));
  color: var(--ink);
}

.service-visual {
  background: linear-gradient(180deg, rgba(13, 27, 46, 0.96), rgba(9, 22, 37, 0.94));
}

.panel-dark {
  background:
    radial-gradient(circle at top right, rgba(15, 149, 168, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(13, 27, 46, 0.98), rgba(9, 22, 37, 0.98));
}

.quote-card {
  border-radius: 30px;
}

.quote-card blockquote {
  max-width: 28ch;
}

.faq-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(249, 252, 255, 0.84));
}

.faq-card summary::after {
  background: rgba(15, 149, 168, 0.1);
  color: var(--jade);
}

.page-hero-card {
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(15, 149, 168, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.93), rgba(247, 250, 255, 0.86));
}

.hero-side-item,
.mini-panel {
  border-radius: 18px;
  background: rgba(15, 23, 40, 0.04);
}

.highlight-box strong,
.stat-card strong,
.metric-card strong {
  color: var(--ink);
}

.contact-link {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.98rem;
}

.field input:not([type="checkbox"]),
.field select,
.field textarea,
.field-full input:not([type="checkbox"]),
.field-full select,
.field-full textarea {
  border-radius: 14px;
  background: rgba(250, 252, 255, 0.95);
}

.cta-band {
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(15, 149, 168, 0.2), transparent 30%),
    linear-gradient(180deg, rgba(13, 27, 46, 0.98), rgba(10, 23, 37, 0.98));
}

.footer-shell {
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 250, 255, 0.84));
}

@media (max-width: 900px) {
  .site-nav {
    background: rgba(250, 252, 255, 0.98);
    border-radius: 20px;
    pointer-events: none;
  }

  .nav-link,
  .nav-trigger,
  .site-nav .button {
    border-radius: 14px;
  }

  body.nav-open .site-nav {
    pointer-events: auto;
  }
}

/* Corporate Rework */
:root {
  --bg: #f3f5f9;
  --bg-deep: #e6ebf2;
  --panel: rgba(255, 255, 255, 0.9);
  --panel-strong: #ffffff;
  --panel-dark: #101826;
  --ink: #121a28;
  --ink-soft: #5b6677;
  --ink-on-dark: #edf2f7;
  --accent: #c98550;
  --accent-dark: #ab6637;
  --accent-soft: rgba(201, 133, 80, 0.12);
  --jade: #5f7d9d;
  --jade-soft: rgba(95, 125, 157, 0.14);
  --stroke: rgba(18, 26, 40, 0.08);
  --stroke-strong: rgba(18, 26, 40, 0.14);
  --shadow: 0 28px 80px rgba(16, 24, 38, 0.12);
  --shadow-soft: 0 18px 40px rgba(16, 24, 38, 0.08);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
}

body {
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 10% 10%, rgba(201, 133, 80, 0.08), transparent 22%),
    radial-gradient(circle at 100% 0%, rgba(95, 125, 157, 0.14), transparent 28%),
    linear-gradient(180deg, #fbfcfe 0%, #f3f5f9 48%, #e8edf4 100%);
}

body::before {
  background: none;
  mask-image: none;
}

body::after {
  background:
    radial-gradient(circle at 82% 24%, rgba(95, 125, 157, 0.08), transparent 18%),
    radial-gradient(circle at 18% 72%, rgba(201, 133, 80, 0.08), transparent 18%);
}

.section-kicker,
.eyebrow,
.nav-link,
.nav-trigger,
.button,
.section-title,
.hero-title,
.hero-panel-title,
.service-card h3,
.timeline-card h3,
.proof-card h3,
.industry-card h3,
.detail-card h3,
.cta-band h2,
.contact-card h3,
.quote-card blockquote,
.faq-card summary,
.brand-mark,
.metric-card strong,
.stat-card strong,
.highlight-box strong,
.hero-side-item strong,
.contact-link,
.sector-pill {
  font-family: "Outfit", "Segoe UI", sans-serif;
}

.section-kicker {
  border-color: rgba(18, 26, 40, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.section-kicker::before {
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(201, 133, 80, 0.12);
}

.section-title {
  letter-spacing: -0.05em;
}

.site-header {
  padding: 22px 0;
}

.site-header.scrolled {
  background: transparent;
  box-shadow: none;
}

.header-shell {
  padding: 14px 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(18, 26, 40, 0.08);
  box-shadow: 0 18px 44px rgba(16, 24, 38, 0.08);
  backdrop-filter: blur(18px);
}

.brand-mark {
  font-size: 1.02rem;
  letter-spacing: -0.05em;
}

.brand-mark::before {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(201, 133, 80, 0.18), rgba(95, 125, 157, 0.16)),
    #ffffff;
  box-shadow: inset 0 0 0 1px rgba(18, 26, 40, 0.08);
}

.brand-subtitle {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
}

.nav-link,
.nav-trigger {
  min-height: 42px;
  padding: 0 15px;
  border-radius: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.nav-link:hover,
.nav-trigger:hover,
.nav-link:focus-visible,
.nav-trigger:focus-visible,
.nav-link.current,
.nav-trigger.current {
  background: rgba(95, 125, 157, 0.08);
  color: var(--ink);
}

.submenu {
  padding: 12px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(18, 26, 40, 0.08);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.submenu a {
  border: 1px solid rgba(18, 26, 40, 0.06);
  background: linear-gradient(180deg, rgba(252, 253, 255, 0.96), rgba(247, 249, 252, 0.92));
}

.submenu a:hover,
.submenu a:focus-visible {
  background: rgba(95, 125, 157, 0.08);
  border-color: rgba(95, 125, 157, 0.16);
}

.button {
  min-height: 56px;
  border-radius: 16px;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  box-shadow: 0 16px 32px rgba(16, 24, 38, 0.12);
  position: relative;
  z-index: 1;
  touch-action: manipulation;
}

.button.secondary {
  background: linear-gradient(135deg, #d39a68, #b96d3d);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(18, 26, 40, 0.1);
}

.hero {
  padding: 54px 0 32px;
}

.hero-grid {
  align-items: stretch;
  gap: 24px;
}

.hero-copy {
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 253, 0.92));
  border: 1px solid rgba(18, 26, 40, 0.08);
  box-shadow: var(--shadow);
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 34px 34px auto auto;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(201, 133, 80, 0.18), transparent 72%);
  pointer-events: none;
}

.hero-copy::after {
  inset: auto -44px -78px auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(95, 125, 157, 0.12), transparent 70%);
  pointer-events: none;
}

.hero-title {
  max-width: 11ch;
  font-size: clamp(3.3rem, 7vw, 5.8rem);
  line-height: 0.9;
}

.hero-title span {
  color: var(--accent-dark);
}

.hero-text {
  max-width: 62ch;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.82;
}

.hero-note {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(18, 26, 40, 0.08);
  box-shadow: 0 14px 28px rgba(16, 24, 38, 0.06);
}

.hero-note::before {
  box-shadow: 0 0 0 6px rgba(201, 133, 80, 0.14);
}

.hero-panel {
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(201, 133, 80, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(16, 24, 38, 0.98), rgba(11, 18, 30, 0.98));
  box-shadow: var(--shadow);
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 100%);
  pointer-events: none;
}

.hero-badge,
.signal-card,
.metric-card,
.flow-item,
.service-visual {
  border-radius: 20px;
}

.signal-card,
.metric-card,
.flow-item {
  border-color: rgba(255, 255, 255, 0.1);
}

.stat-card,
.service-card,
.proof-card,
.industry-card,
.timeline-card,
.detail-card,
.outcome-card,
.highlight-box,
.quote-card,
.form-card,
.contact-card,
.legal-box,
.page-hero-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 253, 0.88));
  border: 1px solid rgba(18, 26, 40, 0.08);
  box-shadow: var(--shadow-soft);
}

.stat-card,
.service-card,
.detail-card,
.industry-card,
.timeline-card,
.proof-card,
.highlight-box {
  position: relative;
  overflow: hidden;
}

.stat-card::before,
.service-card::before,
.detail-card::before,
.industry-card::before,
.timeline-card::before,
.proof-card::before,
.highlight-box::before {
  width: 88px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--jade));
}

.service-card:hover,
.service-card:focus-within,
.detail-card:hover,
.industry-card:hover,
.timeline-card:hover,
.proof-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(16, 24, 38, 0.12);
}

.service-index,
.timeline-index,
.hero-side-icon {
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(201, 133, 80, 0.12), rgba(95, 125, 157, 0.14));
  border: 1px solid rgba(18, 26, 40, 0.08);
  color: var(--ink);
}

.service-visual {
  background: linear-gradient(180deg, rgba(16, 24, 38, 0.98), rgba(11, 18, 30, 0.96));
}

.panel-dark,
.cta-band {
  background:
    radial-gradient(circle at top right, rgba(201, 133, 80, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(16, 24, 38, 0.98), rgba(11, 18, 30, 0.98));
}

.quote-card {
  border-radius: 32px;
}

.quote-card blockquote {
  max-width: 28ch;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
}

.faq-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 253, 0.88));
}

.faq-card summary::after {
  background: rgba(201, 133, 80, 0.12);
  color: var(--accent-dark);
}

.page-hero-card {
  position: relative;
  isolation: isolate;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(95, 125, 157, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 253, 0.92));
}

.page-hero-card > div:first-child,
.page-hero-card .button-row {
  position: relative;
  z-index: 3;
}

.page-hero-card .button.secondary {
  z-index: 5;
}

.page-hero-card .button.ghost {
  z-index: 4;
}

.hero-side-item,
.mini-panel {
  border-radius: 20px;
  background: rgba(18, 26, 40, 0.04);
  border: 1px solid rgba(18, 26, 40, 0.08);
}

.metric-card strong,
.highlight-box strong,
.stat-card strong {
  color: var(--ink);
}

.field input:not([type="checkbox"]),
.field select,
.field textarea,
.field-full input:not([type="checkbox"]),
.field-full select,
.field-full textarea {
  border-radius: 16px;
  background: rgba(253, 254, 255, 0.96);
  border-color: rgba(18, 26, 40, 0.1);
}

.footer-shell {
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(16, 24, 38, 0.99), rgba(11, 18, 30, 0.99));
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--ink-on-dark);
  box-shadow: var(--shadow);
}

.footer-shell .lead,
.footer-shell .footer-meta a,
.footer-shell .footer-nav a,
.footer-shell .footer-bottom span {
  color: rgba(237, 242, 247, 0.76);
}

.footer-shell .footer-nav a:hover,
.footer-shell .footer-meta a:hover {
  color: #ffffff;
}

.footer-shell .brand-mark::before {
  background:
    linear-gradient(145deg, rgba(201, 133, 80, 0.24), rgba(95, 125, 157, 0.18)),
    rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.sector-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sector-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(18, 26, 40, 0.08);
  box-shadow: 0 12px 28px rgba(16, 24, 38, 0.06);
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.sector-pill:hover,
.sector-pill:focus-visible {
  transform: translateY(-2px);
  background: #ffffff;
  box-shadow: 0 18px 32px rgba(16, 24, 38, 0.08);
}

.sector-pill.current {
  background: var(--panel-dark);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--ink-on-dark);
  box-shadow: 0 20px 34px rgba(16, 24, 38, 0.18);
}

@media (max-width: 900px) {
  .site-nav {
    background: rgba(255, 255, 255, 0.97);
    border-radius: 24px;
    border: 1px solid rgba(18, 26, 40, 0.08);
    box-shadow: var(--shadow-soft);
    pointer-events: none;
  }

  body.nav-open .site-nav {
    pointer-events: auto;
  }
}

@media (max-width: 720px) {
  .header-shell,
  .hero-copy,
  .hero-panel,
  .page-hero-card,
  .cta-band,
  .quote-card,
  .footer-shell {
    border-radius: 26px;
  }

  .hero-title {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .sector-switch {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
  }

  .sector-switch::-webkit-scrollbar {
    display: none;
  }

  .sector-pill {
    white-space: nowrap;
  }

  .checkbox-row {
    gap: 12px;
  }

  .checkbox-row input {
    margin-top: 2px;
  }
}

.field-full .checkbox-row {
  grid-template-columns: 22px minmax(0, 1fr);
}

.field-full .checkbox-row input[type="checkbox"] {
  -webkit-appearance: checkbox;
  appearance: auto;
  display: block;
  width: 22px !important;
  min-width: 22px !important;
  max-width: 22px;
  height: 22px !important;
  min-height: 22px !important;
  margin: 3px 0 0;
  padding: 0 !important;
  flex: 0 0 22px;
  border-radius: 6px;
  box-shadow: none !important;
  transform: none !important;
}

.field-full .checkbox-row span {
  display: block;
  align-self: start;
}

@media (max-width: 900px) {
  #kontakt .form-card[data-reveal],
  #kontakt .contact-card[data-reveal] {
    opacity: 1;
    transform: none;
  }

  #kontakt .field input:not([type="checkbox"]),
  #kontakt .field select,
  #kontakt .field textarea,
  #kontakt .field-full input:not([type="checkbox"]),
  #kontakt .field-full select,
  #kontakt .field-full textarea {
    font-size: 16px;
    transform: none;
    pointer-events: auto;
  }

  #kontakt .field input:not([type="checkbox"]):focus,
  #kontakt .field select:focus,
  #kontakt .field textarea:focus,
  #kontakt .field-full input:not([type="checkbox"]):focus,
  #kontakt .field-full select:focus,
  #kontakt .field-full textarea:focus {
    transform: none;
  }
}

@media (max-width: 900px) {
  .site-nav {
    display: none !important;
    pointer-events: none !important;
  }

  body.nav-open .site-nav {
    display: grid !important;
    pointer-events: auto !important;
  }

  body.form-focus-lock a[href]:not(#kontakt a[href]):not([data-site-nav] a[href]):not([data-nav-link]):not([data-nav-trigger]) {
    pointer-events: none !important;
  }

  body.form-focus-lock #kontakt,
  body.form-focus-lock #kontakt * {
    pointer-events: auto !important;
  }

  /* Nav bleibt immer klickbar, auch wenn form-focus-lock aktiv ist */
  body.nav-open [data-site-nav],
  body.nav-open [data-site-nav] * {
    pointer-events: auto !important;
  }

  /* Mobile Submenu Toggle */
  .nav-group:hover .submenu,
  .nav-group:focus-within .submenu {
    display: none !important;
  }

  .submenu {
    display: none !important;
    position: static !important;
    transform: none !important;
    min-width: 0 !important;
    padding: 8px 0 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    max-height: none !important;
    overflow: visible !important;
  }

  .nav-group.open .submenu {
    display: grid !important;
  }

  .nav-trigger::after {
    transition: transform 200ms ease;
  }

  .nav-group.open .nav-trigger::after {
    transform: rotate(180deg);
  }
}

.tom-avatar-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
}
/* ── Tom Demo Widget ─────────────────────────────────────── */
.tom-demo-card {
  margin-top: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: visible;
}

.tom-demo-inner {
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

/* Avatar */
.tom-avatar-wrap {
  position: relative;
  width: 100%;
  max-width: 340px;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
}

.tom-avatar-img {
  width: 100%;
  display: block;
  border-radius: 14px;
  transition: transform 400ms ease, filter 400ms ease;
}

/* Hover – sanftes Leuchten + leichte Vergrösserung */
.tom-avatar-wrap:hover .tom-avatar-img {
  transform: scale(1.03);
  filter: brightness(1.08) saturate(1.1);
}

/* Pulsing rings – sichtbar bei hover UND bei .tom-active */
.tom-avatar-pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  border: 2px solid rgba(201, 133, 80, 0.55);
  opacity: 0;
  transform: scale(1);
  pointer-events: none;
}

/* Hover: Ringe einblenden */
.tom-avatar-wrap:hover .tom-ring-1 {
  animation: tomRingPulse 1.8s ease-out infinite;
}
.tom-avatar-wrap:hover .tom-ring-2 {
  animation: tomRingPulse 1.8s ease-out 0.6s infinite;
}
.tom-avatar-wrap:hover .tom-ring-3 {
  animation: tomRingPulse 1.8s ease-out 1.2s infinite;
}

/* Demo aktiv: Ringe schneller und intensiver */
.tom-avatar-wrap.tom-active .tom-ring-1 {
  animation: tomRingPulse 1.2s ease-out infinite;
  border-color: rgba(201, 133, 80, 0.75);
}
.tom-avatar-wrap.tom-active .tom-ring-2 {
  animation: tomRingPulse 1.2s ease-out 0.4s infinite;
  border-color: rgba(201, 133, 80, 0.75);
}
.tom-avatar-wrap.tom-active .tom-ring-3 {
  animation: tomRingPulse 1.2s ease-out 0.8s infinite;
  border-color: rgba(201, 133, 80, 0.75);
}
.tom-avatar-wrap.tom-active .tom-avatar-img {
  filter: brightness(1.06) saturate(1.15);
  box-shadow: 0 0 30px rgba(201, 133, 80, 0.3);
}

@keyframes tomRingPulse {
  0%   { opacity: 0.8; transform: scale(1); }
  100% { opacity: 0;   transform: scale(1.12); }
}

.tom-quote {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.45;
}

.tom-sub {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
  line-height: 1.5;
}

.tom-actions {
  margin-top: 4px;
}

.tom-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  background: var(--accent, #c98550);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  letter-spacing: -0.01em;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
  box-shadow: 0 8px 24px rgba(201, 133, 80, 0.4);
}

.tom-btn-primary:hover,
.tom-btn-primary:focus-visible {
  background: var(--accent-dark, #ab6637);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(201, 133, 80, 0.5);
}

.tom-widget-wrap {
  width: 100%;
  min-height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tom-widget-wrap elevenlabs-convai {
  width: 100%;
}