:root {
  color-scheme: light;
  --ink: #09110f;
  --ink-2: #18221f;
  --muted: #5a6662;
  --soft: #f4f7f5;
  --soft-2: #edf3f0;
  --line: #d8e0dc;
  --white: #ffffff;
  --charcoal: #07100e;
  --charcoal-2: #101916;
  --green: #17633b;
  --green-2: #0d7a48;
  --blue: #1162bd;
  --red: #d53a2f;
  --orange: #df6c22;
  --shadow: 0 22px 70px rgba(9, 17, 15, 0.14);
  --shadow-strong: 0 28px 90px rgba(0, 0, 0, 0.34);
  --max: 1180px;
  --gutter: clamp(18px, 3vw, 40px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
  border: 0;
  cursor: pointer;
}

p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 0.94rem + 0.28vw, 1.12rem);
  line-height: 1.65;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px var(--gutter);
  color: var(--white);
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled {
  padding-block: 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(216, 224, 220, 0.8);
  box-shadow: 0 10px 30px rgba(9, 17, 15, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  color: #7adc9f;
  background: rgba(255, 255, 255, 0.06);
}

.is-scrolled .brand-mark {
  border-color: var(--line);
  color: var(--green);
  background: var(--soft);
}

.brand-mark svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

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

.brand em {
  margin-top: 1px;
  color: #7adc9f;
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 650;
}

.is-scrolled .brand em {
  color: var(--green);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 30px);
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.78);
}

.nav-links a {
  position: relative;
  padding-block: 8px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: currentColor;
  transition: transform 180ms ease;
}

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

.is-scrolled .nav-links {
  color: var(--muted);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 7px;
  border: 1px solid transparent;
  font-size: 0.96rem;
  font-weight: 760;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-cta,
.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--green-2), var(--green));
  box-shadow: 0 14px 28px rgba(13, 122, 72, 0.25);
}

.header-cta {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.88rem;
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.05);
}

.is-scrolled .button-ghost {
  color: var(--ink);
  border-color: var(--line);
}

.button:hover,
.button:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 94svh;
  overflow: hidden;
  color: var(--white);
  background: var(--charcoal);
  isolation: isolate;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.8;
  filter: saturate(0.95);
  transform: scale(1.01);
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 16, 14, 0.98) 0%, rgba(7, 16, 14, 0.9) 34%, rgba(7, 16, 14, 0.34) 70%, rgba(7, 16, 14, 0.2) 100%),
    linear-gradient(180deg, rgba(7, 16, 14, 0.34), rgba(7, 16, 14, 0.66));
}

.hero::after {
  content: "";
  position: absolute;
  left: -3vw;
  right: -3vw;
  bottom: -7vw;
  height: 14vw;
  min-height: 96px;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background: var(--white);
  z-index: 2;
}

.hero-inner {
  width: min(100%, calc(var(--max) + (var(--gutter) * 2)));
  margin-inline: auto;
  padding: 132px var(--gutter) 150px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.58fr);
  align-items: end;
  gap: clamp(32px, 5vw, 72px);
}

.hero-copy {
  max-width: 740px;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(3.2rem, 7vw, 6.9rem);
  font-weight: 780;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 630px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.08rem, 1.4vw, 1.32rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-panel {
  align-self: end;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(9, 17, 15, 0.62);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(20px);
}

.panel-top {
  display: flex;
  align-items: center;
  gap: 7px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.84rem;
}

.panel-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green-2);
}

.panel-top span:nth-child(2) {
  background: var(--orange);
}

.panel-top span:nth-child(3) {
  background: var(--blue);
}

.panel-top strong {
  margin-left: auto;
  color: var(--white);
  font-size: 0.82rem;
}

.payback-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-top: 14px;
}

.payback-grid article {
  min-height: 112px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.07);
}

.payback-grid b,
.payback-grid span {
  display: block;
}

.payback-grid b {
  font-size: 1rem;
}

.payback-grid span {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  line-height: 1.45;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  transform: translateX(-50%);
  border-radius: 50%;
  color: var(--green);
  background: var(--white);
  box-shadow: 0 12px 35px rgba(9, 17, 15, 0.18);
}

.scroll-cue svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section {
  padding: clamp(76px, 9vw, 132px) var(--gutter);
}

.section-heading {
  width: min(780px, 100%);
  margin: 0 auto clamp(34px, 4.5vw, 58px);
  text-align: center;
}

.section-heading h2,
.money-copy h2,
.process-copy h2,
.training-copy h2,
.contact-copy h2 {
  font-size: clamp(2.1rem, 4.3vw, 4.3rem);
  font-weight: 780;
}

.section-heading p,
.process-copy p,
.training-copy p,
.contact-copy p {
  margin-top: 16px;
}

.services {
  padding-top: clamp(74px, 8vw, 116px);
  background: var(--white);
}

.service-rail {
  width: min(var(--max), 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-item {
  min-width: 0;
  padding: 30px clamp(15px, 2vw, 25px);
  text-align: center;
}

.service-item + .service-item {
  border-left: 1px solid var(--line);
}

.line-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  border-radius: 12px;
  background: var(--soft);
}

.line-icon svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.line-icon.green {
  color: var(--green);
}

.line-icon.blue {
  color: var(--blue);
}

.line-icon.orange {
  color: var(--orange);
}

.line-icon.red {
  color: var(--red);
}

.service-item h3 {
  min-height: 45px;
  font-size: 1.08rem;
  font-weight: 760;
  line-height: 1.2;
}

.service-item p {
  margin-top: 13px;
  font-size: 0.92rem;
  line-height: 1.5;
}

.ai-assistants {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(23, 99, 59, 0.34), rgba(17, 98, 189, 0.18) 45%, rgba(213, 58, 47, 0.12)),
    var(--charcoal);
}

.assistants-inner {
  width: min(var(--max), 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(330px, 0.72fr);
  align-items: center;
  gap: clamp(32px, 6vw, 86px);
}

.assistants-copy h2 {
  max-width: 780px;
  font-size: clamp(2.3rem, 5vw, 5rem);
  font-weight: 780;
}

.assistants-copy p {
  max-width: 740px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.76);
}

.assistants-copy .button {
  margin-top: 30px;
}

.assistants-board {
  display: grid;
  gap: 18px;
}

.assistant-window {
  position: relative;
  padding: 48px 18px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(18px);
}

.assistant-window .window-bar {
  height: 28px;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.assistant-line {
  display: grid;
  gap: 8px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.assistant-line:first-of-type {
  padding-top: 0;
}

.assistant-line:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.assistant-line span {
  color: #7adc9f;
  font-size: 0.82rem;
  font-weight: 840;
}

.assistant-line strong {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.45;
}

.assistant-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.assistant-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.88rem;
  font-weight: 740;
}

.money {
  background: linear-gradient(105deg, var(--soft) 0%, #fbfcfc 44%, #eef5f2 100%);
}

.money-inner {
  width: min(var(--max), 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.92fr) minmax(230px, 0.58fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}

.money-copy h2 {
  max-width: 520px;
}

.money-copy p {
  margin-top: 20px;
  max-width: 530px;
}

.money-list {
  display: grid;
  gap: 18px;
  padding-left: clamp(0px, 4vw, 48px);
  border-left: 1px solid var(--line);
}

.money-list div {
  display: grid;
  gap: 6px;
  padding-left: 28px;
  position: relative;
}

.money-list div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  border: 2px solid var(--green);
  border-radius: 50%;
  background: var(--white);
}

.money-list span {
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 820;
}

.money-list strong {
  font-size: 1.02rem;
  line-height: 1.4;
}

.margin-card {
  padding: 18px 18px 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.74);
}

.margin-card svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.margin-card path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.margin-card .axis {
  stroke: var(--ink);
  stroke-width: 2;
}

.margin-card .waste {
  stroke: var(--red);
  stroke-width: 5;
}

.margin-card .gain {
  stroke: var(--green);
  stroke-width: 5;
}

.margin-card circle {
  fill: var(--white);
  stroke: currentColor;
  stroke-width: 4;
}

.margin-card circle:first-of-type {
  color: var(--red);
}

.margin-card circle:last-of-type {
  color: var(--green);
}

.margin-card p {
  margin-top: 8px;
  color: var(--ink-2);
  font-size: 0.94rem;
}

.examples {
  background: var(--white);
}

.example-grid {
  width: min(var(--max), 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.mini-tool {
  padding-bottom: 5px;
}

.tool-window {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 174px;
  padding: 30px 18px 18px;
  border: 1px solid #bfc9c4;
  border-radius: 8px;
  background: #fbfcfc;
  box-shadow: 0 12px 32px rgba(9, 17, 15, 0.08);
  overflow: hidden;
}

.window-bar {
  position: absolute;
  inset: 0 0 auto;
  display: flex;
  gap: 6px;
  height: 22px;
  padding: 8px 10px;
  border-bottom: 1px solid #e1e7e4;
  background: #f3f6f4;
}

.window-bar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #bac5bf;
}

.table-lines {
  display: grid;
  grid-template-columns: 1.2fr 0.75fr 0.9fr 0.6fr;
  gap: 10px 9px;
}

.table-lines i,
.form-line,
.submit-line,
.prompt-line {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: #d8e0dc;
}

.table-lines i:nth-child(4n),
.table-lines i:nth-child(5),
.status.red {
  background: rgba(213, 58, 47, 0.64);
}

.table-lines i:nth-child(2n),
.status.green {
  background: rgba(23, 99, 59, 0.64);
}

.invoice label {
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 780;
}

.invoice .form-line {
  margin-top: 12px;
}

.invoice .wide {
  width: 92%;
}

.invoice .form-line:not(.wide) {
  width: 70%;
}

.submit-line {
  width: 62%;
  height: 28px;
  margin-top: 17px;
  border-radius: 5px;
  background: var(--blue);
}

.checks b,
.checks em {
  display: block;
  height: 17px;
  margin-top: 15px;
  padding-left: 28px;
  position: relative;
  font-style: normal;
}

.checks b::before,
.checks em::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 15px;
  height: 15px;
  border: 1px solid #a5b0aa;
  border-radius: 3px;
}

.checks b::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  width: 8px;
  height: 5px;
  transform: rotate(-45deg);
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
}

.checks b,
.checks em {
  background: linear-gradient(90deg, #d8e0dc 0 70%, transparent 70%);
}

.bars {
  display: flex;
  align-items: end;
  gap: 11px;
}

.bars > div:not(.window-bar) {
  width: 16%;
  border-radius: 4px 4px 0 0;
  background: var(--blue);
}

.bars > div:nth-child(2) {
  height: 54px;
  background: var(--green);
}

.bars > div:nth-child(3) {
  height: 86px;
}

.bars > div:nth-child(4) {
  height: 62px;
  background: #8f9c96;
}

.bars > div:nth-child(5) {
  height: 106px;
}

.bars > div:nth-child(6) {
  height: 74px;
  background: var(--red);
}

.reorder {
  gap: 13px;
}

.status {
  height: 20px;
  border-radius: 999px;
}

.status.orange {
  background: rgba(223, 108, 34, 0.64);
}

.prompt q {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 720;
  line-height: 1.35;
  quotes: none;
}

.prompt-line {
  width: 74%;
  height: 32px;
  margin-top: 24px;
  background: var(--green);
}

.mini-tool h3 {
  margin-top: 18px;
  font-size: 1.18rem;
}

.mini-tool p {
  margin-top: 8px;
  font-size: 0.96rem;
  line-height: 1.52;
}

.process {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
  padding-inline: 0;
  border-top: 1px solid var(--line);
}

.process-copy {
  max-width: 400px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-steps article {
  padding: 24px 0 0;
  border-top: 3px solid var(--line);
}

.process-steps article:nth-child(1) {
  border-color: var(--green);
}

.process-steps article:nth-child(2) {
  border-color: var(--blue);
}

.process-steps article:nth-child(3) {
  border-color: var(--orange);
}

.process-steps article:nth-child(4) {
  border-color: var(--red);
}

.process-steps span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.process-steps h3 {
  margin-top: 18px;
  font-size: 1.18rem;
  line-height: 1.15;
}

.process-steps p {
  margin-top: 12px;
  font-size: 0.94rem;
  line-height: 1.52;
}

.pricing {
  background: var(--soft);
}

.pricing-grid {
  width: min(var(--max), 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px;
  border: 2px solid var(--green);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(9, 17, 15, 0.08);
}

.price-card.standard {
  border-color: var(--blue);
  transform: translateY(-14px);
}

.price-card.premium {
  border-color: var(--red);
}

.price-top {
  text-align: center;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.price-top span {
  color: var(--green);
  font-weight: 830;
}

.standard .price-top span {
  color: var(--blue);
}

.premium .price-top span {
  color: var(--red);
}

.price-top strong {
  display: block;
  margin-top: 6px;
  font-size: clamp(3rem, 5vw, 4.6rem);
  line-height: 1;
}

.price-top p {
  width: min(310px, 100%);
  margin: 10px auto 0;
  font-size: 0.96rem;
}

.price-card ul {
  display: grid;
  gap: 13px;
  margin: 24px 0 28px;
}

.price-card li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-2);
  line-height: 1.4;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 7px;
  width: 11px;
  height: 6px;
  transform: rotate(-45deg);
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
}

.standard li::before {
  border-color: var(--blue);
}

.premium li::before {
  border-color: var(--red);
}

.button-price {
  width: 100%;
  margin-top: auto;
  color: var(--white);
  background: var(--green);
}

.standard .button-price {
  background: var(--blue);
}

.premium .button-price {
  background: var(--red);
}

.scope-note {
  width: min(760px, 100%);
  margin: 32px auto 0;
  color: var(--ink-2);
  text-align: center;
  font-weight: 650;
}

.training {
  display: grid;
  grid-template-columns: minmax(240px, 0.6fr) minmax(0, 0.9fr);
  align-items: center;
  gap: clamp(28px, 7vw, 94px);
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
  padding-inline: 0;
}

.training-visual {
  display: grid;
  place-items: center;
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(23, 99, 59, 0.07), rgba(17, 98, 189, 0.06)),
    var(--soft);
}

.training-visual svg {
  width: min(280px, 80%);
  color: var(--green);
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.training-copy {
  max-width: 680px;
}

.training-copy ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
  margin-top: 28px;
}

.training-copy li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-2);
  font-weight: 650;
}

.training-copy li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 6px;
  width: 12px;
  height: 12px;
  border: 2px solid var(--green);
  border-radius: 50%;
}

.contact {
  padding: clamp(70px, 8vw, 108px) var(--gutter);
  background: linear-gradient(180deg, var(--soft) 0, var(--white) 100%);
}

.contact-card {
  width: min(var(--max), 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.36fr);
  align-items: center;
  gap: clamp(28px, 6vw, 86px);
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-copy {
  max-width: 760px;
}

.contact-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 22px;
  margin-top: 30px;
}

.quiet-link {
  color: var(--muted);
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}

.profile {
  margin: 0;
}

.profile img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: 50% 32%;
  border-radius: 12px;
  filter: saturate(0.9);
}

.profile figcaption {
  margin-top: 14px;
}

.profile strong,
.profile span {
  display: block;
}

.profile strong {
  font-size: 1rem;
}

.profile span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px var(--gutter);
  color: rgba(255, 255, 255, 0.78);
  background: var(--charcoal);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: var(--white);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer span,
.site-footer a {
  margin-top: 5px;
  font-size: 0.92rem;
}

.contact-modal {
  width: min(720px, calc(100% - 32px));
  max-height: calc(100svh - 28px);
  padding: 0;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: var(--ink);
  overflow: auto;
}

.contact-modal::backdrop {
  background: rgba(7, 16, 14, 0.72);
  backdrop-filter: blur(8px);
}

.modal-card {
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-strong);
}

.modal-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: start;
}

.modal-top h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1;
}

.modal-top p {
  margin-top: 12px;
}

.modal-close {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--ink);
}

.modal-close svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
}

.bot-field {
  display: none;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

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

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

.form-grid span {
  color: var(--ink-2);
  font-size: 0.9rem;
  font-weight: 760;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid #bfc9c4;
  border-radius: 8px;
  background: #fbfcfc;
  color: var(--ink);
  outline: none;
}

.form-grid input,
.form-grid select {
  min-height: 46px;
  padding: 0 12px;
}

.form-grid textarea {
  min-height: 132px;
  padding: 12px;
  resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(23, 99, 59, 0.12);
}

.modal-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 22px;
  margin-top: 24px;
}

.modal-actions .button {
  min-width: 190px;
}

.thanks-page {
  min-height: 100svh;
  background:
    linear-gradient(90deg, rgba(7, 16, 14, 0.96), rgba(7, 16, 14, 0.74)),
    url("/assets/img/operations-hero.png") center / cover;
}

.thanks-shell {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.thanks-card {
  width: min(720px, 100%);
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-strong);
}

.thanks-brand {
  color: var(--ink);
}

.thanks-brand .brand-mark {
  border-color: var(--line);
  color: var(--green);
  background: var(--soft);
}

.thanks-brand em {
  color: var(--green);
}

.thanks-card h1 {
  margin-top: 34px;
  max-width: 620px;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
}

.thanks-card p {
  margin-top: 18px;
  max-width: 560px;
}

.thanks-card .button {
  margin-top: 30px;
}

.reveal,
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

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

@media (prefers-reduced-motion: no-preference) {
  .hero-panel {
    animation: float-panel 7s ease-in-out infinite;
  }

  .scroll-cue {
    animation: soft-bounce 2.4s ease-in-out infinite;
  }
}

@keyframes float-panel {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes soft-bounce {
  0%,
  100% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, -7px);
  }
}

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

  .hero-inner {
    grid-template-columns: 1fr;
    align-items: start;
    padding-top: 128px;
  }

  .hero-panel {
    width: min(620px, 100%);
  }

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

  .service-item:nth-child(4) {
    border-left: 0;
  }

  .service-item:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }

  .money-inner,
  .assistants-inner,
  .process,
  .training {
    grid-template-columns: 1fr;
  }

  .money-list {
    padding-left: 0;
    border-left: 0;
  }

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

@media (max-width: 820px) {
  .site-header {
    padding-block: 14px;
  }

  .brand {
    min-width: auto;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

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

  .brand em {
    font-size: 0.72rem;
  }

  .header-cta {
    min-height: 38px;
    padding-inline: 12px;
    font-size: 0.78rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-bg img {
    object-position: 68% center;
    opacity: 0.54;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 16, 14, 0.98) 0%, rgba(7, 16, 14, 0.9) 60%, rgba(7, 16, 14, 0.54) 100%),
      linear-gradient(180deg, rgba(7, 16, 14, 0.48), rgba(7, 16, 14, 0.74));
  }

  .hero-inner {
    padding-bottom: 132px;
  }

  .hero h1 {
    font-size: clamp(3rem, 13vw, 5.7rem);
  }

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

  .button {
    width: 100%;
  }

  .payback-grid,
  .example-grid,
  .pricing-grid,
  .training-copy ul,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .price-card.standard {
    transform: none;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 640px) {
  p {
    font-size: 1rem;
  }

  .site-header {
    gap: 12px;
  }

  .brand span:last-child {
    max-width: 150px;
  }

  .header-cta {
    max-width: 138px;
    text-align: center;
    white-space: normal;
    line-height: 1.15;
  }

  .hero-inner {
    padding-inline: 18px;
  }

  .hero-copy p {
    font-size: 1.02rem;
  }

  .section {
    padding-inline: 18px;
  }

  .assistants-inner {
    gap: 28px;
  }

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

  .assistant-window {
    padding: 44px 15px 16px;
  }

  .service-rail {
    grid-template-columns: 1fr;
    border-top: 0;
  }

  .service-item {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 0 16px;
    text-align: left;
    border-top: 1px solid var(--line);
  }

  .service-item + .service-item,
  .service-item:nth-child(4) {
    border-left: 0;
  }

  .line-icon {
    grid-row: span 2;
    margin: 0;
  }

  .service-item h3 {
    min-height: 0;
  }

  .process,
  .training {
    width: calc(100% - 36px);
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 22px;
  }

  .modal-card {
    padding: 20px;
  }

  .contact-modal {
    width: calc(100% - 24px);
    max-height: calc(100svh - 24px);
  }

  .modal-top {
    gap: 12px;
  }

  .modal-top h2 {
    font-size: 2rem;
  }

  .modal-top p {
    margin-top: 10px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .modal-close {
    width: 40px;
    height: 40px;
  }

  .form-grid {
    gap: 12px;
    margin-top: 20px;
  }

  .form-grid input,
  .form-grid select {
    min-height: 42px;
  }

  .form-grid textarea {
    min-height: 92px;
  }

  .modal-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    margin-top: 18px;
  }

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

  .modal-actions .quiet-link {
    align-self: flex-start;
  }
}

@media (max-width: 430px) {
  .brand-mark {
    display: none;
  }

  .brand strong {
    max-width: 136px;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero-panel {
    padding: 14px;
  }
}
