:root {
  --paper: #ececef;
  --ink: #101114;
  --muted: #4f5056;
  --line: #d8dce5;
  --footer: #060709;
  --shell-radius: 32px;
  --font-title: "Forum", "Cormorant Garamond", Georgia, serif;
  --font-subtitle: "Helvetica Neue", Helvetica, Arial, "Manrope", sans-serif;
  --font-nav: "Helvetica Neue", Helvetica, Arial, "Manrope", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--paper);
  padding: 0;
}

a {
  color: inherit;
}

.site-shell {
  background: var(--paper);
  border-radius: 0;
  overflow: hidden;
}

.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  transform: translateY(0);
  width: 100%;
  z-index: 40;
  transition: transform 260ms ease, background-color 260ms ease, border-color 260ms ease;
  background:
    linear-gradient(
      to bottom,
      rgba(238, 244, 251, 0.12) 0%,
      rgba(186, 198, 216, 0.09) 34%,
      rgba(36, 46, 62, 0.28) 100%
    );
  -webkit-backdrop-filter: saturate(145%) blur(24px);
  backdrop-filter: saturate(145%) blur(24px);
  border-bottom: 1px solid rgba(244, 248, 255, 0.26);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 8px 24px rgba(7, 12, 21, 0.2);
}

.top-nav.scrolled {
  background:
    linear-gradient(
      to bottom,
      rgba(219, 228, 241, 0.11) 0%,
      rgba(154, 169, 190, 0.1) 30%,
      rgba(26, 35, 51, 0.42) 100%
    );
  border-bottom-color: rgba(245, 249, 255, 0.3);
}

.top-nav.nav-hidden {
  transform: translateY(calc(-100% - 2px));
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  min-height: 78px;
  padding: 0 22px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.brand {
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-family: var(--font-title);
  font-size: 1.72rem;
  letter-spacing: 0.012em;
  line-height: 1;
}

.brand-mark {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  color: rgba(255, 255, 255, 0.96);
}

.brand-mark svg,
.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.brand-word {
  font-family: var(--font-title);
  font-size: 1.72rem;
  letter-spacing: 0.012em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.96);
  text-transform: none;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  font-family: var(--font-nav);
  font-size: 1.01rem;
  font-weight: 500;
  letter-spacing: 0.002em;
  line-height: 1.25;
}

.nav-links a.active,
.nav-links a:hover {
  color: #ffffff;
}

.btn {
  --btn-bg: rgba(246, 250, 244, 0.32);
  --btn-border: rgba(56, 66, 80, 0.52);
  --btn-border-hover: rgba(66, 79, 97, 0.74);
  --btn-text: #111723;
  --btn-hover-text: #f7fafc;
  --btn-fill: linear-gradient(110deg, rgba(20, 26, 36, 0.9) 0%, rgba(34, 43, 58, 0.86) 100%);
  border: 1px solid var(--btn-border);
  border-radius: 0;
  padding: 12px 24px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--btn-bg);
  color: var(--btn-text);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(4% 0, 96% 0, 100% 24%, 100% 76%, 96% 100%, 4% 100%, 0 76%, 0 24%);
  -webkit-clip-path: polygon(4% 0, 96% 0, 100% 24%, 100% 76%, 96% 100%, 4% 100%, 0 76%, 0 24%);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 4px 10px rgba(26, 34, 47, 0.08);
  transition: color 240ms ease, border-color 240ms ease, box-shadow 240ms ease, transform 220ms ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--btn-fill);
  transform: translateX(-102%);
  transition: transform 280ms ease;
  z-index: -1;
}

.btn:hover,
.btn:focus-visible {
  color: var(--btn-hover-text);
  border-color: var(--btn-border-hover);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 10px 22px rgba(20, 29, 41, 0.2);
}

.btn:hover::before,
.btn:focus-visible::before {
  transform: translateX(0);
}

.btn-primary,
.btn-outline {
  border-color: var(--btn-border);
  color: var(--btn-text);
}

.cut-noise .btn,
.problem .btn,
.workflows .btn,
.proof .btn,
.testimonials .btn,
.final-cta .btn,
.cta-panel .btn {
  --btn-bg: rgba(247, 250, 246, 0.34);
  --btn-border: rgba(45, 54, 68, 0.46);
  --btn-border-hover: rgba(56, 70, 88, 0.68);
  --btn-text: #13161f;
  --btn-hover-text: #f7fafc;
  --btn-fill: linear-gradient(110deg, rgba(19, 27, 38, 0.92) 0%, rgba(35, 46, 63, 0.88) 100%);
}

.nav-actions {
  display: flex;
  justify-self: end;
}

.top-nav .btn {
  --btn-bg: rgba(8, 14, 10, 0.42);
  --btn-border: rgba(255, 255, 255, 0.9);
  --btn-border-hover: rgba(246, 251, 247, 0.98);
  --btn-text: #ffffff;
  --btn-hover-text: #ffffff;
  --btn-fill: linear-gradient(110deg, rgba(7, 12, 20, 0.94) 0%, rgba(20, 31, 46, 0.9) 100%);
}

main section {
  position: relative;
  padding: 116px 24px;
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 16px;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.09em;
  color: rgba(255, 255, 255, 0.85);
}

h1,
h2,
h3 {
  margin: 0;
}

h1,
h2 {
  font-family: var(--font-title);
  letter-spacing: 0.01em;
  line-height: 0.97;
}

h1 {
  font-size: clamp(3rem, 10vw, 7.4rem);
  color: #f6f8f6;
}

h2 {
  font-size: clamp(2rem, 7vw, 5.6rem);
}

h3 {
  font-size: clamp(1.1rem, 1.7vw, 1.55rem);
  line-height: 1.2;
}

.card h3,
.workflow-card h3,
.process-card h3,
.quote-card h3,
.why-card h3,
.cta-panel h3,
.track-card h3,
.testimonial-card h3 {
  font-family: var(--font-title);
  letter-spacing: 0.01em;
  line-height: 1.08;
}

html[data-page="home"] .why-us .why-card h3 {
  font-family: "Manrope", sans-serif;
}

p {
  margin: 0;
  line-height: 1.5;
}

.hero {
  min-height: 84vh;
  padding-top: 154px;
  padding-bottom: 88px;
  background:
    radial-gradient(
      130% 56% at 50% 42%,
      rgba(40, 58, 33, 0.3) 0%,
      rgba(40, 58, 33, 0.2) 38%,
      rgba(40, 58, 33, 0) 78%
    ),
    linear-gradient(
      to bottom,
      rgba(120, 139, 112, 0.7) 0%,
      rgba(108, 128, 96, 0.75) 18%,
      rgba(84, 106, 74, 0.82) 42%,
      rgba(124, 147, 102, 0.8) 58%,
      rgba(182, 198, 166, 0.84) 74%,
      rgba(219, 226, 215, 0.9) 88%,
      rgba(236, 237, 241, 1) 100%
    ),
    repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.17) 0px, rgba(255, 255, 255, 0.17) 2px, rgba(0, 0, 0, 0.08) 8px, rgba(0, 0, 0, 0.08) 14px);
  background-position: center center, center center, center center;
  background-size: 100% 100%, 100% 100%, 100% 100%;
  background-repeat: no-repeat;
}

.hero .section-inner,
.page-hero .section-inner {
  max-width: 980px;
}

.hero .section-inner {
  max-width: 920px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(1.95rem, 4.35vw, 3.7rem);
  line-height: 1.06;
  max-width: none;
  white-space: nowrap;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.38);
}

.title-size {
  font-size: clamp(1.95rem, 4.35vw, 3.7rem);
}

.proof-title {
  max-width: 17.5ch;
  line-height: 1.06;
}

.proof-logos {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.proof-logos img {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  display: block;
  filter: saturate(1.05) contrast(1.02);
  box-shadow: 0 0 0 1px rgba(31, 36, 48, 0.12);
}

.subtitle-size {
  font-size: clamp(0.98rem, 1.7vw, 1.24rem);
  line-height: 1.5;
  color: #1f2430;
  max-width: 980px;
  margin-top: 16px;
  font-family: var(--font-subtitle);
}

.hero-copy {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.97);
  font-size: clamp(0.98rem, 1.7vw, 1.24rem);
  line-height: 1.5;
  max-width: 760px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.32);
  font-family: "Manrope", sans-serif;
}

.capabilities {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9rem;
  max-width: 760px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.capabilities-highlight {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.96);
  font-weight: 600;
  font-family: "Manrope", sans-serif;
  padding: 0;
  background: transparent;
  box-shadow: none;
  text-shadow: none;
}

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

.hero-marquee {
  margin-top: 16px;
  width: min(900px, 100%);
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.hero-marquee-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: hero-marquee-scroll 26s linear infinite;
}

.hero-marquee-track span {
  white-space: nowrap;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  color: rgba(244, 248, 244, 0.88);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}

.hero .btn {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  width: 24.5ch !important;
  max-width: 24.5ch;
  min-width: 24.5ch;
  flex: 0 0 24.5ch;
  min-height: 54px;
  padding: 14px 14px;
}

.hero .btn-primary {
  --btn-bg: rgba(8, 14, 10, 0.48);
  --btn-border: rgba(255, 255, 255, 0.95);
  --btn-border-hover: rgba(245, 250, 246, 0.98);
  --btn-text: #ffffff;
  --btn-hover-text: #ffffff;
  --btn-fill: linear-gradient(110deg, rgba(8, 14, 10, 0.94) 0%, rgba(18, 29, 20, 0.92) 100%);
}

.hero .btn-outline {
  --btn-bg: linear-gradient(180deg, rgba(229, 237, 225, 0.34) 0%, rgba(206, 220, 200, 0.28) 100%);
  --btn-border: rgba(244, 250, 242, 0.98);
  --btn-border-hover: rgba(237, 246, 234, 0.98);
  --btn-text: #f8fcf7;
  --btn-hover-text: #ffffff;
  --btn-fill: linear-gradient(110deg, rgba(17, 24, 33, 0.9) 0%, rgba(34, 44, 58, 0.86) 100%);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.18);
}

@keyframes hero-marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 20px));
  }
}

.cut-noise,
.problem,
.workflows,
.proof,
.testimonials {
  background: var(--paper);
}

.disruption {
  background:
    radial-gradient(
      130% 66% at 50% 38%,
      rgba(47, 66, 37, 0.38) 0%,
      rgba(47, 66, 37, 0.22) 52%,
      rgba(47, 66, 37, 0) 86%
    ),
    linear-gradient(
      to bottom,
      rgba(88, 111, 71, 0.82) 0%,
      rgba(74, 98, 58, 0.92) 32%,
      rgba(96, 122, 75, 0.9) 54%,
      rgba(139, 164, 116, 0.84) 70%,
      rgba(202, 214, 191, 0.82) 86%,
      rgba(236, 238, 242, 1) 100%
    ),
    repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.16) 0px, rgba(255, 255, 255, 0.16) 2px, rgba(0, 0, 0, 0.07) 8px, rgba(0, 0, 0, 0.07) 14px);
  background-position: center center, center center, center center;
  background-size: 100% 100%, 100% 100%, 100% 100%;
  background-repeat: no-repeat;
}

.disruption h2 {
  color: #f3f6f3;
}

.disruption .long-copy p {
  color: rgba(247, 250, 247, 0.92);
}

html[data-page="home"] .disruption .long-copy p {
  font-family: "Manrope", sans-serif;
}

.problem h2,
.workflows h2,
.process h2,
.proof h2,
.testimonials h2,
.final-cta h2,
.page-hero h1 {
  color: #0f1116;
  line-height: 1.03;
}

.page-hero {
  min-height: 74vh;
  padding-top: 205px;
  padding-bottom: 100px;
  background:
    linear-gradient(to bottom, rgba(70, 94, 55, 0.94) 0%, rgba(124, 146, 104, 0.84) 30%, rgba(205, 216, 194, 0.82) 55%, rgba(236, 238, 242, 1) 82%),
    repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.17) 0px, rgba(255, 255, 255, 0.17) 2px, rgba(0, 0, 0, 0.08) 8px, rgba(0, 0, 0, 0.08) 14px);
}

.page-hero .eyebrow {
  color: rgba(248, 250, 248, 0.86);
}

.page-hero p {
  margin-top: 20px;
  color: #11131a;
  font-size: 1.12rem;
}

html:not([data-page="home"]) .page-hero .section-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

html:not([data-page="home"]) .page-hero h1 {
  max-width: 16ch;
}

html:not([data-page="home"]) .page-hero p {
  max-width: 760px;
}

.how-hero {
  min-height: 48vh;
  padding-top: 150px;
  padding-bottom: 50px;
  background:
    linear-gradient(
      to bottom,
      rgba(82, 103, 145, 0.96) 0%,
      rgba(104, 126, 169, 0.92) 24%,
      rgba(136, 156, 194, 0.86) 50%,
      rgba(179, 193, 219, 0.8) 72%,
      rgba(236, 238, 242, 1) 100%
    ),
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.17) 0px,
      rgba(255, 255, 255, 0.17) 2px,
      rgba(22, 33, 58, 0.08) 8px,
      rgba(22, 33, 58, 0.08) 14px
    );
}

.how-hero .section-inner {
  max-width: 900px;
}

.how-hero h1 {
  color: #f6f8f6;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.32);
}

.how-hero p {
  color: rgba(255, 255, 255, 0.97);
  font-size: clamp(0.98rem, 1.7vw, 1.24rem);
  line-height: 1.5;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.32);
}

html[data-page="how"] .process {
  background:
    linear-gradient(
      to bottom,
      rgba(171, 186, 214, 0.92) 0%,
      rgba(190, 202, 224, 0.9) 34%,
      rgba(206, 215, 229, 0.9) 62%,
      rgba(224, 230, 239, 0.93) 82%,
      rgba(236, 238, 242, 1) 100%
    ),
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.16) 0px,
      rgba(255, 255, 255, 0.16) 2px,
      rgba(27, 42, 67, 0.05) 8px,
      rgba(27, 42, 67, 0.05) 14px
    );
}

.long-copy {
  margin-top: 24px;
  display: grid;
  gap: 14px;
  max-width: 980px;
}

.proof-copy {
  margin-top: 18px;
  max-width: 1020px;
  display: grid;
  gap: 12px;
}

.proof-list {
  margin: 4px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
  color: #1f2430;
}

.proof-list li {
  line-height: 1.5;
}

.proof-client-quotes {
  margin-top: 20px;
}

.proof-quotes-title {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.78rem;
  color: #3e4b66;
  font-weight: 700;
}

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

.proof-quote-card {
  border: 1px solid rgba(32, 42, 64, 0.12);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  padding: 16px 18px;
}

.proof-quote-text {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1rem, 1.45vw, 1.24rem);
  line-height: 1.46;
  color: #121823;
  font-weight: 400;
  font-style: italic;
}

.proof-quote-author {
  margin: 10px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: 0.92rem;
  color: #2f5a43;
  font-weight: 700;
}

.long-copy p,
.problem-intro,
.workflows-intro,
.process-sub,
.proof-copy p,
.bottom-text {
  color: #1f2430;
  font-size: 1.06rem;
  font-family: var(--font-subtitle);
}

.bottom-text {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 28px;
}

.assessment-section {
  background: var(--paper);
  padding-top: 0;
  padding-bottom: 96px;
}

.assessment-form {
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid rgba(22, 30, 45, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  padding: 24px;
  display: grid;
  gap: 10px;
}

.assessment-form label {
  font-weight: 700;
  color: #1f2430;
  font-size: 0.92rem;
}

.assessment-form input,
.assessment-form select,
.assessment-form textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(38, 52, 77, 0.22);
  background: #f9fafb;
  color: #111827;
  padding: 12px 14px;
  font: inherit;
  font-size: 16px;
  min-height: 48px;
}

.assessment-form textarea {
  resize: vertical;
  min-height: 120px;
}

.assessment-form input:focus,
.assessment-form select:focus,
.assessment-form textarea:focus {
  outline: 2px solid rgba(120, 166, 109, 0.48);
  outline-offset: 1px;
  border-color: rgba(95, 133, 86, 0.75);
}

.assessment-submit {
  margin-top: 10px;
  width: min(240px, 100%);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  justify-self: center;
  min-height: 50px;
  --btn-bg: linear-gradient(180deg, rgba(44, 61, 36, 0.9) 0%, rgba(61, 82, 50, 0.92) 100%);
  --btn-border: rgba(255, 255, 255, 0.9);
  --btn-border-hover: rgba(242, 249, 239, 0.96);
  --btn-text: #ffffff;
  --btn-hover-text: #ffffff;
  --btn-fill: linear-gradient(110deg, rgba(14, 23, 18, 0.96) 0%, rgba(24, 36, 28, 0.92) 100%);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}

.assessment-consent {
  margin: 12px 0 2px;
  font-family: var(--font-subtitle);
  font-size: 0.85rem;
  line-height: 1.45;
  color: #3a4050;
}

.assessment-success {
  min-height: 1.2em;
  margin: 0;
  color: #2f5a43;
  font-weight: 600;
}

.assessment-hero {
  min-height: 44vh;
  padding-top: 154px;
  padding-bottom: 14px;
  background:
    linear-gradient(
      to bottom,
      rgba(52, 73, 40, 0.97) 0%,
      rgba(72, 96, 55, 0.95) 24%,
      rgba(103, 128, 84, 0.9) 48%,
      rgba(160, 182, 144, 0.8) 70%,
      rgba(236, 238, 242, 1) 100%
    ),
    repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.16) 0px, rgba(255, 255, 255, 0.16) 2px, rgba(0, 0, 0, 0.08) 8px, rgba(0, 0, 0, 0.08) 14px);
}

.assessment-hero h1 {
  color: #f6f8f6;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.32);
}

.assessment-hero p {
  color: rgba(255, 255, 255, 0.97);
  font-size: clamp(0.98rem, 1.7vw, 1.24rem);
  line-height: 1.5;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.32);
}

.problem-intro,
.workflows-intro,
.process-sub {
  margin-top: 18px;
}

html[data-page="home"] .workflows-intro,
html[data-page="home"] .process-sub,
html[data-page="home"] .proof-copy p,
html[data-page="home"] .proof-list li,
html[data-page="home"] .bottom-cta p,
html[data-page="home"] .bottom-text,
html[data-page="home"] .proof-quote-text,
html[data-page="home"] .proof-quote-author {
  font-family: "Manrope", sans-serif;
}

html[data-page="home"] .proof-quote-text {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  font-weight: 500;
  line-height: 1.5;
  font-style: italic;
}

.card-grid,
.workflow-grid,
.quote-grid,
.proof-quotes-grid,
.stats,
.process-grid,
.why-grid,
.cta-grid {
  margin-top: 32px;
  display: grid;
  gap: 18px;
}

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

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

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

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

.card,
.workflow-card,
.process-card,
.stat,
.quote-card,
.why-card,
.cta-panel {
  border-radius: 18px;
  padding: 22px;
}

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

.card,
.workflow-card,
.process-card,
.stat,
.quote-card,
.cta-panel {
  border: 1px solid rgba(12, 15, 26, 0.1);
  background: rgba(255, 255, 255, 0.72);
}

.card {
  background: #f7f2eb;
  border-color: #efe2d3;
}

.card p,
.workflow-card p,
.process-card p,
.cta-panel p,
.stat span,
.quote-author,
.why-card p {
  margin-top: 12px;
  color: #303847;
}

.workflow-card p:last-of-type {
  margin-bottom: 14px;
}

.workflow-card .card-kicker {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2f4a2c;
  font-weight: 700;
}

.workflow-card h3 {
  min-height: 0;
  line-height: 1.08;
}

.workflow-time {
  margin-top: 4px;
  width: min(360px, 90%);
  border-radius: 14px;
  padding: 10px 12px 11px;
  border: 1px solid rgba(101, 132, 95, 0.28);
  background: rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
  position: relative;
}

.workflow-time .big {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: clamp(1.05rem, 2vw, 1.6rem);
  color: #243a2e;
  line-height: 1.1;
}

.workflow-time .big .bolt {
  display: inline-block;
  font-size: 1.45rem;
  line-height: 1;
  color: #d18400;
}

.workflow-time .big .metric {
  letter-spacing: 0.01em;
}

.workflow-time .small {
  display: block;
  margin-top: 2px;
  margin-left: 28px;
  color: #4a5f4f;
}

.workflow-time::before,
.workflow-time::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  height: 1px;
  background: linear-gradient(90deg, rgba(102, 132, 96, 0) 0%, rgba(102, 132, 96, 0.62) 16%, rgba(102, 132, 96, 0.62) 84%, rgba(102, 132, 96, 0) 100%);
}

.workflow-time::before {
  top: 7px;
}

.workflow-time::after {
  bottom: 7px;
}

.workflow-label {
  margin-top: 6px;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #55607b;
  font-weight: 700;
}

.workflow-showcase {
  margin-top: 32px;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 0;
  border: 1px solid rgba(70, 90, 118, 0.22);
  border-radius: 20px;
  overflow: hidden;
  background:
    linear-gradient(165deg, rgba(236, 245, 236, 0.42) 0%, rgba(241, 247, 252, 0.66) 44%, rgba(229, 239, 245, 0.58) 100%),
    repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.15) 0px, rgba(255, 255, 255, 0.15) 1px, rgba(37, 50, 72, 0.03) 8px, rgba(37, 50, 72, 0.03) 14px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 12px 28px rgba(29, 42, 66, 0.08);
}

.workflow-tabs-wrap {
  background: linear-gradient(180deg, rgba(247, 251, 252, 0.7) 0%, rgba(240, 247, 250, 0.62) 100%);
  border-right: 1px solid rgba(70, 90, 118, 0.2);
  padding: 14px;
}

.workflow-tabs-hint {
  margin: 0 0 10px;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #4f617a;
  font-weight: 700;
}

.workflow-tabs {
  display: grid;
  gap: 10px;
}

.workflow-tab {
  border: 1px solid rgba(67, 84, 110, 0.18);
  border-radius: 14px;
  background: rgba(250, 252, 253, 0.68);
  padding: 12px 12px 11px;
  text-align: left;
  color: #1b2434;
  cursor: pointer;
  position: relative;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.workflow-tab:hover {
  transform: translateY(-1px);
  border-color: rgba(82, 102, 130, 0.32);
}

.workflow-tab.is-active {
  border-color: rgba(77, 110, 85, 0.44);
  background: linear-gradient(180deg, rgba(233, 246, 230, 0.86) 0%, rgba(221, 240, 217, 0.72) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 8px 20px rgba(25, 39, 61, 0.1);
}

.workflow-tab.is-active::after {
  content: "";
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 44px;
  border: 1px solid rgba(77, 110, 85, 0.44);
  border-left: 0;
  border-radius: 0 10px 10px 0;
  background: linear-gradient(180deg, rgba(228, 243, 225, 0.9) 0%, rgba(220, 238, 216, 0.78) 100%);
}

.workflow-tab .card-kicker {
  display: block;
}

.workflow-tab-title {
  display: block;
  margin-top: 2px;
  font-family: var(--font-title);
  font-size: clamp(1.4rem, 1.8vw, 1.85rem);
  line-height: 1.02;
}

.workflow-tab-meta {
  display: block;
  margin-top: 9px;
  color: #2f4a2c;
  font-size: 0.9rem;
  font-weight: 700;
  min-height: 1.35rem;
}

.workflow-tab-meta em {
  font-style: normal;
  color: #4f5f5a;
  font-weight: 500;
}

.workflow-tab-state {
  display: block;
  margin-top: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #52657f;
  font-weight: 700;
}

.workflow-tab.is-active .workflow-tab-state {
  color: #2f5a43;
}

.workflow-panels {
  background:
    linear-gradient(170deg, rgba(236, 248, 233, 0.5) 0%, rgba(246, 250, 252, 0.72) 40%, rgba(234, 244, 239, 0.6) 100%),
    repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.14) 0px, rgba(255, 255, 255, 0.14) 1px, rgba(45, 63, 89, 0.03) 8px, rgba(45, 63, 89, 0.03) 14px);
}

.workflow-panel {
  padding: 22px;
  animation: workflow-panel-fade 220ms ease;
}

.workflow-panel p {
  margin-top: 10px;
}

.workflow-panel-link {
  margin-top: 28px;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #284f39;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-bottom: 1px solid rgba(40, 79, 57, 0.28);
  padding-bottom: 2px;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.workflow-panel-link:hover,
.workflow-panel-link:focus-visible {
  color: #1e3d2c;
  border-color: rgba(30, 61, 44, 0.44);
  transform: translateX(2px);
}

@keyframes workflow-panel-fade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.workflow-tools {
  font-size: 0.95rem;
}

.workflows .btn-workflow,
.workflows .bottom-cta .btn-workflow {
  min-height: 48px;
  width: min(280px, 78%);
  margin-top: auto;
  align-self: center;
  justify-content: center;
  --btn-bg: linear-gradient(180deg, rgba(224, 238, 220, 0.88) 0%, rgba(191, 214, 184, 0.9) 56%, rgba(168, 197, 160, 0.92) 100%);
  --btn-border: rgba(108, 146, 99, 0.78);
  --btn-border-hover: rgba(95, 133, 86, 0.88);
  --btn-text: #1f3e25;
  --btn-hover-text: #f7fafc;
  --btn-fill: linear-gradient(110deg, rgba(26, 37, 55, 0.92) 0%, rgba(36, 48, 70, 0.88) 100%);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.workflows .bottom-cta .btn-workflow {
  margin-top: 0;
  min-height: 50px;
  width: auto;
  min-width: 272px;
  padding: 0 18px;
  --btn-bg: rgba(246, 250, 244, 0.32);
  --btn-border: rgba(56, 66, 80, 0.52);
  --btn-border-hover: rgba(66, 79, 97, 0.74);
  --btn-text: #111723;
  --btn-hover-text: #f7fafc;
  --btn-fill: linear-gradient(110deg, rgba(20, 26, 36, 0.9) 0%, rgba(34, 43, 58, 0.86) 100%);
  font-size: 0.92rem;
  font-weight: 700;
}

.workflows .btn-workflow:hover {
  --btn-bg: linear-gradient(180deg, rgba(231, 242, 227, 0.9) 0%, rgba(201, 222, 194, 0.92) 56%, rgba(176, 203, 168, 0.94) 100%);
  --btn-text: #18371f;
}

.bottom-cta {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.process {
  background:
    linear-gradient(to bottom, rgba(64, 83, 121, 0.98) 0%, rgba(100, 120, 160, 0.92) 31%, rgba(179, 193, 218, 0.85) 60%, rgba(230, 233, 242, 1) 100%),
    repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.18) 0px, rgba(255, 255, 255, 0.18) 2px, rgba(0, 0, 0, 0.08) 8px, rgba(0, 0, 0, 0.08) 14px);
}

.process .process-sub,
.process h2 {
  color: #2f527c;
}

.process .process-sub {
  font-weight: 600;
}

.process .bottom-cta .btn {
  --btn-bg: linear-gradient(180deg, rgba(222, 234, 255, 0.96) 0%, rgba(200, 220, 250, 0.95) 54%, rgba(179, 205, 242, 0.95) 100%);
  --btn-border: rgba(224, 234, 255, 0.9);
  --btn-border-hover: rgba(238, 244, 255, 0.98);
  --btn-text: #162744;
  --btn-hover-text: #f8fbff;
  --btn-fill: linear-gradient(110deg, rgba(20, 33, 63, 0.96) 0%, rgba(35, 52, 89, 0.94) 100%);
}

.process .bottom-cta .btn:hover {
  --btn-bg: linear-gradient(180deg, rgba(212, 227, 252, 0.96) 0%, rgba(188, 211, 245, 0.95) 54%, rgba(165, 194, 238, 0.95) 100%);
}

.process-card {
  background: rgba(236, 240, 248, 0.73);
  border-color: rgba(255, 255, 255, 0.35);
}

.process-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  border: 1px solid rgba(46, 58, 89, 0.22);
  background: rgba(222, 230, 244, 0.84);
  color: #27395f;
  font-weight: 800;
  margin-bottom: 10px;
}

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

.track-card {
  border-radius: 18px;
  padding: 24px;
  border: 1px solid rgba(229, 237, 255, 0.34);
  background: rgba(230, 236, 248, 0.7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.track-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.77rem;
  color: #30446f;
  font-weight: 700;
}

.track-card h3 {
  margin-top: 10px;
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  color: #1f2f53;
}

.track-note {
  margin-top: 10px;
  color: #2e3c56;
}

.track-steps {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.track-step {
  border-radius: 12px;
  border: 1px solid rgba(48, 68, 111, 0.18);
  background: rgba(246, 249, 255, 0.8);
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.track-step span {
  color: #314364;
  font-weight: 600;
}

.track-step strong {
  color: #1d2c4b;
  font-size: 0.95rem;
}

.stat strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  color: #202739;
  font-size: clamp(1.5rem, 2.7vw, 2.3rem);
  line-height: 1.05;
}

.quote-text {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.2rem, 2.1vw, 1.72rem);
  line-height: 1.36;
  font-weight: 700;
  color: #0f1116;
  font-style: italic;
}

.quote-author {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  color: #3d5f47;
}

.testimonial-carousel {
  margin-top: 30px;
  overflow: hidden;
  border-radius: 18px;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.testimonial-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: testimonials-rtl 42s linear infinite;
}

.testimonial-carousel:hover .testimonial-track {
  animation-play-state: paused;
}

.testimonial-card {
  width: min(760px, 80vw);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: #ffffff;
}

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

.why-us {
  background: linear-gradient(158deg, #111827 0%, #1f2937 100%);
}

.why-us h2,
.why-us h3,
.why-us p {
  color: #ffffff;
}

.why-card {
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(15, 23, 42, 0.38);
}

.why-card h3 {
  color: #9ae8de;
}

.final-cta {
  background:
    linear-gradient(to bottom, #cad286 0%, #d8dc9f 54%, #edf0d6 74%, #ececef 100%),
    repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.22) 0px, rgba(255, 255, 255, 0.22) 1px, rgba(0, 0, 0, 0.07) 6px, rgba(0, 0, 0, 0.07) 12px);
}

.cta-panel {
  background: rgba(255, 255, 255, 0.73);
}

.cta-panel .list {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.panel-btn {
  margin-top: 16px;
}

.final-cta .cta-panel {
  display: flex;
  flex-direction: column;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.final-cta .cta-panel p {
  margin-bottom: 0;
}

.final-cta .cta-panel .list {
  margin-top: 12px;
  margin-bottom: 20px;
}

.final-cta .cta-panel:hover {
  transform: translateY(-2px);
  border-color: rgba(31, 36, 48, 0.3);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.14);
}

.final-cta .cta-panel .panel-btn {
  width: min(236px, 62%);
  min-height: 46px;
  padding: 0 16px;
  margin-top: auto;
  clip-path: polygon(4% 0, 96% 0, 100% 24%, 100% 76%, 96% 100%, 4% 100%, 0 76%, 0 24%);
  -webkit-clip-path: polygon(4% 0, 96% 0, 100% 24%, 100% 76%, 96% 100%, 4% 100%, 0 76%, 0 24%);
  border-radius: 0;
  letter-spacing: 0.03em;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  align-self: center;
  white-space: nowrap;
  box-shadow: 0 5px 14px rgba(15, 23, 42, 0.1);
  position: relative;
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease, border-color 200ms ease, color 200ms ease;
}

.final-cta .cta-panel .btn-primary {
  --btn-bg: linear-gradient(180deg, #f7faf4 0%, #edf3e8 100%);
  --btn-border: #78a66d;
  --btn-border-hover: #66965d;
  --btn-text: #2f5831;
  --btn-hover-text: #f7fafc;
  --btn-fill: linear-gradient(110deg, rgba(29, 44, 35, 0.92) 0%, rgba(43, 62, 52, 0.88) 100%);
}

.final-cta .cta-panel .btn-primary:hover {
  --btn-bg: linear-gradient(180deg, #f3f8ef 0%, #e7efdf 100%);
}

.final-cta .cta-panel .btn-outline {
  --btn-bg: linear-gradient(180deg, #f7faf4 0%, #edf3e8 100%);
  --btn-border: #78a66d;
  --btn-border-hover: #66965d;
  --btn-text: #2f5831;
  --btn-hover-text: #f7fafc;
  --btn-fill: linear-gradient(110deg, rgba(29, 44, 35, 0.92) 0%, rgba(43, 62, 52, 0.88) 100%);
}

.final-cta .cta-panel .btn-outline:hover {
  --btn-bg: linear-gradient(180deg, #f3f8ef 0%, #e7efdf 100%);
}

/* Homepage gradient alignment: mixed palette, no hard blue->green blocks */
html[data-page="home"] .workflows {
  background:
    linear-gradient(
      180deg,
      rgba(228, 234, 241, 0.97) 0%,
      rgba(220, 228, 234, 0.96) 24%,
      rgba(213, 223, 219, 0.95) 48%,
      rgba(215, 223, 205, 0.95) 70%,
      rgba(224, 229, 214, 0.96) 100%
    ),
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.16) 0px,
      rgba(255, 255, 255, 0.16) 1px,
      rgba(39, 50, 70, 0.032) 8px,
      rgba(39, 50, 70, 0.032) 14px
    );
}

html[data-page="home"] .workflows .workflow-card,
html[data-page="home"] .workflows .card {
  background: rgba(248, 250, 252, 0.74);
  border-color: rgba(78, 96, 120, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    0 8px 20px rgba(41, 56, 79, 0.055);
}

html[data-page="home"] .why-us {
  background:
    linear-gradient(
      180deg,
      rgba(220, 228, 235, 0.96) 0%,
      rgba(211, 221, 224, 0.95) 28%,
      rgba(204, 215, 209, 0.95) 52%,
      rgba(208, 216, 199, 0.94) 76%,
      rgba(219, 225, 207, 0.95) 100%
    ),
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.17) 0px,
      rgba(255, 255, 255, 0.17) 1px,
      rgba(31, 44, 67, 0.036) 9px,
      rgba(31, 44, 67, 0.036) 15px
    );
}

html[data-page="home"] .why-us h2,
html[data-page="home"] .why-us h3,
html[data-page="home"] .why-us p {
  color: #121824;
}

html[data-page="home"] .why-us .why-card {
  border: 1px solid rgba(66, 82, 102, 0.2);
  background: rgba(242, 246, 248, 0.75);
}

html[data-page="home"] .why-us .why-card h3 {
  color: #203452;
}

html[data-page="home"] .process {
  background:
    linear-gradient(
      180deg,
      rgba(214, 223, 231, 0.96) 0%,
      rgba(202, 214, 220, 0.95) 30%,
      rgba(196, 209, 204, 0.94) 56%,
      rgba(203, 213, 195, 0.93) 80%,
      rgba(216, 223, 204, 0.94) 100%
    ),
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.16) 0px,
      rgba(255, 255, 255, 0.16) 2px,
      rgba(29, 42, 62, 0.042) 9px,
      rgba(29, 42, 62, 0.042) 15px
    );
}

html[data-page="home"] .process .process-sub,
html[data-page="home"] .process h2 {
  color: #2f527c;
}

html[data-page="home"] .process .process-card {
  background: rgba(239, 244, 248, 0.78);
  border-color: rgba(227, 233, 238, 0.56);
}

html[data-page="home"] .proof {
  background:
    linear-gradient(
      180deg,
      rgba(206, 217, 223, 0.93) 0%,
      rgba(199, 210, 207, 0.92) 32%,
      rgba(203, 211, 195, 0.91) 62%,
      rgba(214, 220, 197, 0.9) 82%,
      rgba(224, 228, 207, 0.92) 100%
    ),
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.16) 0px,
      rgba(255, 255, 255, 0.16) 1px,
      rgba(36, 48, 68, 0.038) 8px,
      rgba(36, 48, 68, 0.038) 14px
    );
}

html[data-page="home"] .proof .proof-quote-card {
  background: rgba(246, 249, 248, 0.78);
  border-color: rgba(67, 83, 103, 0.14);
}

html[data-page="about"] .proof .proof-title {
  color: #fff7f0;
  text-shadow: 0 2px 12px rgba(58, 29, 12, 0.24);
}

html[data-page="about"] .page-hero {
  background:
    linear-gradient(
      to bottom,
      rgba(196, 110, 52, 0.97) 0%,
      rgba(214, 126, 64, 0.95) 20%,
      rgba(225, 142, 80, 0.92) 42%,
      rgba(234, 164, 113, 0.86) 66%,
      rgba(242, 201, 167, 0.82) 84%,
      rgba(236, 238, 242, 1) 100%
    ),
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.16) 0px,
      rgba(255, 255, 255, 0.16) 2px,
      rgba(104, 54, 26, 0.07) 8px,
      rgba(104, 54, 26, 0.07) 14px
    );
}

html[data-page="about"] .page-hero h1,
html[data-page="about"] .page-hero p,
html[data-page="about"] .page-hero .eyebrow {
  color: #ffffff;
  text-shadow: 0 2px 14px rgba(53, 28, 14, 0.28);
}

html[data-page="about"] .proof {
  background:
    linear-gradient(
      to bottom,
      rgba(214, 131, 72, 0.93) 0%,
      rgba(225, 147, 91, 0.9) 26%,
      rgba(234, 170, 123, 0.86) 52%,
      rgba(239, 194, 160, 0.84) 74%,
      rgba(236, 238, 242, 1) 100%
    ),
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.14) 0px,
      rgba(255, 255, 255, 0.14) 2px,
      rgba(95, 51, 26, 0.06) 8px,
      rgba(95, 51, 26, 0.06) 14px
    );
}

html[data-page="about"] .proof .proof-copy p,
html[data-page="about"] .proof .proof-list li,
html[data-page="about"] .proof .proof-quotes-title {
  color: #18212b;
  text-shadow: none;
}

html[data-page="about"] .proof .proof-quote-card {
  background: rgba(255, 252, 248, 0.9);
  border-color: rgba(122, 73, 41, 0.24);
}

html[data-page="about"] .proof .proof-quote-text {
  color: #1c1b1a;
}

html[data-page="about"] .proof .proof-quote-author {
  color: #744928;
}

html[data-page="about"] .testimonials {
  background:
    linear-gradient(
      to bottom,
      rgba(205, 122, 63, 0.94) 0%,
      rgba(218, 136, 77, 0.92) 28%,
      rgba(228, 156, 104, 0.88) 58%,
      rgba(239, 197, 164, 0.84) 82%,
      rgba(236, 238, 242, 1) 100%
    ),
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.14) 0px,
      rgba(255, 255, 255, 0.14) 2px,
      rgba(92, 48, 24, 0.065) 8px,
      rgba(92, 48, 24, 0.065) 14px
    );
}

html[data-page="about"] .testimonials h2 {
  color: #ffffff;
  text-shadow: 0 2px 14px rgba(53, 28, 14, 0.25);
}

html[data-page="about"] .testimonial-card {
  background: rgba(255, 252, 249, 0.84);
  border-color: rgba(132, 78, 43, 0.18);
}

html[data-page="about"] .quote-text {
  color: #1a1a1a;
}

html[data-page="about"] .quote-author {
  color: #704627;
}

html[data-page="about"] .why-us {
  background:
    linear-gradient(
      to bottom,
      rgba(232, 184, 147, 0.8) 0%,
      rgba(238, 202, 173, 0.76) 36%,
      rgba(243, 219, 198, 0.76) 62%,
      rgba(236, 238, 242, 1) 100%
    ),
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.13) 0px,
      rgba(255, 255, 255, 0.13) 1px,
      rgba(102, 61, 34, 0.04) 8px,
      rgba(102, 61, 34, 0.04) 14px
    );
}

html[data-page="about"] .why-us h2 {
  color: #0f1116;
}

html[data-page="about"] .why-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

html[data-page="about"] .why-grid .why-card {
  grid-column: span 2;
  background: rgba(255, 249, 243, 0.86);
  border-color: rgba(131, 79, 45, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 10px 20px rgba(91, 56, 29, 0.08);
}

html[data-page="about"] .why-grid .why-card h3 {
  color: #4e2f1a;
}

html[data-page="about"] .why-grid .why-card p {
  color: #2f2720;
}

html[data-page="about"] .why-grid .why-card:nth-child(4) {
  grid-column: 2 / span 2;
}

html[data-page="about"] .why-grid .why-card:nth-child(5) {
  grid-column: 4 / span 2;
}

html[data-page="services"] .page-hero {
  background:
    linear-gradient(
      to bottom,
      rgba(226, 224, 169, 0.98) 0%,
      rgba(230, 227, 176, 0.97) 28%,
      rgba(236, 232, 191, 0.96) 56%,
      rgba(242, 237, 208, 0.95) 78%,
      rgba(246, 241, 224, 0.95) 100%
    ),
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.22) 0px,
      rgba(255, 255, 255, 0.22) 1px,
      rgba(112, 102, 49, 0.06) 7px,
      rgba(112, 102, 49, 0.06) 13px
    );
  background-size: 100% 100%, 100% 100%;
}

html[data-page="services"] .page-hero h1,
html[data-page="services"] .page-hero p,
html[data-page="services"] .page-hero .eyebrow {
  color: #0f1116;
  text-shadow: none;
}

html[data-page="services"] .services-hero-copy {
  color: #0f1116;
  text-shadow: none;
  font-size: clamp(0.98rem, 1.7vw, 1.24rem);
  line-height: 1.5;
  max-width: 760px;
  margin-top: 18px;
  font-family: "Manrope", sans-serif;
}

html[data-page="about"] .about-hero-copy,
html[data-page="how"] .how-hero-copy {
  font-size: clamp(0.98rem, 1.7vw, 1.24rem);
  line-height: 1.5;
  max-width: 760px;
  margin-top: 18px;
  font-family: "Manrope", sans-serif;
}

html[data-page="services"] .workflows {
  background:
    linear-gradient(
      to bottom,
      rgba(221, 220, 165, 0.95) 0%,
      rgba(228, 226, 178, 0.94) 24%,
      rgba(235, 233, 197, 0.94) 52%,
      rgba(241, 238, 215, 0.95) 76%,
      rgba(236, 238, 242, 1) 100%
    ),
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.2) 0px,
      rgba(255, 255, 255, 0.2) 1px,
      rgba(110, 101, 52, 0.055) 7px,
      rgba(110, 101, 52, 0.055) 13px
    );
  background-size: 100% 100%, 100% 100%;
}

html[data-page="services"] .workflows h2,
html[data-page="services"] .workflows .workflows-intro {
  color: #12161f;
}

html[data-page="services"] .services-workflows-title {
  color: #1c222e;
  display: block;
  width: fit-content;
  max-width: 100%;
  white-space: nowrap;
  font-size: clamp(1.7rem, 3.6vw, 3.2rem);
  line-height: 1.08;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 14px;
}

html[data-page="services"] .workflow-showcase {
  background:
    linear-gradient(165deg, rgba(243, 243, 229, 0.7) 0%, rgba(248, 247, 236, 0.78) 46%, rgba(239, 238, 219, 0.74) 100%),
    repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.15) 0px, rgba(255, 255, 255, 0.15) 1px, rgba(91, 90, 67, 0.03) 8px, rgba(91, 90, 67, 0.03) 14px);
  border-color: rgba(117, 114, 86, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 12px 28px rgba(80, 76, 52, 0.08);
}

html[data-page="services"] .workflow-tabs-wrap {
  background: linear-gradient(180deg, rgba(250, 250, 242, 0.76) 0%, rgba(244, 244, 230, 0.66) 100%);
  border-right-color: rgba(112, 109, 84, 0.2);
}

html[data-page="services"] .workflow-tabs-hint {
  color: #5b5f43;
}

html[data-page="services"] .workflow-tab {
  border-color: rgba(108, 106, 84, 0.2);
  background: rgba(252, 252, 246, 0.72);
  color: #212734;
}

html[data-page="services"] .workflow-tab:hover {
  border-color: rgba(118, 116, 91, 0.32);
}

html[data-page="services"] .workflow-tab.is-active {
  border-color: rgba(132, 125, 84, 0.42);
  background: linear-gradient(180deg, rgba(244, 246, 226, 0.9) 0%, rgba(238, 240, 214, 0.8) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.68),
    0 8px 20px rgba(84, 81, 55, 0.1);
}

html[data-page="services"] .workflow-tab.is-active::after {
  border-color: rgba(132, 125, 84, 0.42);
  background: linear-gradient(180deg, rgba(244, 246, 226, 0.9) 0%, rgba(238, 240, 214, 0.8) 100%);
}

html[data-page="services"] .workflow-tab-meta {
  color: #54593f;
}

html[data-page="services"] .workflow-tab-meta em {
  color: #61674c;
}

html[data-page="services"] .workflow-tab-state {
  color: #666f57;
}

html[data-page="services"] .workflow-tab.is-active .workflow-tab-state {
  color: #515a42;
}

html[data-page="services"] .workflow-panels {
  background:
    linear-gradient(170deg, rgba(244, 246, 233, 0.58) 0%, rgba(249, 249, 242, 0.74) 40%, rgba(241, 243, 228, 0.62) 100%),
    repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.14) 0px, rgba(255, 255, 255, 0.14) 1px, rgba(86, 84, 67, 0.028) 8px, rgba(86, 84, 67, 0.028) 14px);
}

html[data-page="services"] .workflow-panel-link {
  color: #495a34;
  border-bottom-color: rgba(73, 90, 52, 0.28);
}

html[data-page="services"] .workflow-panel-link:hover,
html[data-page="services"] .workflow-panel-link:focus-visible {
  color: #3c4c2b;
  border-color: rgba(60, 76, 43, 0.42);
}

html[data-page="services"] .workflow-card {
  background:
    linear-gradient(
      to bottom,
      rgba(250, 249, 238, 0.96) 0%,
      rgba(246, 244, 226, 0.94) 56%,
      rgba(241, 238, 214, 0.92) 100%
    );
  border-color: rgba(132, 122, 72, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.54),
    0 10px 24px rgba(91, 82, 45, 0.08);
}

html[data-page="services"] .workflow-time {
  background:
    linear-gradient(
      to bottom,
      rgba(245, 246, 226, 0.94) 0%,
      rgba(236, 238, 208, 0.92) 100%
    );
  border-color: rgba(134, 126, 78, 0.22);
}

html[data-page="services"] .workflow-card h3,
html[data-page="services"] .workflow-label,
html[data-page="services"] .workflow-card p {
  color: #1c222e;
}

html[data-page="services"] .bottom-cta p {
  color: #111723;
}

html[data-page="services"] .services-custom {
  background:
    linear-gradient(
      to bottom,
      rgba(224, 223, 181, 0.93) 0%,
      rgba(231, 230, 195, 0.92) 36%,
      rgba(239, 237, 216, 0.94) 72%,
      rgba(236, 238, 242, 1) 100%
    ),
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.16) 0px,
      rgba(255, 255, 255, 0.16) 1px,
      rgba(95, 93, 63, 0.04) 8px,
      rgba(95, 93, 63, 0.04) 14px
    );
}

html[data-page="services"] .services-custom-panel {
  border: 1px solid rgba(121, 119, 85, 0.19);
  border-radius: 18px;
  background: rgba(251, 251, 245, 0.82);
  padding: 24px;
}

html[data-page="services"] .services-custom-panel h2 {
  margin-top: 8px;
  color: #151b26;
}

html[data-page="services"] .services-custom-intro {
  margin-top: 12px;
  color: #232c39;
}

html[data-page="services"] .services-chip-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

html[data-page="services"] .services-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(124, 122, 88, 0.23);
  background: rgba(245, 246, 231, 0.9);
  color: #2a3240;
  font-size: 0.92rem;
  font-weight: 600;
}

html[data-page="services"] .services-custom .btn-workflow {
  margin-top: 18px;
}

html[data-page="services"] .services-custom-cta {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

html[data-page="services"] .services-custom-cta .btn-workflow {
  margin-top: 0;
}

html[data-page="services"] .services-support {
  background:
    linear-gradient(
      to bottom,
      rgba(231, 230, 198, 0.9) 0%,
      rgba(238, 236, 214, 0.9) 40%,
      rgba(243, 241, 228, 0.93) 70%,
      rgba(236, 238, 242, 1) 100%
    ),
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.16) 0px,
      rgba(255, 255, 255, 0.16) 1px,
      rgba(90, 91, 70, 0.035) 8px,
      rgba(90, 91, 70, 0.035) 14px
    );
}

html[data-page="services"] .services-support-intro {
  max-width: 980px;
}

html[data-page="services"] .services-support-intro h2 {
  color: #12161f;
}

html[data-page="services"] .services-support-intro p {
  margin-top: 12px;
  max-width: 860px;
  color: #252d3a;
  font-size: 1.03rem;
}

html[data-page="services"] .services-programs {
  margin-top: 26px;
  display: grid;
  gap: 18px;
}

html[data-page="services"] .services-program {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.05fr);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(116, 112, 86, 0.22);
  background:
    linear-gradient(160deg, rgba(248, 248, 236, 0.9) 0%, rgba(240, 240, 225, 0.84) 100%),
    repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.15) 0px, rgba(255, 255, 255, 0.15) 1px, rgba(92, 88, 64, 0.028) 8px, rgba(92, 88, 64, 0.028) 14px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    0 10px 24px rgba(88, 83, 57, 0.08);
}

html[data-page="services"] .services-program-head {
  padding: 24px 22px;
  border-right: 1px solid rgba(116, 112, 86, 0.18);
  background: linear-gradient(180deg, rgba(244, 245, 229, 0.94) 0%, rgba(238, 240, 217, 0.88) 100%);
}

html[data-page="services"] .services-program-head h3 {
  color: #141a24;
}

html[data-page="services"] .services-program-head p {
  color: #293241;
  margin-top: 10px;
}

html[data-page="services"] .services-program-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
}

html[data-page="services"] .services-program-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: #52593f;
  font-weight: 700;
}

html[data-page="services"] .services-list {
  margin: 10px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 7px;
  color: #222d3d;
}

html[data-page="services"] .services-format {
  margin-top: 10px;
  font-weight: 600;
  color: #243045;
}

html[data-page="services"] .services-program-link {
  margin-top: 16px;
  align-self: flex-start;
  color: #4a5934;
  text-decoration: none;
  border-bottom: 1px solid rgba(74, 89, 52, 0.34);
  padding-bottom: 2px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

html[data-page="services"] .services-program-link:hover,
html[data-page="services"] .services-program-link:focus-visible {
  color: #394726;
  border-color: rgba(57, 71, 38, 0.46);
  transform: translateX(2px);
}

html[data-page="home"] .final-cta {
  background:
    linear-gradient(
      180deg,
      rgba(208, 217, 188, 0.86) 0%,
      rgba(214, 221, 194, 0.84) 34%,
      rgba(221, 227, 204, 0.83) 66%,
      rgba(227, 231, 213, 0.84) 84%,
      rgba(233, 236, 219, 0.86) 100%
    ),
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.15) 0px,
      rgba(255, 255, 255, 0.15) 1px,
      rgba(50, 59, 41, 0.03) 8px,
      rgba(50, 59, 41, 0.03) 14px
    );
}

html[data-page="home"] .final-cta .cta-panel {
  background: rgba(247, 250, 241, 0.7);
  border-color: rgba(87, 102, 70, 0.14);
}

.footer {
  background: var(--footer);
  color: #f0f2f5;
  padding: 34px 24px 44px;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, max-content));
  gap: 16px 36px;
}

.footer h4 {
  margin: 0 0 10px;
  font-size: 0.83rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(240, 242, 245, 0.52);
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.footer li,
.footer p,
.footer a {
  color: rgba(240, 242, 245, 0.88);
  text-decoration: none;
}

.subscribe {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.subscribe input {
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(240, 242, 245, 0.3);
  background: rgba(255, 255, 255, 0.06);
  color: #f8fafc;
  padding: 10px 14px;
}

.footer .btn {
  --btn-bg: rgba(255, 255, 255, 0.06);
  --btn-border: rgba(255, 255, 255, 0.6);
  --btn-border-hover: rgba(255, 255, 255, 0.82);
  --btn-text: #f8fafc;
  --btn-hover-text: #ffffff;
  --btn-fill: linear-gradient(110deg, rgba(16, 24, 38, 0.96) 0%, rgba(29, 41, 63, 0.92) 100%);
}

.footer-tagline {
  margin-top: 16px;
  color: #f1f5f9;
  font-weight: 600;
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 720ms ease, transform 720ms ease;
}

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

@media (max-width: 1100px) {
  .nav-links {
    display: none;
  }

  .card-grid,
  .workflow-grid,
  .quote-grid,
  .proof-quotes-grid,
  .stats,
  .process-grid,
  .timeline-tracks,
  .footer-grid,
  .why-grid,
  .cta-grid {
    grid-template-columns: 1fr 1fr;
  }

  .workflow-showcase {
    grid-template-columns: 1fr;
  }

  .workflow-tabs-wrap {
    border-right: 0;
    border-bottom: 1px solid rgba(70, 90, 118, 0.2);
  }

  .workflow-tab.is-active::after {
    display: none;
  }
}

@media (max-width: 760px) {
  .nav-actions {
    display: none;
  }

  main section {
    padding: 86px 18px;
  }

  .hero,
  .page-hero {
    min-height: auto;
    padding-top: 140px;
  }

  .hero-actions,
  .bottom-cta,
  .subscribe {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions {
    width: 100%;
    align-items: center;
  }

  .hero-marquee {
    margin-top: 14px;
  }

  .hero-marquee-track span {
    font-size: 0.82rem;
  }

  .hero .btn {
    width: min(100%, 24.5ch) !important;
    min-width: 0;
    max-width: 24.5ch;
    flex: 0 1 auto;
  }

  .assessment-form {
    padding: 16px;
    gap: 12px;
    border-radius: 14px;
  }

  .assessment-submit {
    width: 100%;
    min-height: 52px;
  }

  .assessment-section {
    padding-top: 0;
  }

  .assessment-hero p {
    max-width: 100%;
  }

  .card-grid,
  .workflow-grid,
  .quote-grid,
  .proof-quotes-grid,
  .stats,
  .process-grid,
  .timeline-tracks,
  .footer-grid,
  .why-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .workflow-tab-title {
    font-size: clamp(1.18rem, 4.8vw, 1.55rem);
  }

  .testimonial-card {
    width: 88vw;
  }

  html[data-page="services"] .services-chip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  html[data-page="services"] .services-program {
    grid-template-columns: 1fr;
  }

  html[data-page="services"] .services-program-head {
    border-right: 0;
    border-bottom: 1px solid rgba(116, 112, 86, 0.18);
  }
}
