:root {
  --bg: #fafaf4;
  --surface: #ffffff;
  --surface-soft: #f7f6f1;
  --ink: #111111;
  --muted: #6b7280;
  --accent: #f4a261;
  --accent-hover: #ee9148;
  --accent-soft: #fff1e5;
  --beige: #eadbc8;
  --line: #e8e7e2;
  --line-strong: #d9d7d0;
  --shadow: 0 14px 44px rgba(17, 17, 17, 0.06);
  --shadow-hover: 0 22px 64px rgba(17, 17, 17, 0.09);
  --radius: 22px;
  --max: 1200px;
  --grid-size: 56px;
  --grid-line: rgba(17, 17, 17, 0.022);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--bg);
  font-family: "YD Yoonche", Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -2;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 8% 5%, rgba(234, 219, 200, 0.42), transparent 24rem),
    radial-gradient(circle at 92% 18%, rgba(244, 162, 97, 0.1), transparent 26rem);
  pointer-events: none;
}

body::after {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-position: 50% 0;
  background-size: var(--grid-size) var(--grid-size);
  mask-image: linear-gradient(to bottom, transparent, #000 8%, #000 92%, transparent);
  pointer-events: none;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

svg {
  flex: 0 0 auto;
  stroke-width: 1.8;
}

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

h1,
h2,
h3,
.brand,
.button,
.nav-links,
.nav-cta {
  font-family: "YD Yoonche", Inter, "Helvetica Neue", Arial, sans-serif;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  color: var(--ink);
}

.progress {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--accent);
}

.cursor-glow {
  position: fixed;
  z-index: 0;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 162, 97, 0.12), rgba(234, 219, 200, 0.06) 42%, transparent 72%);
  filter: blur(32px);
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 260ms ease;
  pointer-events: none;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.section-shell,
.site-header,
.site-footer {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.section-shell {
  position: relative;
  padding-block: 56px;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 18px;
  left: 50%;
  display: grid;
  min-height: 66px;
  grid-template-columns: minmax(210px, 1fr) auto minmax(210px, 1fr);
  align-items: center;
  gap: clamp(12px, 1.6vw, 22px);
  border: 1px solid transparent;
  border-radius: 20px;
  padding: 8px 10px 8px 18px;
  transform: translateX(-50%);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  border-color: rgba(232, 231, 226, 0.9);
  background: rgba(250, 250, 244, 0.88);
  box-shadow: 0 10px 36px rgba(17, 17, 17, 0.06);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(255, 122, 0, 0.22);
  transition: transform 220ms var(--ease), filter 220ms ease;
}

.brand-mark img {
  display: block;
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand:hover .brand-mark {
  filter: drop-shadow(0 9px 16px rgba(255, 122, 0, 0.3));
  transform: translateY(-2px) scale(1.035);
}

.products-preview,
.process-section,
.industries-preview,
.pricing-section,
.faq-section,
.product-detail-list,
.industry-detail-grid {
  isolation: isolate;
}

.products-preview::before,
.process-section::before,
.industries-preview::before,
.pricing-section::before,
.faq-section::before,
.product-detail-list::before,
.industry-detail-grid::before {
  position: absolute;
  z-index: -1;
  inset: 14px -24px;
  border-radius: 24px;
  content: "";
  background: radial-gradient(circle at 84% 18%, rgba(244, 162, 97, 0.07), transparent 18rem);
  mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
  pointer-events: none;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(4px, 0.55vw, 9px);
}

.nav-dropdown {
  position: relative;
}

.nav-trigger,
.nav-direct-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  gap: 5px;
  border: 0;
  border-radius: 12px;
  padding: 0 12px;
  color: #4b5563;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 650;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease;
}

.nav-trigger > svg {
  width: 14px;
  height: 14px;
  color: #98928c;
  transition: transform 220ms var(--ease), color 180ms ease;
}

.nav-trigger:hover,
.nav-direct-link:hover,
.nav-dropdown.is-open .nav-trigger,
.nav-dropdown:focus-within .nav-trigger {
  color: var(--ink);
  background: rgba(244, 162, 97, 0.09);
}

.nav-dropdown.is-open .nav-trigger > svg,
.nav-dropdown:focus-within .nav-trigger > svg,
.nav-dropdown:hover .nav-trigger > svg {
  color: var(--accent-hover);
  transform: rotate(180deg);
}

.nav-demo-link {
  margin-left: 2px;
  border: 1px solid rgba(238, 145, 72, 0.28);
  color: #7a4826;
}

.nav-menu {
  position: absolute;
  z-index: 120;
  top: calc(100% + 12px);
  left: 50%;
  width: 300px;
  border: 1px solid rgba(222, 218, 211, 0.94);
  border-radius: 18px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  background: rgba(255, 255, 252, 0.96);
  box-shadow: 0 24px 70px rgba(31, 24, 18, 0.14), 0 2px 8px rgba(31, 24, 18, 0.04);
  backdrop-filter: blur(22px);
  pointer-events: none;
  transform: translate(-50%, 10px) scale(0.985);
  transform-origin: top center;
  transition: opacity 180ms ease, visibility 180ms ease, transform 240ms var(--ease);
}

.nav-dropdown::after {
  position: absolute;
  top: 100%;
  right: -8px;
  left: -8px;
  height: 14px;
  content: "";
}

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

.nav-menu-employees {
  width: 620px;
}

.nav-menu-solutions {
  width: 500px;
}

.nav-menu-resources {
  width: 270px;
}

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

.nav-menu-stack {
  display: grid;
  gap: 4px;
}

.nav-menu-link {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 9px 10px;
  color: #35312e;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 220ms var(--ease);
}

.nav-menu-link::after {
  display: none;
}

.nav-menu-link:hover,
.nav-menu-link:focus-visible {
  border-color: rgba(238, 145, 72, 0.18);
  color: var(--ink);
  background: rgba(244, 162, 97, 0.08);
  transform: translateY(-1px);
}

.nav-menu-link strong {
  min-width: 0;
  overflow: hidden;
  font-size: 0.82rem;
  font-weight: 720;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-menu-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border: 1px solid rgba(238, 145, 72, 0.18);
  border-radius: 10px;
  color: #d87933;
  background: #fff7f0;
}

.nav-menu-icon svg {
  width: 16px;
  height: 16px;
}

.nav-mobile-cta {
  display: none;
}

.nav-cta,
.button {
  position: relative;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 18px;
  padding: 12px 19px;
  cursor: pointer;
  font-size: 0.93rem;
  font-weight: 750;
  line-height: 1;
  transition: transform 220ms var(--ease), background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.nav-cta {
  min-width: 190px;
  min-height: 48px;
  justify-self: end;
  color: #fff;
  background: var(--ink);
}

.nav-cta:hover {
  background: #2b2b2b;
}

.nav-cta svg,
.button svg {
  width: 18px;
  height: 18px;
}

.button::after {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: "";
  background: rgba(255, 255, 255, 0.35);
  left: var(--ripple-x, 50%);
  top: var(--ripple-y, 50%);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
}

.button.is-rippling::after {
  animation: ripple 420ms ease-out;
}

.button-primary {
  color: #1f160f;
  background: var(--accent);
  box-shadow: 0 10px 28px rgba(244, 162, 97, 0.24);
}

.button-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 14px 34px rgba(244, 162, 97, 0.3);
  transform: translateY(-2px);
}

.button-secondary {
  border-color: var(--line-strong);
  color: var(--ink);
  background: var(--surface);
}

.button-secondary:hover {
  border-color: #bdbab1;
  background: #fff;
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--surface);
}

.menu-button span {
  display: block;
  width: 19px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 220ms ease;
}

.menu-active .menu-button span:first-child {
  transform: translateY(3.25px) rotate(45deg);
}

.menu-active .menu-button span:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}

.hero {
  display: grid;
  width: 100%;
  max-width: none;
  min-height: 560px;
  place-items: center;
  padding-top: 120px;
  padding-bottom: 20px;
  isolation: isolate;
  --aura-x: 50%;
  --aura-y: 42%;
}

.hero-background,
.page-hero .hero-background {
  position: absolute;
  z-index: -1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-background::before {
  position: absolute;
  top: 10%;
  left: 50%;
  width: min(94vw, 1280px);
  height: 560px;
  border: 1px solid rgba(234, 219, 200, 0.68);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%) rotate(-5deg);
}

.hero-background::after {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(
    circle 300px at var(--aura-x) var(--aura-y),
    rgba(244, 162, 97, 0.17),
    rgba(234, 219, 200, 0.08) 46%,
    transparent 72%
  );
  transition: background-position 120ms linear;
}

.mesh {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.7;
  animation: meshDrift 12s var(--ease) infinite alternate;
}

.mesh-one {
  top: 12%;
  left: 3vw;
  width: 300px;
  height: 300px;
  border: 70px solid rgba(234, 219, 200, 0.3);
}

.mesh-two {
  right: 3vw;
  bottom: 2%;
  width: 360px;
  height: 360px;
  border: 86px solid rgba(244, 162, 97, 0.08);
  animation-delay: -6s;
}

.grid-fade {
  display: none;
}

.particle-layer {
  position: absolute;
  inset: 3% 2%;
  display: block;
  background-image: radial-gradient(circle, rgba(17, 17, 17, 0.18) 1px, transparent 1.5px);
  background-size: 72px 72px;
  opacity: 0.22;
  mask-image: radial-gradient(ellipse at center, #000 8%, transparent 72%);
  animation: particleDrift 18s linear infinite;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), 1180px);
  text-align: center;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #52525b;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0 auto;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
}

.hero-title > span {
  display: block;
}

.hero-title > span:first-child {
  font-size: clamp(3rem, 4.8vw, 4.45rem);
  line-height: 1.04;
}

.rotating-line {
  min-height: 1.32em;
  margin-top: 12px;
  color: var(--accent-hover);
  font-size: clamp(3.55rem, 5.6vw, 5.15rem);
  line-height: 1.08;
}

[data-rotating-text] {
  display: inline-block;
  transform-origin: center;
  will-change: transform, opacity, filter;
}

.hero-copy > p {
  max-width: 760px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.hero-actions .button {
  min-width: 206px;
}

.trust-strip {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 92px;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid rgba(224, 217, 210, 0.8);
  border-bottom: 1px solid rgba(224, 217, 210, 0.8);
  background: linear-gradient(90deg, #fff 0%, #fffaf6 48%, #fff 100%);
  isolation: isolate;
}

.trust-strip::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: radial-gradient(ellipse 34% 90% at 50% 50%, rgba(244, 162, 97, 0.09), transparent 75%);
  pointer-events: none;
}

.trust-track {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(calc(100% - 48px), var(--max));
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-inline: auto;
}

.trust-stat {
  position: relative;
  display: grid;
  min-width: 0;
  place-items: center;
  align-content: center;
  padding: 12px 20px;
  color: var(--ink);
  cursor: pointer;
  text-align: center;
}

.trust-stat::after {
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 34px;
  height: 2px;
  border-radius: 2px;
  content: "";
  background: var(--accent-hover);
  transform: translateX(-50%) scaleX(0);
  transition: transform 260ms var(--ease);
}

.trust-stat strong {
  color: var(--accent-hover);
  font-family: "YD Yoonche", Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
  transition: transform 240ms var(--ease);
}

.trust-stat > span {
  margin-top: 5px;
  color: #282522;
  font-family: "YD Yoonche", Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.trust-stat:hover strong,
.trust-stat:focus-visible strong {
  transform: scale(1.05);
}

.trust-stat:hover::after,
.trust-stat:focus-visible::after {
  transform: translateX(-50%) scaleX(1);
}

.trust-stat-clone {
  display: none;
}

.section-heading {
  max-width: 800px;
  margin: 0 auto 32px;
  text-align: center;
}

.section-kicker {
  color: var(--accent-hover);
}

.section-heading h2,
.outcome-copy h2,
.cta-section h2 {
  margin: 16px 0 0;
  font-size: clamp(2.45rem, 4.7vw, 4.5rem);
  font-weight: 800;
  line-height: 1.04;
}

.section-heading p,
.outcome-copy > p,
.cta-section > div > p,
.page-hero p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.72;
}

.section-heading p {
  max-width: 670px;
  margin: 20px auto 0;
}

.process-section,
.results-section,
.pricing-section {
  border-bottom: 1px solid var(--line);
}

.product-grid,
.industry-grid,
.results-grid,
.pricing-grid,
.industry-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.product-card,
.result-card,
.pricing-card,
.testimonial-slider,
.calculator,
.faq-list,
.lead-form,
.industry-detail,
.product-detail,
.roi-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.product-card,
.pricing-card,
.industry-detail {
  padding: 28px;
  transition: transform 240ms var(--ease), border-color 240ms ease, box-shadow 240ms ease;
}

.product-card:hover,
.pricing-card:hover,
.industry-detail:hover {
  border-color: #d7c5b5;
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.product-card > svg,
.industry-detail > svg,
.product-detail > div:first-child > svg {
  width: 38px;
  height: 38px;
  padding: 8px;
  border: 1px solid #f0d8c4;
  border-radius: 12px;
  color: var(--accent-hover);
  background: var(--accent-soft);
}

.product-card h3,
.pricing-card h3,
.timeline h3,
.industry-detail h2,
.product-detail h2 {
  margin: 22px 0 0;
  font-size: 1.35rem;
  font-weight: 750;
  line-height: 1.18;
}

.product-card p,
.pricing-card p,
.timeline p,
.result-card p,
.industry-detail p,
.product-detail p {
  margin: 13px 0 0;
  color: var(--muted);
}

.product-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 20px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 750;
}

.product-card a svg {
  width: 16px;
  color: var(--accent-hover);
  transition: transform 180ms ease;
}

.product-card a:hover svg {
  transform: translateX(4px);
}

.ai-employees-overview {
  padding-top: clamp(36px, 3vw, 48px);
  padding-bottom: clamp(24px, 2.5vw, 34px);
  overflow: visible;
}

.employee-overview-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1fr);
  gap: clamp(46px, 6.5vw, 94px);
  align-items: start;
}

.employee-intro {
  position: sticky;
  top: 126px;
  padding-top: 0;
}

.employee-intro h2 {
  max-width: 520px;
  margin: 17px 0 0;
  font-size: clamp(3rem, 4.7vw, 4.6rem);
  font-weight: 800;
  line-height: 1.02;
}

.employee-copy-lines {
  max-width: 490px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.employee-copy-lines span {
  display: block;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 620ms var(--ease), transform 620ms var(--ease);
}

.employee-intro.is-visible .employee-copy-lines span {
  opacity: 1;
  transform: translateY(0);
}

.employee-intro.is-visible .employee-copy-lines span:nth-child(1) { transition-delay: 120ms; }
.employee-intro.is-visible .employee-copy-lines span:nth-child(2) { transition-delay: 210ms; }
.employee-intro.is-visible .employee-copy-lines span:nth-child(3) { transition-delay: 300ms; }

.employee-system {
  position: relative;
  min-width: 0;
  min-height: 700px;
  padding: 28px 10px 36px;
  isolation: isolate;
  --system-x: 50%;
  --system-y: 46%;
}

.employee-system::before {
  position: absolute;
  z-index: -3;
  inset: -54px -36px -30px;
  content: "";
  background-image: radial-gradient(rgba(17, 17, 17, 0.13) 0.8px, transparent 0.9px);
  background-size: 18px 18px;
  opacity: 0.22;
  mask-image: radial-gradient(ellipse at center, #000 15%, transparent 76%);
  pointer-events: none;
}

.employee-system::after {
  position: absolute;
  z-index: -2;
  inset: 3% -8% 0;
  content: "";
  background: radial-gradient(ellipse at 54% 47%, rgba(244, 162, 97, 0.2), transparent 58%);
  filter: blur(26px);
  pointer-events: none;
}

.employee-system-glow {
  position: absolute;
  z-index: -1;
  inset: -20px;
  opacity: 0;
  background: radial-gradient(circle 230px at var(--system-x) var(--system-y), rgba(244, 162, 97, 0.2), transparent 72%);
  transition: opacity 280ms ease;
  pointer-events: none;
}

.employee-system:hover .employee-system-glow {
  opacity: 1;
}

.employee-connectors {
  position: absolute;
  z-index: 0;
  inset: 4% 2% 2%;
  width: 96%;
  height: 94%;
  overflow: visible;
  pointer-events: none;
}

.employee-connectors path {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.connector-base {
  stroke: rgba(238, 145, 72, 0.22);
  stroke-width: 1.15;
}

.connector-energy {
  stroke: rgba(238, 145, 72, 0.72);
  stroke-width: 1.5;
  stroke-dasharray: 5 22;
  stroke-linecap: round;
  animation: connectorFlow 5.5s linear infinite;
  transition: stroke 260ms ease, stroke-width 260ms ease;
}

.employee-system.has-focus .connector-energy,
.employee-system:focus-within .connector-energy,
.employee-system:has(.ai-employee-card:hover) .connector-energy {
  stroke: rgba(238, 145, 72, 1);
  stroke-width: 2.2;
  animation-duration: 1.8s;
  filter: drop-shadow(0 0 5px rgba(238, 145, 72, 0.62));
}

.employee-card-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.ai-employee-card {
  position: relative;
  min-width: 0;
  min-height: 300px;
  border: 1px solid rgba(226, 218, 209, 0.9);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.91), rgba(255, 251, 246, 0.72));
  box-shadow: 0 18px 50px rgba(37, 28, 19, 0.07);
  backdrop-filter: blur(18px);
  transition: border-color 280ms ease, box-shadow 280ms ease, transform 360ms var(--ease), opacity 700ms var(--ease);
}

.ai-employee-card:nth-child(even) {
  margin-top: 54px;
}

.ai-employee-card.reveal.is-visible:hover,
.ai-employee-card.reveal.is-visible.is-active,
.ai-employee-card.reveal.is-visible:focus-within {
  z-index: 4;
  border-color: rgba(238, 145, 72, 0.62);
  box-shadow: 0 25px 72px rgba(238, 145, 72, 0.18), 0 8px 26px rgba(17, 17, 17, 0.07);
  transform: translateY(-8px);
}

.employee-system.has-focus .ai-employee-card:not(.is-active),
.employee-system:focus-within .ai-employee-card:not(:focus-within),
.employee-system:has(.ai-employee-card:hover) .ai-employee-card:not(:hover) {
  border-color: rgba(238, 145, 72, 0.3);
  box-shadow: 0 18px 48px rgba(238, 145, 72, 0.1);
}

.employee-card-surface {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
  padding: 25px;
  transform: perspective(1000px) translate3d(var(--card-x, 0px), var(--card-y, 0px), 0) rotateX(var(--card-rx, 0deg)) rotateY(var(--card-ry, 0deg));
  transform-style: preserve-3d;
  animation: employeeFloat 5.4s ease-in-out infinite;
}

.ai-employee-card:nth-child(2) .employee-card-surface { animation-delay: -1.5s; }
.ai-employee-card:nth-child(3) .employee-card-surface { animation-delay: -3s; }
.ai-employee-card:nth-child(4) .employee-card-surface { animation-delay: -4.2s; }

.employee-card-surface::before {
  position: absolute;
  top: 0;
  right: 20%;
  left: 20%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(238, 145, 72, 0.85), transparent);
  opacity: 0.52;
}

.employee-card-surface::after {
  position: absolute;
  right: -36px;
  bottom: -62px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(238, 145, 72, 0.13);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 20px rgba(238, 145, 72, 0.025), 0 0 0 42px rgba(238, 145, 72, 0.018);
  pointer-events: none;
}

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

.employee-number {
  color: #a7a29c;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.employee-icon {
  position: relative;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(238, 145, 72, 0.26);
  border-radius: 16px;
  color: #d8752c;
  background: linear-gradient(145deg, #fff7f0, #fff);
  box-shadow: inset 0 1px 0 #fff, 0 8px 24px rgba(238, 145, 72, 0.11);
  transition: transform 260ms var(--ease), box-shadow 260ms ease;
}

.employee-icon > svg {
  position: relative;
  z-index: 3;
  width: 25px;
  height: 25px;
}

.employee-system.has-focus .employee-icon,
.employee-system:focus-within .employee-icon,
.employee-system:has(.ai-employee-card:hover) .employee-icon {
  animation: employeeIconPulse 620ms var(--ease) both;
}

.ai-employee-card h3 {
  max-width: 260px;
  margin: 24px 0 0;
  font-size: clamp(1.27rem, 1.8vw, 1.52rem);
  font-weight: 780;
  line-height: 1.16;
}

.ai-employee-card p {
  max-width: 285px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.62;
}

.ai-employee-card a {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 15px;
  color: #4a4038;
  font-size: 0.82rem;
  font-weight: 780;
}

.ai-employee-card a svg {
  width: 17px;
  height: 17px;
  color: var(--accent-hover);
  transition: transform 220ms var(--ease);
}

.ai-employee-card a:hover svg {
  transform: translate(3px, -3px);
}

.search-node,
.flow-node {
  position: absolute;
  width: 5px;
  height: 5px;
  border: 1px solid #e8853b;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 7px rgba(238, 145, 72, 0.55);
}

.search-node::after,
.flow-node::after {
  position: absolute;
  top: 1px;
  left: 4px;
  width: 15px;
  height: 1px;
  content: "";
  background: rgba(238, 145, 72, 0.38);
  transform-origin: left center;
}

.search-node.node-one { top: 9px; left: 11px; animation: nodeBlink 2.1s ease-in-out infinite; }
.search-node.node-two { top: 15px; right: 8px; animation: nodeBlink 2.1s .6s ease-in-out infinite; }
.search-node.node-three { bottom: 8px; left: 14px; animation: nodeBlink 2.1s 1.2s ease-in-out infinite; }
.search-node.node-one::after { transform: rotate(18deg); }
.search-node.node-two::after { transform: rotate(142deg); }
.search-node.node-three::after { transform: rotate(-38deg); }

.employee-icon-search > svg {
  animation: searchScan 3s ease-in-out infinite;
}

.employee-icon-outreach > svg {
  animation: messageFlight 3.2s var(--ease) infinite;
}

.typing-line {
  position: absolute;
  right: 7px;
  height: 2px;
  border-radius: 2px;
  background: rgba(238, 145, 72, 0.62);
  transform-origin: left;
  animation: typingLine 1.8s ease-in-out infinite;
}

.typing-line.line-one { top: 12px; width: 15px; }
.typing-line.line-two { top: 18px; width: 10px; animation-delay: 0.28s; }

.voice-wave {
  position: absolute;
  border: 1px solid rgba(238, 145, 72, 0.55);
  border-radius: 50%;
  opacity: 0;
  animation: voiceWave 2.2s ease-out infinite;
}

.voice-wave.wave-one { inset: 14px; }
.voice-wave.wave-two { inset: 8px; animation-delay: 0.5s; }
.voice-wave.wave-three { inset: 2px; animation-delay: 1s; }

.employee-icon-workflow > svg {
  animation: workflowPulse 2.8s ease-in-out infinite;
}

.flow-node.flow-one { top: 8px; right: 12px; animation: flowTravel 2.4s var(--ease) infinite; }
.flow-node.flow-two { bottom: 9px; left: 11px; animation: flowTravel 2.4s 1.2s var(--ease) infinite reverse; }
.flow-node.flow-one::after { transform: rotate(128deg); }
.flow-node.flow-two::after { transform: rotate(-40deg); }

.employee-platform-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 44px);
  overflow: hidden;
  border: 1px solid rgba(238, 145, 72, 0.24);
  border-radius: 20px;
  margin-top: 28px;
  padding: 20px 22px 20px 26px;
  background:
    radial-gradient(circle at 14% 50%, rgba(244, 162, 97, 0.14), transparent 38%),
    linear-gradient(120deg, rgba(255, 255, 252, 0.9), rgba(255, 248, 241, 0.78));
  box-shadow: 0 16px 46px rgba(72, 49, 32, 0.075), inset 0 1px 0 rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(18px);
  text-align: left;
  transform-style: preserve-3d;
  transition: border-color 240ms ease, box-shadow 280ms var(--ease), transform 280ms var(--ease);
}

.employee-platform-cta::before {
  position: absolute;
  top: -80%;
  left: -20%;
  width: 20%;
  height: 260%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.76), transparent);
  opacity: 0;
  transform: rotate(22deg) translateX(-240%);
  pointer-events: none;
}

.employee-platform-cta:hover,
.employee-platform-cta:focus-visible {
  border-color: rgba(238, 145, 72, 0.55);
  box-shadow: 0 22px 58px rgba(238, 145, 72, 0.15), 0 0 0 5px rgba(244, 162, 97, 0.05);
  outline: none;
  transform: translateY(-4px);
}

.employee-platform-cta:hover::before,
.employee-platform-cta:focus-visible::before {
  opacity: 0.72;
  animation: faqLightSweep 850ms var(--ease) forwards;
}

.employee-platform-cta p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #292521;
  font-size: clamp(1.04rem, 1.65vw, 1.28rem);
  font-weight: 780;
  line-height: 1.3;
}

.employee-cta-action {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-width: 238px;
  min-height: 48px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 15px;
  padding: 11px 17px;
  color: #1f160f;
  background: linear-gradient(110deg, #f4a261, #ee9148);
  box-shadow: 0 10px 28px rgba(244, 162, 97, 0.24);
  transition: background 240ms ease, box-shadow 320ms ease, transform 260ms var(--ease);
  font-size: 0.86rem;
  font-weight: 780;
}

.employee-cta-action svg {
  width: 17px;
  height: 17px;
  transition: transform 240ms var(--ease);
}

.employee-platform-cta:hover .employee-cta-action,
.employee-platform-cta:focus-visible .employee-cta-action {
  background: linear-gradient(110deg, #f6ad72, #e9843b);
  box-shadow: 0 14px 34px rgba(244, 162, 97, 0.3);
}

.employee-platform-cta:hover .employee-cta-action svg,
.employee-platform-cta:focus-visible .employee-cta-action svg {
  transform: translateX(4px);
}

.workforce-journey {
  position: relative;
  padding-top: clamp(28px, 3vw, 40px);
  padding-bottom: clamp(46px, 5vw, 66px);
  isolation: isolate;
}

.workforce-journey::before {
  position: absolute;
  z-index: -1;
  inset: 24px -24px;
  border-radius: 24px;
  content: "";
  background: radial-gradient(ellipse at 50% 48%, rgba(244, 162, 97, 0.09), transparent 50%);
  opacity: 0.55;
  mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 86%, transparent);
  pointer-events: none;
}

.journey-heading {
  max-width: 900px;
  margin-bottom: 34px;
}

.journey-heading p {
  max-width: 790px;
}

.journey-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.journey-flow::before {
  position: absolute;
  z-index: 0;
  top: 72px;
  right: 3%;
  left: 3%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(238, 145, 72, 0.78) 8%, rgba(238, 145, 72, 0.78) 92%, transparent);
  transform: scaleX(0);
  transform-origin: left;
  animation: journeyLineDraw 1.8s 0.35s var(--ease) forwards;
}

.journey-flow::after {
  position: absolute;
  z-index: 3;
  top: 68px;
  left: 2.5%;
  width: 9px;
  height: 9px;
  border: 2px solid #fff;
  border-radius: 50%;
  content: "";
  background: var(--accent-hover);
  box-shadow: 0 0 0 4px rgba(238, 145, 72, 0.12), 0 0 12px rgba(238, 145, 72, 0.5);
  animation: journeyDotTravel 12s 1.6s linear infinite;
}

.journey-card {
  position: relative;
  z-index: 2;
  min-width: 0;
  min-height: 286px;
  border: 1px solid rgba(228, 220, 212, 0.92);
  border-radius: 16px;
  padding: 16px 15px 48px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.91), rgba(255, 250, 245, 0.72));
  box-shadow: 0 14px 38px rgba(35, 28, 21, 0.055);
  backdrop-filter: blur(16px);
  transition: opacity 700ms var(--ease), transform 320ms var(--ease), border-color 240ms ease, box-shadow 280ms ease;
}

.journey-card::after {
  position: absolute;
  z-index: 5;
  top: 62px;
  right: -13px;
  width: 14px;
  color: #d97d38;
  content: "→";
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  animation: journeyArrow 1.8s ease-in-out infinite;
}

.journey-card:last-child::after {
  display: none;
}

.journey-card.reveal.is-visible:hover,
.journey-card.reveal.is-visible:focus-within {
  z-index: 6;
  border-color: rgba(238, 145, 72, 0.58);
  box-shadow: 0 20px 52px rgba(238, 145, 72, 0.15), 0 8px 20px rgba(17, 17, 17, 0.05);
  transform: translateY(-6px);
}

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

.journey-step {
  color: #a39b94;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.journey-icon {
  position: relative;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(238, 145, 72, 0.24);
  border-radius: 12px;
  color: #d8752c;
  background: #fff7f0;
  animation: journeyActiveGlow 14s linear infinite;
}

.journey-card:nth-child(2) .journey-icon,
.journey-card:nth-child(2) .journey-status i { animation-delay: 2s; }
.journey-card:nth-child(3) .journey-icon,
.journey-card:nth-child(3) .journey-status i { animation-delay: 4s; }
.journey-card:nth-child(4) .journey-icon,
.journey-card:nth-child(4) .journey-status i { animation-delay: 6s; }
.journey-card:nth-child(5) .journey-icon,
.journey-card:nth-child(5) .journey-status i { animation-delay: 8s; }
.journey-card:nth-child(6) .journey-icon,
.journey-card:nth-child(6) .journey-status i { animation-delay: 10s; }
.journey-card:nth-child(7) .journey-icon,
.journey-card:nth-child(7) .journey-status i { animation-delay: 12s; }

.journey-icon svg {
  width: 19px;
  height: 19px;
  animation: journeyIconMicro 3.6s ease-in-out infinite;
}

.journey-card h3 {
  margin: 18px 0 0;
  font-size: clamp(0.93rem, 1.15vw, 1.08rem);
  font-weight: 780;
  line-height: 1.16;
}

.journey-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.73rem;
  line-height: 1.5;
}

.journey-status {
  position: absolute;
  right: 15px;
  bottom: 15px;
  left: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
  color: #168a4a;
  font-size: 0.62rem;
  font-weight: 720;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.journey-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.14), 0 0 8px rgba(34, 197, 94, 0.5);
  animation: journeyConnectedBlink 1.5s ease-in-out infinite;
}

.integrations-section {
  --integration-x: 50%;
  --integration-y: 50%;
  --core-shift-x: 0px;
  --core-shift-y: 0px;
  display: grid;
  height: clamp(620px, 82svh, 720px);
  max-height: none;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  grid-template-rows: minmax(0, 1fr);
  align-items: center;
  gap: clamp(30px, 5vw, 72px);
  overflow: hidden;
  padding-block: clamp(22px, 3vh, 34px);
  isolation: isolate;
}

.integrations-section::before {
  position: absolute;
  z-index: -2;
  inset: 18px -34px;
  border-radius: 36px;
  content: "";
  background:
    radial-gradient(circle at var(--integration-x) var(--integration-y), rgba(244, 162, 97, 0.13), transparent 25%),
    radial-gradient(circle at 72% 52%, rgba(244, 162, 97, 0.09), transparent 42%);
  background-size: auto, auto;
  mask-image: radial-gradient(ellipse at center, #000 6%, rgba(0, 0, 0, 0.58) 53%, transparent 82%);
  opacity: 0.68;
  pointer-events: none;
}

.integrations-heading {
  position: relative;
  z-index: 3;
  max-width: 440px;
  margin: 0;
  text-align: left;
}

.integrations-heading h2 {
  font-size: clamp(2.55rem, 4vw, 3.8rem);
}

.integrations-heading h2 span {
  color: var(--accent-hover);
}

.integrations-heading p {
  max-width: 420px;
  margin-right: 0;
  margin-left: 0;
}

.integration-stage {
  position: relative;
  width: min(100%, 1100px);
  height: 100%;
  min-height: 0;
  max-height: 610px;
  justify-self: end;
  margin: 0;
  isolation: isolate;
}

.integration-stage::before,
.integration-stage::after {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(238, 145, 72, 0.12);
  border-radius: 50%;
  content: "";
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.integration-stage::before {
  width: min(52vw, 48vh, 500px);
  height: auto;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.54), transparent 66%);
}

.integration-stage::after {
  width: min(38vw, 35vh, 360px);
  height: auto;
  aspect-ratio: 1;
  border-style: dashed;
  opacity: 0.7;
  animation: integrationRingTurn 90s linear infinite;
}

.integration-center {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  display: grid;
  width: 136px;
  height: 136px;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(238, 145, 72, 0.32);
  border-radius: 50%;
  background: rgba(255, 255, 252, 0.82);
  box-shadow: 0 18px 54px rgba(238, 145, 72, 0.17), inset 0 0 0 8px rgba(244, 162, 97, 0.045);
  backdrop-filter: blur(18px);
  transform: translate(calc(-50% + var(--core-shift-x)), calc(-50% + var(--core-shift-y)));
  animation: integrationCenterPulse 4.8s ease-in-out infinite;
  transition: border-color 240ms ease, box-shadow 240ms ease, transform 300ms var(--ease);
}

.integration-center:hover {
  border-color: rgba(238, 145, 72, 0.5);
  box-shadow: 0 22px 64px rgba(238, 145, 72, 0.24), inset 0 0 0 8px rgba(244, 162, 97, 0.065);
  transform: translate(calc(-50% + var(--core-shift-x)), calc(-50% + var(--core-shift-y))) scale(1.025);
}

.integration-center::before {
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(238, 145, 72, 0.13);
  border-radius: inherit;
  content: "";
  animation: integrationCenterHalo 3.2s ease-out infinite;
}

.integration-center img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.integration-center strong {
  margin-top: 4px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.1;
}

.integration-center small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.integration-center-pulse {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12), 0 0 12px rgba(34, 197, 94, 0.45);
  animation: journeyConnectedBlink 1.5s ease-in-out infinite;
}

.integration-orbit-layer {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: auto;
  max-width: calc(100% - 40px);
  height: calc(100% - 16px);
  aspect-ratio: 1;
  transform-origin: center;
  animation: integrationOrbit 220s linear infinite;
}

.integration-connectors {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.integration-connector path {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.integration-connector-base {
  stroke: rgba(238, 145, 72, 0.2);
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  stroke-width: 1;
}

.integration-stage.is-visible .integration-connector-base {
  animation: integrationLineDraw 1.5s var(--ease) forwards;
}

.integration-connector-flow {
  stroke: rgba(238, 145, 72, 0.54);
  stroke-dasharray: 0.018 0.13;
  stroke-linecap: round;
  stroke-width: 2.2;
  animation: integrationDataFlow 4.2s linear infinite;
  transition: stroke 220ms ease, stroke-width 220ms ease, filter 220ms ease;
}

.integration-connector.is-active .integration-connector-base {
  stroke: rgba(238, 145, 72, 0.58);
}

.integration-connector.is-active .integration-connector-flow {
  stroke: var(--accent-hover);
  stroke-width: 3.5;
  filter: drop-shadow(0 0 4px rgba(238, 145, 72, 0.75));
  animation-duration: 1.15s;
}

.integration-node {
  position: absolute;
  z-index: 3;
  top: var(--y);
  left: var(--x);
  transform: translate(-50%, -50%);
}

.integration-node-inner {
  opacity: 0;
  animation: integrationCounterOrbit 220s linear infinite;
}

.integration-stage.is-visible .integration-node-inner {
  animation: integrationCounterOrbit 220s linear infinite, integrationNodeFade 620ms var(--node-delay) var(--ease) forwards;
}

.integration-card {
  position: relative;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid rgba(218, 215, 207, 0.92);
  border-radius: 16px;
  padding: 0;
  color: var(--ink);
  background: rgba(255, 255, 252, 0.86);
  box-shadow: 0 13px 34px rgba(17, 17, 17, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  cursor: pointer;
  transition: border-color 220ms ease, box-shadow 260ms var(--ease), transform 260ms var(--ease), background 220ms ease;
}

.integration-card img {
  display: block;
  width: 31px;
  height: 31px;
  object-fit: contain;
}

.integration-card img.integration-logo-wide {
  width: 42px;
  height: 26px;
}

.integration-node:hover .integration-card,
.integration-node:focus-within .integration-card,
.integration-node.is-active .integration-card {
  border-color: rgba(238, 145, 72, 0.64);
  background: rgba(255, 253, 249, 0.96);
  box-shadow: 0 18px 44px rgba(238, 145, 72, 0.2), 0 0 0 5px rgba(244, 162, 97, 0.08);
  transform: translateY(-7px) scale(1.04);
}

.integration-card:focus-visible {
  outline: 3px solid rgba(238, 145, 72, 0.24);
  outline-offset: 4px;
}

.integration-tooltip {
  position: absolute;
  z-index: 8;
  right: 50%;
  bottom: calc(100% + 12px);
  display: grid;
  width: max-content;
  min-width: 142px;
  gap: 2px;
  border: 1px solid rgba(218, 215, 207, 0.92);
  border-radius: 12px;
  padding: 9px 12px;
  opacity: 0;
  visibility: hidden;
  color: var(--ink);
  background: rgba(255, 255, 252, 0.97);
  box-shadow: 0 14px 32px rgba(17, 17, 17, 0.1);
  text-align: left;
  pointer-events: none;
  transform: translate(50%, 6px);
  transition: opacity 180ms ease, visibility 180ms ease, transform 220ms var(--ease);
}

.integration-node.is-top .integration-tooltip {
  top: calc(100% + 12px);
  bottom: auto;
  transform: translate(50%, -6px);
}

.integration-tooltip strong {
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.2;
}

.integration-tooltip small {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 600;
  line-height: 1.25;
}

.integration-node:hover .integration-tooltip,
.integration-node:focus-within .integration-tooltip,
.integration-node.is-active .integration-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translate(50%, 0);
}

.choices-section {
  display: grid;
  height: clamp(630px, 84svh, 760px);
  max-height: none;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  padding-block: clamp(18px, 2.8vh, 30px);
  isolation: isolate;
}

.choices-section::before {
  position: absolute;
  z-index: -2;
  inset: 12px -34px;
  content: "";
  background:
    radial-gradient(circle at 76% 58%, rgba(244, 162, 97, 0.12), transparent 32%),
    linear-gradient(90deg, rgba(117, 117, 117, 0.035) 0 50%, rgba(244, 162, 97, 0.025) 50% 100%);
  pointer-events: none;
}

.choices-heading {
  margin-bottom: clamp(12px, 2vh, 20px);
}

.choices-heading h2 {
  margin-top: 10px;
  font-size: clamp(2.2rem, 4.4vw, 4rem);
}

.choices-heading h2 span {
  color: var(--accent-hover);
}

.choices-heading p {
  margin-top: 12px;
  font-size: 0.96rem;
  line-height: 1.5;
}

.choices-stage {
  position: relative;
  display: grid;
  width: 100%;
  max-width: 1120px;
  min-height: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  margin-inline: auto;
  background: linear-gradient(90deg, rgba(239, 239, 236, 0.5) 0 50%, rgba(255, 249, 243, 0.72) 50% 100%);
}

.choice-panel {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  padding: 14px clamp(18px, 3vw, 36px);
}

.choice-panel-header {
  position: relative;
  z-index: 3;
  display: grid;
  min-height: 30px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.choice-panel-header h3 {
  margin: 0;
  font-size: clamp(0.92rem, 1.4vw, 1.15rem);
  font-weight: 800;
  line-height: 1.1;
}

.choice-panel-header small {
  color: #8d8984;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.choice-mode-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a5a5a1;
}

.choice-ai .choice-mode-dot {
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1), 0 0 10px rgba(34, 197, 94, 0.35);
  animation: journeyConnectedBlink 1.5s ease-in-out infinite;
}

.choice-ai .choice-panel-header small {
  color: #168a4a;
}

.choice-flow {
  position: relative;
  z-index: 2;
  display: grid;
  height: calc(100% - 38px);
  min-height: 0;
  grid-template-rows: repeat(7, minmax(0, 1fr));
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.choice-flow::before {
  position: absolute;
  z-index: -1;
  top: 18px;
  bottom: 18px;
  left: 19px;
  width: 1px;
  content: "";
}

.manual-flow::before {
  background: repeating-linear-gradient(to bottom, rgba(125, 125, 121, 0.32) 0 5px, transparent 5px 10px);
}

.ai-flow::before {
  background: linear-gradient(to bottom, rgba(238, 145, 72, 0.18), rgba(238, 145, 72, 0.82), rgba(238, 145, 72, 0.18));
  background-size: 100% 200%;
  animation: choiceFlowLine 2.4s linear infinite;
}

.ai-flow::after {
  position: absolute;
  z-index: 0;
  top: 16px;
  left: 16px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--accent-hover);
  box-shadow: 0 0 12px rgba(238, 145, 72, 0.8);
  animation: choicePacketTravel 4s linear infinite;
}

.choice-node {
  position: relative;
  display: grid;
  min-height: 0;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(203, 201, 196, 0.74);
  border-radius: 10px;
  padding: 5px 11px 5px 0;
  opacity: 0;
  background: rgba(255, 255, 255, 0.54);
  transform: translateY(8px);
}

.choice-node-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-right: 1px solid rgba(200, 198, 193, 0.7);
  color: #73736f;
}

.choice-node-icon svg {
  width: 15px;
  height: 15px;
}

.choice-node-copy {
  display: grid;
  min-width: 0;
  gap: 1px;
}

.choice-node-copy strong {
  overflow: hidden;
  color: #555550;
  font-size: clamp(0.68rem, 1vw, 0.79rem);
  font-weight: 760;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.choice-node-copy small {
  color: #96928d;
  font-size: 0.57rem;
  font-weight: 650;
  line-height: 1.15;
}

.choice-node.is-warning::after {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  content: "";
  background: #dc5a5a;
  box-shadow: 0 0 0 3px rgba(220, 90, 90, 0.08);
  animation: choiceWarning 4.8s ease-in-out infinite;
}

.manual-signal {
  position: relative;
  display: inline-flex;
  width: 30px;
  height: 14px;
  align-items: center;
  justify-content: center;
  color: #85827e;
}

.signal-clock svg {
  width: 14px;
  height: 14px;
  animation: choiceSlowClock 8s linear infinite;
}

.signal-bar {
  overflow: hidden;
  height: 4px;
  border-radius: 4px;
  background: #deddd9;
}

.signal-bar i {
  display: block;
  width: 36%;
  height: 100%;
  border-radius: inherit;
  background: #9d9b96;
  animation: choiceSlowBar 5.5s ease-in-out infinite;
}

.signal-typing {
  gap: 3px;
}

.signal-typing i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #8f8c88;
  animation: choiceTyping 1.8s ease-in-out infinite;
}

.signal-typing i:nth-child(2) { animation-delay: 0.25s; }
.signal-typing i:nth-child(3) { animation-delay: 0.5s; }

.signal-spinner {
  width: 13px;
  height: 13px;
  justify-self: center;
  border: 1.5px solid #d2d0cc;
  border-top-color: #85827e;
  border-radius: 50%;
  animation: choiceSpin 2.8s linear infinite;
}

.signal-alert {
  width: 7px;
  height: 7px;
  justify-self: center;
  border-radius: 50%;
  background: #dc5a5a;
  box-shadow: 0 0 0 4px rgba(220, 90, 90, 0.08);
  animation: choiceWarning 3.4s ease-in-out infinite;
}

.choice-ai {
  opacity: 0.42;
  background: radial-gradient(circle at 74% 44%, rgba(244, 162, 97, 0.1), transparent 48%);
  filter: saturate(0.62);
  transform: translateX(8px);
}

.choice-ai::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  background-image: radial-gradient(circle, rgba(238, 145, 72, 0.32) 1px, transparent 1.4px);
  background-size: 34px 34px;
  opacity: 0.25;
  mask-image: radial-gradient(circle at center, #000, transparent 76%);
  animation: choiceParticles 12s linear infinite;
  pointer-events: none;
}

.choice-ai .choice-node {
  border-color: rgba(238, 145, 72, 0.26);
  background: rgba(255, 255, 252, 0.78);
  box-shadow: 0 7px 20px rgba(238, 145, 72, 0.055);
  transition: border-color 200ms ease, box-shadow 220ms ease, transform 220ms var(--ease);
}

.choice-ai .choice-node-icon {
  border-right-color: rgba(238, 145, 72, 0.2);
  color: #d87933;
}

.choice-ai .choice-node-copy strong {
  color: var(--ink);
}

.choice-ai .choice-node-copy small {
  color: #b8672f;
}

.ai-signal {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: #168a4a;
  background: rgba(34, 197, 94, 0.11);
}

.ai-signal svg {
  width: 11px;
  height: 11px;
  stroke-width: 2.6;
}

.signal-wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: var(--accent-hover);
  background: rgba(244, 162, 97, 0.12);
}

.signal-wave i {
  width: 2px;
  height: 5px;
  border-radius: 2px;
  background: currentColor;
  animation: choiceWave 0.9s ease-in-out infinite;
}

.signal-wave i:nth-child(2) { height: 10px; animation-delay: 0.14s; }
.signal-wave i:nth-child(3) { animation-delay: 0.28s; }

.signal-chat i {
  width: 7px;
  height: 6px;
  border: 1.5px solid #168a4a;
  border-radius: 3px;
  animation: choiceChat 1.6s ease-in-out infinite;
}

.choices-stage.is-visible .manual-flow .choice-node,
.choices-stage.is-visible .ai-flow .choice-node {
  animation: choiceNodeEnter 480ms var(--ease) forwards;
}

.choices-stage.is-visible .manual-flow .choice-node:nth-child(1) { animation-delay: 80ms; }
.choices-stage.is-visible .manual-flow .choice-node:nth-child(2) { animation-delay: 210ms; }
.choices-stage.is-visible .manual-flow .choice-node:nth-child(3) { animation-delay: 340ms; }
.choices-stage.is-visible .manual-flow .choice-node:nth-child(4) { animation-delay: 470ms; }
.choices-stage.is-visible .manual-flow .choice-node:nth-child(5) { animation-delay: 600ms; }
.choices-stage.is-visible .manual-flow .choice-node:nth-child(6) { animation-delay: 730ms; }
.choices-stage.is-visible .manual-flow .choice-node:nth-child(7) { animation-delay: 860ms; }
.choices-stage.is-visible .ai-flow .choice-node:nth-child(1) { animation-delay: 1080ms; }
.choices-stage.is-visible .ai-flow .choice-node:nth-child(2) { animation-delay: 1150ms; }
.choices-stage.is-visible .ai-flow .choice-node:nth-child(3) { animation-delay: 1220ms; }
.choices-stage.is-visible .ai-flow .choice-node:nth-child(4) { animation-delay: 1290ms; }
.choices-stage.is-visible .ai-flow .choice-node:nth-child(5) { animation-delay: 1360ms; }
.choices-stage.is-visible .ai-flow .choice-node:nth-child(6) { animation-delay: 1430ms; }
.choices-stage.is-visible .ai-flow .choice-node:nth-child(7) { animation-delay: 1500ms; }

.choices-stage.is-visible .choice-ai {
  animation: choiceAIActivate 700ms 1s var(--ease) forwards;
}

.choices-stage.is-visible .choice-manual {
  animation: choiceManualDim 650ms 1.05s ease forwards;
}

.choice-ai:hover .choice-node:hover,
.choice-ai:focus-within .choice-node:focus-within {
  border-color: rgba(238, 145, 72, 0.58);
  box-shadow: 0 12px 28px rgba(238, 145, 72, 0.14);
  transform: translateY(-2px) scale(1.01);
}

.choice-ai:hover .ai-flow::before {
  animation-duration: 1.2s;
}

.choice-ai:hover .ai-flow::after {
  animation-duration: 2.2s;
}

.choice-divider {
  position: absolute;
  z-index: 8;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(238, 145, 72, 0.68) 12%, rgba(238, 145, 72, 0.68) 88%, transparent);
  box-shadow: 0 0 14px rgba(238, 145, 72, 0.28);
  pointer-events: none;
}

.choice-divider::before {
  position: absolute;
  top: -8px;
  left: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--accent-hover);
  box-shadow: 0 0 12px rgba(238, 145, 72, 0.8);
  animation: choiceDividerTravel 4.4s linear infinite;
}

.choice-divider i {
  position: absolute;
  top: 50%;
  left: -4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 5px rgba(244, 162, 97, 0.14), 0 0 20px rgba(238, 145, 72, 0.7);
  opacity: 0;
}

.choices-stage.is-visible .choice-divider i {
  animation: choiceCrossPulse 6.5s 1s var(--ease) infinite;
}

.outcome-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  gap: clamp(44px, 7vw, 90px);
  align-items: center;
}

.outcome-copy > p {
  margin: 24px 0 0;
}

.outcome-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.outcome-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  padding: 13px 0;
  font-size: 0.91rem;
  font-weight: 700;
}

.outcome-list svg,
.pricing-card li svg {
  width: 17px;
  color: var(--accent-hover);
}

.roi-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 12px;
  padding: 14px;
}

.roi-ring {
  position: relative;
  display: grid;
  min-height: 320px;
  place-items: center;
  align-content: center;
  border: 1px solid #eddfd1;
  border-radius: 18px;
  background: var(--surface-soft);
  text-align: center;
}

.roi-ring::before {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 18px solid var(--accent-soft);
  border-top-color: var(--accent);
  border-radius: 50%;
  content: "";
  transform: rotate(32deg);
}

.roi-ring span,
.roi-ring small {
  position: relative;
  z-index: 1;
}

.roi-ring span {
  font-size: 3.7rem;
  font-weight: 800;
  line-height: 1;
}

.roi-ring small {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 650;
}

.mini-metrics {
  display: grid;
  gap: 10px;
}

.mini-metrics div {
  display: grid;
  align-content: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  background: var(--surface);
}

.mini-metrics strong {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.mini-metrics span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.timeline::before {
  position: absolute;
  top: 25px;
  right: 6%;
  left: 6%;
  height: 1px;
  content: "";
  background: var(--line-strong);
}

.timeline li {
  position: relative;
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  background: var(--surface);
}

.timeline li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  color: var(--ink);
  background: var(--bg);
  font-size: 0.78rem;
  font-weight: 800;
}

.timeline li:first-child > span {
  border-color: var(--accent);
  background: var(--accent);
}

.timeline h3 {
  font-size: 1rem;
}

.timeline p {
  font-size: 0.86rem;
  line-height: 1.55;
}

.industry-grid {
  grid-template-columns: repeat(6, 1fr);
}

.industry-card {
  display: grid;
  min-height: 128px;
  place-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px 10px;
  background: var(--surface);
  text-align: center;
  font-size: 0.86rem;
  font-weight: 750;
  transition: transform 220ms var(--ease), border-color 220ms ease;
}

.industry-card:hover {
  border-color: #d7c5b5;
  transform: translateY(-4px);
}

.industry-card svg {
  color: var(--accent-hover);
}

.result-card {
  display: grid;
  min-height: 230px;
  align-content: end;
  padding: 28px;
  background: var(--surface);
}

.result-card::before {
  width: 36px;
  height: 3px;
  margin-bottom: auto;
  content: "";
  background: var(--accent);
}

.result-card strong,
.calculator strong {
  font-size: clamp(2.7rem, 5vw, 4.6rem);
  font-weight: 800;
  line-height: 1;
}

.testimonial-slider {
  overflow: hidden;
  padding: 12px;
}

.testimonial-track {
  display: grid;
}

.testimonial {
  grid-area: 1 / 1;
  border-radius: 16px;
  padding: clamp(28px, 5vw, 58px);
  background: var(--surface-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 420ms var(--ease), visibility 420ms var(--ease), transform 420ms var(--ease);
}

.testimonial.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.testimonial > p {
  max-width: 880px;
  margin-bottom: 32px;
  font-size: clamp(1.4rem, 2.7vw, 2.35rem);
  font-weight: 650;
  line-height: 1.25;
}

.testimonial > div {
  display: grid;
  grid-template-columns: 44px auto;
  column-gap: 12px;
  align-items: center;
}

.testimonial > div > span {
  display: grid;
  width: 44px;
  height: 44px;
  grid-row: span 2;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--beige);
  font-size: 0.76rem;
  font-weight: 800;
}

.testimonial small {
  color: var(--muted);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.testimonial-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: #d2d1cc;
  cursor: pointer;
}

.testimonial-dots button.is-active {
  background: var(--accent-hover);
}

.pricing-card {
  display: flex;
  min-height: 560px;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: #e5b78f;
  background: #fffdfb;
}

.plan-label,
.badge {
  display: inline-flex;
  width: max-content;
  border-radius: 999px;
  padding: 6px 10px;
  color: #7c4a25;
  background: var(--accent-soft);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge {
  margin-bottom: 10px;
  color: #fff;
  background: var(--ink);
}

.pricing-card > strong {
  display: block;
  margin: 24px 0;
  font-size: clamp(2rem, 3vw, 2.7rem);
  font-weight: 800;
  line-height: 1;
}

.pricing-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0 0 30px;
  list-style: none;
}

.pricing-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4b5563;
  font-size: 0.91rem;
}

.pricing-card .button {
  width: 100%;
  margin-top: auto;
}

.calculator {
  display: grid;
  grid-template-columns: 1fr 1fr 0.82fr;
  gap: 18px;
  padding: 24px;
}

.calculator label,
.calculator > div {
  display: grid;
  align-content: center;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  background: var(--surface-soft);
}

.calculator label > span,
.calculator > div > span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 650;
}

.calculator output {
  color: var(--ink);
  font-size: 1.75rem;
  font-weight: 800;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--accent-hover);
}

.calculator > div {
  border-color: #e9c8aa;
  background: var(--accent-soft);
}

.faq-section {
  overflow: hidden;
  padding-top: clamp(46px, 5vw, 64px);
  padding-bottom: clamp(40px, 4.5vw, 58px);
}

.faq-section::after {
  position: absolute;
  z-index: -1;
  inset: 7% -24px 10%;
  content: "";
  background: radial-gradient(circle at 50% 34%, rgba(244, 162, 97, 0.14), transparent 30%);
  background-size: auto;
  opacity: 0.48;
  mask-image: radial-gradient(ellipse at center, #000, transparent 78%);
  pointer-events: none;
}

.faq-heading {
  margin-bottom: 28px;
}

.faq-heading.reveal {
  clip-path: inset(0 0 24% 0);
  transform: translateY(20px) scale(0.985);
  transition: opacity 680ms var(--ease), transform 680ms var(--ease), clip-path 760ms var(--ease);
}

.faq-heading.reveal.is-visible {
  clip-path: inset(0);
  transform: translateY(0) scale(1);
}

.faq-heading h2 span {
  color: var(--accent-hover);
}

.faq-heading p {
  margin-top: 14px;
}

.faq-list {
  display: grid;
  width: min(100%, 1100px);
  max-width: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 16px;
  overflow: visible;
  border: 0;
  margin-inline: auto;
  background: transparent;
  box-shadow: none;
}

.faq-card {
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 20px;
  background:
    linear-gradient(rgba(255, 255, 252, 0.86), rgba(255, 255, 252, 0.74)) padding-box,
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(222, 218, 211, 0.78), rgba(244, 162, 97, 0.24)) border-box;
  box-shadow: 0 12px 38px rgba(17, 17, 17, 0.055), inset 0 1px 0 rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  transform-style: preserve-3d;
  transition: border-color 220ms ease, box-shadow 320ms var(--ease), transform 320ms var(--ease), background 260ms ease;
}

.faq-card.reveal {
  filter: blur(5px);
  transition: opacity 620ms var(--ease), transform 620ms var(--ease), filter 620ms var(--ease), box-shadow 280ms var(--ease);
}

.faq-card.reveal.is-visible {
  filter: blur(0);
}

.faq-card::before {
  position: absolute;
  z-index: 0;
  top: -70%;
  left: -45%;
  width: 34%;
  height: 240%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.76), transparent);
  opacity: 0;
  pointer-events: none;
  transform: rotate(24deg) translateX(-180%);
}

.faq-card::after {
  position: absolute;
  z-index: -1;
  inset: 14px;
  border-radius: 16px;
  content: "";
  background: radial-gradient(circle at 88% 18%, rgba(244, 162, 97, 0.12), transparent 42%);
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.faq-card:hover,
.faq-card:focus-within {
  background:
    linear-gradient(rgba(255, 255, 252, 0.94), rgba(255, 252, 247, 0.84)) padding-box,
    linear-gradient(135deg, rgba(244, 162, 97, 0.28), rgba(238, 145, 72, 0.78), rgba(255, 255, 255, 0.96)) border-box;
  box-shadow: 0 20px 54px rgba(238, 145, 72, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.faq-card:hover::before,
.faq-card:focus-within::before {
  opacity: 0.72;
  animation: faqLightSweep 850ms var(--ease) forwards;
}

.faq-card.is-open {
  background:
    linear-gradient(rgba(255, 255, 252, 0.97), rgba(255, 249, 243, 0.9)) padding-box,
    linear-gradient(135deg, rgba(238, 145, 72, 0.72), rgba(255, 255, 255, 0.96), rgba(244, 162, 97, 0.36)) border-box;
  box-shadow: 0 24px 64px rgba(238, 145, 72, 0.15), 0 0 0 5px rgba(244, 162, 97, 0.045);
}

.faq-card.is-open::after {
  opacity: 1;
  animation: faqActiveGlow 3.2s ease-in-out infinite;
}

.faq-question {
  position: relative;
  z-index: 2;
  display: grid;
  width: 100%;
  min-height: 86px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  border: 0;
  padding: 20px 22px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.faq-question > span:first-child {
  font-size: clamp(0.94rem, 1.3vw, 1.08rem);
  font-weight: 780;
  line-height: 1.35;
}

.faq-question::after {
  position: absolute;
  right: 22px;
  bottom: 0;
  left: 22px;
  height: 2px;
  border-radius: 2px;
  content: "";
  background: linear-gradient(90deg, var(--accent-hover), rgba(244, 162, 97, 0.16));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 520ms var(--ease);
}

.faq-card.is-open .faq-question::after {
  transform: scaleX(1);
}

.faq-question:focus-visible {
  outline: 3px solid rgba(238, 145, 72, 0.22);
  outline-offset: -4px;
}

.faq-orb {
  position: relative;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(238, 145, 72, 0.3);
  border-radius: 50%;
  background: radial-gradient(circle at 34% 28%, #fff, #fff2e7 56%, #f6c49c);
  box-shadow: 0 8px 22px rgba(238, 145, 72, 0.15), inset 0 1px 0 #fff;
  transition: transform 360ms var(--ease), box-shadow 260ms ease, border-color 260ms ease;
  animation: faqOrbBreathe 3.8s ease-in-out infinite;
}

.faq-orb::before,
.faq-orb::after {
  position: absolute;
  width: 12px;
  height: 1.5px;
  border-radius: 2px;
  content: "";
  background: #c96e2c;
  transition: transform 360ms var(--ease), opacity 220ms ease;
}

.faq-orb::after {
  transform: rotate(90deg);
}

.faq-orb i {
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(238, 145, 72, 0.28);
  border-radius: inherit;
  opacity: 0;
}

.faq-card.is-open .faq-orb {
  border-color: rgba(238, 145, 72, 0.58);
  box-shadow: 0 10px 28px rgba(238, 145, 72, 0.26), 0 0 0 5px rgba(244, 162, 97, 0.08);
  transform: rotate(180deg) scale(1.04);
}

.faq-card.is-open .faq-orb::after {
  opacity: 0;
  transform: rotate(90deg) scaleX(0);
}

.faq-card.is-open .faq-orb i {
  animation: faqOrbRipple 720ms ease-out;
}

.faq-answer {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 560ms var(--ease), opacity 260ms ease;
}

.faq-answer-inner {
  min-height: 0;
  overflow: hidden;
  padding-inline: 22px;
}

.faq-card.is-open .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-ai-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding-top: 16px;
  opacity: 0;
  color: #9b5d31;
  font-size: 0.64rem;
  font-weight: 760;
  letter-spacing: 0.02em;
  transform: translateY(5px);
}

.faq-ai-status > i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1), 0 0 10px rgba(34, 197, 94, 0.34);
  animation: journeyConnectedBlink 1.5s ease-in-out infinite;
}

.faq-dots {
  display: inline-flex;
  gap: 3px;
}

.faq-dots b {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--accent-hover);
  animation: faqDotWave 520ms ease-in-out 1 both;
}

.faq-dots b:nth-child(2) { animation-delay: 100ms; }
.faq-dots b:nth-child(3) { animation-delay: 200ms; }

.faq-card.is-open .faq-ai-status {
  animation: faqAnswerLine 360ms 90ms var(--ease) forwards;
}

.faq-answer p {
  display: grid;
  gap: 4px;
  padding: 10px 0 21px;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.58;
}

.faq-answer-line {
  display: block;
  opacity: 0;
  transform: translateY(7px);
}

.faq-card.is-open .faq-answer-line:first-child {
  animation: faqAnswerLine 430ms 620ms var(--ease) forwards;
}

.faq-card.is-open .faq-answer-line:nth-child(2) {
  animation: faqAnswerLine 430ms 740ms var(--ease) forwards;
}

.faq-cta {
  display: grid;
  max-width: 720px;
  justify-items: center;
  margin: 30px auto 0;
  text-align: center;
}

.faq-cta h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2.7vw, 2.1rem);
  font-weight: 800;
  line-height: 1.15;
}

.faq-cta > p {
  margin: 10px 0 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.faq-cta > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.faq-cta .button {
  min-height: 46px;
  border-radius: 16px;
  padding: 11px 17px;
  font-size: 0.84rem;
}

.strategy-cta {
  --strategy-x: 68%;
  --strategy-y: 48%;
  position: relative;
  display: grid;
  width: 100%;
  max-width: none;
  min-height: min(82svh, 740px);
  grid-template-columns: minmax(0, 1.22fr) minmax(380px, 1fr);
  align-items: center;
  justify-content: center;
  gap: clamp(46px, 6vw, 86px);
  overflow: hidden;
  padding: clamp(56px, 7vh, 76px) max(24px, calc((100vw - 1200px) / 2));
  background:
    radial-gradient(circle at var(--strategy-x) var(--strategy-y), rgba(244, 162, 97, 0.16), transparent 27%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.72), rgba(255, 248, 241, 0.72) 58%, rgba(250, 250, 244, 0.92));
  isolation: isolate;
}

.strategy-cta::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  background: radial-gradient(ellipse at 66% 48%, rgba(255, 255, 255, 0.28), transparent 72%);
  pointer-events: none;
}

.strategy-cta::after {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: 8%;
  width: min(44vw, 620px);
  height: min(44vw, 620px);
  border: 1px solid rgba(238, 145, 72, 0.1);
  border-radius: 50%;
  content: "";
  box-shadow: inset 0 0 80px rgba(244, 162, 97, 0.06), 0 0 90px rgba(244, 162, 97, 0.05);
  transform: translateY(-50%);
  pointer-events: none;
}

.strategy-atmosphere {
  position: absolute;
  z-index: -1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.strategy-network {
  width: 100%;
  height: 100%;
  opacity: 0.38;
}

.strategy-network path {
  fill: none;
  stroke: rgba(238, 145, 72, 0.26);
  stroke-dasharray: 7 18;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
  animation: strategyNetworkFlow 12s linear infinite;
}

.strategy-network path:nth-child(2) {
  animation-direction: reverse;
  animation-duration: 15s;
}

.strategy-network circle {
  fill: #ee9148;
  stroke: rgba(255, 255, 255, 0.92);
  stroke-width: 2;
  transform-box: fill-box;
  transform-origin: center;
  animation: strategyNodePulse 3.4s ease-in-out infinite;
}

.strategy-network circle:nth-of-type(2) { animation-delay: -0.8s; }
.strategy-network circle:nth-of-type(3) { animation-delay: -1.6s; }
.strategy-network circle:nth-of-type(4) { animation-delay: -2.4s; }

.strategy-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(238, 145, 72, 0.58);
  box-shadow: 0 0 12px rgba(238, 145, 72, 0.42);
  animation: strategyParticleFloat 8s ease-in-out infinite;
}

.particle-one { top: 18%; left: 12%; }
.particle-two { top: 74%; left: 38%; animation-delay: -2s; }
.particle-three { top: 22%; right: 18%; animation-delay: -4s; }
.particle-four { right: 8%; bottom: 17%; animation-delay: -6s; }

.strategy-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 650px;
}

.strategy-copy > .section-kicker {
  margin-bottom: 18px;
}

.strategy-heading {
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.25em;
  margin: 0;
  font-size: clamp(3.2rem, 5.6vw, 5.25rem);
  font-weight: 820;
  line-height: 0.98;
}

.strategy-word {
  display: inline-block;
  opacity: 0;
  filter: blur(7px);
  transform: translateY(22px);
  will-change: transform, opacity, filter;
}

.strategy-word-accent {
  color: transparent;
  background: linear-gradient(105deg, #f4a261, #ee9148 55%, #d8752c);
  background-clip: text;
  -webkit-background-clip: text;
}

.strategy-heading.is-visible .strategy-word {
  animation: strategyWordReveal 650ms var(--ease) forwards;
}

.strategy-heading.is-visible .strategy-word:nth-child(2) { animation-delay: 70ms; }
.strategy-heading.is-visible .strategy-word:nth-child(3) { animation-delay: 140ms; }
.strategy-heading.is-visible .strategy-word:nth-child(4) { animation-delay: 210ms; }
.strategy-heading.is-visible .strategy-word:nth-child(5) { animation-delay: 280ms; }

.strategy-support {
  max-width: 620px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.4vw, 1.12rem);
  line-height: 1.68;
}

.strategy-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.strategy-chip {
  display: flex;
  min-width: 0;
  min-height: 46px;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(222, 218, 211, 0.86);
  border-radius: 18px;
  padding: 10px 13px;
  color: #34312e;
  background: rgba(255, 255, 252, 0.72);
  box-shadow: 0 9px 26px rgba(17, 17, 17, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(15px);
  font-size: 0.78rem;
  font-weight: 720;
  line-height: 1.25;
  transition: border-color 220ms ease, box-shadow 240ms ease, transform 240ms var(--ease);
}

.strategy-chip:hover {
  border-color: rgba(238, 145, 72, 0.36);
  box-shadow: 0 12px 32px rgba(238, 145, 72, 0.1);
  transform: translateY(-2px);
}

.strategy-chip svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 50%;
  padding: 3px;
  color: #c96e2c;
  background: rgba(244, 162, 97, 0.15);
  stroke-width: 2.6;
}

.strategy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 28px;
}

.strategy-actions .button {
  min-height: 54px;
  border-radius: 18px;
  padding-inline: 20px;
}

.strategy-primary {
  background: linear-gradient(110deg, #f4a261, #ee9148);
}

.strategy-primary:hover {
  background: linear-gradient(110deg, #f6ad72, #e9843b);
  box-shadow: 0 18px 46px rgba(238, 145, 72, 0.34);
}

.strategy-primary svg {
  transition: transform 220ms var(--ease);
}

.strategy-primary:hover svg {
  transform: translateX(4px);
}

.strategy-secondary {
  border-color: rgba(218, 214, 207, 0.9);
  background: rgba(255, 255, 252, 0.62);
  backdrop-filter: blur(16px);
}

.strategy-secondary:hover {
  border-color: rgba(238, 145, 72, 0.35);
  color: #c96e2c;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 13px 32px rgba(238, 145, 72, 0.1);
}

.strategy-visual {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 500px;
  justify-self: end;
}

.strategy-card-float {
  position: relative;
  animation: strategyCardFloat 6.5s ease-in-out infinite;
  will-change: transform;
}

.strategy-booking-card {
  position: relative;
  overflow: visible;
  border: 1px solid rgba(238, 145, 72, 0.24);
  border-radius: 22px;
  padding: clamp(22px, 3vw, 30px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.93), rgba(255, 249, 243, 0.82)),
    radial-gradient(circle at 86% 12%, rgba(244, 162, 97, 0.14), transparent 42%);
  box-shadow: 0 30px 86px rgba(72, 49, 32, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(22px);
  transform-style: preserve-3d;
  transition: border-color 260ms ease, box-shadow 320ms var(--ease);
}

.strategy-booking-card::before {
  position: absolute;
  z-index: -1;
  inset: 18px -16px -18px 22px;
  border-radius: 24px;
  content: "";
  background: rgba(244, 162, 97, 0.1);
  filter: blur(20px);
}

.strategy-booking-card:hover {
  border-color: rgba(238, 145, 72, 0.44);
  box-shadow: 0 36px 96px rgba(72, 49, 32, 0.16), 0 0 0 6px rgba(244, 162, 97, 0.045);
}

.strategy-calendar-float {
  position: absolute;
  z-index: 4;
  top: -24px;
  right: 28px;
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border: 1px solid rgba(238, 145, 72, 0.3);
  border-radius: 18px;
  color: #d87933;
  background: rgba(255, 255, 252, 0.94);
  box-shadow: 0 16px 38px rgba(238, 145, 72, 0.2);
  backdrop-filter: blur(14px);
  animation: strategyCalendarFloat 4.2s ease-in-out infinite;
}

.strategy-calendar-float svg {
  width: 24px;
  height: 24px;
}

.strategy-calendar-float span {
  margin-top: -10px;
  color: #8e5a34;
  font-size: 0.54rem;
  font-weight: 850;
  letter-spacing: 0.09em;
}

.strategy-card-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #168a4a;
  font-size: 0.68rem;
  font-weight: 760;
}

.strategy-card-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1), 0 0 10px rgba(34, 197, 94, 0.38);
  animation: journeyConnectedBlink 1.5s ease-in-out infinite;
}

.strategy-booking-card header h3 {
  max-width: 340px;
  margin: 14px 0 0;
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
  font-weight: 800;
  line-height: 1.08;
}

.strategy-booking-card header p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
}

.strategy-form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

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

.strategy-form label {
  display: grid;
  min-width: 0;
  gap: 6px;
}

.strategy-form label > span:first-child {
  color: #5f5a55;
  font-size: 0.67rem;
  font-weight: 760;
}

.strategy-form-wide {
  grid-column: 1 / -1;
}

.strategy-form input,
.strategy-form select,
.strategy-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(216, 212, 205, 0.94);
  border-radius: 12px;
  padding: 10px 11px;
  outline: none;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.96);
  font: inherit;
  font-size: 0.75rem;
  transition: border-color 200ms ease, box-shadow 220ms ease, background 200ms ease;
}

.strategy-form input {
  min-height: 43px;
}

.strategy-form select {
  min-height: 43px;
  cursor: pointer;
}

.strategy-form textarea {
  min-height: 82px;
  line-height: 1.5;
  resize: vertical;
}

.strategy-form input::placeholder,
.strategy-form textarea::placeholder {
  color: #a29c96;
}

.strategy-form input:focus,
.strategy-form select:focus,
.strategy-form textarea:focus {
  border-color: rgba(238, 145, 72, 0.62);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0 0 4px rgba(244, 162, 97, 0.1);
}

.strategy-phone-control {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 8px;
}

.strategy-submit {
  width: 100%;
  min-height: 48px;
  border-radius: 15px;
  background: linear-gradient(110deg, #f4a261, #ee9148);
}

.strategy-submit:hover {
  background: linear-gradient(110deg, #f6ad72, #e9843b);
  box-shadow: 0 16px 36px rgba(238, 145, 72, 0.28);
}

.strategy-submit svg {
  transition: transform 220ms var(--ease);
}

.strategy-submit:hover svg {
  transform: translate(3px, -2px);
}

.strategy-form-note {
  margin: -3px 0 0;
  color: #8a837c;
  font-size: 0.64rem;
  text-align: center;
}

.strategy-session-list {
  display: grid;
  gap: 9px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.strategy-session-list li {
  display: flex;
  min-height: 38px;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(225, 221, 215, 0.72);
  padding-bottom: 8px;
  color: #37332f;
  font-size: 0.78rem;
  font-weight: 700;
}

.strategy-session-list li:last-child {
  border-bottom: 0;
}

.strategy-session-list li > span {
  display: grid;
  width: 29px;
  height: 29px;
  flex: 0 0 29px;
  place-items: center;
  border: 1px solid rgba(238, 145, 72, 0.18);
  border-radius: 9px;
  color: #d87933;
  background: rgba(244, 162, 97, 0.09);
}

.strategy-session-list svg {
  width: 14px;
  height: 14px;
}

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

.strategy-times button {
  min-width: 0;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #5f5a55;
  background: rgba(255, 255, 255, 0.74);
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 760;
  opacity: 0;
  transform: translateY(8px);
  transition: color 200ms ease, border-color 200ms ease, background 200ms ease, box-shadow 220ms ease, transform 220ms var(--ease);
}

.strategy-visual.is-visible .strategy-times button {
  animation: strategySlotEnter 460ms 440ms var(--ease) forwards;
}

.strategy-visual.is-visible .strategy-times button:nth-child(2) { animation-delay: 520ms; }
.strategy-visual.is-visible .strategy-times button:nth-child(3) { animation-delay: 600ms; }

.strategy-times button:hover,
.strategy-times button:focus-visible {
  border-color: rgba(238, 145, 72, 0.48);
  color: #b96127;
  outline: none;
  transform: translateY(-2px);
}

.strategy-times button.is-selected {
  border-color: rgba(238, 145, 72, 0.58);
  color: #8e4b1e;
  background: rgba(244, 162, 97, 0.15);
  box-shadow: 0 0 0 4px rgba(244, 162, 97, 0.07), 0 7px 18px rgba(238, 145, 72, 0.12);
  animation: strategySelectedSlot 2.4s ease-in-out infinite;
}

.strategy-booking-card footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 18px;
  color: #7e7872;
  font-size: 0.67rem;
  font-weight: 720;
}

.strategy-booking-card footer i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--accent-hover);
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
  gap: clamp(36px, 7vw, 84px);
  align-items: center;
  margin-block: 40px;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(32px, 6vw, 72px);
  background: var(--surface-soft);
}

.cta-section > div > p {
  margin: 22px 0 0;
}

.lead-form {
  display: grid;
  gap: 15px;
  padding: 24px;
  box-shadow: none;
}

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

.lead-form label > span {
  color: #4b5563;
  font-size: 0.78rem;
  font-weight: 750;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 13px 14px;
  outline: none;
  color: var(--ink);
  background: #fff;
  resize: vertical;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: #d8ad87;
  box-shadow: 0 0 0 4px rgba(244, 162, 97, 0.12);
}

.lead-form > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.site-footer {
  position: relative;
  display: block;
  width: 100%;
  max-width: none;
  overflow: hidden;
  border-top: 0;
  margin: 0;
  padding: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(244, 162, 97, 0.1), transparent 28rem),
    linear-gradient(120deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 250, 246, 0.94) 52%, rgba(255, 255, 255, 0.94) 100%);
  isolation: isolate;
}

.site-footer::before {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(238, 145, 72, 0.72) 25%, rgba(238, 145, 72, 0.28) 70%, transparent);
}

.footer-atmosphere {
  position: absolute;
  z-index: -1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.footer-atmosphere svg {
  width: 100%;
  height: 100%;
  opacity: 0.3;
}

.footer-atmosphere path {
  fill: none;
  stroke: rgba(238, 145, 72, 0.2);
  stroke-dasharray: 6 20;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
  animation: footerNetworkFlow 18s linear infinite;
}

.footer-atmosphere path:nth-child(2) {
  animation-direction: reverse;
  animation-duration: 22s;
}

.footer-atmosphere circle {
  fill: rgba(238, 145, 72, 0.72);
  transform-box: fill-box;
  transform-origin: center;
  animation: footerNodePulse 4s ease-in-out infinite;
}

.footer-atmosphere circle:nth-of-type(2) { animation-delay: -1s; }
.footer-atmosphere circle:nth-of-type(3) { animation-delay: -2s; }
.footer-atmosphere circle:nth-of-type(4) { animation-delay: -3s; }

.footer-atmosphere > i {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(238, 145, 72, 0.42);
  box-shadow: 0 0 10px rgba(238, 145, 72, 0.34);
  animation: footerParticleFloat 10s ease-in-out infinite;
}

.footer-atmosphere > i:nth-of-type(1) { top: 22%; left: 9%; }
.footer-atmosphere > i:nth-of-type(2) { top: 68%; left: 42%; animation-delay: -2.5s; }
.footer-atmosphere > i:nth-of-type(3) { top: 18%; right: 26%; animation-delay: -5s; }
.footer-atmosphere > i:nth-of-type(4) { right: 8%; bottom: 20%; animation-delay: -7.5s; }

.footer-shell {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 64px), 1400px);
  margin-inline: auto;
  padding-block: clamp(68px, 6vw, 84px) 26px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.55fr);
  align-items: start;
  gap: clamp(44px, 5vw, 76px);
}

.footer-brand-area {
  max-width: 430px;
}

.footer-brand {
  width: fit-content;
  font-size: 1.3rem;
}

.footer-brand .brand-mark {
  width: 58px;
  height: 58px;
  border-radius: 17px;
  animation: footerLogoBreathe 4.8s ease-in-out infinite;
}

.footer-brand .brand-mark img {
  width: 58px;
  height: 58px;
}

.footer-brand-area > p {
  max-width: 420px;
  margin: 20px 0 0;
  color: #42403d;
  font-size: clamp(0.98rem, 1.2vw, 1.1rem);
  font-weight: 650;
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.footer-socials a {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(220, 216, 210, 0.86);
  border-radius: 50%;
  color: #57534f;
  background: rgba(255, 255, 252, 0.7);
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.045), inset 0 1px 0 rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 260ms var(--ease), transform 260ms var(--ease);
}

.footer-brand-area.is-visible .footer-socials a {
  animation: footerSocialBounce 520ms 180ms var(--ease);
}

.footer-brand-area.is-visible .footer-socials a:nth-child(2) { animation-delay: 230ms; }
.footer-brand-area.is-visible .footer-socials a:nth-child(3) { animation-delay: 280ms; }
.footer-brand-area.is-visible .footer-socials a:nth-child(4) { animation-delay: 330ms; }

.footer-socials a::after {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: rgba(255, 255, 255, 0.48);
  opacity: 0;
  transform: scale(0);
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  border-color: rgba(238, 145, 72, 0.72);
  color: #fff;
  background: var(--accent-hover);
  box-shadow: 0 14px 30px rgba(238, 145, 72, 0.26);
  outline: none;
  transform: translateY(-5px) rotate(8deg) scale(1.04);
}

.footer-socials a:hover::after,
.footer-socials a:focus-visible::after {
  animation: footerSocialRipple 520ms ease-out;
}

.footer-socials svg,
.footer-socials img {
  position: relative;
  z-index: 1;
  width: 20px;
  height: 20px;
}

.footer-socials img {
  object-fit: contain;
  transition: filter 220ms ease, transform 260ms var(--ease);
}

.footer-socials a:hover img,
.footer-socials a:focus-visible img {
  filter: brightness(0) invert(1);
  transform: scale(1.04);
}

.footer-content {
  min-width: 0;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  justify-content: stretch;
  gap: clamp(22px, 3vw, 46px);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
}

.footer-column h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 820;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-column a {
  position: relative;
  width: fit-content;
  max-width: 100%;
  color: #69645f;
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.35;
  transition: color 200ms ease, transform 220ms var(--ease);
}

.footer-column a::after {
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--accent-hover);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 280ms var(--ease);
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: #c96e2c;
  outline: none;
  transform: translateX(3px);
}

.footer-column a:hover::after,
.footer-column a:focus-visible::after {
  transform: scaleX(1);
}

.footer-contact-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  border: 1px solid rgba(238, 145, 72, 0.22);
  border-radius: 20px;
  margin-top: 30px;
  padding: 22px 24px;
  background: rgba(255, 255, 252, 0.68);
  box-shadow: 0 18px 48px rgba(72, 49, 32, 0.085), inset 0 1px 0 rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(18px);
  transform-style: preserve-3d;
  animation: footerContactFloat 6.8s ease-in-out infinite;
}

.footer-contact-card::before {
  position: absolute;
  top: -80%;
  left: -25%;
  width: 24%;
  height: 260%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.78), transparent);
  opacity: 0.62;
  transform: rotate(24deg) translateX(-240%);
  animation: footerContactSweep 8s 1.5s ease-in-out infinite;
  pointer-events: none;
}

.footer-contact-card > div {
  display: grid;
  gap: 4px;
}

.footer-contact-card > div span {
  color: #a25e2d;
  font-size: 0.64rem;
  font-weight: 820;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-contact-card > div strong {
  max-width: 470px;
  font-size: 0.96rem;
  line-height: 1.4;
}

.footer-contact-card .button {
  min-height: 46px;
  border-radius: 15px;
  padding: 11px 16px;
  white-space: nowrap;
}

.footer-contact-card .button svg {
  transition: transform 220ms var(--ease);
}

.footer-contact-card .button:hover svg {
  transform: translateX(4px);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  border-top: 1px solid rgba(221, 217, 211, 0.86);
  margin-top: 48px;
  padding-top: 26px;
}

.footer-bottom p {
  margin: 0;
  color: #7b756f;
  font-size: 0.7rem;
  font-weight: 650;
}

.footer-bottom p:last-child {
  text-align: right;
}

.footer-bottom p:last-child span {
  color: var(--accent-hover);
  font-weight: 820;
}

.footer-made {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.footer-made svg {
  width: 13px;
  height: 13px;
  color: var(--accent-hover);
  fill: rgba(238, 145, 72, 0.22);
}

.page-hero {
  display: grid;
  min-height: 670px;
  align-items: end;
  padding-top: 170px;
  padding-bottom: 100px;
  isolation: isolate;
}

.page-hero > .reveal {
  min-width: 0;
  max-width: 990px;
}

.page-hero h1 {
  max-width: 980px;
  margin: 20px 0 0;
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 1;
}

.page-hero p {
  max-width: 720px;
  margin: 26px 0 0;
}

.product-detail-list {
  display: grid;
  gap: 18px;
  padding-top: 40px;
}

.product-detail {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.9fr auto;
  gap: 28px;
  align-items: center;
  padding: 30px;
  box-shadow: none;
}

.product-detail h2 {
  margin-top: 14px;
}

.product-detail h3 {
  margin-bottom: 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-detail .problem {
  color: #52525b;
  font-size: 0.88rem;
}

.product-detail ul {
  display: grid;
  gap: 8px;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.86rem;
}

.product-detail .button {
  white-space: nowrap;
}

.industry-detail-grid {
  padding-top: 40px;
}

.industry-detail {
  min-height: 300px;
}

.industry-detail > span {
  display: block;
  margin-top: 24px;
  color: #7c4a25;
  font-size: 0.82rem;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

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

@keyframes meshDrift {
  to { transform: translate3d(18px, -14px, 0) scale(1.04); }
}

@keyframes particleDrift {
  to { background-position: 72px 72px; }
}

@keyframes ripple {
  0% { opacity: 0.55; transform: translate(-50%, -50%) scale(0); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(22); }
}

@keyframes connectorFlow {
  to { stroke-dashoffset: -108; }
}

@keyframes employeeFloat {
  0%, 100% {
    transform: perspective(1000px) translate3d(var(--card-x, 0px), var(--card-y, 0px), 0) rotateX(var(--card-rx, 0deg)) rotateY(var(--card-ry, 0deg));
  }
  50% {
    transform: perspective(1000px) translate3d(var(--card-x, 0px), calc(var(--card-y, 0px) - 5px), 0) rotateX(var(--card-rx, 0deg)) rotateY(var(--card-ry, 0deg));
  }
}

@keyframes employeeIconPulse {
  0%, 100% { transform: scale(1); }
  45% { transform: scale(1.09); box-shadow: inset 0 1px 0 #fff, 0 10px 30px rgba(238, 145, 72, 0.24); }
}

@keyframes nodeBlink {
  0%, 100% { opacity: 0.35; transform: scale(0.8); }
  45% { opacity: 1; transform: scale(1.2); }
}

@keyframes searchScan {
  0%, 100% { transform: translate(-2px, -1px) rotate(-6deg); }
  50% { transform: translate(3px, 2px) rotate(5deg); }
}

@keyframes messageFlight {
  0%, 15%, 100% { opacity: 1; transform: translate(0, 0) rotate(0); }
  55% { opacity: 0.45; transform: translate(9px, -8px) rotate(-6deg); }
  70% { opacity: 0; transform: translate(12px, -10px) rotate(-8deg); }
  71% { opacity: 0; transform: translate(-7px, 6px) rotate(4deg); }
}

@keyframes typingLine {
  0%, 100% { opacity: 0.3; transform: scaleX(0.35); }
  50% { opacity: 1; transform: scaleX(1); }
}

@keyframes voiceWave {
  0% { opacity: 0; transform: scale(0.52); }
  28% { opacity: 0.7; }
  100% { opacity: 0; transform: scale(1.12); }
}

@keyframes workflowPulse {
  0%, 100% { transform: scale(0.94); }
  50% { transform: scale(1.06); }
}

@keyframes flowTravel {
  0%, 100% { opacity: 0.4; transform: translate(0, 0); }
  50% { opacity: 1; transform: translate(-6px, 7px); }
}

@keyframes trustMarquee {
  to { transform: translateX(-50%); }
}

@keyframes journeyLineDraw {
  to { transform: scaleX(1); }
}

@keyframes journeyDotTravel {
  0% { left: 2.5%; opacity: 0; }
  4%, 96% { opacity: 1; }
  100% { left: calc(97.5% - 9px); opacity: 0; }
}

@keyframes journeyArrow {
  0%, 100% { opacity: 0.42; transform: translateX(-2px); }
  50% { opacity: 1; transform: translateX(2px); }
}

@keyframes journeyActiveGlow {
  0%, 12% { border-color: rgba(238, 145, 72, 0.72); box-shadow: 0 0 0 7px rgba(238, 145, 72, 0.11), 0 8px 22px rgba(238, 145, 72, 0.16); }
  18%, 100% { border-color: rgba(238, 145, 72, 0.24); box-shadow: none; }
}

@keyframes journeyStatusPulse {
  0%, 12% { opacity: 1; transform: scale(1.28); }
  18%, 100% { opacity: 0.52; transform: scale(1); }
}

@keyframes journeyConnectedBlink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.82); }
}

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

@keyframes journeyLineDrawVertical {
  to { transform: scaleY(1); }
}

@keyframes journeyDotTravelVertical {
  0% { top: 8px; opacity: 0; }
  4%, 96% { opacity: 1; }
  100% { top: calc(100% - 17px); opacity: 0; }
}

@keyframes integrationLineDraw {
  to { stroke-dashoffset: 0; }
}

@keyframes integrationDataFlow {
  to { stroke-dashoffset: -1; }
}

@keyframes integrationOrbit {
  from { transform: translate(-50%, -50%) rotate(0); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes integrationCounterOrbit {
  to { transform: rotate(-360deg); }
}

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

@keyframes integrationRingTurn {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes integrationCenterPulse {
  0%, 100% { box-shadow: 0 22px 70px rgba(238, 145, 72, 0.16), inset 0 0 0 10px rgba(244, 162, 97, 0.045); }
  50% { box-shadow: 0 24px 82px rgba(238, 145, 72, 0.24), inset 0 0 0 10px rgba(244, 162, 97, 0.07); }
}

@keyframes integrationCenterHalo {
  0% { opacity: 0.58; transform: scale(0.96); }
  72%, 100% { opacity: 0; transform: scale(1.17); }
}

@keyframes choiceFlowLine {
  to { background-position: 0 -200%; }
}

@keyframes choicePacketTravel {
  0% { top: 16px; opacity: 0; }
  8%, 92% { opacity: 1; }
  100% { top: calc(100% - 23px); opacity: 0; }
}

@keyframes choiceWarning {
  0%, 72%, 100% { opacity: 0.28; transform: scale(0.82); }
  78%, 88% { opacity: 1; transform: scale(1.12); }
}

@keyframes choiceSlowClock {
  to { transform: rotate(360deg); }
}

@keyframes choiceSlowBar {
  0% { transform: translateX(-110%); }
  65%, 100% { transform: translateX(270%); }
}

@keyframes choiceTyping {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-2px); }
}

@keyframes choiceSpin {
  to { transform: rotate(360deg); }
}

@keyframes choiceParticles {
  to { background-position: 34px -34px; }
}

@keyframes choiceWave {
  0%, 100% { transform: scaleY(0.6); }
  50% { transform: scaleY(1.25); }
}

@keyframes choiceChat {
  0%, 100% { opacity: 0.55; transform: translateY(1px); }
  50% { opacity: 1; transform: translateY(-1px); }
}

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

@keyframes choiceAIActivate {
  to { opacity: 1; filter: saturate(1); transform: translateX(0); }
}

@keyframes choiceManualDim {
  to { opacity: 0.78; filter: grayscale(0.18); }
}

@keyframes choiceDividerTravel {
  0% { top: -8px; opacity: 0; }
  8%, 92% { opacity: 1; }
  100% { top: calc(100% - 1px); opacity: 0; }
}

@keyframes choiceCrossPulse {
  0%, 68% { opacity: 0; transform: translate(-16vw, -50%) scale(0.72); }
  72% { opacity: 1; }
  88% { opacity: 1; transform: translate(16vw, -50%) scale(1); }
  94%, 100% { opacity: 0; transform: translate(16vw, -50%) scale(0.72); }
}

@keyframes faqParticleDrift {
  to { background-position: center, 38px -38px; }
}

@keyframes faqLightSweep {
  to { transform: rotate(24deg) translateX(560%); }
}

@keyframes faqActiveGlow {
  0%, 100% { opacity: 0.52; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1.015); }
}

@keyframes faqOrbBreathe {
  0%, 100% { box-shadow: 0 8px 22px rgba(238, 145, 72, 0.13), inset 0 1px 0 #fff; }
  50% { box-shadow: 0 10px 28px rgba(238, 145, 72, 0.23), 0 0 0 4px rgba(244, 162, 97, 0.05), inset 0 1px 0 #fff; }
}

@keyframes faqOrbRipple {
  0% { opacity: 0.7; transform: scale(0.82); }
  100% { opacity: 0; transform: scale(1.65); }
}

@keyframes faqDotWave {
  0%, 100% { opacity: 0.3; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-2px); }
}

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

@keyframes strategyWordReveal {
  to { opacity: 1; filter: blur(0); transform: translateY(0); }
}

@keyframes strategyNetworkFlow {
  to { stroke-dashoffset: -200; }
}

@keyframes strategyNodePulse {
  0%, 100% { opacity: 0.45; transform: scale(0.78); }
  50% { opacity: 1; transform: scale(1.45); }
}

@keyframes strategyParticleFloat {
  0%, 100% { opacity: 0.25; transform: translate3d(0, 0, 0); }
  50% { opacity: 0.85; transform: translate3d(8px, -13px, 0); }
}

@keyframes strategyCardFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -7px, 0); }
}

@keyframes strategyCalendarFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0); }
  50% { transform: translate3d(0, -5px, 0) rotate(1.5deg); }
}

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

@keyframes strategySelectedSlot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(244, 162, 97, 0.06), 0 7px 18px rgba(238, 145, 72, 0.1); }
  50% { box-shadow: 0 0 0 7px rgba(244, 162, 97, 0.09), 0 9px 24px rgba(238, 145, 72, 0.17); }
}

@keyframes footerNetworkFlow {
  to { stroke-dashoffset: -220; }
}

@keyframes footerNodePulse {
  0%, 100% { opacity: 0.35; transform: scale(0.72); }
  50% { opacity: 0.9; transform: scale(1.4); }
}

@keyframes footerParticleFloat {
  0%, 100% { opacity: 0.2; transform: translate3d(0, 0, 0); }
  50% { opacity: 0.75; transform: translate3d(7px, -12px, 0); }
}

@keyframes footerLogoBreathe {
  0%, 100% { box-shadow: 0 10px 24px rgba(255, 122, 0, 0.16); filter: saturate(0.96); }
  50% { box-shadow: 0 14px 34px rgba(255, 122, 0, 0.3), 0 0 0 6px rgba(244, 162, 97, 0.06); filter: saturate(1.08); }
}

@keyframes footerSocialBounce {
  0% { transform: translateY(0) scale(1); }
  45% { transform: translateY(-6px) scale(1.06); }
  72% { transform: translateY(2px) scale(0.98); }
  100% { transform: translateY(0) scale(1); }
}

@keyframes footerSocialRipple {
  0% { opacity: 0.62; transform: scale(0); }
  100% { opacity: 0; transform: scale(6); }
}

@keyframes footerContactFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -5px; }
}

@keyframes footerContactSweep {
  0%, 72% { transform: rotate(24deg) translateX(-240%); }
  86%, 100% { transform: rotate(24deg) translateX(720%); }
}

@media (max-width: 1100px) {
  .hero {
    min-height: 580px;
  }

  .employee-overview-layout {
    grid-template-columns: 1fr;
  }

  .employee-intro {
    position: relative;
    top: auto;
    max-width: 760px;
    padding-top: 0;
  }

  .employee-intro h2,
  .employee-copy-lines {
    max-width: 720px;
  }

  .employee-system {
    max-width: 820px;
    min-height: 650px;
    margin-inline: auto;
  }

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

  .journey-flow::before,
  .journey-flow::after {
    display: none;
  }

  .journey-card {
    min-height: 240px;
    padding-inline: 20px;
  }

  .journey-card p {
    font-size: 0.8rem;
  }

  .journey-card:nth-child(4)::after {
    top: auto;
    right: 50%;
    bottom: -17px;
    content: "↓";
    transform: translateX(50%);
  }

  .outcome-section,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .pricing-grid,
  .industry-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .industry-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .timeline::before {
    display: none;
  }

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

@media (max-width: 1060px) {
  .cursor-glow {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

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

  .menu-button {
    display: inline-flex;
    flex-direction: column;
  }

  .site-header.menu-active .nav-links {
    position: fixed;
    top: 78px;
    right: 0;
    left: 0;
    display: grid;
    max-height: calc(100vh - 96px);
    gap: 4px;
    overflow-y: auto;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 10px;
    background: rgba(250, 250, 244, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-trigger,
  .nav-direct-link {
    width: 100%;
    min-height: 48px;
    justify-content: space-between;
    padding-inline: 14px;
  }

  .nav-demo-link {
    margin-left: 0;
  }

  .nav-dropdown::after {
    display: none;
  }

  .nav-menu,
  .nav-dropdown:hover .nav-menu,
  .nav-dropdown:focus-within .nav-menu {
    position: static;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    border: 0;
    padding: 0;
    margin: 0;
    opacity: 1;
    visibility: visible;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    pointer-events: none;
    transform: none;
    transition: max-height 320ms var(--ease), padding 220ms ease, margin 220ms ease;
  }

  .nav-dropdown.is-open .nav-menu,
  .nav-dropdown.is-open:hover .nav-menu,
  .nav-dropdown.is-open:focus-within .nav-menu {
    max-height: 760px;
    padding: 7px;
    margin: 2px 0 6px;
    background: rgba(255, 255, 255, 0.7);
    pointer-events: auto;
  }

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

  .nav-menu-link {
    min-height: 48px;
  }

  .nav-menu-link strong {
    white-space: normal;
  }

  .nav-mobile-cta {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 14px;
    margin-top: 4px;
    color: #1f160f;
    background: var(--accent);
    font-size: 0.9rem;
    font-weight: 760;
  }

  .nav-mobile-cta svg {
    width: 17px;
  }

  .results-grid,
  .calculator,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 660px) {
  .section-shell,
  .site-header,
  .site-footer {
    width: min(calc(100% - 28px), var(--max));
  }

  .section-shell {
    padding-block: 42px;
  }

  .trust-strip {
    min-height: 84px;
  }

  .trust-track {
    display: flex;
    width: max-content;
    grid-template-columns: none;
    margin: 0;
    animation: trustMarquee 24s linear infinite;
  }

  .trust-strip:hover .trust-track,
  .trust-strip:focus-within .trust-track {
    animation-play-state: paused;
  }

  .trust-stat {
    width: 210px;
    min-width: 210px;
    padding: 10px 16px;
  }

  .trust-stat-clone {
    display: grid;
  }

  .workforce-journey {
    padding-top: 28px;
    padding-bottom: 48px;
  }

  .ai-employees-overview {
    padding-bottom: 24px;
  }

  .workforce-journey::before {
    inset-inline: -14px;
  }

  .journey-heading {
    margin-bottom: 34px;
  }

  .journey-flow {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-left: 30px;
  }

  .journey-flow::before {
    position: absolute;
    z-index: 0;
    top: 10px;
    bottom: 10px;
    left: 8px;
    display: block;
    width: 1px;
    height: auto;
    background: linear-gradient(to bottom, transparent, rgba(238, 145, 72, 0.76) 7%, rgba(238, 145, 72, 0.76) 93%, transparent);
    transform: scaleY(0);
    transform-origin: top;
    animation: journeyLineDrawVertical 1.8s 0.35s var(--ease) forwards;
  }

  .journey-flow::after {
    position: absolute;
    z-index: 3;
    top: 8px;
    left: 4px;
    display: block;
    width: 9px;
    height: 9px;
    animation: journeyDotTravelVertical 14s 1.6s linear infinite;
  }

  .journey-card {
    min-height: 230px;
    padding: 20px 20px 50px;
  }

  .journey-card::after,
  .journey-card:nth-child(4)::after {
    display: none;
  }

  .journey-card h3 {
    font-size: 1.13rem;
  }

  .journey-card p {
    font-size: 0.85rem;
  }

  .products-preview::before,
  .process-section::before,
  .industries-preview::before,
  .pricing-section::before,
  .faq-section::before,
  .product-detail-list::before,
  .industry-detail-grid::before {
    inset-inline: -14px;
  }

  .site-header {
    top: 10px;
    min-height: 62px;
    padding-left: 14px;
  }

  .hero {
    width: 100%;
    min-height: 590px;
    padding-top: 110px;
    padding-bottom: 12px;
  }

  .hero-background::before {
    top: 18%;
    width: 94vw;
    height: 390px;
  }

  .hero-title > span:first-child {
    font-size: clamp(2.45rem, 10vw, 3rem);
    line-height: 1.04;
  }

  .rotating-line {
    min-height: 2.2em;
    display: grid !important;
    align-items: start;
    margin-top: 10px;
    font-size: clamp(2.8rem, 12vw, 3.35rem);
    line-height: 1.04;
  }

  .hero-copy > p {
    margin-top: 20px;
    font-size: 1rem;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-actions {
    display: grid;
  }

  .section-heading h2,
  .outcome-copy h2,
  .cta-section h2 {
    font-size: clamp(2.35rem, 11vw, 3.25rem);
  }

  .ai-employees-overview {
    padding-top: 36px;
    padding-bottom: 48px;
  }

  .employee-overview-layout {
    gap: 34px;
  }

  .employee-intro h2 {
    font-size: clamp(2.65rem, 12vw, 3.45rem);
  }

  .employee-copy-lines span {
    display: inline;
  }

  .employee-system {
    min-height: 0;
    padding: 16px 0 10px;
  }

  .employee-system::before {
    inset: -30px -14px;
  }

  .employee-connectors {
    display: none;
  }

  .employee-card-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .employee-card-grid::before {
    position: absolute;
    z-index: -1;
    top: 28px;
    bottom: 28px;
    left: 30px;
    width: 1px;
    content: "";
    background: linear-gradient(to bottom, transparent, rgba(238, 145, 72, 0.58) 12%, rgba(238, 145, 72, 0.58) 88%, transparent);
  }

  .ai-employee-card,
  .ai-employee-card:nth-child(even),
  .ai-employee-card:nth-child(3) {
    min-height: 290px;
    margin-top: 0;
  }

  .employee-card-surface {
    padding: 24px;
  }

  .employee-platform-cta {
    display: grid;
    gap: 15px;
    margin-top: 24px;
    padding: 18px;
    text-align: center;
  }

  .employee-cta-action {
    width: 100%;
    min-width: 0;
  }

  .product-grid,
  .pricing-grid,
  .timeline,
  .outcome-list,
  .roi-panel,
  .industry-grid,
  .industry-detail-grid,
  .product-detail {
    grid-template-columns: 1fr;
  }

  .timeline li {
    min-height: auto;
  }

  .industry-card {
    min-height: 110px;
  }

  .roi-ring {
    min-height: 280px;
  }

  .pricing-card {
    min-height: 520px;
  }

  .calculator {
    padding: 12px;
  }

  .cta-section {
    width: min(calc(100% - 28px), var(--max));
    margin-block: 46px;
    padding: 24px;
  }

  .lead-form {
    padding: 16px;
  }

  .page-hero {
    min-height: 590px;
    padding-top: 132px;
    padding-bottom: 70px;
  }

  .page-hero h1 {
    font-size: clamp(2.75rem, 12vw, 4.2rem);
    overflow-wrap: anywhere;
  }

  .product-detail {
    gap: 18px;
    padding: 22px;
  }

  .product-detail .button {
    width: 100%;
  }
}

@media (max-width: 820px) {
  .integrations-section {
    height: clamp(590px, 78svh, 660px);
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    align-items: initial;
    gap: 0;
    padding-block: clamp(16px, 2.5vh, 24px);
  }

  .integrations-heading {
    max-width: 700px;
    margin-inline: auto;
    text-align: center;
  }

  .integrations-heading h2 {
    margin-top: 10px;
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .integrations-heading p {
    margin-right: auto;
    margin-left: auto;
    margin-top: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .integration-stage {
    height: 100%;
    justify-self: stretch;
    margin-top: 14px;
  }

  .integration-stage::before,
  .integration-stage::after {
    display: none;
  }

  .integration-center {
    position: relative;
    top: auto;
    left: auto;
    width: 104px;
    height: 104px;
    margin: 0 auto 18px;
    transform: none;
  }

  .integration-center:hover {
    transform: scale(1.02);
  }

  .integration-center img {
    width: 39px;
    height: 39px;
  }

  .integration-center strong {
    font-size: 0.75rem;
  }

  .integration-center small {
    font-size: 0.46rem;
  }

  .integration-center-pulse {
    top: 12px;
    right: 14px;
    width: 6px;
    height: 6px;
  }

  .integration-orbit-layer {
    position: relative;
    inset: auto;
    display: grid;
    width: 100%;
    max-width: none;
    height: auto;
    aspect-ratio: auto;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(8px, 2vw, 14px);
    animation: none;
  }

  .integration-orbit-layer::before {
    position: absolute;
    z-index: 0;
    top: -44px;
    bottom: 0;
    left: 50%;
    width: 1px;
    content: "";
    background: linear-gradient(to bottom, rgba(238, 145, 72, 0.62), rgba(238, 145, 72, 0.12));
  }

  .integration-connectors {
    display: none;
  }

  .integration-node {
    position: relative;
    z-index: 2;
    top: auto;
    left: auto;
    display: grid;
    place-items: center;
    transform: none;
  }

  .integration-node-inner,
  .integration-stage.is-visible .integration-node-inner {
    animation: integrationNodeFade 520ms var(--node-delay) var(--ease) forwards;
  }

  .integration-card {
    width: 66px;
    height: 66px;
    border-radius: 16px;
    background: rgba(255, 255, 252, 0.94);
  }

  .integration-node.is-top .integration-tooltip,
  .integration-tooltip {
    top: calc(100% + 10px);
    bottom: auto;
  }

}

@media (max-width: 660px) {
  .integrations-section {
    height: clamp(560px, 82svh, 620px);
    padding-block: 14px;
  }

  .integrations-section::before {
    inset-inline: -14px;
  }

  .integrations-heading h2 {
    font-size: clamp(1.72rem, 8vw, 2.25rem);
    line-height: 1.06;
  }

  .integrations-heading p {
    max-width: 440px;
    margin-top: 10px;
    font-size: 0.78rem;
    line-height: 1.42;
  }

  .integration-stage {
    margin-top: 10px;
  }

  .integration-center {
    width: 90px;
    height: 90px;
    margin-bottom: 14px;
  }

  .integration-center img {
    width: 33px;
    height: 33px;
  }

  .integration-center strong {
    font-size: 0.68rem;
  }

  .integration-orbit-layer {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px 6px;
  }

  .integration-card {
    width: 56px;
    height: 56px;
    border-radius: 14px;
  }

  .integration-card img {
    width: 27px;
    height: 27px;
  }

  .integration-card img.integration-logo-wide {
    width: 38px;
    height: 23px;
  }

  .integration-tooltip {
    display: none;
  }
}

@media (max-width: 820px) and (max-height: 620px) {
  .integrations-section {
    padding-block: 12px;
  }

  .integrations-heading h2 {
    margin-top: 6px;
    font-size: 1.62rem;
  }

  .integrations-heading p {
    display: -webkit-box;
    margin-top: 6px;
    overflow: hidden;
    font-size: 0.72rem;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .integration-stage {
    margin-top: 6px;
  }

  .integration-center {
    width: 74px;
    height: 74px;
    margin-bottom: 8px;
  }

  .integration-center img {
    width: 28px;
    height: 28px;
  }

  .integration-center small,
  .integration-center-pulse {
    display: none;
  }

  .integration-orbit-layer {
    gap: 6px;
  }

  .integration-card {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .integration-card img {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 820px) {
  .choices-section {
    height: clamp(620px, 84svh, 700px);
    padding-block: 14px;
  }

  .choices-heading {
    margin-bottom: 12px;
  }

  .choices-heading h2 {
    margin-top: 7px;
    font-size: clamp(1.9rem, 6vw, 2.7rem);
  }

  .choices-heading p {
    max-width: 580px;
    margin-top: 8px;
    font-size: 0.84rem;
  }

  .choice-panel {
    padding: 10px 14px;
  }

  .choice-panel-header {
    margin-bottom: 6px;
  }

  .choice-node {
    grid-template-columns: 34px minmax(0, 1fr) auto;
    gap: 7px;
    padding-right: 8px;
  }

  .choice-node-icon {
    width: 34px;
    height: 34px;
  }

  .choice-flow::before {
    left: 17px;
  }

  .ai-flow::after {
    left: 14px;
  }
}

@media (max-width: 660px) {
  .choices-section {
    width: min(calc(100% - 20px), var(--max));
    height: clamp(590px, 88svh, 650px);
    padding-block: 11px;
  }

  .choices-section::before {
    inset-inline: -10px;
  }

  .choices-heading {
    margin-bottom: 9px;
  }

  .choices-heading h2 {
    margin-top: 5px;
    font-size: clamp(1.48rem, 7.4vw, 2rem);
  }

  .choices-heading p {
    display: -webkit-box;
    margin-top: 6px;
    overflow: hidden;
    font-size: 0.72rem;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .choice-panel {
    padding: 7px 6px;
  }

  .choice-panel-header {
    min-height: 25px;
    gap: 5px;
    margin-bottom: 4px;
  }

  .choice-panel-header h3 {
    font-size: 0.72rem;
  }

  .choice-panel-header small {
    display: none;
  }

  .choice-mode-dot {
    width: 5px;
    height: 5px;
  }

  .choice-flow {
    height: calc(100% - 29px);
    gap: 4px;
  }

  .choice-flow::before {
    top: 14px;
    bottom: 14px;
    left: 15px;
  }

  .choice-node {
    grid-template-columns: 30px minmax(0, 1fr) auto;
    gap: 4px;
    border-radius: 8px;
    padding: 2px 4px 2px 0;
  }

  .choice-node-icon {
    width: 30px;
    height: 30px;
  }

  .choice-node-icon svg {
    width: 13px;
    height: 13px;
  }

  .choice-node-copy strong {
    font-size: 0.58rem;
  }

  .choice-node-copy small {
    font-size: 0.47rem;
  }

  .manual-signal {
    width: 16px;
  }

  .signal-bar {
    width: 16px;
  }

  .ai-signal {
    width: 16px;
    height: 16px;
  }

  .ai-signal svg {
    width: 9px;
    height: 9px;
  }

  .ai-flow::after {
    left: 12px;
  }

}

@media (max-width: 820px) and (max-height: 650px) {
  .choices-section {
    padding-block: 9px;
  }

  .choices-heading {
    margin-bottom: 6px;
  }

  .choices-heading h2 {
    margin-top: 3px;
    font-size: 1.45rem;
  }

  .choices-heading p {
    margin-top: 3px;
    font-size: 0.65rem;
    -webkit-line-clamp: 1;
  }

  .choice-panel {
    padding-block: 5px;
  }

  .choice-panel-header {
    min-height: 21px;
    margin-bottom: 2px;
  }

  .choice-flow {
    height: calc(100% - 23px);
    gap: 3px;
  }

  .choice-node-icon {
    height: 27px;
  }

}

@media (max-width: 760px) {
  .faq-section {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .faq-heading {
    margin-bottom: 26px;
  }

  .faq-heading h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .faq-heading p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .faq-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .faq-question {
    min-height: 78px;
    gap: 14px;
    padding: 17px 18px;
  }

  .faq-question::after {
    right: 18px;
    left: 18px;
  }

  .faq-orb {
    width: 34px;
    height: 34px;
  }

  .faq-answer-inner {
    padding-inline: 18px;
  }

  .faq-answer p {
    padding-bottom: 18px;
  }

  .faq-cta {
    margin-top: 34px;
  }
}

@media (max-width: 480px) {
  .faq-cta > div,
  .faq-cta .button {
    width: 100%;
  }
}

@media (max-width: 960px) {
  .strategy-cta {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 46px;
    padding: 58px 24px 64px;
  }

  .strategy-copy {
    max-width: 760px;
    margin-inline: auto;
  }

  .strategy-heading {
    font-size: clamp(3.2rem, 9vw, 5rem);
  }

  .strategy-visual {
    max-width: 540px;
    justify-self: center;
  }

  .strategy-cta::after {
    right: 50%;
    width: min(78vw, 620px);
    height: min(78vw, 620px);
    transform: translate(50%, -16%);
  }
}

@media (max-width: 660px) {
  .strategy-cta {
    gap: 38px;
    padding: 48px 14px 54px;
  }

  .strategy-copy > .section-kicker {
    margin-bottom: 14px;
  }

  .strategy-heading {
    gap: 0 0.22em;
    font-size: clamp(2.65rem, 13vw, 4.1rem);
    line-height: 1;
  }

  .strategy-support {
    margin-top: 20px;
    font-size: 0.94rem;
    line-height: 1.58;
  }

  .strategy-features {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 22px;
  }

  .strategy-chip {
    min-height: 43px;
  }

  .strategy-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 23px;
  }

  .strategy-actions .button {
    width: 100%;
  }

  .strategy-booking-card {
    border-radius: 20px;
    padding: 22px 17px;
  }

  .strategy-calendar-float {
    top: -21px;
    right: 17px;
    width: 61px;
    height: 61px;
    border-radius: 16px;
  }

  .strategy-booking-card header h3 {
    max-width: 260px;
    font-size: 1.55rem;
  }

  .strategy-form-grid {
    grid-template-columns: 1fr;
  }

  .strategy-form-wide {
    grid-column: auto;
  }

  .strategy-phone-control {
    grid-template-columns: 94px minmax(0, 1fr);
  }

  .strategy-session-list {
    margin-top: 20px;
  }

  .strategy-times {
    gap: 6px;
  }

  .strategy-times button {
    min-height: 38px;
    padding-inline: 4px;
    font-size: 0.64rem;
  }
}

@media (max-width: 1050px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-brand-area {
    max-width: 680px;
  }

  .footer-brand-area > p {
    max-width: 620px;
  }

  .footer-nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-footer {
    width: 100%;
  }

  .footer-shell {
    width: min(calc(100% - 36px), 1400px);
    padding-block: 64px 24px;
  }

  .footer-brand-area {
    max-width: 620px;
    margin-inline: auto;
    text-align: center;
  }

  .footer-brand {
    margin-inline: auto;
  }

  .footer-brand-area > p {
    margin-inline: auto;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 28px;
  }

  .footer-contact-card {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 18px;
    margin-top: 32px;
    text-align: center;
  }

  .footer-contact-card .button {
    width: min(100%, 300px);
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
    margin-top: 42px;
    text-align: center;
  }

  .footer-bottom p:last-child {
    text-align: center;
  }
}

@media (max-width: 560px) {
  .footer-shell {
    width: min(calc(100% - 28px), 1400px);
    padding-top: 58px;
  }

  .footer-main {
    gap: 44px;
  }

  .footer-brand-area > p {
    font-size: 0.94rem;
    line-height: 1.62;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-column {
    justify-items: center;
    text-align: center;
  }

  .footer-column h3 {
    margin-bottom: 5px;
  }

  .footer-contact-card {
    padding: 22px 16px;
  }

  .footer-contact-card .button {
    width: 100%;
  }
}

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