:root {
  color-scheme: light;
  --bg: #f4f7f7;
  --surface: #ffffff;
  --surface-strong: #ffffff;
  --ink: #182426;
  --muted: #5f6f71;
  --line: #d9e3e4;
  --brand: #116466;
  --brand-strong: #0b4246;
  --accent: #e07a5f;
  --accent-soft: #fde9df;
  --mint: #e5f1ed;
  --gold: #d9a83f;
  --blue: #2f6fdb;
  --shadow: 0 24px 70px rgba(29, 46, 49, 0.12);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-feature-settings: "liga" 1, "calt" 1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(135deg, rgba(47, 111, 219, 0.11), transparent 30rem),
    linear-gradient(180deg, #fbfcfc 0%, var(--bg) 46%, #eef4f1 100%);
  color: var(--ink);
}

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  overflow-x: hidden;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1.25rem;
  width: calc(100% - 32px);
  max-width: 1160px;
  margin: 0.75rem auto 0;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(24, 36, 38, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 42px rgba(29, 46, 49, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--brand), #173b4b);
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0;
  box-shadow: inset 0 -11px 0 rgba(255, 255, 255, 0.08);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
}

.brand small {
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.76rem;
}

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem;
  border: 1px solid rgba(24, 36, 38, 0.08);
  border-radius: 999px;
  background: rgba(244, 247, 247, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.desktop-nav a {
  padding: 0.62rem 0.86rem;
  border-radius: 999px;
  color: #3f5052;
  font-size: 0.9rem;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.desktop-nav a:hover {
  background: var(--mint);
  color: var(--brand-strong);
}

.desktop-nav a[aria-current="page"] {
  background: var(--ink);
  color: #ffffff;
}

.nav-cta,
.primary-button,
.secondary-button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.48rem;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 700;
}

.nav-cta {
  padding: 0.72rem 0.95rem;
  background: var(--ink);
  color: #ffffff;
  font-size: 0.9rem;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
}

.mobile-nav {
  position: fixed;
  inset: 86px 16px auto;
  z-index: 30;
  display: grid;
  gap: 0.35rem;
  padding: 0.65rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.mobile-nav a {
  padding: 0.9rem 0.85rem;
  border-radius: 6px;
  color: var(--brand-strong);
  font-weight: 700;
}

.mobile-nav a:hover {
  background: var(--mint);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 1.05fr);
  gap: 3.25rem;
  align-items: center;
  width: calc(100% - 32px);
  max-width: 1160px;
  margin: 1rem auto 0;
  padding: 2.4rem;
  border: 1px solid rgba(24, 36, 38, 0.08);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(233, 244, 241, 0.92) 100%);
  box-shadow: 0 22px 70px rgba(29, 46, 49, 0.09);
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  margin: 0 0 1rem;
  border: 1px solid rgba(17, 100, 102, 0.16);
  border-radius: 999px;
  background: rgba(229, 241, 237, 0.86);
  color: var(--brand-strong);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow {
  margin-bottom: 1.75rem;
  padding: 0.48rem 0.72rem;
}

.section-kicker {
  margin-bottom: 1.25rem;
  padding: 0.42rem 0.68rem;
}

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

h1 {
  max-width: 880px;
  margin-bottom: 1.2rem;
  font-size: 4.6rem;
  line-height: 1;
  letter-spacing: 0;
}

.hero-title {
  max-width: 720px;
  font-size: 3.05rem;
  line-height: 1.04;
}

.hero-title span {
  display: block;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.12rem;
}

p {
  color: var(--muted);
  line-height: 1.68;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 1.55rem;
  color: #46585a;
  font-size: clamp(1.06rem, 1.7vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.45rem;
}

.primary-button {
  padding: 0.95rem 1.15rem;
  background: var(--brand);
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(17, 100, 102, 0.22);
}

.primary-button:hover,
.nav-cta:hover {
  background: var(--brand-strong);
}

.secondary-button {
  padding: 0.95rem 1.1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
}

.secondary-button:hover {
  border-color: rgba(17, 100, 102, 0.35);
  background: var(--surface);
}

.outcome-list {
  display: grid;
  gap: 0.65rem;
  max-width: 640px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.outcome-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #31484a;
  font-weight: 650;
}

.outcome-list svg {
  flex: 0 0 auto;
  color: var(--accent);
}

.hero-visual {
  position: relative;
  width: 100%;
  min-width: 0;
  padding: 1rem;
  border: 1px solid rgba(24, 36, 38, 0.09);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(237, 246, 244, 0.9)),
    var(--surface);
  box-shadow: var(--shadow);
}

.support-agent-card {
  display: grid;
  gap: 0.48rem;
  overflow: hidden;
  padding: 0.76rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 249, 0.94)),
    var(--surface);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: 6px;
  border: 1px solid rgba(17, 100, 102, 0.08);
  pointer-events: none;
}

.support-agent-card::before {
  display: none;
}

.visual-header,
.visual-grid,
.workflow-card,
.security-strip {
  position: relative;
  z-index: 1;
}

.agent-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0;
}

.agent-header span {
  color: var(--muted);
  font-size: 0.78rem;
}

.agent-header strong {
  display: block;
  margin-top: 0.2rem;
  font-size: 1.05rem;
}

.agent-tabs {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.35rem;
  padding: 0.28rem;
  border-radius: 8px;
  background: rgba(23, 32, 28, 0.06);
}

.agent-tabs button {
  min-width: 0;
  min-height: 34px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #46534c;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 850;
}

.agent-tabs button:hover {
  background: rgba(255, 253, 248, 0.72);
  color: var(--brand-strong);
}

.agent-tabs button.active {
  background: #fffdf8;
  color: var(--brand-strong);
  box-shadow: 0 8px 20px rgba(24, 34, 29, 0.08);
}

.agent-example-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.48rem;
}

.agent-example-panel[hidden] {
  display: none;
}

.agent-status {
  position: relative;
  padding: 0.32rem 0.58rem 0.32rem 1.2rem;
  border-radius: 999px;
  background: #e7f5e9;
  color: #176239 !important;
  font-weight: 850;
}

.agent-status::before {
  content: "";
  position: absolute;
  left: 0.5rem;
  top: 50%;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: #1f9d55;
  transform: translateY(-50%);
  animation: statusPulse 1.8s ease-in-out infinite;
}

.vertical-flow {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.5rem;
}

.compact-flow {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.5rem;
}

.compact-block {
  padding: 0.58rem;
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.76);
  box-shadow: inset 0 0 0 1px rgba(23, 32, 28, 0.07);
}

.flow-section {
  padding: 0.62rem;
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.74);
  box-shadow: inset 0 0 0 1px rgba(23, 32, 28, 0.07);
}

.flow-label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--brand);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.input-message {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.58rem;
  align-items: start;
  padding: 0.62rem 0.72rem;
  border-radius: 8px;
  background: #17302d;
  color: #fffdf8;
}

.compact-message {
  min-height: 78px;
  padding: 0.58rem 0.68rem;
}

.compact-message p {
  font-size: 0.9rem;
}

.compact-message small {
  font-size: 0.72rem;
}

.agent-animation {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: center;
}

.animated-step-panel {
  position: relative;
  min-height: 52px;
  overflow: hidden;
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: inset 0 0 0 1px rgba(23, 32, 28, 0.07);
}

.animated-step {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.72rem;
  color: #34433c;
  font-weight: 800;
  opacity: 0;
  transform: translateY(8px);
  animation: rotateAgentStep 6s ease-in-out infinite;
}

.animated-step svg {
  flex: 0 0 auto;
  color: var(--brand);
}

.animated-step-one {
  animation-delay: 0s;
}

.animated-step-two {
  animation-delay: 2s;
}

.animated-step-three {
  animation-delay: 4s;
}

.compact-reply {
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.compact-reply p {
  margin: 0;
  color: #34433c;
  font-size: 0.84rem;
  line-height: 1.38;
  font-weight: 700;
}

.input-message svg {
  color: var(--gold);
}

.input-message strong,
.agent-work-header strong {
  display: block;
  margin-bottom: 0.25rem;
  color: inherit;
}

.input-message p {
  margin-bottom: 0.3rem;
  color: #fffdf8;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.25;
}

.input-message small {
  color: rgba(255, 253, 248, 0.68);
  font-size: 0.76rem;
}

.agent-work-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.58rem;
  align-items: center;
  margin-bottom: 0.48rem;
}

.agent-work-header small {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--muted);
  font-size: 0.76rem;
}

.flow-diagram {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) auto minmax(0, 1.08fr) auto minmax(0, 1.05fr);
  gap: 0.75rem;
  align-items: stretch;
}

.flow-column {
  min-width: 0;
  padding: 0.88rem;
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.74);
  box-shadow: inset 0 0 0 1px rgba(23, 32, 28, 0.07);
}

.flow-label {
  display: block;
  margin-bottom: 0.72rem;
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.flow-arrow {
  display: grid;
  place-items: center;
  color: var(--accent);
}

.message-card {
  display: grid;
  gap: 0.5rem;
  min-height: 158px;
  align-content: center;
  padding: 0.9rem;
  border-radius: 8px;
  background: #17302d;
  color: #fffdf8;
}

.message-card svg {
  color: var(--gold);
}

.message-card p {
  margin: 0;
  color: #fffdf8;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.25;
}

.message-card small,
.flow-note {
  color: rgba(255, 253, 248, 0.64);
  font-size: 0.78rem;
}

.flow-note {
  margin: 0.75rem 0 0;
  color: var(--muted);
  line-height: 1.4;
}

.agent-mini-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: center;
  margin-bottom: 0.75rem;
}

.agent-mini-header strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.agent-avatar {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #17302d;
  color: var(--gold);
}

.agent-avatar span {
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(216, 162, 75, 0.42);
  border-radius: 10px;
  animation: agentScan 2.4s ease-in-out infinite;
}

.typing-line {
  display: flex;
  gap: 0.35rem;
}

.typing-line span {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--gold);
  animation: typingBounce 1.2s ease-in-out infinite;
}

.typing-line span:nth-child(2) {
  animation-delay: 0.15s;
}

.typing-line span:nth-child(3) {
  animation-delay: 0.3s;
}

.agent-workflow {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.38rem;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
}

.agent-step {
  display: flex;
  align-items: center;
  gap: 0.62rem;
  min-height: 34px;
  padding: 0.44rem 0.58rem;
  border: 0;
  border-left: 3px solid rgba(9, 95, 89, 0.22);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.72);
  color: #34433c;
  font-weight: 750;
  font-size: 0.8rem;
  box-shadow: inset 0 0 0 1px rgba(23, 32, 28, 0.06);
  animation: stepFocus 4.8s ease-in-out infinite;
}

.agent-step svg {
  flex: 0 0 auto;
  color: var(--brand);
}

.step-two {
  animation-delay: 1.6s;
}

.step-three {
  animation-delay: 3.2s;
}

.agent-reply {
  position: relative;
  z-index: 1;
  padding: 0.62rem 0.72rem;
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: inset 0 0 0 1px rgba(23, 32, 28, 0.07);
}

.agent-reply span {
  display: block;
  margin-bottom: 0.28rem;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.agent-reply p {
  margin-bottom: 0.42rem;
  color: #34433c;
  font-size: 0.84rem;
  line-height: 1.36;
}

.agent-reply strong {
  display: inline-flex;
  width: fit-content;
  padding: 0.3rem 0.48rem;
  border-radius: 999px;
  background: var(--mint);
  color: var(--brand-strong);
  font-size: 0.72rem;
}

.result-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.result-chips span {
  padding: 0.38rem 0.52rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #69321f;
  font-size: 0.74rem;
  font-weight: 800;
}

.impact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
}

.impact-grid div {
  min-height: 54px;
  display: grid;
  align-content: end;
  gap: 0.42rem;
  padding: 0.48rem 0.56rem;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.78);
  box-shadow: inset 0 0 0 1px rgba(23, 32, 28, 0.06);
}

.impact-grid span {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.25;
}

.impact-grid strong {
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1;
}

.agent-result {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.62rem;
  padding: 0.52rem 0.62rem;
  border-radius: 8px;
  background: var(--mint);
  color: var(--brand-strong);
  font-size: 0.76rem;
  font-weight: 750;
}

.agent-result svg {
  flex: 0 0 auto;
}

@keyframes statusPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(31, 157, 85, 0.42);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(31, 157, 85, 0);
  }
}

@keyframes agentScan {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

@keyframes typingBounce {
  0%,
  80%,
  100% {
    opacity: 0.45;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
    transform: translateY(-5px);
  }
}

@keyframes rotateAgentStep {
  0%,
  12% {
    opacity: 0;
    transform: translateY(8px);
  }
  18%,
  45% {
    opacity: 1;
    transform: translateY(0);
  }
  52%,
  100% {
    opacity: 0;
    transform: translateY(-8px);
  }
}

@keyframes stepFocus {
  0%,
  28%,
  100% {
    border-left-color: rgba(9, 95, 89, 0.22);
    background: rgba(255, 253, 248, 0.72);
  }
  12% {
    border-left-color: rgba(217, 108, 63, 0.75);
    background: var(--accent-soft);
  }
}

.visual-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0.7rem 0.75rem;
}

.visual-header span,
.metric-panel span,
.metric-panel small {
  color: var(--muted);
  font-size: 0.78rem;
}

.visual-header strong {
  display: block;
  margin-top: 0.2rem;
  font-size: 1.05rem;
}

.status-pill {
  align-self: start;
  padding: 0.38rem 0.58rem;
  border-radius: 999px;
  background: #e7f5e9;
  color: #176239 !important;
  font-weight: 800;
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 0 0 0.85rem;
}

.metric-panel {
  min-height: 118px;
  display: grid;
  align-content: end;
  gap: 0.5rem;
  padding: 0.85rem;
  border: 1px solid rgba(23, 32, 28, 0.08);
  border-radius: 8px;
  background: #fffaf0;
}

.metric-panel svg {
  color: var(--brand);
}

.metric-panel strong {
  font-size: clamp(2.25rem, 4.3vw, 3.45rem);
  line-height: 0.9;
}

.accent-panel {
  background: #17302d;
  color: #fffdf8;
}

.accent-panel span,
.accent-panel small {
  color: rgba(255, 253, 248, 0.72);
}

.accent-panel svg {
  color: var(--gold);
}

.workflow-card {
  display: grid;
  gap: 0.45rem;
  padding: 0.85rem;
  border: 1px solid rgba(23, 32, 28, 0.08);
  border-radius: 8px;
  background: var(--surface-strong);
}

.flow-node {
  display: flex;
  align-items: center;
  gap: 0.62rem;
  min-height: 42px;
  padding: 0.58rem 0.72rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  color: #34433c;
  font-weight: 700;
}

.flow-node.active {
  border-color: rgba(217, 108, 63, 0.38);
  background: var(--accent-soft);
  color: #69321f;
}

.flow-line {
  width: 2px;
  height: 12px;
  margin-left: 1.45rem;
  background: var(--line);
}

.security-strip {
  display: flex;
  align-items: center;
  gap: 0.62rem;
  margin-top: 0.7rem;
  padding: 0.72rem 0.85rem;
  border-radius: 8px;
  background: var(--mint);
  color: var(--brand-strong);
  font-size: 0.9rem;
  font-weight: 750;
}

.trust-band,
.section,
.page-hero,
.split-section,
.contact-section,
.contact-direct,
.footer {
  width: calc(100% - 32px);
  max-width: 1160px;
  margin: 0 auto;
}

.page-hero {
  padding: 5.25rem 0 2.5rem;
}

.page-hero h1 {
  max-width: 960px;
  margin-top: 0;
}

.page-hero p {
  max-width: 760px;
  color: #46534c;
  font-size: clamp(1.08rem, 1.8vw, 1.32rem);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 1rem 0 4.5rem;
}

.trust-band div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 70px;
  border: 1px solid rgba(23, 32, 28, 0.08);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.68);
  color: #34433c;
  font-weight: 750;
}

.section {
  padding: 5.5rem 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2rem;
}

.section-heading p {
  max-width: 710px;
  font-size: 1.05rem;
}

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

.service-card {
  min-height: 250px;
  padding: 1.35rem;
  border: 1px solid rgba(23, 32, 28, 0.08);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.78);
}

.service-card svg {
  margin-bottom: 2rem;
  color: var(--brand);
}

.service-card-detailed {
  min-height: 360px;
}

.service-card-detailed p + p {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: #33443d;
}

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

.case-card {
  min-height: 520px;
  padding: 1.35rem;
  border: 1px solid rgba(23, 32, 28, 0.08);
  border-radius: 8px;
  background: var(--surface-strong);
  box-shadow: 0 14px 34px rgba(24, 34, 29, 0.06);
}

.case-card span {
  display: inline-block;
  margin-bottom: 2rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.integration-block {
  margin-top: 1.1rem;
  padding: 0.9rem;
  border-radius: 8px;
  background: rgba(223, 238, 233, 0.58);
}

.integration-block strong {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--brand-strong);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.integration-block div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.integration-block em {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.32rem 0.5rem;
  border-radius: 999px;
  background: #fffdf8;
  color: #34433c;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(23, 32, 28, 0.07);
}

.case-card ul {
  display: grid;
  gap: 0.55rem;
  margin: 1.2rem 0 0;
  padding: 1rem 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.case-card li {
  position: relative;
  padding-left: 1.25rem;
  color: #34433c;
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.35;
}

.case-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--accent);
}

.team-section {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  width: calc(100% - 32px);
  max-width: 1160px;
  margin: 0 auto;
  padding: 2.5rem 0 3rem;
}

.team-photo-wrap {
  overflow: hidden;
  border-radius: 8px;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.team-photo-wrap img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.team-intro p {
  font-size: 1.04rem;
}

.team-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.3rem;
}

.team-stats div {
  display: grid;
  gap: 0.35rem;
  min-height: 112px;
  padding: 0.9rem;
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: inset 0 0 0 1px rgba(23, 32, 28, 0.07);
}

.team-stats strong {
  color: var(--brand);
  font-size: 1.7rem;
  line-height: 1;
}

.team-stats span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.25;
}

.expertise-depth {
  padding-top: 2.5rem;
}

.expertise-depth-grid,
.case-lessons-grid,
.method-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.case-lessons {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  padding-top: 1.5rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  padding: 5.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.page-split {
  border-bottom: 0;
}

.text-link {
  justify-content: flex-start;
  min-height: 0;
  margin-top: 0.45rem;
  color: var(--brand);
}

.use-case-list {
  display: grid;
  gap: 0.75rem;
}

.use-case {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 70px;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(23, 32, 28, 0.08);
  border-radius: 8px;
  background: var(--surface-strong);
  box-shadow: 0 14px 34px rgba(24, 34, 29, 0.06);
  color: #293a33;
  font-weight: 750;
}

.use-case svg {
  flex: 0 0 auto;
  color: var(--accent);
}

.method-section {
  padding-bottom: 4rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.timeline-item {
  padding: 1.2rem;
  border-top: 3px solid var(--brand);
  background: rgba(255, 253, 248, 0.62);
}

.timeline-item span {
  display: inline-block;
  margin-bottom: 1.5rem;
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 850;
}

.method-detail-section {
  padding-top: 2rem;
  padding-bottom: 2.5rem;
}

.method-detail-list {
  display: grid;
  gap: 1rem;
}

.method-detail-card {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding: 1.35rem;
  border: 1px solid rgba(23, 32, 28, 0.08);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 0 14px 34px rgba(24, 34, 29, 0.05);
}

.method-detail-card > span {
  color: var(--accent);
  font-size: 1.75rem;
  font-weight: 850;
  line-height: 1;
}

.method-detail-card h2 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
}

.method-detail-card p {
  max-width: 760px;
  margin-bottom: 0.85rem;
}

.method-detail-card strong {
  color: var(--brand-strong);
}

.method-metrics article {
  min-height: 150px;
  padding: 1.1rem;
  border: 1px solid rgba(23, 32, 28, 0.08);
  border-radius: 8px;
  background: var(--surface-strong);
  box-shadow: 0 14px 34px rgba(24, 34, 29, 0.06);
}

.method-metrics strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--brand-strong);
  font-size: 1.05rem;
}

.method-metrics p {
  margin: 0;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.62fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  margin-bottom: 5rem;
  padding: clamp(1.5rem, 4vw, 3.3rem);
  border-radius: 8px;
  background: var(--ink);
  color: #fffdf8;
  box-shadow: var(--shadow);
}

.contact-section h2,
.contact-section p {
  color: inherit;
}

.contact-section p {
  color: rgba(255, 253, 248, 0.72);
}

.contact-card {
  display: grid;
  gap: 0.55rem;
  min-height: 188px;
  padding: 1.2rem;
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.08);
}

.contact-card svg {
  color: var(--gold);
}

.contact-card span {
  color: rgba(255, 253, 248, 0.72);
  overflow-wrap: anywhere;
}

.contact-card strong {
  align-self: end;
  font-size: 1.35rem;
}

.contact-details {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  padding-top: 1rem;
}

.contact-direct {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  margin-bottom: 5rem;
  padding: clamp(1.5rem, 4vw, 3.3rem);
  border: 1px solid rgba(23, 32, 28, 0.08);
  border-radius: 8px;
  background: var(--brand-strong);
  color: #fffdf8;
  box-shadow: var(--shadow);
}

.contact-direct h2,
.contact-direct p {
  color: inherit;
}

.contact-direct p,
.contact-direct .contact-card span {
  color: rgba(255, 253, 248, 0.74);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  padding: 1rem;
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.08);
}

.contact-form label {
  display: grid;
  gap: 0.42rem;
  color: rgba(255, 253, 248, 0.86);
  font-size: 0.78rem;
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.94);
  color: var(--ink);
  font: inherit;
  font-size: 0.92rem;
  outline: none;
}

.contact-form input,
.contact-form select {
  padding: 0 0.78rem;
}

.contact-form textarea {
  min-height: 128px;
  padding: 0.72rem 0.78rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(216, 162, 75, 0.24);
}

.contact-form button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

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

.form-alert {
  margin: 0;
  border-radius: 8px;
  padding: 0.78rem 0.9rem;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.35;
}

.form-alert-success {
  background: rgba(40, 150, 96, 0.18);
  color: #eafff5;
}

.form-alert-error {
  background: rgba(190, 64, 64, 0.18);
  color: #fff0f0;
}

.form-note {
  margin: 0;
  color: rgba(255, 253, 248, 0.68) !important;
  font-size: 0.82rem;
  line-height: 1.45;
}

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px !important;
  height: 1px !important;
  opacity: 0;
}

.compact-list,
.pricing-card ul {
  display: grid;
  gap: 0.58rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.compact-list li,
.pricing-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.pricing-card li svg {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 0.18em;
  color: var(--brand);
}

.compact-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-top: 0.48rem;
  border-radius: 999px;
  background: var(--gold);
}

.lead-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
  gap: 2rem;
  align-items: start;
  width: calc(100% - 32px);
  max-width: 1160px;
  margin: 0 auto 5rem;
  padding: 2rem;
  border-radius: 8px;
  background: var(--ink);
  color: #fffdf8;
}

.lead-band h2,
.lead-band p {
  color: inherit;
}

.lead-band p {
  max-width: 620px;
  color: rgba(255, 253, 248, 0.72);
}

.lead-band .section-kicker {
  border-color: rgba(255, 253, 248, 0.18);
  background: rgba(255, 253, 248, 0.1);
  color: #fffdf8;
}

.lead-band-dark {
  margin-top: 0;
}

.lead-form-compact {
  padding: 0.9rem;
}

.pricing-section {
  padding-top: 1rem;
}

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

.pricing-card {
  position: relative;
  display: grid;
  grid-template-rows: minmax(172px, auto) auto 1fr auto;
  align-content: stretch;
  gap: 1rem;
  min-height: 100%;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-strong);
  box-shadow: 0 18px 50px rgba(29, 46, 49, 0.08);
}

.pricing-card-featured {
  border-color: rgba(17, 100, 102, 0.34);
  box-shadow: 0 28px 70px rgba(17, 100, 102, 0.16);
}

.pricing-card-head {
  display: grid;
  align-content: start;
  gap: 0.78rem;
}

.pricing-badge {
  width: fit-content;
  min-height: 1.8rem;
  border-radius: 999px;
  padding: 0.35rem 0.58rem;
  background: var(--accent-soft);
  color: #8a351e;
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-badge-placeholder {
  visibility: hidden;
}

.pricing-card h2 {
  margin: 0;
  font-size: 1.55rem;
}

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

.price-line {
  display: grid;
  gap: 0.2rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price-line strong {
  font-size: 1.45rem;
  line-height: 1;
}

.price-line span {
  color: var(--brand-strong);
  font-weight: 850;
}

.pricing-card .primary-button,
.pricing-card .secondary-button {
  width: 100%;
  align-self: end;
  margin-top: 0;
}

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

.faq-card {
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.82);
}

.faq-card h3 {
  margin-bottom: 0.55rem;
}

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

.contact-options {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.contact-options a {
  display: inline-flex;
  align-items: center;
  gap: 0.58rem;
  width: fit-content;
  color: #fffdf8;
  font-weight: 800;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.footer span:first-child {
  color: var(--ink);
  font-weight: 800;
}

@media (max-width: 960px) {
  .topbar {
    grid-template-columns: auto 1fr auto;
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-button {
    display: grid;
    place-items: center;
    justify-self: end;
  }

  .hero,
  .team-section,
  .contact-details,
  .case-lessons,
  .split-section,
  .contact-section,
  .contact-direct,
  .lead-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 2.3rem;
  }

  h1 {
    font-size: 4.4rem;
  }

  .hero-title {
    font-size: 2.75rem;
  }

  .hero-visual {
    max-width: 620px;
  }

  .trust-band,
  .case-grid,
  .service-grid,
  .timeline,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .topbar,
  .hero,
  .team-section,
  .trust-band,
  .section,
  .page-hero,
  .split-section,
  .contact-section,
  .contact-direct,
  .lead-band,
  .footer {
    width: calc(100% - 24px);
    max-width: 1160px;
  }

  .brand small {
    display: none;
  }

  .menu-button {
    display: grid !important;
    place-items: center;
  }

  h1 {
    font-size: 3.15rem;
  }

  .hero-title {
    font-size: 2.2rem;
    line-height: 1.08;
  }

  .agent-status {
    padding: 0.34rem 0.56rem 0.34rem 1.2rem;
    font-size: 0.72rem;
  }

  .hero-visual {
    max-width: 100%;
  }

  h2 {
    font-size: 2.15rem;
  }

  .hero {
    padding-bottom: 2.5rem;
  }

  .hero-actions {
    display: grid;
  }

  .visual-grid,
  .impact-grid,
  .contact-form,
  .team-stats,
  .expertise-depth-grid,
  .case-lessons-grid,
  .method-metrics,
  .trust-band,
  .case-grid,
  .service-grid,
  .timeline,
  .pricing-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .lead-band {
    padding: 1.2rem;
  }

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

  .flow-diagram {
    grid-template-columns: 1fr;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }

  .agent-avatar {
    width: 58px;
    height: 58px;
  }

  .metric-panel {
    min-height: 118px;
  }

  .section,
  .split-section {
    padding: 4rem 0;
  }

  .footer {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
