:root {
  color-scheme: light;
  /* MG foundations: warm editorial canvas, graphite structure, focused orange accent. */
  --color-canvas: #f7f3eb;
  --color-canvas-soft: #fbf8f2;
  --color-surface: #fffdf8;
  --color-surface-muted: #eee8dd;
  --color-ink: #171713;
  --color-graphite: #22221f;
  --color-muted: #66635c;
  --color-muted-light: #8f8a80;
  --color-border: #ddd6ca;
  --color-border-strong: #bdb4a6;
  --color-accent: #f26419;
  --color-accent-hover: #db4f0c;
  --color-accent-soft: #ffeadb;
  --color-focus: #b83c00;
  --color-white: #fffdf8;

  /* Backwards-compatible aliases keep the current sections stable during the staged redesign. */
  --bg: var(--color-canvas);
  --bg-cool: var(--color-canvas-soft);
  --surface: var(--color-surface);
  --surface-soft: var(--color-canvas-soft);
  --ink: var(--color-ink);
  --heading: var(--color-ink);
  --navy: var(--color-graphite);
  --muted: var(--color-muted);
  --muted-light: var(--color-surface-muted);
  --line: var(--color-border);
  --line-strong: var(--color-border-strong);
  --violet: var(--color-accent);
  --violet-hover: var(--color-accent-hover);
  --violet-soft: var(--color-accent-soft);
  --teal: #6d685f;
  --teal-soft: #f0ebe2;
  --orange: var(--color-accent);
  --orange-hover: var(--color-accent-hover);
  --white: var(--color-white);

  --shadow-xs: 0 1px 2px rgba(23, 23, 19, 0.05);
  --shadow-sm: 0 10px 30px rgba(23, 23, 19, 0.07);
  --shadow-md: 0 24px 64px rgba(23, 23, 19, 0.11);
  --shadow: var(--shadow-md);
  --shadow-soft: var(--shadow-sm);
  --radius-xs: 3px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius: var(--radius-sm);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-section: clamp(4.75rem, 8vw, 7.5rem);
  --container: 1240px;
  --container-narrow: 760px;

  --font-body: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: "Archivo", "Arial Narrow", ui-sans-serif, system-ui, sans-serif;
  --type-display: clamp(3.35rem, 7.5vw, 7rem);
  --type-h1: clamp(3rem, 6vw, 5.75rem);
  --type-h2: clamp(2.35rem, 4.8vw, 4.5rem);
  --type-h3: clamp(1.25rem, 1.8vw, 1.55rem);
  --type-body-lg: clamp(1.05rem, 1.2vw, 1.2rem);
  --type-body: 1rem;
  --type-small: 0.875rem;
  --type-label: 0.75rem;
  font-family: var(--font-body);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--type-body);
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(180deg, var(--color-surface) 0%, var(--color-canvas) 58%, var(--color-surface) 100%);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.7rem 0.9rem;
  background: var(--color-ink);
  color: var(--color-white);
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
  transform: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section {
  padding: var(--space-section) 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(221, 214, 202, 0.88);
  background: rgba(255, 253, 248, 0.9);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--heading);
  font-family: var(--font-heading);
}

.brand-mark {
  display: block;
  width: 52px;
  height: 34px;
  flex: 0 0 auto;
}

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

.brand-wordmark {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.brand-wordmark strong {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.035em;
}

.brand-wordmark small {
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.015em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #4f4b44;
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a:not(.button) {
  transition: color 180ms ease;
}

.nav-links a:not(.button):hover {
  color: var(--violet);
}

.nav-links a:not(.button):focus-visible,
.brand:focus-visible,
.footer-links a:focus-visible {
  border-radius: var(--radius-xs);
  outline: 3px solid rgba(242, 100, 25, 0.28);
  outline-offset: 5px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 3px auto;
  border-radius: 99px;
  background: var(--heading);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-accent);
  border-radius: var(--radius);
  padding: 12px 18px;
  background: var(--color-accent);
  color: var(--color-ink);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.15;
  box-shadow: 0 12px 26px rgba(177, 62, 5, 0.17);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: var(--color-accent-hover);
  background: var(--color-accent-hover);
  color: var(--color-white);
  box-shadow: 0 17px 36px rgba(177, 62, 5, 0.23);
}

.button:focus-visible,
.nav-toggle:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(242, 100, 25, 0.32);
  outline-offset: 3px;
}

.button:disabled,
.button[aria-disabled="true"] {
  border-color: var(--color-border);
  background: var(--color-surface-muted);
  color: var(--color-muted-light);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.button-small {
  min-height: 42px;
  padding: 10px 14px;
  font-size: 0.9rem;
}

.button-secondary {
  border-color: var(--color-graphite);
  background: transparent;
  color: var(--heading);
  box-shadow: none;
}

.button-secondary:hover,
.button-light:hover {
  border-color: var(--color-graphite);
  background: var(--color-graphite);
  color: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.button-dark {
  border-color: rgba(255, 253, 248, 0.42);
  background: transparent;
  color: var(--color-white);
  box-shadow: none;
}

.button-dark:hover {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: var(--color-ink);
}

.button-light {
  border-color: var(--line-strong);
  background: var(--white);
  color: var(--heading);
  box-shadow: var(--shadow-sm);
}

/* Reusable foundations for the section-by-section redesign. */
.container-narrow {
  width: min(100% - 32px, var(--container-narrow));
  margin-inline: auto;
}

.section--compact {
  padding-block: clamp(3rem, 6vw, 5rem);
}

.display {
  max-width: 13ch;
  font-family: var(--font-heading);
  font-size: var(--type-display);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.text-large {
  font-size: var(--type-body-lg);
}

.text-small {
  font-size: var(--type-small);
}

.surface {
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}

.surface-muted {
  background: var(--color-canvas-soft);
}

.surface-dark {
  background: var(--color-graphite);
  color: var(--color-white);
}

.ui-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-accent);
}

.ui-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card--case-study,
.card--feature,
.card--pricing,
.card--testimonial,
.card--form,
.card--dark {
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}

.card--case-study {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.card--feature {
  border-radius: var(--radius-sm);
  box-shadow: none;
}

.card--pricing {
  border-top: 3px solid var(--color-graphite);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.card--testimonial {
  border-left: 3px solid var(--color-accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.card--form {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.card--dark {
  border-color: rgba(255, 253, 248, 0.14);
  border-radius: var(--radius-sm);
  background: var(--color-graphite);
  color: var(--color-white);
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 62vh;
  align-items: center;
  padding: 28px 0 34px;
  background:
    radial-gradient(circle at 82% 18%, rgba(242, 100, 25, 0.16), transparent 30%),
    radial-gradient(circle at 58% 74%, rgba(242, 100, 25, 0.12), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #fbf8f2 58%, #f7f3eb 100%);
  color: var(--ink);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 18%;
  background: linear-gradient(180deg, transparent, rgba(248, 247, 243, 0.9));
  content: "";
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 54fr) minmax(360px, 46fr);
  align-items: center;
  gap: 38px;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--color-focus);
  font-size: var(--type-label);
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 800px;
  margin-bottom: 16px;
  color: var(--heading);
  font-size: clamp(2.65rem, 4.4vw, 4.85rem);
  line-height: 0.96;
}

.hero h1 span {
  display: inline;
}

@media (min-width: 981px) {
  .hero h1 span {
    display: block;
  }
}

h2 {
  margin-bottom: 18px;
  color: var(--heading);
  font-size: var(--type-h2);
  line-height: 0.98;
}

h3 {
  margin-bottom: 10px;
  color: var(--heading);
  font-size: var(--type-h3);
  line-height: 1.12;
}

p {
  color: var(--muted);
}

.hero-lead {
  max-width: 700px;
  margin-bottom: 16px;
  color: #5f5b54;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 700px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  border: 1px solid rgba(242, 100, 25, 0.16);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.84);
  color: #4f4b44;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(23, 23, 19, 0.05);
}

.hero-mockup {
  position: relative;
  width: min(100%, 510px);
  justify-self: end;
  animation: demoFloat 6s ease-in-out infinite;
}

.hero-mockup::before {
  position: absolute;
  inset: 8% 3% auto auto;
  width: 76%;
  height: 78%;
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(242, 100, 25, 0.25), rgba(49, 65, 105, 0.12));
  filter: blur(42px);
  content: "";
}

.live-system-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 24px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 34px 86px rgba(23, 23, 19, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(18px);
}

.live-system-header,
.incoming-lead,
.system-success {
  display: flex;
  align-items: center;
}

.live-system-header {
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 2px 2px 15px;
}

.live-system-header div { display: flex; align-items: center; gap: 9px; }
.live-system-header strong { color: var(--heading); font-family: var(--font-heading); font-size: .86rem; }
.live-system-header > span { color: #7d8799; font-size: .58rem; font-weight: 800; letter-spacing: .09em; }
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: #34d399; box-shadow: 0 0 0 5px rgba(52, 211, 153, .12); }

.incoming-lead {
  gap: 12px;
  margin-top: 18px;
  border: 1px solid rgba(242, 100, 25, .14);
  border-radius: 15px;
  padding: 14px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(23, 23, 19, .07);
  animation: leadArrive 8.4s ease-in-out infinite;
}

.lead-avatar { display: grid; width: 40px; height: 40px; flex: 0 0 40px; place-items: center; border-radius: 12px; background: var(--violet-soft); color: var(--violet); font-size: .7rem; font-weight: 900; }
.incoming-lead div { display: grid; gap: 2px; }
.incoming-lead small, .system-success small { color: var(--muted); font-size: .63rem; font-weight: 700; }
.incoming-lead strong { color: var(--heading); font-size: .8rem; }
.lead-time { margin-left: auto; color: var(--teal); font-size: .62rem; font-weight: 800; }

.system-route { display: grid; grid-template-columns: 1fr 22px 1fr 22px 1fr; align-items: center; gap: 4px; margin: 18px 0; }
.system-route > i { position: relative; height: 2px; overflow: hidden; background: #e4e7ee; }
.system-route > i::after { position: absolute; inset: 0; background: linear-gradient(90deg, var(--violet), var(--teal)); content: ""; transform: translateX(-100%); animation: routeLine 8.4s ease-in-out infinite; }
.system-route > i:nth-of-type(2)::after { animation-delay: .55s; }
.route-step { display: grid; min-width: 0; gap: 2px; border: 1px solid #e7e9ef; border-radius: 13px; padding: 12px 8px; background: #fff; text-align: center; transition: border-color .2s ease, box-shadow .2s ease; }
.route-step .route-icon { display: grid; width: 31px; height: 31px; margin: 0 auto 6px; place-items: center; border: 1px solid rgba(242, 100, 25, .14); border-radius: 9px; background: linear-gradient(145deg, #fff, #fff3e8); color: var(--violet); box-shadow: 0 6px 14px rgba(23, 23, 19, .07); }
.route-step .route-icon svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.route-step.route-lead .route-icon { border-color: rgba(242, 100, 25, .16); background: linear-gradient(145deg, #fff, #fff3e8); color: #c74b0d; }
.route-step.route-email .route-icon { border-color: rgba(109, 104, 95, .17); background: linear-gradient(145deg, #fff, #f1ede5); color: var(--teal); }
.route-step strong { color: var(--heading); font-size: .72rem; }
.route-step small { color: #8a94a6; font-size: .57rem; }
.route-form { animation: routeStepOne 8.4s ease-in-out infinite; }
.route-lead { animation: routeStepTwo 8.4s ease-in-out infinite; }
.route-email { animation: routeStepThree 8.4s ease-in-out infinite; }

.system-success { gap: 11px; border-radius: 14px; padding: 13px 14px; background: linear-gradient(135deg, rgba(109, 104, 95,.1), rgba(242, 100, 25,.08)); opacity: 0; animation: successReveal 8.4s ease-in-out infinite; }
.system-success > span { display: grid; width: 31px; height: 31px; place-items: center; border-radius: 50%; background: var(--teal); color: #fff; font-weight: 900; }
.system-success div { display: grid; gap: 1px; }
.system-success strong { color: var(--color-graphite); font-size: .75rem; }

@keyframes leadArrive { 0%, 6% { opacity: 0; transform: translateY(8px); } 14%, 88% { opacity: 1; transform: none; } 96%, 100% { opacity: 0; } }
@keyframes routeLine { 0%, 24% { transform: translateX(-100%); } 40%, 88% { transform: none; } 96%, 100% { transform: translateX(100%); } }
@keyframes routeStepOne { 0%, 14% { opacity: .45; } 22%, 88% { opacity: 1; border-color: rgba(242, 100, 25,.42); box-shadow: 0 8px 20px rgba(242, 100, 25,.1); } 96%, 100% { opacity: .45; } }
@keyframes routeStepTwo { 0%, 34% { opacity: .45; } 43%, 88% { opacity: 1; border-color: rgba(242, 100, 25,.42); box-shadow: 0 8px 20px rgba(242, 100, 25,.1); } 96%, 100% { opacity: .45; } }
@keyframes routeStepThree { 0%, 54% { opacity: .45; } 63%, 88% { opacity: 1; border-color: rgba(109, 104, 95,.48); box-shadow: 0 8px 20px rgba(109, 104, 95,.1); } 96%, 100% { opacity: .45; } }
@keyframes successReveal { 0%, 67% { opacity: 0; transform: translateY(6px); } 76%, 90% { opacity: 1; transform: none; } 100% { opacity: 0; } }

.chat-demo {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 34px 86px rgba(23, 23, 19, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.chat-demo-header {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 72px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 13px 16px;
  background: linear-gradient(135deg, #171713, #22221f 72%, #3a322d);
  color: var(--white);
}

.chat-brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(242, 100, 25, 0.34));
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
}

.chat-demo-header > div:nth-child(2) {
  display: grid;
  gap: 1px;
}

.chat-demo-header strong {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  line-height: 1.25;
}

.chat-demo-header span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.68rem;
  font-weight: 700;
}

.chat-demo-header span i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 4px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.12);
}

.chat-demo-header .chat-demo-label {
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 5px 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
}

.chat-demo-control {
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, .09);
  color: rgba(255, 255, 255, .8);
  font: inherit;
  font-size: .61rem;
  font-weight: 800;
  cursor: pointer;
}

.chat-demo-body {
  height: 412px;
  padding: 18px;
  background:
    radial-gradient(circle at 96% 5%, rgba(242, 100, 25, 0.09), transparent 32%),
    linear-gradient(180deg, rgba(248, 250, 252, 0.96), rgba(255, 255, 255, 0.98));
  opacity: 0;
  transform: translateY(7px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.chat-demo-body.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.chat-scene {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.chat-bubble-ai,
.chat-bubble-user {
  max-width: 86%;
  border-radius: 17px 17px 17px 5px;
  padding: 13px 15px;
  color: var(--color-graphite);
  font-size: 0.83rem;
  font-weight: 650;
  line-height: 1.45;
  box-shadow: 0 9px 22px rgba(23, 23, 19, 0.08);
}

.chat-bubble-ai {
  border: 1px solid rgba(242, 100, 25, 0.13);
  background: var(--white);
}

.chat-bubble-ai::before {
  display: inline-grid;
  width: 21px;
  height: 21px;
  margin-right: 7px;
  place-items: center;
  border-radius: 6px;
  background: var(--violet-soft);
  color: var(--violet);
  content: "✦";
  font-size: 0.68rem;
  vertical-align: -1px;
}

.quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}

.quick-replies span {
  border: 1px solid rgba(242, 100, 25, 0.18);
  border-radius: 999px;
  padding: 8px 10px;
  background: var(--white);
  color: var(--color-focus);
  font-size: 0.68rem;
  font-weight: 800;
}

.quick-replies .is-selected {
  animation: replySelect 1.7s ease forwards;
}

.chat-bubble-ai.compact {
  max-width: 96%;
  padding: 10px 12px;
  font-size: 0.74rem;
}

.demo-form {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 10px;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 12px;
  background: var(--white);
  box-shadow: 0 14px 28px rgba(23, 23, 19, 0.08);
}

.demo-form > div {
  overflow: hidden;
  min-width: 0;
  border: 1px solid #e7e9ef;
  border-radius: 8px;
  padding: 7px 9px;
}

.demo-form span,
.demo-form strong {
  display: block;
}

.demo-form div span {
  color: #8a94a6;
  font-size: 0.57rem;
  font-weight: 700;
}

.demo-form strong {
  overflow: hidden;
  color: #4f4b44;
  font-size: 0.68rem;
  line-height: 1.35;
  opacity: 0;
  white-space: nowrap;
  animation: fieldFill 0.38s ease var(--delay) forwards;
}

.demo-form button {
  grid-column: 1 / -1;
  min-height: 35px;
  border: 0;
  border-radius: 8px;
  background: var(--violet);
  color: var(--color-ink);
  font-size: 0.72rem;
  font-weight: 800;
  animation: sendClick 2.35s ease forwards;
}

.automation-checks {
  display: grid;
  width: 100%;
  gap: 9px;
  margin-top: 14px;
}

.automation-checks div {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(109, 104, 95, 0.15);
  border-radius: 11px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.92);
  opacity: 0;
  transform: translateY(7px);
  animation: checkIn 0.34s ease var(--delay) forwards;
}

.automation-checks span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-soft);
  color: #0f766e;
  font-size: 0.7rem;
  font-weight: 900;
}

.automation-checks strong {
  color: #4f4b44;
  font-size: 0.73rem;
}

.email-demo-card {
  width: 100%;
  margin-top: 13px;
  border: 1px solid rgba(242, 100, 25, 0.15);
  border-radius: 15px;
  padding: 14px;
  background: var(--white);
  box-shadow: 0 16px 32px rgba(23, 23, 19, 0.09);
}

.email-demo-card > div {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.email-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border-radius: 9px;
  background: var(--violet-soft);
  color: var(--violet);
}

.email-demo-card div div {
  display: grid;
  min-width: 0;
}

.email-demo-card small {
  color: #8a94a6;
  font-size: 0.6rem;
}

.email-demo-card strong {
  color: var(--heading);
  font-size: 0.72rem;
}

.email-demo-card i {
  margin-left: auto;
  border-radius: 999px;
  padding: 4px 7px;
  background: var(--teal-soft);
  color: #0f766e;
  font-size: 0.56rem;
  font-style: normal;
  font-weight: 800;
}

.email-demo-card p {
  margin: 12px 0 4px;
  font-size: 0.7rem;
}

.qa-scene {
  justify-content: flex-start;
}

.chat-bubble-user {
  align-self: flex-end;
  margin-top: 9px;
  border-radius: 17px 17px 5px 17px;
  background: linear-gradient(135deg, var(--violet), #b83c00);
  color: var(--white);
  font-size: 0.67rem;
  opacity: 0;
  animation: bubbleIn 0.3s ease 0.18s forwards;
}

.chat-bubble-ai.reply {
  margin-top: 6px;
  padding: 8px 10px;
  font-size: 0.66rem;
  opacity: 0;
  animation: bubbleIn 0.3s ease 0.46s forwards;
}

.chat-bubble-user.second { animation-delay: 0.78s; }
.chat-bubble-ai.reply.second { animation-delay: 1.06s; }

.result-pill {
  margin-bottom: 11px;
  border-radius: 999px;
  padding: 6px 9px;
  background: var(--teal-soft);
  color: #0f766e;
  font-size: 0.62rem;
  font-weight: 800;
}

.chat-demo-actions {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 14px;
}

.chat-demo-actions a {
  display: grid;
  min-height: 43px;
  place-items: center;
  border: 1px solid var(--orange);
  border-radius: 9px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
}

.chat-demo-actions a:last-child {
  border-color: rgba(242, 100, 25, 0.2);
  background: var(--white);
  color: #5146c7;
}

.chat-demo-progress {
  height: 3px;
  background: rgba(242, 100, 25, 0.08);
}

.chat-demo-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--violet), var(--teal));
}

@keyframes demoFloat { 50% { transform: translateY(-7px); } }
@keyframes chatProgress { to { width: 100%; } }
@keyframes fieldFill { to { opacity: 1; } }
@keyframes checkIn { to { opacity: 1; transform: translateY(0); } }
@keyframes bubbleIn { to { opacity: 1; transform: translateY(0); } }
@keyframes replySelect { 55%, 100% { border-color: var(--violet); background: var(--violet); color: var(--color-ink); } }
@keyframes sendClick { 70%, 86% { transform: scale(.97); background: var(--orange-hover); } }

.automation-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(242, 100, 25, 0.1), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #fbf8f2 100%);
  padding: 46px 0 42px;
}

.automation-section::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(23, 23, 19, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 23, 19, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  pointer-events: none;
}

.automation-section > .container {
  position: relative;
  z-index: 1;
}

.automation-heading {
  max-width: 840px;
  margin-bottom: 20px;
}

.automation-heading h2 {
  max-width: 760px;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.12;
}

.automation-heading p {
  max-width: 760px;
  font-size: 1rem;
}

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

.automation-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.automation-card:hover {
  transform: translateY(-3px);
  border-color: rgba(242, 100, 25, 0.28);
  box-shadow: var(--shadow);
}

.automation-card h3 {
  margin-top: 12px;
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.automation-card p {
  font-size: 0.9rem;
  line-height: 1.48;
  margin-bottom: 12px;
}

.automation-benefit {
  display: block;
  margin-bottom: 6px;
  color: var(--heading);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  line-height: 1.25;
}

.automation-visual {
  position: relative;
  display: grid;
  height: 116px;
  min-height: 116px;
  max-height: 116px;
  align-items: center;
  align-content: center;
  overflow: visible;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 16px;
  padding: 10px;
  background:
    radial-gradient(circle at 82% 18%, rgba(109, 104, 95, 0.16), transparent 32%),
    linear-gradient(135deg, #ffffff, #f8fafc);
}

.form-to-sheet {
  grid-template-columns: minmax(0, 0.92fr) 36px minmax(0, 1.08fr);
  gap: 8px;
}

.form-to-sheet .mini-form,
.form-to-sheet .mini-sheet {
  position: relative;
  z-index: 1;
  box-shadow: 0 14px 30px rgba(23, 23, 19, 0.12);
}

.form-to-sheet .flow-arrow {
  z-index: 2;
}

.mini-form,
.mini-sheet,
.email-preview,
.chat-preview .chat-bubble,
.chat-input {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 10px 22px rgba(23, 23, 19, 0.06);
}

.mini-form {
  display: grid;
  gap: 6px;
  padding: 10px;
}

.mini-form span {
  height: 8px;
  border-radius: 999px;
  background: var(--muted-light);
}

.mini-form span:first-child {
  width: 74%;
}

.mini-form span:nth-child(2) {
  width: 92%;
}

.mini-form strong {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 5px 8px;
  background: #ffedd5;
  color: #c2410c;
  font-size: 0.75rem;
}

.mini-form.compact {
  align-self: center;
}

.flow-arrow {
  position: relative;
  align-self: center;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--violet), var(--teal));
}

.flow-arrow::after {
  position: absolute;
  top: 50%;
  right: -2px;
  width: 10px;
  height: 10px;
  border-top: 3px solid var(--teal);
  border-right: 3px solid var(--teal);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.mini-sheet {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 4px;
  padding: 9px;
  width: 100%;
  height: 78px;
  align-self: center;
  align-content: stretch;
  background:
    linear-gradient(var(--line), var(--line)) 0 33.333% / 100% 1px no-repeat,
    linear-gradient(var(--line), var(--line)) 0 66.666% / 100% 1px no-repeat,
    linear-gradient(90deg, var(--line), var(--line)) 33.333% 0 / 1px 100% no-repeat,
    linear-gradient(90deg, var(--line), var(--line)) 66.666% 0 / 1px 100% no-repeat,
    var(--white);
}

.mini-sheet > * {
  display: flex;
  min-width: 0;
  min-height: 0;
  align-items: center;
  justify-content: center;
}

.mini-sheet strong {
  border-radius: 4px;
  padding: 2px 3px;
  background: var(--teal-soft);
  color: #0f766e;
  font-size: 0.56rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
}

.mini-sheet span {
  border-radius: 4px;
  background: #eef2f7;
}

.mini-sheet span:nth-child(4) {
  background: #eef2f7;
}

.form-to-email {
  grid-template-columns: minmax(0, 0.74fr) 28px 36px minmax(0, 1.18fr);
  gap: 7px;
}

.form-to-email .mini-form,
.form-to-email .mail-icon,
.form-to-email .email-preview {
  position: relative;
  z-index: 1;
  box-shadow: 0 14px 30px rgba(23, 23, 19, 0.12);
}

.form-to-email .flow-arrow {
  z-index: 2;
}

.email-arrow {
  width: 100%;
}

.mail-icon {
  width: 34px;
  height: 28px;
  place-self: center;
  border-radius: 8px;
  background: var(--violet-soft);
  fill: none;
  stroke: var(--violet);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.email-preview {
  display: grid;
  gap: 5px;
  padding: 11px;
  align-self: center;
}

.email-preview span {
  color: var(--heading);
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
  font-size: 0.88rem;
}

.email-preview small {
  color: var(--muted);
  font-size: 0.76rem;
}

.chat-preview {
  align-content: center;
  justify-content: stretch;
  gap: 6px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.chat-bubble {
  position: relative;
  z-index: 1;
  max-width: 86%;
  padding: 6px 8px;
  color: var(--heading);
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(23, 23, 19, 0.12);
}

.chat-bubble.question {
  justify-self: start;
  border-color: rgba(242, 100, 25, 0.18);
}

.chat-bubble.customer {
  justify-self: end;
  max-width: 82%;
  border-color: rgba(249, 115, 22, 0.22);
  background: #fff7ed;
}

.chat-bubble.answer {
  justify-self: end;
  max-width: 82%;
  border-color: rgba(109, 104, 95, 0.28);
  background: var(--teal-soft);
}

.chat-cta {
  justify-self: end;
  border: 1px solid rgba(249, 115, 22, 0.26);
  border-radius: 999px;
  padding: 5px 8px;
  background: #ffedd5;
  color: #c2410c;
  font-size: 0.72rem;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(249, 115, 22, 0.12);
}

.chat-input {
  justify-self: start;
  margin-top: 0;
  padding: 4px 7px;
  color: #0f766e;
  font-size: 0.7rem;
  font-weight: 800;
}

@media (min-width: 761px) {
  .form-to-sheet .mini-form {
    transform: translate(-8px, -5px);
  }

  .form-to-sheet .mini-sheet {
    transform: translate(8px, 5px);
  }

  .form-to-email .mini-form {
    transform: translate(-7px, -4px);
  }

  .form-to-email .email-preview {
    transform: translate(7px, 4px);
  }

  .form-to-email .mail-icon {
    transform: translateY(-1px);
  }

  .chat-bubble.question {
    transform: translate(-8px, -5px);
  }

  .chat-bubble.customer {
    transform: translate(8px, 0);
  }

  .chat-bubble.answer {
    transform: translate(8px, 5px);
  }
}

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

.benefit-list li {
  position: relative;
  padding-left: 24px;
  color: #4f4b44;
  font-size: 0.86rem;
  font-weight: 700;
}

.benefit-list li::before {
  position: absolute;
  top: 0.62em;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--violet);
  content: "";
}

.benefit-list li:nth-child(2)::before {
  background: var(--teal);
}

.benefit-list li:nth-child(3)::before {
  background: var(--orange);
}

.automation-summary {
  margin-top: 10px;
  border: 1px solid rgba(109, 104, 95, 0.22);
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  background: linear-gradient(135deg, #ffffff, var(--teal-soft));
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.automation-summary strong {
  color: var(--heading);
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.25;
}

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

.section-heading p {
  font-size: 1.06rem;
}

.section-heading.compact {
  position: sticky;
  top: 112px;
  align-self: start;
  margin-bottom: 0;
}

.card-grid,
.feature-grid,
.pricing-grid,
.demo-grid {
  display: grid;
  gap: 18px;
}

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

.card,
.feature,
.mini-card,
.price-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.card {
  padding: 28px;
}

.card-icon {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--violet);
  font-family: var(--font-heading);
  font-weight: 800;
}

.solution-section,
.pricing-section {
  background: var(--surface);
}

.problem-section,
.why-section {
  background: var(--bg);
}

.split {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 46px;
}

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

.feature {
  padding: 24px;
  box-shadow: none;
}

.feature::before,
.mini-card::before {
  display: block;
  width: 34px;
  height: 4px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--violet), var(--teal));
  content: "";
}

.demos-section {
  background:
    linear-gradient(135deg, rgba(242, 100, 25, 0.08), transparent 34%),
    linear-gradient(180deg, #fbf8f2 0%, #ffffff 100%);
}

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

.demo-card {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 340px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.demo-card::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(246, 248, 251, 0.9)),
    radial-gradient(circle at 88% 20%, rgba(109, 104, 95, 0.16), transparent 34%);
  content: "";
}

.demo-card::after {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 200px;
  height: 142px;
  border: 1px solid rgba(213, 219, 229, 0.9);
  border-radius: var(--radius);
  background:
    linear-gradient(var(--heading), var(--heading)) 22px 22px / 92px 10px no-repeat,
    linear-gradient(#9ca3af, #9ca3af) 22px 48px / 142px 8px no-repeat,
    linear-gradient(var(--orange), var(--orange)) 22px 78px / 70px 18px no-repeat,
    #ffffff;
  box-shadow: 0 14px 34px rgba(23, 23, 19, 0.08);
  content: "";
}

.demo-card > * {
  position: relative;
  z-index: 1;
}

.demo-card h3 {
  max-width: 420px;
  color: var(--heading);
  font-size: 2rem;
}

.demo-card p {
  max-width: 520px;
  color: var(--muted);
}

.demo-label {
  display: inline-flex;
  margin-bottom: 16px;
  border: 1px solid rgba(242, 100, 25, 0.18);
  border-radius: 999px;
  padding: 6px 10px;
  background: var(--violet-soft);
  color: #b83c00;
  font-size: 0.8rem;
  font-weight: 800;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  border-top: 3px solid var(--teal);
  padding: 22px 16px 0 0;
}

.process-list span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--heading);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.price-card {
  position: relative;
  padding: 30px;
}

.price-card.recommended {
  border-color: rgba(249, 115, 22, 0.46);
  background:
    linear-gradient(180deg, rgba(255, 247, 237, 0.72), rgba(255, 255, 255, 0.98) 42%),
    #ffffff;
  box-shadow: 0 28px 66px rgba(249, 115, 22, 0.16);
  transform: translateY(-8px);
}

.badge {
  display: inline-flex;
  margin-bottom: 16px;
  border-radius: 999px;
  padding: 8px 12px;
  background: #ffedd5;
  color: #c2410c;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.price {
  margin-bottom: 22px;
  color: var(--heading);
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1.1;
}

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

.price-card li {
  position: relative;
  padding-left: 24px;
  color: #5f5b54;
}

.price-card li::before {
  position: absolute;
  top: 0.62em;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.mini-card {
  padding: 24px;
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(109, 104, 95, 0.08), transparent 42%),
    linear-gradient(180deg, #fbf8f2, #ffffff);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 46px;
  align-items: start;
}

.contact-copy h2 {
  max-width: 560px;
}

.contact-note {
  display: grid;
  gap: 4px;
  max-width: 520px;
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 18px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.contact-note span {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 10px;
  padding: 30px;
}

.contact-form label {
  color: var(--heading);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: var(--surface);
  color: var(--ink);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 4px rgba(242, 100, 25, 0.13);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  margin-top: 8px;
  cursor: pointer;
}

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

.form-footnote {
  margin: 0;
  font-size: 0.88rem;
}

.site-footer {
  padding: 42px 0;
  background: var(--heading);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.6fr;
  gap: 24px;
  align-items: start;
}

.site-footer p,
.site-footer a,
.site-footer span {
  color: rgba(255, 255, 255, 0.76);
}

.footer-brand span:last-child {
  color: var(--white);
}

address,
.footer-links {
  display: grid;
  gap: 8px;
  font-style: normal;
}

@media (max-width: 980px) {
  :root {
    --space-section: 4.25rem;
  }

  .section {
    padding: var(--space-section) 0;
  }

  .hero {
    min-height: auto;
    padding: 36px 0 54px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px;
    background: var(--surface);
    box-shadow: var(--shadow-soft);
  }

  .nav-links.is-open {
    display: flex;
  }

  .hero-content,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    gap: 34px;
  }

  .automation-section {
    padding: 44px 0 44px;
  }

  .hero-mockup {
    transform: none;
    transform-origin: center;
  }

  h1 {
    font-size: clamp(2.42rem, 5.9vw, 3.55rem);
    line-height: 1.04;
  }

  .section-heading.compact {
    position: static;
  }

  .three,
  .automation-grid,
  .pricing-grid,
  .process-list,
  .demo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 680px) {
  :root {
    --space-section: 3.5rem;
    --type-h2: clamp(2rem, 9vw, 2.75rem);
  }

  .container {
    width: min(100% - 24px, var(--container));
  }

  .section {
    padding: var(--space-section) 0;
  }

  .hero {
    min-height: auto;
    padding: 34px 0 46px;
  }

  h1 {
    font-size: clamp(2rem, 9.1vw, 2.52rem);
    line-height: 1.05;
  }

  h2 {
    font-size: var(--type-h2);
  }

  .hero-lead {
    font-size: 1.02rem;
    margin-bottom: 24px;
  }

  .hero-actions {
    margin-bottom: 22px;
  }

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

  .trust-list li {
    font-size: 0.84rem;
  }

  .hero-mockup {
    width: 100%;
    animation: none;
  }

  .chat-demo {
    border-radius: 19px;
  }

  .chat-demo-header {
    min-height: 64px;
    padding: 10px 12px;
  }

  .chat-brand-mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .chat-demo-header .chat-demo-label {
    display: none;
  }

  .chat-demo-body {
    height: 370px;
    padding: 13px;
  }

  .chat-bubble-ai,
  .chat-bubble-user {
    max-width: 94%;
  }

  .demo-form {
    gap: 6px;
    padding: 9px;
  }

  .chat-demo-actions {
    grid-template-columns: 1fr;
  }

  .automation-section {
    padding: 38px 0 40px;
  }

  .automation-heading {
    margin-bottom: 18px;
  }

  .automation-heading h2 {
    font-size: 1.85rem;
  }

  .three,
  .automation-grid,
  .feature-grid,
  .pricing-grid,
  .process-list,
  .demo-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .card,
  .automation-card,
  .demo-card,
  .price-card,
  .contact-form {
    padding: 22px;
  }

  .automation-card {
    padding: 18px;
  }

  .automation-visual {
    height: 116px;
    min-height: 116px;
    max-height: 116px;
    padding: 10px;
  }

  .automation-card p {
    font-size: 0.9rem;
  }

  .form-to-sheet,
  .form-to-email {
    grid-template-columns: 1fr;
  }

  .flow-arrow {
    width: 2px;
    height: 28px;
    margin-inline: auto;
    background: linear-gradient(180deg, var(--violet), var(--teal));
  }

  .flow-arrow::after {
    top: auto;
    right: 50%;
    bottom: 0;
    transform: translateX(50%) rotate(135deg);
  }

  .demo-card {
    min-height: 320px;
  }

  .demo-card::after {
    width: 150px;
    height: 104px;
    opacity: 0.72;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .hero-mockup,
  .chat-demo * {
    animation: none !important;
  }
}


/* Conversion-focused visual polish */
h2 {
  font-size: clamp(1.9rem, 3.2vw, 3rem);
}

.demo-card {
  min-height: 360px;
  border-top-width: 4px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.demo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.demo-card.climate {
  border-top-color: #38bdf8;
  background: linear-gradient(145deg, #ffffff 0%, #f0f9ff 100%);
}

.demo-card.dental {
  border-top-color: var(--teal);
  background: linear-gradient(145deg, #ffffff 0%, #f0fdfa 100%);
}

.demo-card::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(246, 248, 251, 0.78));
}

.demo-card::after {
  right: 26px;
  bottom: 82px;
  width: 220px;
  height: 148px;
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(23, 23, 19, 0.13);
}

.demo-card.climate::after {
  background:
    linear-gradient(#0c4a6e, #0c4a6e) 20px 18px / 94px 10px no-repeat,
    linear-gradient(#7dd3fc, #7dd3fc) 20px 44px / 176px 8px no-repeat,
    linear-gradient(#bae6fd, #bae6fd) 20px 62px / 142px 8px no-repeat,
    linear-gradient(var(--orange), var(--orange)) 20px 94px / 76px 22px no-repeat,
    linear-gradient(#e0f2fe, #e0f2fe) 110px 88px / 88px 34px no-repeat,
    #ffffff;
}

.demo-card.dental::after {
  background:
    linear-gradient(#134e4a, #134e4a) 20px 18px / 106px 10px no-repeat,
    linear-gradient(#99f6e4, #99f6e4) 20px 44px / 176px 8px no-repeat,
    linear-gradient(#ccfbf1, #ccfbf1) 20px 62px / 136px 8px no-repeat,
    linear-gradient(var(--teal), var(--teal)) 20px 94px / 76px 22px no-repeat,
    linear-gradient(#fef3c7, #fef3c7) 110px 88px / 88px 34px no-repeat,
    #ffffff;
}

.price-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.price-card ul {
  margin-bottom: 26px;
}

.price-cta {
  width: 100%;
  margin-top: auto;
  text-align: center;
}

.price-card:not(.recommended) .price-cta {
  border-color: var(--heading);
  background: var(--heading);
  box-shadow: 0 14px 30px rgba(23, 23, 19, 0.16);
}

.price-card:not(.recommended) .price-cta:hover {
  border-color: #26365f;
  background: #26365f;
}

.why-heading {
  max-width: 860px;
}

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

.why-grid .mini-card {
  position: relative;
  min-height: 210px;
  padding: 30px;
}

.why-grid .mini-card::before {
  display: none;
}

.mini-number {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--violet);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.why-grid .mini-card h3 {
  font-size: 1.28rem;
}

@media (max-width: 680px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-grid .mini-card {
    min-height: auto;
    padding: 22px;
  }

  .demo-card::after {
    right: 18px;
    bottom: 78px;
    width: 160px;
    height: 108px;
    opacity: 0.82;
    background-size:
      70px 8px,
      128px 6px,
      102px 6px,
      58px 17px,
      64px 26px,
      auto;
    background-position:
      16px 14px,
      16px 34px,
      16px 48px,
      16px 72px,
      90px 68px,
      0 0;
  }
}


@media (min-width: 681px) {
  .demo-card p {
    max-width: 55%;
  }
}

@media (max-width: 680px) {
  .demo-card p {
    max-width: 100%;
  }
}


.mobile-cta {
  display: none;
}

@media (max-width: 680px) {
  body {
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
  }

  .nav {
    min-height: 68px;
  }

  .nav-links {
    top: 68px;
  }

  .button,
  .nav-toggle,
  .mobile-cta {
    min-height: 48px;
  }

  .mobile-cta {
    position: fixed;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    left: 12px;
    z-index: 30;
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--orange);
    border-radius: 12px;
    padding: 13px 18px;
    background: var(--orange);
    color: var(--white);
    font-weight: 800;
    box-shadow: 0 18px 44px rgba(23, 23, 19, 0.24), 0 10px 26px rgba(249, 115, 22, 0.3);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-cta span:last-child {
    font-size: 1.25rem;
  }

  .mobile-cta.is-hidden {
    pointer-events: none;
    opacity: 0;
    transform: translateY(18px);
  }

  .contact-form input,
  .contact-form textarea {
    min-height: 48px;
    font-size: 16px;
  }

  .contact-form textarea {
    min-height: 150px;
  }
}


/* Distinct visual markers instead of repeated numbering */
.problem-visual {
  position: relative;
  display: flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 30px;
  border: 1px solid rgba(242, 100, 25, 0.18);
  border-radius: 14px;
  background: linear-gradient(145deg, #ffffff, var(--violet-soft));
  box-shadow: 0 10px 22px rgba(23, 23, 19, 0.08);
}

.problem-focus::before {
  width: 24px;
  height: 24px;
  border: 2px solid var(--violet);
  border-radius: 50%;
  content: "";
}

.problem-focus span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.problem-leads {
  align-items: flex-end;
  padding-bottom: 13px;
}

.problem-leads span {
  width: 6px;
  border-radius: 99px 99px 3px 3px;
  background: var(--teal);
}

.problem-leads span:first-child {
  height: 12px;
  opacity: 0.58;
}

.problem-leads span:nth-child(2) {
  height: 20px;
  opacity: 0.78;
}

.problem-leads span:last-child {
  height: 28px;
}

.problem-followup::before {
  position: absolute;
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--teal));
  content: "";
}

.problem-followup span {
  position: absolute;
  z-index: 1;
  width: 9px;
  height: 9px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 0 1px rgba(242, 100, 25, 0.28);
}

.problem-followup span:first-child {
  left: 11px;
}

.problem-followup span:nth-child(2) {
  background: var(--orange);
}

.problem-followup span:last-child {
  right: 11px;
  background: var(--teal);
}

.card-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 24px;
  border: 1px solid rgba(242, 100, 25, 0.16);
  border-radius: 999px;
  padding: 6px 10px;
  background: var(--violet-soft);
  color: #b83c00;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.why-grid .mini-card:nth-child(2) .card-label {
  border-color: rgba(109, 104, 95, 0.2);
  background: var(--teal-soft);
  color: #0f766e;
}

.why-grid .mini-card:nth-child(3) .card-label {
  border-color: rgba(249, 115, 22, 0.2);
  background: #fff7ed;
  color: #c2410c;
}

.why-grid .mini-card:nth-child(4) .card-label {
  border-color: rgba(59, 130, 246, 0.18);
  background: #eff6ff;
  color: #1d4ed8;
}


/* Rich solution and demo presentation */
.solution-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 16%, rgba(242, 100, 25, 0.13), transparent 27%),
    radial-gradient(circle at 94% 82%, rgba(109, 104, 95, 0.12), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fbf8f2 100%);
}

.solution-section::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(23, 23, 19, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 23, 19, 0.035) 1px, transparent 1px);
  background-size: 38px 38px;
  content: "";
  pointer-events: none;
}

.solution-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 54px;
  align-items: start;
}

.solution-demo-wrap { min-width: 0; }
.solution-demo-kicker { display: flex; align-items: center; gap: 8px; margin: 0 0 10px 4px; color: #667085; font-size: .7rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.solution-demo-kicker span { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 5px rgba(109, 104, 95,.1); }
.solution-demo-note { margin: 10px 4px 0; color: #7b8495; font-size: .68rem; text-align: center; }
.solution-demo-wrap .chat-demo { box-shadow: 0 28px 70px rgba(23, 23, 19,.16); }

.solution-intro {
  position: sticky;
  top: 106px;
}

.solution-intro .section-heading.compact {
  position: static;
  margin-bottom: 28px;
}

.solution-flow {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(242, 100, 25, 0.16);
  border-radius: var(--radius-lg);
  padding: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.solution-step {
  display: flex;
  align-items: center;
  gap: 13px;
  border-radius: 12px;
  padding: 11px 12px;
  background: rgba(248, 250, 252, 0.9);
}

.solution-step div {
  display: grid;
  gap: 1px;
}

.solution-step small {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.solution-step strong {
  color: var(--heading);
  font-family: var(--font-heading);
  font-size: 0.92rem;
  line-height: 1.25;
}

.solution-dot {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 2px currentColor;
}

.solution-dot.violet {
  color: var(--violet);
  background: var(--violet);
}

.solution-dot.orange {
  color: var(--violet);
  background: var(--violet);
}

.solution-dot.teal {
  color: var(--teal);
  background: var(--teal);
}

.solution-arrow {
  height: 12px;
  padding-left: 29px;
  color: #9ca3af;
  font-size: 0;
}

.solution-arrow::before {
  display: block;
  width: 2px;
  height: 12px;
  margin-left: 4px;
  background: linear-gradient(var(--violet), var(--teal));
  content: "";
}

.solution-features {
  gap: 16px;
}

.solution-features .feature {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  border-radius: 18px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 36px rgba(23, 23, 19, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.solution-features .feature:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 100, 25, 0.28);
  box-shadow: var(--shadow);
}

.solution-features .feature::before {
  position: absolute;
  inset: auto -30px -48px auto;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(242, 100, 25, 0.07);
  content: "";
}

.solution-features .feature:nth-child(2n)::before {
  background: rgba(109, 104, 95, 0.08);
}

.feature-tag {
  display: inline-flex;
  margin-bottom: 18px;
  border-radius: 999px;
  padding: 5px 9px;
  background: var(--violet-soft);
  color: #b83c00;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.solution-features .feature:nth-child(2n) .feature-tag {
  background: var(--teal-soft);
  color: #0f766e;
}

.feature-symbol {
  position: relative;
  display: block;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border: 1px solid rgba(242, 100, 25, 0.18);
  border-radius: 12px;
  background: linear-gradient(145deg, #ffffff, var(--violet-soft));
}

.feature-symbol::before,
.feature-symbol::after {
  position: absolute;
  content: "";
}

.feature-page::before {
  inset: 10px;
  border: 2px solid var(--violet);
  border-radius: 4px;
}

.feature-page::after {
  top: 15px;
  left: 15px;
  width: 14px;
  height: 2px;
  background: var(--orange);
  box-shadow: 0 6px 0 #c4b5fd, 0 12px 0 #c4b5fd;
}

.feature-form::before {
  top: 11px;
  left: 11px;
  width: 22px;
  height: 4px;
  border-radius: 99px;
  background: var(--teal);
  box-shadow: 0 8px 0 #99f6e4, 0 16px 0 var(--orange);
}

.feature-sheet::before {
  inset: 10px;
  border: 2px solid var(--teal);
  border-radius: 4px;
  background:
    linear-gradient(var(--teal), var(--teal)) 50% 0 / 2px 100%,
    linear-gradient(var(--teal), var(--teal)) 0 50% / 100% 2px;
}

.feature-mail::before {
  inset: 12px 9px;
  border: 2px solid var(--violet);
  border-radius: 4px;
}

.feature-mail::after {
  top: 14px;
  left: 13px;
  width: 16px;
  height: 16px;
  border-right: 2px solid var(--violet);
  border-bottom: 2px solid var(--violet);
  transform: rotate(45deg);
}

.feature-reply::before {
  top: 12px;
  left: 10px;
  width: 22px;
  height: 16px;
  border: 2px solid var(--orange);
  border-radius: 9px;
}

.feature-reply::after {
  right: 9px;
  bottom: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 3px var(--white);
}

.feature-chat::before {
  inset: 10px 8px 13px;
  border: 2px solid var(--teal);
  border-radius: 9px;
}

.feature-chat::after {
  right: 10px;
  bottom: 9px;
  width: 9px;
  height: 9px;
  border-bottom: 2px solid var(--teal);
  transform: skew(-28deg);
}

.demos-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(56, 189, 248, 0.13), transparent 26%),
    radial-gradient(circle at 86% 78%, rgba(109, 104, 95, 0.12), transparent 28%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.demos-heading {
  max-width: 860px;
}

.demo-card {
  display: grid;
  min-height: 620px;
  grid-template-rows: auto 1fr auto;
  gap: 22px;
  border-top-width: 1px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
}

.demo-card::before,
.demo-card::after {
  display: none;
}

.demo-card.climate {
  border-color: rgba(56, 189, 248, 0.28);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(240, 249, 255, 0.92));
}

.demo-card.dental {
  border-color: rgba(109, 104, 95, 0.28);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(240, 253, 250, 0.92));
}

.demo-copy h3 {
  margin-bottom: 8px;
  font-size: 1.72rem;
}

.demo-copy p {
  max-width: 560px;
  margin-bottom: 16px;
}

.demo-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.demo-chips span {
  border: 1px solid rgba(242, 100, 25, 0.14);
  border-radius: 999px;
  padding: 6px 9px;
  background: rgba(255, 255, 255, 0.82);
  color: #445066;
  font-size: 0.73rem;
  font-weight: 800;
}

.demo-browser {
  overflow: hidden;
  align-self: end;
  border: 1px solid rgba(23, 23, 19, 0.14);
  border-radius: 15px;
  background: var(--white);
  box-shadow: 0 22px 48px rgba(23, 23, 19, 0.14);
  transform: perspective(900px) rotateX(1deg);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.demo-card:hover .demo-browser {
  transform: perspective(900px) rotateX(0) translateY(-3px);
  box-shadow: 0 28px 58px rgba(23, 23, 19, 0.18);
}

.browser-bar {
  display: flex;
  height: 34px;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--line);
  padding: 0 11px;
  background: #f8fafc;
}

.browser-bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fb7185;
}

.browser-bar i:nth-child(2) {
  background: #facc15;
}

.browser-bar i:nth-child(3) {
  background: #34d399;
}

.browser-bar span {
  margin-left: 8px;
  color: #94a3b8;
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 700;
}

.browser-page {
  display: grid;
  gap: 16px;
  min-height: 230px;
  padding: 18px;
  background: linear-gradient(145deg, #ffffff, #f8fafc);
}

.climate-browser .browser-page {
  background: linear-gradient(145deg, #f0f9ff, #ffffff);
}

.dental-browser .browser-page {
  background: linear-gradient(145deg, #f0fdfa, #ffffff);
}

.browser-nav {
  width: 34%;
  height: 7px;
  border-radius: 99px;
  background: var(--heading);
}

.browser-hero {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 20px;
  align-items: center;
}

.browser-hero > div {
  display: grid;
  gap: 8px;
}

.browser-hero b {
  display: block;
  width: 92%;
  height: 10px;
  border-radius: 99px;
  background: var(--heading);
}

.browser-hero b:nth-child(2) {
  width: 68%;
}

.browser-hero small {
  display: block;
  width: 48%;
  height: 18px;
  margin-top: 4px;
  border-radius: 5px;
  background: var(--orange);
}

.dental-browser .browser-hero small {
  background: var(--teal);
}

.browser-visual {
  display: block;
  min-height: 100px;
  border-radius: 12px;
}

.climate-visual {
  background:
    radial-gradient(circle at 70% 26%, #fef3c7 0 13%, transparent 14%),
    linear-gradient(145deg, #7dd3fc, #e0f2fe);
}

.dental-visual {
  background:
    radial-gradient(circle at 50% 34%, #ffffff 0 18%, transparent 19%),
    linear-gradient(145deg, #5eead4, #ccfbf1);
}

.browser-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.browser-cards i {
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.92);
}

.demo-button {
  display: flex;
  width: 100%;
  justify-content: space-between;
  color: #fff;
  box-shadow: 0 14px 30px rgba(23, 23, 19, 0.12);
}

.climate .demo-button {
  border-color: #0369a1;
  background: #0369a1;
}

.climate .demo-button:hover {
  border-color: #075985;
  background: #075985;
}

.dental .demo-button {
  border-color: #0f766e;
  background: #0f766e;
}

.dental .demo-button:hover {
  border-color: #115e59;
  background: #115e59;
}

@media (max-width: 980px) {
  .solution-shell {
    grid-template-columns: 1fr;
  }

  .solution-intro {
    position: static;
  }

  .solution-flow {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
  }

  .solution-arrow {
    width: 18px;
    height: auto;
    padding: 0;
    font-size: 1rem;
  }

  .solution-arrow::before {
    display: none;
  }
}

@media (max-width: 680px) {
  .solution-flow {
    grid-template-columns: 1fr;
  }

  .solution-arrow {
    height: 12px;
    padding-left: 28px;
    font-size: 0;
  }

  .solution-arrow::before {
    display: block;
  }

  .solution-features {
    grid-template-columns: 1fr;
  }

  .solution-features .feature {
    min-height: auto;
  }

  .demo-card {
    min-height: auto;
    padding: 22px;
  }

  .demo-copy p {
    max-width: 100%;
  }

  .demo-browser {
    transform: none;
  }

  .browser-page {
    min-height: 190px;
    padding: 14px;
  }

  .browser-hero {
    gap: 12px;
  }

  .browser-visual {
    min-height: 82px;
  }
}


/* Founder trust section */
.founder-section {
  background:
    radial-gradient(circle at 8% 20%, rgba(242, 100, 25, 0.1), transparent 26%),
    linear-gradient(180deg, #ffffff, var(--bg));
}

.founder-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  background:
    radial-gradient(circle at 82% 12%, rgba(242, 100, 25, 0.28), transparent 28%),
    radial-gradient(circle at 16% 88%, rgba(109, 104, 95, 0.18), transparent 25%),
    linear-gradient(145deg, #171713, #22221f 64%, #2d2925);
  box-shadow: 0 34px 90px rgba(23, 23, 19, 0.22);
}

.founder-card::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  pointer-events: none;
}

.founder-visual,
.founder-content {
  position: relative;
  z-index: 1;
}

.founder-visual {
  display: grid;
  min-height: 590px;
  place-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  padding: 38px;
}

.founder-portrait {
  position: relative;
  overflow: hidden;
  display: grid;
  width: min(100%, 310px);
  aspect-ratio: 0.82;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 255, 255, 0.16), transparent 17%),
    radial-gradient(circle at 50% 74%, rgba(255, 255, 255, 0.1), transparent 32%),
    linear-gradient(145deg, rgba(242, 100, 25, 0.5), rgba(109, 104, 95, 0.26));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 26px 54px rgba(0, 0, 0, 0.22);
}

.founder-portrait::after {
  position: absolute;
  right: -25%;
  bottom: -18%;
  width: 95%;
  height: 62%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  content: "";
  transform: rotate(-18deg);
}

.founder-monogram {
  position: relative;
  z-index: 2;
  display: grid;
  width: 106px;
  height: 106px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 24px;
  background: rgba(17, 24, 39, 0.54);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
}

.founder-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.orbit-one {
  width: 190px;
  height: 190px;
}

.orbit-two {
  width: 260px;
  height: 260px;
  border-color: rgba(109, 104, 95, 0.22);
}

.founder-badge {
  position: absolute;
  right: 22px;
  bottom: 44px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(17, 24, 39, 0.72);
  color: var(--white);
  font-size: 0.78rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(109, 104, 95, 0.13);
}

.founder-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px;
}

.founder-content .eyebrow {
  color: #ff8b50;
}

.founder-content h2 {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(2rem, 3.1vw, 3.05rem);
}

.founder-content p {
  max-width: 740px;
  color: rgba(255, 255, 255, 0.72);
}

.founder-lead {
  margin-bottom: 12px;
  font-size: 1.08rem;
}

.founder-lead strong {
  color: var(--white);
}

.founder-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0 28px;
}

.founder-values > div {
  position: relative;
  display: grid;
  align-content: start;
  gap: 6px;
  min-height: 148px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 17px;
  background: rgba(255, 255, 255, 0.055);
}

.founder-values span {
  width: 22px;
  height: 4px;
  margin-bottom: 8px;
  border-radius: 99px;
  background: var(--violet);
}

.founder-values > div:nth-child(2) span {
  background: var(--teal);
}

.founder-values > div:nth-child(3) span {
  background: var(--violet);
}

.founder-values strong {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  line-height: 1.25;
}

.founder-values small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.76rem;
  line-height: 1.45;
}

.founder-cta {
  width: fit-content;
  gap: 18px;
}

@media (max-width: 980px) {
  .founder-card {
    grid-template-columns: 1fr;
  }

  .founder-visual {
    min-height: 420px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .founder-portrait {
    width: min(100%, 280px);
    max-height: 340px;
  }
}

@media (max-width: 680px) {
  .founder-card {
    border-radius: 20px;
  }

  .founder-visual {
    min-height: 320px;
    padding: 24px;
  }

  .founder-portrait {
    width: min(100%, 220px);
    max-height: 270px;
  }

  .founder-monogram {
    width: 82px;
    height: 82px;
    font-size: 1.55rem;
  }

  .orbit-one {
    width: 145px;
    height: 145px;
  }

  .orbit-two {
    width: 196px;
    height: 196px;
  }

  .founder-badge {
    right: 18px;
    bottom: 24px;
  }

  .founder-content {
    padding: 30px 22px;
  }

  .founder-values {
    grid-template-columns: 1fr;
  }

  .founder-values > div {
    min-height: auto;
  }

  .founder-cta {
    width: 100%;
  }
}


/* Responsive polish for the conversion-focused content added during the final design pass. */

.demo-card,
.price-card,
.project-safety-strip > div {
  min-width: 0;
}

.demo-copy {
  display: flex;
  flex-direction: column;
}

.demo-view-cue {
  margin-top: auto !important;
}

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

.price-card .price-cta {
  width: 100%;
  margin-top: auto;
  text-align: center;
  white-space: normal;
}

.package-assurance {
  margin-top: auto;
}

.project-safety-strip > div {
  min-height: 132px;
}

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

  .nav-links .button-small {
    max-width: 170px;
    padding-inline: 12px;
    text-align: center;
    white-space: normal;
  }

  .pricing-grid {
    gap: 16px;
  }

  .price-card {
    padding-inline: 22px;
  }
}

@media (max-width: 900px) {
  :root {
    --space-section: 4.25rem;
  }

  .section {
    padding-block: var(--space-section);
  }

  .demos-section .section-heading,
  .pricing-section .section-heading,
  .contact-copy {
    max-width: 720px;
  }

  .demo-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .demo-card,
  .price-card {
    max-width: 720px;
    width: 100%;
    margin-inline: auto;
  }

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

  .project-safety-strip > div {
    min-height: 0;
  }
}

@media (max-width: 680px) {
  :root {
    --space-section: 3.5rem;
  }

  .container {
    width: min(100% - 24px, var(--container));
  }

  .section {
    padding-block: var(--space-section);
  }

  .hero {
    padding-top: 30px;
    padding-bottom: 42px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 52px;
    text-align: center;
    white-space: normal;
  }

  .trust-list {
    gap: 8px 12px;
  }

  .demo-card,
  .price-card {
    border-radius: 18px;
  }

  .demo-copy,
  .price-card {
    padding-left: 20px;
    padding-right: 20px;
  }

  .demo-chips {
    gap: 7px;
  }

  .demo-chips span {
    font-size: .7rem;
  }

  .demo-view-cue {
    font-size: .8rem !important;
  }

  .project-safety-strip {
    gap: 10px !important;
    margin-top: 24px !important;
  }

  .project-safety-strip > div {
    border-radius: 14px !important;
  }

  .price-card .badge {
    max-width: calc(100% - 28px);
    text-align: center;
    white-space: normal;
  }

  .price-card .price {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
  }

  .price-card .price-cta,
  .contact-form .button,
  .founder-cta {
    width: 100%;
    min-height: 54px;
    padding-inline: 14px;
    font-size: .9rem;
    text-align: center;
    white-space: normal;
  }

  .contact-grid {
    gap: 28px;
  }

  .mobile-cta {
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: auto;
    min-height: 52px;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    text-align: center;
  }

  .mobile-cta span:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media (max-width: 420px) {
  :root {
    --space-section: 3rem;
  }

  .section {
    padding-block: var(--space-section);
  }

  .hero-actions .button,
  .price-card .price-cta,
  .contact-form .button,
  .founder-cta {
    font-size: .84rem;
  }

  .project-safety-strip strong {
    font-size: .85rem !important;
  }

  .project-safety-strip span,
  .package-assurance li {
    font-size: .75rem !important;
  }
}


/* Round 2: header, hero and the first value strip. */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(23, 23, 19, 0.1);
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 248, 0.98);
  box-shadow: 0 12px 32px rgba(23, 23, 19, 0.08);
}

.nav {
  min-height: 82px;
  gap: 34px;
  transition: min-height 180ms ease;
}

.site-header.is-scrolled .nav {
  min-height: 72px;
}

.brand {
  flex: 0 0 auto;
  gap: 12px;
}

.brand-mark {
  width: 59px;
  height: 38px;
}

.brand-wordmark strong {
  color: var(--color-ink);
  font-size: 0.94rem;
  letter-spacing: 0.065em;
}

.brand-wordmark small {
  margin-top: 3px;
  color: var(--color-muted);
  font-size: 0.55rem;
  letter-spacing: 0.02em;
}

.nav-links {
  margin-left: auto;
  gap: clamp(17px, 1.8vw, 29px);
  color: var(--color-graphite);
  font-size: 0.82rem;
  font-weight: 650;
}

.nav-links a:not(.button) {
  position: relative;
  padding-block: 8px;
}

.nav-links a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: var(--color-accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-links a:not(.button):hover {
  color: var(--color-ink);
}

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

.nav-cta {
  min-height: 46px;
  gap: 28px;
  padding: 12px 17px;
  border-color: var(--color-accent);
  border-radius: var(--radius-xs);
  box-shadow: 0 12px 26px rgba(177, 62, 5, 0.2);
}

.nav-cta span {
  color: inherit;
  font-size: 1rem;
  transition: transform 180ms ease;
}

.nav-cta:hover span {
  transform: translateX(3px);
}

.nav-toggle {
  position: relative;
  width: 44px;
  height: 44px;
  border-color: var(--color-border);
  border-radius: var(--radius-xs);
  background: transparent;
}

.nav-toggle span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 1.5px;
  margin: 0;
  border-radius: 0;
  background: var(--color-ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span:nth-child(1) { transform: translate(-50%, -7px); }
.nav-toggle span:nth-child(2) { transform: translate(-50%, -50%); }
.nav-toggle span:nth-child(3) { transform: translate(-50%, 6px); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); }

.hero {
  position: relative;
  overflow: hidden;
  display: block;
  min-height: min(760px, calc(100svh - 82px));
  padding: clamp(54px, 5.8vw, 84px) 0 clamp(58px, 6.4vw, 92px);
  background:
    radial-gradient(circle at 86% 18%, rgba(242, 100, 25, 0.22), transparent 24%),
    linear-gradient(112deg, #fffdfa 0%, #fffdfa 44%, #f3ede3 100%);
  color: var(--color-ink);
}

.hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 44%;
  height: 6px;
  background: linear-gradient(90deg, var(--color-accent), #ffae27);
  content: "";
}

.hero::after {
  position: absolute;
  right: -150px;
  bottom: -250px;
  width: 630px;
  height: 630px;
  border: 1px solid rgba(242, 100, 25, 0.22);
  border-radius: 50%;
  background: radial-gradient(circle, transparent 58%, rgba(242, 100, 25, 0.035) 59% 70%, transparent 71%);
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0 0 0 48%;
  opacity: 0.52;
  background-image:
    linear-gradient(rgba(23, 23, 19, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 23, 19, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(90deg, transparent, #000 24%, #000 82%, transparent);
  pointer-events: none;
}

.hero-index {
  position: absolute;
  right: 22px;
  bottom: 18px;
  z-index: 2;
  color: var(--color-muted);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.47fr) minmax(0, 0.53fr);
  align-items: center;
  gap: clamp(34px, 4vw, 62px);
}

.hero-copy {
  z-index: 3;
  max-width: 610px;
  padding-block: 8px;
  animation: heroCopyIn 650ms cubic-bezier(.2,.75,.2,1) both;
}

.hero .eyebrow {
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 9px;
  margin-bottom: 22px;
  border: 1px solid rgba(242, 100, 25, 0.24);
  padding: 8px 10px;
  background: rgba(255, 253, 248, 0.72);
  color: var(--color-focus);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
}

.hero .eyebrow::before {
  width: 18px;
  height: 6px;
  background: linear-gradient(90deg, var(--color-accent) 0 45%, transparent 45% 58%, var(--color-accent) 58% 100%);
  content: "";
}

.hero h1 {
  max-width: none;
  margin: 0 0 26px;
  color: var(--color-ink);
  font-size: clamp(3.45rem, 4.6vw, 4.15rem);
  font-weight: 900;
  letter-spacing: -0.067em;
  line-height: 0.89;
}

.hero h1 > span,
.hero h1 > .hero-accent {
  display: block;
  width: max-content;
  max-width: 100%;
  word-spacing: 0.07em;
  white-space: nowrap;
}

.hero h1 .hero-accent {
  position: relative;
  color: var(--color-accent);
}

.hero h1 .hero-accent::after {
  position: absolute;
  right: 1%;
  bottom: -9px;
  left: 2%;
  height: 5px;
  background: linear-gradient(90deg, var(--color-accent), rgba(242, 100, 25, 0.06));
  content: "";
  transform: skewX(-28deg);
}

.hero-lead {
  max-width: 555px;
  margin: 0 0 31px;
  color: var(--color-muted);
  font-size: clamp(1.02rem, 1.2vw, 1.14rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin: 0;
}

.hero-actions .button {
  min-height: 54px;
  gap: 24px;
  border-radius: var(--radius-xs);
  padding-inline: 20px;
}

.hero-actions .button span {
  color: inherit;
  font-size: 1.05rem;
  transition: transform 180ms ease;
}

.hero-primary:hover span { transform: translateX(3px); }
.hero-secondary:hover span { transform: translate(2px, 2px); }

.hero-secondary {
  border-color: var(--color-border-strong);
  background: rgba(255, 253, 248, 0.76);
  color: var(--color-graphite);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 17px 0 0;
  color: #625d55;
  font-size: 0.73rem;
  font-weight: 750;
  letter-spacing: 0.025em;
}

.hero-proof span {
  position: relative;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(242, 100, 25, 0.34);
  border-radius: 50%;
  background: rgba(242, 100, 25, 0.08);
}

.hero-proof span::before {
  position: absolute;
  top: 6px;
  left: 6px;
  width: 8px;
  height: 5px;
  border-bottom: 2px solid var(--color-accent);
  border-left: 2px solid var(--color-accent);
  content: "";
  transform: rotate(-45deg);
}

.hero-visual {
  position: relative;
  min-width: 0;
  min-height: 590px;
  isolation: isolate;
  animation: heroVisualIn 760ms 90ms cubic-bezier(.2,.75,.2,1) both;
}

.hero-visual::before {
  position: absolute;
  top: 44px;
  right: -70px;
  bottom: 46px;
  left: 72px;
  z-index: -2;
  border: 1px solid rgba(242, 100, 25, 0.25);
  border-radius: 30px 0 0 30px;
  background:
    linear-gradient(rgba(255,255,255,.17) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.17) 1px, transparent 1px),
    linear-gradient(145deg, rgba(255, 176, 55, 0.78), rgba(242, 100, 25, 0.2) 44%, rgba(23, 23, 19, 0.04) 76%);
  background-size: 38px 38px, 38px 38px, auto;
  box-shadow: 0 38px 90px rgba(177, 62, 5, 0.13);
  content: "";
  transform: skewY(-2deg);
}

.hero-visual::after {
  position: absolute;
  right: 3%;
  bottom: 35px;
  z-index: -1;
  width: 72%;
  height: 64%;
  border: 1px solid rgba(23, 23, 19, 0.13);
  content: "";
  transform: translate(18px, 18px) rotate(1.5deg);
}

.hero-visual-label {
  position: absolute;
  top: 95px;
  right: -9px;
  z-index: 7;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 5px;
  color: var(--color-graphite);
  font-size: 0.48rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(100%);
  transform-origin: 100% 0;
}

.hero-visual-label span {
  color: var(--color-focus);
  font-weight: 900;
}

.hero-visual-label strong {
  font-size: 0.55rem;
}

.hero-browser {
  position: absolute;
  top: 82px;
  left: 5px;
  z-index: 2;
  overflow: hidden;
  width: 89%;
  border: 7px solid #181816;
  border-bottom-width: 10px;
  border-radius: 14px;
  background: #181816;
  box-shadow: 0 42px 88px rgba(23, 23, 19, 0.28), 0 10px 24px rgba(23, 23, 19, 0.14);
  transform: perspective(1300px) rotateX(1.5deg) rotateY(-3.5deg) rotate(-1.1deg);
  transform-origin: 50% 100%;
}

.hero-browser-base {
  position: absolute;
  right: 8%;
  bottom: 76px;
  left: -1%;
  z-index: 1;
  height: 18px;
  border-radius: 3px 3px 15px 15px;
  background: linear-gradient(180deg, #77766f, #292925 45%, #11110f);
  box-shadow: 0 20px 24px rgba(23, 23, 19, 0.18);
  transform: perspective(600px) rotateX(58deg) rotate(-1deg);
}

.browser-chrome {
  display: flex;
  height: 37px;
  align-items: center;
  gap: 5px;
  border-bottom: 1px solid rgba(255, 253, 248, 0.13);
  padding: 0 12px;
  background: #181816;
}

.browser-chrome > span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.34);
}

.browser-chrome > span:first-child { background: var(--color-accent); }

.browser-chrome small {
  overflow: hidden;
  margin-left: 8px;
  color: rgba(255, 253, 248, 0.58);
  font-size: 0.5rem;
  letter-spacing: 0.03em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.browser-screen {
  min-height: 370px;
  padding: 18px 19px 21px;
}

.dental-screen {
  background: linear-gradient(140deg, #f8f4ec 0%, #f5eee4 56%, #dfe2d4 100%);
}

.preview-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(42, 49, 42, 0.14);
  padding-bottom: 12px;
  color: #2a312a;
}

.preview-nav strong {
  font-family: Georgia, serif;
  font-size: 0.78rem;
  letter-spacing: -0.03em;
}

.preview-nav span {
  font-size: 0.38rem;
  font-weight: 700;
}

.preview-hero {
  display: grid;
  min-height: 230px;
  grid-template-columns: minmax(0, 1.04fr) minmax(150px, 0.96fr);
  align-items: center;
  gap: 14px;
}

.preview-hero > div:first-child {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.preview-hero small {
  margin-bottom: 10px;
  color: #596355;
  font-size: 0.4rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.preview-hero strong {
  max-width: 13ch;
  color: #283029;
  font-family: Georgia, serif;
  font-size: clamp(1.15rem, 1.9vw, 1.75rem);
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.preview-hero > div:first-child > span {
  margin-top: 16px;
  border: 1px solid #38433a;
  border-radius: 2px;
  padding: 7px 9px;
  color: #283029;
  font-size: 0.47rem;
  font-weight: 800;
}

.preview-photo {
  position: relative;
  overflow: hidden;
  height: 188px;
  border-radius: 46% 46% 5px 5px;
  background:
    radial-gradient(circle at 52% 34%, #e8cfb5 0 14%, transparent 15%),
    radial-gradient(ellipse at 50% 88%, #f2ede4 0 43%, transparent 44%),
    linear-gradient(145deg, #9ca798, #566359);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.preview-photo::after {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: inherit;
  content: "";
}

.preview-photo i {
  position: absolute;
  right: 16%;
  bottom: 0;
  width: 2px;
  height: 38%;
  background: rgba(255, 255, 255, 0.46);
}

.preview-photo i:nth-child(2) { right: 25%; height: 28%; }
.preview-photo i:nth-child(3) { right: 34%; height: 20%; }

.preview-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.preview-services span {
  height: 48px;
  border-top: 1px solid rgba(42, 49, 42, 0.28);
  background:
    linear-gradient(#38433a, #38433a) 0 12px / 42% 4px no-repeat,
    linear-gradient(rgba(56, 67, 58, 0.3), rgba(56, 67, 58, 0.3)) 0 24px / 75% 3px no-repeat;
}

.hero-phone {
  position: absolute;
  right: -2px;
  bottom: 52px;
  z-index: 4;
  width: 166px;
  height: 346px;
  border: 7px solid #171713;
  border-radius: 25px;
  padding: 5px;
  background: #171713;
  box-shadow: 0 34px 68px rgba(23, 23, 19, 0.31), 0 8px 16px rgba(23, 23, 19, 0.18);
  transform: perspective(1000px) rotateY(-5deg) rotate(2.4deg);
}

.phone-speaker {
  position: absolute;
  top: 8px;
  left: 50%;
  z-index: 2;
  width: 38px;
  height: 5px;
  border-radius: 99px;
  background: #171713;
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  overflow: hidden;
  display: flex;
  height: 100%;
  flex-direction: column;
  border-radius: 16px;
  padding: 18px 12px 12px;
  background:
    radial-gradient(circle at 92% 12%, rgba(242, 100, 25, 0.35), transparent 27%),
    linear-gradient(155deg, #fffdf8 0%, #f0e8db 61%, #d4c0a3 100%);
}

.phone-brand {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 36px;
  color: #171713;
}

.phone-brand strong {
  display: grid;
  width: 24px;
  height: 19px;
  place-items: center;
  background: #171713;
  color: #fffdf8;
  font-size: 0.46rem;
}

.phone-brand span {
  color: #171713;
  font-size: 0.36rem;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.phone-screen > small {
  margin-bottom: 8px;
  color: #b83c00;
  font-size: 0.37rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.phone-screen > strong {
  position: relative;
  z-index: 2;
  color: #171713;
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.phone-screen > span {
  position: relative;
  z-index: 2;
  width: fit-content;
  margin-top: 14px;
  border-radius: 2px;
  padding: 6px 7px;
  background: var(--color-accent);
  color: #171713;
  font-size: 0.42rem;
  font-weight: 900;
}

.phone-air {
  position: absolute;
  right: -24px;
  bottom: 18px;
  width: 118px;
  height: 108px;
  border-radius: 48% 0 0;
  background: linear-gradient(145deg, #4c4b46, #1f211f);
  transform: rotate(-10deg);
}

.phone-air i {
  position: absolute;
  top: 25px;
  right: 16px;
  width: 78px;
  height: 17px;
  border: 2px solid rgba(255, 255, 255, 0.38);
  border-radius: 4px;
  transform: rotate(8deg);
}

.hero-lead-card {
  position: absolute;
  top: 8px;
  left: 22px;
  z-index: 5;
  display: flex;
  width: min(288px, 48%);
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(242, 100, 25, 0.34);
  border-radius: var(--radius-sm);
  padding: 11px 12px;
  background: rgba(255, 253, 248, 0.98);
  box-shadow: 0 20px 46px rgba(23, 23, 19, 0.18);
  animation: heroMicroIn 520ms 520ms ease both;
}

.lead-status-icon {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  place-items: center;
  border-radius: var(--radius-xs);
  background: var(--color-accent-soft);
  color: var(--color-focus);
}

.lead-status-icon svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-lead-card div {
  display: grid;
  min-width: 0;
}

.hero-lead-card small {
  color: var(--color-muted);
  font-size: 0.55rem;
  font-weight: 700;
}

.hero-lead-card strong {
  overflow: hidden;
  color: var(--color-ink);
  font-size: 0.68rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lead-card-state {
  margin-left: auto;
  color: var(--color-focus);
  font-size: 0.48rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.automation-path {
  position: absolute;
  bottom: 0;
  left: 24px;
  z-index: 6;
  display: grid;
  width: calc(100% - 196px);
  grid-template-columns: 1fr 24px 1fr 24px 1fr;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  background: rgba(23, 23, 19, 0.98);
  box-shadow: 0 22px 52px rgba(23, 23, 19, 0.27);
  animation: heroMicroIn 520ms 650ms ease both;
}

.automation-path div {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.automation-path div > span {
  color: var(--color-accent);
  font-size: 0.46rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.automation-path strong {
  overflow: hidden;
  color: var(--color-white);
  font-size: 0.59rem;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.automation-path > i {
  position: relative;
  height: 1px;
  background: rgba(255, 253, 248, 0.22);
}

.automation-path > i::after {
  position: absolute;
  top: -2px;
  right: -1px;
  width: 5px;
  height: 5px;
  border-top: 1px solid var(--color-accent);
  border-right: 1px solid var(--color-accent);
  content: "";
  transform: rotate(45deg);
}

.value-strip {
  position: relative;
  z-index: 3;
  border-top: 4px solid var(--color-accent);
  border-bottom: 1px solid rgba(255, 253, 248, 0.08);
  background:
    radial-gradient(circle at 12% 50%, rgba(242, 100, 25, 0.12), transparent 24%),
    #181816;
}

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

.value-strip-grid > div {
  display: flex;
  min-width: 0;
  min-height: 110px;
  align-items: center;
  gap: 15px;
  border-left: 1px solid rgba(255, 253, 248, 0.12);
  padding: 22px clamp(14px, 2vw, 26px);
}

.value-strip-grid > div:last-child {
  border-right: 1px solid rgba(255, 253, 248, 0.12);
}

.value-icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border: 1px solid rgba(242, 100, 25, 0.42);
  background: linear-gradient(145deg, rgba(242, 100, 25, 0.2), rgba(242, 100, 25, 0.025));
  color: var(--color-accent);
}

.value-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.value-copy small {
  color: var(--color-accent);
  font-size: 0.52rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.value-strip strong {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: clamp(0.82rem, 1.02vw, 0.96rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.22;
}

@keyframes heroCopyIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

@keyframes heroVisualIn {
  from { opacity: 0; transform: translateY(18px) scale(0.985); }
  to { opacity: 1; transform: none; }
}

@keyframes heroMicroIn {
  from { opacity: 0; transform: translateY(9px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 1120px) {
  .hero-content {
    grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
    gap: 30px;
  }

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

  .hero-visual {
    min-height: 535px;
  }

  .browser-screen {
    min-height: 338px;
  }

  .preview-hero {
    min-height: 208px;
  }

  .hero-phone {
    width: 148px;
    height: 315px;
  }

  .automation-path {
    width: calc(100% - 165px);
  }
}

@media (max-width: 980px) {
  body.nav-open {
    overflow: hidden;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    right: 16px;
    left: 16px;
    display: grid;
    gap: 0;
    margin: 0;
    border: 1px solid var(--color-border);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    padding: 10px;
    background: rgba(255, 253, 248, 0.99);
    box-shadow: 0 22px 44px rgba(23, 23, 19, 0.13);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    visibility: hidden;
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

  .nav-links.is-open {
    display: grid;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .nav-links a:not(.button) {
    min-height: 46px;
    padding: 13px 12px;
    border-bottom: 1px solid var(--color-border);
  }

  .nav-links a:not(.button)::after {
    display: none;
  }

  .nav-cta {
    width: 100%;
    max-width: none;
    min-height: 48px;
    justify-content: space-between;
    margin-top: 10px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: minmax(0, 0.49fr) minmax(0, 0.51fr);
    gap: 24px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 5.1vw, 3.25rem);
  }

  .hero-visual {
    min-height: 488px;
  }

  .hero-browser {
    top: 78px;
    width: 90%;
  }

  .browser-screen {
    min-height: 300px;
  }

  .preview-hero {
    min-height: 185px;
    grid-template-columns: 1fr 130px;
  }

  .preview-photo {
    height: 158px;
  }

  .preview-services span {
    height: 38px;
  }

  .hero-phone {
    right: -5px;
    bottom: 48px;
    width: 132px;
    height: 282px;
  }

  .automation-path {
    left: 15px;
    width: calc(100% - 147px);
    grid-template-columns: 1fr 14px 1fr 14px 1fr;
    padding-inline: 10px;
  }

  .value-strip-grid > div {
    min-height: 100px;
    gap: 10px;
    padding-inline: 12px;
  }

  .value-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }
}

@media (max-width: 780px) {
  .hero {
    padding: 48px 0 54px;
  }

  .hero-grid {
    inset: 48% 0 0 20%;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-copy {
    max-width: 680px;
    padding: 0;
  }

  .hero h1 {
    max-width: 690px;
    font-size: clamp(3.45rem, 9.2vw, 4.45rem);
  }

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

  .hero-visual {
    width: min(100%, 670px);
    min-height: 540px;
    margin: 0 auto;
  }

  .hero-browser {
    top: 80px;
    width: 88%;
  }

  .browser-screen {
    min-height: 336px;
  }

  .preview-hero {
    min-height: 190px;
  }

  .hero-phone {
    right: 0;
    bottom: 55px;
    width: 144px;
    height: 304px;
  }

  .hero-lead-card {
    left: 4%;
  }

  .automation-path {
    left: 3%;
    width: calc(100% - 168px);
  }

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

  .value-strip-grid > div {
    border-bottom: 1px solid rgba(255, 253, 248, 0.12);
  }

  .value-strip-grid > div:nth-child(2n) {
    border-right: 1px solid rgba(255, 253, 248, 0.12);
  }

  .value-strip-grid > div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 520px) {
  .site-header .nav {
    min-height: 64px;
  }

  .brand-mark {
    width: 45px;
    height: 29px;
  }

  .brand-wordmark small {
    display: none;
  }

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

  .hero::before {
    width: 34%;
    height: 4px;
  }

  .hero-index {
    display: none;
  }

  .hero .eyebrow {
    margin-bottom: 16px;
    font-size: 0.61rem;
    letter-spacing: 0.1em;
  }

  .hero .eyebrow::before {
    width: 18px;
  }

  .hero h1 {
    margin-bottom: 20px;
    font-size: clamp(2.2rem, 10.1vw, 2.85rem);
    letter-spacing: -0.066em;
    line-height: 0.94;
  }

  .hero-lead {
    margin-bottom: 24px;
    font-size: 0.96rem;
    line-height: 1.53;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 50px;
    justify-content: space-between;
  }

  .hero-proof {
    margin-top: 14px;
    font-size: 0.68rem;
  }

  .hero-visual {
    min-height: 455px;
    margin-top: 6px;
  }

  .hero-visual::before {
    top: 54px;
    right: -32px;
    bottom: 42px;
    left: 22px;
    border-radius: 20px 0 0 20px;
    background-size: 30px 30px, 30px 30px, auto;
  }

  .hero-visual::after {
    right: 5%;
    bottom: 65px;
    width: 78%;
    height: 63%;
  }

  .hero-visual-label {
    display: none;
  }

  .hero-browser {
    top: 65px;
    left: 0;
    width: calc(100% - 28px);
    border-width: 5px;
    border-bottom-width: 8px;
    border-radius: 10px;
    transform: perspective(900px) rotateY(-2deg) rotate(-0.8deg);
  }

  .hero-browser-base {
    right: 5%;
    bottom: 76px;
    left: -2%;
    height: 14px;
  }

  .browser-chrome {
    height: 27px;
    padding-inline: 8px;
  }

  .browser-screen {
    min-height: 255px;
    padding: 11px;
  }

  .preview-nav {
    padding-bottom: 8px;
  }

  .preview-nav span {
    display: none;
  }

  .preview-hero {
    min-height: 157px;
    grid-template-columns: 1.06fr 0.94fr;
    gap: 8px;
  }

  .preview-hero small {
    margin-bottom: 6px;
    font-size: 0.3rem;
  }

  .preview-hero strong {
    font-size: clamp(0.86rem, 4vw, 1.08rem);
  }

  .preview-hero > div:first-child > span {
    margin-top: 9px;
    padding: 5px;
    font-size: 0.34rem;
  }

  .preview-photo {
    height: 128px;
  }

  .preview-services {
    gap: 6px;
  }

  .preview-services span {
    height: 31px;
  }

  .hero-phone {
    right: -3px;
    bottom: 70px;
    width: 108px;
    height: 232px;
    border-width: 4px;
    border-radius: 19px;
    padding: 3px;
  }

  .phone-screen {
    border-radius: 13px;
    padding: 15px 8px 8px;
  }

  .phone-brand {
    margin-bottom: 24px;
  }

  .phone-brand span {
    display: none;
  }

  .phone-screen > strong {
    font-size: 0.7rem;
  }

  .phone-air {
    right: -30px;
    width: 91px;
    height: 82px;
  }

  .hero-lead-card {
    top: 2px;
    left: 5px;
    width: 226px;
    max-width: 72%;
    padding: 8px;
  }

  .lead-status-icon {
    width: 27px;
    height: 27px;
    flex-basis: 27px;
  }

  .lead-card-state {
    display: none;
  }

  .automation-path {
    bottom: 0;
    left: 0;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    padding: 9px 8px;
  }

  .automation-path > i {
    display: none;
  }

  .automation-path > div + div {
    border-left: 1px solid rgba(255, 253, 248, 0.14);
    padding-left: 8px;
  }

  .automation-path strong {
    overflow: visible;
    font-size: 0.49rem;
    line-height: 1.13;
    text-overflow: clip;
    white-space: normal;
  }

  .value-strip-grid > div {
    min-height: 104px;
    gap: 9px;
    padding: 15px 10px;
  }

  .value-icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .value-icon svg {
    width: 24px;
    height: 24px;
  }

  .value-strip strong {
    font-size: 0.72rem;
  }

  .value-copy small {
    font-size: 0.43rem;
    letter-spacing: 0.085em;
  }
}

@media (max-width: 360px) {
  .brand-wordmark strong {
    font-size: 0.8rem;
  }

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

  .hero-visual {
    min-height: 438px;
  }

  .hero-lead-card {
    max-width: 70%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy,
  .hero-visual,
  .hero-lead-card,
  .automation-path {
    animation: none;
  }

  .site-header,
  .nav,
  .nav-links,
  .nav-toggle span,
  .nav-cta span,
  .hero-actions .button span {
    transition: none;
  }
}


/* Round 3: value proposition and the visitor-to-customer system flow. */

.value-proposition-section {
  position: relative;
  overflow: hidden;
  padding: clamp(78px, 8vw, 118px) 0 clamp(88px, 9vw, 132px);
  background:
    linear-gradient(90deg, rgba(242, 100, 25, 0.045) 1px, transparent 1px) 0 0 / 25% 100%,
    linear-gradient(180deg, var(--color-surface) 0%, var(--color-canvas-soft) 100%);
  color: var(--color-ink);
}

.value-proposition-section::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  margin-left: calc((100% - min(calc(100% - 32px), var(--container))) / 2);
  background: rgba(23, 23, 19, 0.08);
  content: "";
}

.value-proposition-index,
.system-flow-index {
  position: absolute;
  right: 22px;
  bottom: 18px;
  color: var(--color-muted);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.value-proposition-heading {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.78fr);
  align-items: end;
  gap: clamp(42px, 6vw, 88px);
  margin-bottom: clamp(48px, 6vw, 82px);
}

.value-proposition-heading .eyebrow,
.system-flow-heading .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--color-focus);
  font-size: var(--type-label);
  letter-spacing: 0.13em;
}

.value-proposition-heading .eyebrow::before,
.system-flow-heading .eyebrow::before {
  width: 28px;
  height: 2px;
  background: var(--color-accent);
  content: "";
}

.value-proposition-heading h2 {
  max-width: 900px;
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(2.75rem, 5vw, 4.85rem);
  font-weight: 850;
  letter-spacing: -0.062em;
  line-height: 0.98;
}

.value-proposition-heading h2 > span {
  display: block;
}

.value-proposition-heading h2 > span + span {
  margin-top: 0.11em;
}

.value-proposition-heading h2 em,
.system-flow-heading h2 em {
  color: var(--color-accent);
  font-style: normal;
}

.value-proposition-lead {
  max-width: 440px;
  margin: 0 0 5px;
  border-left: 2px solid var(--color-accent);
  padding-left: 22px;
  color: var(--color-muted);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.62;
}

.value-editorial-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(238px, auto));
  border-top: 1px solid var(--color-border-strong);
  border-bottom: 1px solid var(--color-border-strong);
}

.value-story {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  padding: clamp(28px, 3vw, 42px);
}

.value-story:nth-child(2) {
  grid-column: 6 / 9;
  grid-row: 1;
  border-bottom: 1px solid var(--color-border);
}

.value-story:nth-child(3) {
  grid-column: 9 / 13;
  grid-row: 1;
  border-bottom: 1px solid var(--color-border);
  border-left: 1px solid var(--color-border);
}

.value-story:nth-child(4) {
  grid-column: 6 / 9;
  grid-row: 2;
}

.value-story:nth-child(5) {
  grid-column: 9 / 13;
  grid-row: 2;
  border-left: 1px solid var(--color-border);
}

.value-story-featured {
  grid-column: 1 / 6;
  grid-row: 1 / 3;
  justify-content: flex-start;
  border-right: 1px solid var(--color-border-strong);
  padding-left: 0;
}

.value-story-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--color-muted);
}

.value-story-meta > span {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.value-story-meta svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--color-accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.value-story-copy h3 {
  max-width: 18ch;
  margin: 0 0 12px;
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 1.65vw, 1.55rem);
  font-weight: 750;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.value-story-copy p {
  max-width: 34ch;
  margin: 0;
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.value-story-featured .value-story-meta {
  width: 100%;
  padding-right: clamp(28px, 3vw, 42px);
}

.value-story-featured .value-story-copy {
  margin-top: auto;
}

.value-story-featured .value-story-copy h3 {
  font-size: clamp(1.75rem, 2.5vw, 2.35rem);
}

.value-story-featured .value-story-copy p {
  font-size: 1rem;
}

.value-system-visual {
  position: relative;
  width: calc(100% - clamp(28px, 3vw, 42px));
  min-height: 248px;
  margin: 18px 0 38px;
  background:
    linear-gradient(rgba(255, 253, 248, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 253, 248, 0.045) 1px, transparent 1px),
    var(--color-graphite);
  background-size: 32px 32px;
  box-shadow: var(--shadow-md);
}

.value-browser {
  position: absolute;
  top: 30px;
  left: 26px;
  width: 58%;
  min-height: 142px;
  border: 1px solid rgba(255, 253, 248, 0.2);
  padding: 38px 15px 14px;
  background: rgba(255, 253, 248, 0.07);
}

.value-browser > div {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  height: 25px;
  align-items: center;
  gap: 5px;
  border-bottom: 1px solid rgba(255, 253, 248, 0.12);
  padding-inline: 9px;
}

.value-browser i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.34);
}

.value-browser i:first-child {
  background: var(--color-accent);
}

.value-browser > span {
  display: block;
  width: 76%;
  height: 7px;
  margin-bottom: 8px;
  background: rgba(255, 253, 248, 0.72);
}

.value-browser > span + span {
  width: 52%;
  background: rgba(255, 253, 248, 0.25);
}

.value-browser strong {
  display: inline-block;
  margin-top: 18px;
  padding: 7px 8px;
  background: var(--color-accent);
  color: var(--color-ink);
  font-size: 0.43rem;
  letter-spacing: 0.04em;
}

.value-route {
  position: absolute;
  top: 96px;
  left: 59%;
  display: grid;
  width: 18%;
  gap: 7px;
  color: rgba(255, 253, 248, 0.52);
  text-align: center;
}

.value-route i {
  position: relative;
  display: block;
  height: 1px;
  background: var(--color-accent);
}

.value-route i::after {
  position: absolute;
  top: -3px;
  right: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid var(--color-accent);
  border-right: 1px solid var(--color-accent);
  content: "";
  transform: rotate(45deg);
}

.value-route span {
  font-size: 0.39rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.value-contact {
  position: absolute;
  right: 22px;
  bottom: 34px;
  display: grid;
  width: 33%;
  min-height: 112px;
  align-content: center;
  gap: 2px;
  border-top: 2px solid var(--color-accent);
  padding: 16px 13px;
  background: var(--color-surface);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
}

.value-contact svg {
  width: 20px;
  margin-bottom: 7px;
  fill: none;
  stroke: var(--color-accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.value-contact span {
  color: var(--color-muted);
  font-size: 0.47rem;
}

.value-contact strong {
  color: var(--color-ink);
  font-size: 0.61rem;
}

/* Dark system flow */

.system-flow-section {
  position: relative;
  overflow: hidden;
  padding: clamp(88px, 9vw, 134px) 0 clamp(96px, 10vw, 146px);
  background: #1d1d1a;
  color: var(--color-white);
}

.system-flow-section::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 4px;
  background: var(--color-accent);
  content: "";
}

.system-flow-section::after {
  position: absolute;
  right: -120px;
  bottom: -190px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(242, 100, 25, 0.13);
  border-radius: 50%;
  content: "";
}

.system-flow-grid {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(255, 253, 248, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 253, 248, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
  pointer-events: none;
}

.system-flow-index {
  z-index: 2;
  color: rgba(255, 253, 248, 0.52);
}

.system-flow-section > .container {
  position: relative;
  z-index: 2;
}

.system-flow-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: clamp(44px, 7vw, 96px);
  margin-bottom: clamp(52px, 7vw, 88px);
}

.system-flow-heading .eyebrow {
  color: #ff8b50;
}

.system-flow-heading h2 {
  max-width: 760px;
  margin: 0;
  color: var(--color-white);
  font-size: clamp(2.8rem, 5.15vw, 5rem);
  font-weight: 850;
  letter-spacing: -0.064em;
  line-height: 0.98;
}

.system-flow-heading > p {
  max-width: 460px;
  margin: 0 0 6px;
  color: rgba(255, 253, 248, 0.66);
  font-size: clamp(1rem, 1.16vw, 1.1rem);
  line-height: 1.64;
}

.flow-route-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 28px;
  border-top: 1px solid rgba(255, 253, 248, 0.12);
  border-bottom: 1px solid rgba(255, 253, 248, 0.12);
  padding: 14px 18px;
  color: rgba(255, 253, 248, 0.54);
  font-family: var(--font-heading);
  font-size: clamp(0.67rem, 0.9vw, 0.8rem);
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.flow-route-label i {
  color: rgba(255, 253, 248, 0.24);
  font-style: normal;
}

.flow-route-label .is-accent {
  color: var(--color-accent);
}

.customer-flow {
  position: relative;
  display: grid;
  min-width: 0;
  grid-template-columns: 0.95fr 0.9fr 1.35fr 1.08fr;
  isolation: isolate;
}

.customer-flow::before,
.customer-flow::after {
  position: absolute;
  top: 31px;
  right: 34px;
  left: 34px;
  z-index: -1;
  height: 1px;
  content: "";
  transform-origin: left;
}

.customer-flow::before {
  background: rgba(255, 253, 248, 0.17);
}

.customer-flow::after {
  background: linear-gradient(90deg, rgba(242, 100, 25, 0.42), var(--color-accent) 66%, rgba(242, 100, 25, 0.45));
}

.flow-stage {
  position: relative;
  min-width: 0;
  padding: 0 clamp(17px, 2vw, 28px) 8px;
}

.flow-stage:first-child {
  padding-left: 0;
}

.flow-stage:last-child {
  padding-right: 0;
}

.flow-stage + .flow-stage {
  border-left: 1px solid rgba(255, 253, 248, 0.1);
}

.flow-stage:not(:last-child)::after {
  position: absolute;
  top: 27px;
  right: -3px;
  z-index: 3;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--color-accent);
  border-right: 1px solid var(--color-accent);
  content: "";
  transform: rotate(45deg);
}

.flow-stage-marker {
  position: relative;
  z-index: 2;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid rgba(255, 253, 248, 0.24);
  border-radius: 50%;
  background: #1d1d1a;
  color: rgba(255, 253, 248, 0.72);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
}

.flow-stage-automation {
  margin-top: -18px;
  padding-top: 18px;
  padding-bottom: 24px;
  background: linear-gradient(180deg, rgba(242, 100, 25, 0.1), rgba(242, 100, 25, 0.025));
  box-shadow: inset 2px 0 0 rgba(242, 100, 25, 0.52);
}

.flow-stage-automation .flow-stage-marker {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: var(--color-ink);
  box-shadow: 0 0 0 6px rgba(242, 100, 25, 0.1);
}

.flow-stage-body {
  margin-top: 28px;
}

.flow-stage-body > small {
  display: block;
  margin-bottom: 9px;
  color: #ff8b50;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.flow-stage-body h3 {
  max-width: 19ch;
  margin: 0 0 13px;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 1.5vw, 1.42rem);
  font-weight: 720;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.flow-stage-body > p {
  max-width: 32ch;
  margin: 0;
  color: rgba(255, 253, 248, 0.59);
  font-size: 0.86rem;
  line-height: 1.58;
}

.flow-micro-ui {
  margin-top: 24px;
  border: 1px solid rgba(255, 253, 248, 0.15);
  border-radius: var(--radius-sm);
  background: rgba(8, 8, 7, 0.52);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.2);
}

.flow-micro-ui > div {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 253, 248, 0.1);
  padding: 11px 12px;
}

.flow-micro-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  background: rgba(242, 100, 25, 0.14);
  color: var(--color-accent);
}

.flow-micro-icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.flow-micro-ui > div strong {
  overflow: hidden;
  color: var(--color-white);
  font-size: 0.66rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.flow-micro-ui > div small {
  color: var(--color-accent);
  font-size: 0.48rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.flow-micro-ui ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 12px;
  list-style: none;
}

.flow-micro-ui li {
  position: relative;
  padding-left: 19px;
  color: rgba(255, 253, 248, 0.7);
  font-size: 0.62rem;
  font-weight: 600;
}

.flow-micro-ui li::before {
  position: absolute;
  top: 0.03em;
  left: 0;
  display: grid;
  width: 13px;
  height: 13px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-ink);
  content: "✓";
  font-size: 0.5rem;
  font-weight: 900;
}

/* One-time, progressive reveal. Content stays visible when JavaScript is unavailable. */

@media (prefers-reduced-motion: no-preference) {
  .reveal-enabled [data-reveal] {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 620ms ease, transform 620ms cubic-bezier(0.2, 0.75, 0.2, 1);
  }

  .reveal-enabled [data-reveal].is-visible {
    opacity: 1;
    transform: none;
  }

  .reveal-enabled .value-story:nth-child(3),
  .reveal-enabled .value-story:nth-child(5) {
    transition-delay: 70ms;
  }

  .reveal-enabled .customer-flow::after {
    transform: scaleX(0);
    transition: transform 900ms 180ms cubic-bezier(0.2, 0.75, 0.2, 1);
  }

  .reveal-enabled .customer-flow.is-visible::after {
    transform: scaleX(1);
  }
}

@media (max-width: 1100px) {
  .value-proposition-heading,
  .system-flow-heading {
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.75fr);
    gap: 42px;
  }

  .value-editorial-grid {
    grid-template-rows: repeat(2, minmax(224px, auto));
  }

  .value-story:nth-child(2),
  .value-story:nth-child(4) {
    grid-column: 6 / 10;
  }

  .value-story:nth-child(3),
  .value-story:nth-child(5) {
    grid-column: 10 / 13;
  }

  .value-system-visual {
    min-height: 230px;
  }

  .value-browser {
    left: 18px;
    width: 61%;
  }

  .value-contact {
    right: 14px;
    width: 35%;
  }

  .customer-flow {
    grid-template-columns: 0.9fr 0.82fr 1.38fr 1fr;
  }

  .flow-stage {
    padding-inline: 17px;
  }

  .flow-stage-body h3 {
    font-size: 1.12rem;
  }
}

@media (max-width: 900px) {
  .value-proposition-heading,
  .system-flow-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 26px;
  }

  .value-proposition-lead {
    max-width: 660px;
  }

  .value-editorial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .value-story-featured {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 455px;
    border-right: 0;
    border-bottom: 1px solid var(--color-border-strong);
    padding-right: 0;
  }

  .value-story:nth-child(n + 2) {
    grid-column: auto;
    grid-row: auto;
    min-height: 225px;
    border-bottom: 1px solid var(--color-border);
  }

  .value-story:nth-child(2n + 1):not(.value-story-featured) {
    border-left: 1px solid var(--color-border);
  }

  .value-story:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .value-story-featured .value-story-meta {
    padding-right: 0;
  }

  .value-system-visual {
    width: 100%;
    min-height: 245px;
  }

  .system-flow-heading > p {
    max-width: 670px;
  }

  .flow-route-label {
    padding-inline: 12px;
  }

  .customer-flow {
    grid-template-columns: 0.9fr 0.85fr 1.32fr 0.98fr;
  }

  .flow-stage {
    padding-inline: 13px;
  }

  .flow-stage-body > p {
    font-size: 0.79rem;
  }

  .flow-micro-ui > div {
    grid-template-columns: 25px minmax(0, 1fr);
  }

  .flow-micro-ui > div small {
    display: none;
  }
}

@media (max-width: 780px) {
  .value-proposition-section,
  .system-flow-section {
    padding-block: 76px 88px;
  }

  .value-proposition-heading h2,
  .system-flow-heading h2 {
    font-size: clamp(2.55rem, 8vw, 4rem);
  }

  .flow-route-label {
    display: none;
  }

  .customer-flow {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .customer-flow::before,
  .customer-flow::after {
    top: 31px;
    right: auto;
    bottom: 31px;
    left: 30px;
    width: 1px;
    height: auto;
    transform-origin: top;
  }

  .flow-stage,
  .flow-stage:first-child,
  .flow-stage:last-child {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 24px;
    border-left: 0;
    padding: 0 0 38px;
  }

  .flow-stage:last-child {
    padding-bottom: 0;
  }

  .flow-stage:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: 15px;
    left: 27px;
    transform: rotate(135deg);
  }

  .flow-stage-automation {
    margin: 0 0 38px;
    padding: 18px 18px 24px 0;
    box-shadow: inset 0 2px 0 rgba(242, 100, 25, 0.52);
  }

  .flow-stage-body {
    margin-top: 5px;
  }

  .flow-stage-body h3 {
    max-width: 27ch;
    font-size: 1.35rem;
  }

  .flow-stage-body > p {
    max-width: 55ch;
    font-size: 0.9rem;
  }

  .flow-micro-ui {
    width: min(100%, 420px);
  }

}

@media (max-width: 780px) and (prefers-reduced-motion: no-preference) {
  .reveal-enabled .customer-flow::after {
    transform: scaleY(0);
  }

  .reveal-enabled .customer-flow.is-visible::after {
    transform: scaleY(1);
  }
}

@media (max-width: 520px) {
  .value-proposition-section,
  .system-flow-section {
    padding-block: 64px 74px;
  }

  .value-proposition-index,
  .system-flow-index {
    display: none;
  }

  .value-proposition-heading,
  .system-flow-heading {
    gap: 22px;
    margin-bottom: 42px;
  }

  .value-proposition-heading .eyebrow,
  .system-flow-heading .eyebrow {
    margin-bottom: 15px;
    font-size: 0.64rem;
    letter-spacing: 0.1em;
  }

  .value-proposition-heading .eyebrow::before,
  .system-flow-heading .eyebrow::before {
    width: 19px;
  }

  .value-proposition-heading h2,
  .system-flow-heading h2 {
    font-size: clamp(2.25rem, 10.5vw, 3.2rem);
    letter-spacing: -0.06em;
    line-height: 0.99;
  }

  .value-proposition-lead {
    border-left-width: 1px;
    padding-left: 16px;
    font-size: 0.96rem;
    line-height: 1.56;
  }

  .value-editorial-grid {
    grid-template-columns: 1fr;
  }

  .value-story-featured {
    min-height: 0;
    padding: 25px 0 32px;
  }

  .value-story:nth-child(n + 2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--color-border);
    border-left: 0;
    padding: 25px 0;
  }

  .value-story:nth-child(5) {
    border-bottom: 0;
  }

  .value-story {
    gap: 26px;
  }

  .value-story-meta svg {
    width: 26px;
    height: 26px;
  }

  .value-system-visual {
    min-height: 220px;
    margin: 8px 0 28px;
  }

  .value-browser {
    top: 24px;
    left: 14px;
    width: 60%;
    min-height: 130px;
  }

  .value-route {
    top: 85px;
    left: 60%;
    width: 16%;
  }

  .value-route span {
    display: none;
  }

  .value-contact {
    right: 12px;
    bottom: 26px;
    width: 36%;
    min-height: 104px;
    padding: 12px 9px;
  }

  .value-story-featured .value-story-copy h3 {
    font-size: 1.65rem;
  }

  .value-story-copy h3 {
    font-size: 1.25rem;
  }

  .system-flow-heading > p {
    font-size: 0.96rem;
    line-height: 1.56;
  }

  .flow-stage,
  .flow-stage:first-child,
  .flow-stage:last-child {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 17px;
    padding-bottom: 34px;
  }

  .flow-stage:last-child {
    padding-bottom: 0;
  }

  .flow-stage-marker {
    width: 52px;
    height: 52px;
  }

  .customer-flow::before,
  .customer-flow::after {
    top: 26px;
    bottom: 26px;
    left: 25px;
  }

  .flow-stage:not(:last-child)::after {
    bottom: 13px;
    left: 22px;
  }

  .flow-stage-automation {
    margin-bottom: 34px;
    padding: 16px 12px 22px 0;
  }

  .flow-stage-body {
    margin-top: 1px;
  }

  .flow-stage-body > small {
    margin-bottom: 7px;
  }

  .flow-stage-body h3 {
    margin-bottom: 10px;
    font-size: 1.16rem;
  }

  .flow-stage-body > p {
    font-size: 0.84rem;
  }

  .flow-micro-ui {
    margin-top: 19px;
  }

  .flow-micro-ui > div {
    padding: 10px;
  }

  .flow-micro-ui > div strong {
    font-size: 0.61rem;
  }
}

@media (max-width: 360px) {
  .value-proposition-heading h2,
  .system-flow-heading h2 {
    font-size: 2.2rem;
  }

  .value-browser {
    width: 62%;
  }

  .value-contact {
    width: 38%;
  }

  .flow-stage,
  .flow-stage:first-child,
  .flow-stage:last-child {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
  }

  .flow-stage-marker {
    width: 48px;
    height: 48px;
  }

  .customer-flow::before,
  .customer-flow::after {
    top: 24px;
    bottom: 24px;
    left: 23px;
  }

  .flow-stage:not(:last-child)::after {
    left: 20px;
  }

  .flow-micro-ui > div strong {
    font-size: 0.56rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .value-proposition-section *,
  .system-flow-section * {
    scroll-behavior: auto;
    transition: none !important;
    animation: none !important;
  }
}


/* Round 4: large case studies and the concrete post-submit automation flow. */

.demos-section {
  position: relative;
  overflow: hidden;
  padding: clamp(88px, 9vw, 136px) 0 clamp(100px, 10vw, 152px);
  background:
    linear-gradient(90deg, rgba(23, 23, 19, 0.035) 1px, transparent 1px) 0 0 / 25% 100%,
    linear-gradient(180deg, var(--color-surface) 0%, var(--color-canvas-soft) 100%);
}

.demos-section::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 34%;
  height: 4px;
  background: var(--color-accent);
  content: "";
}

.case-studies-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: clamp(46px, 7vw, 96px);
  margin-bottom: clamp(64px, 8vw, 108px);
}

.case-studies-heading .eyebrow,
.automation-practice-copy > .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--color-focus);
  font-size: var(--type-label);
  letter-spacing: 0.13em;
}

.case-studies-heading .eyebrow::before,
.automation-practice-copy > .eyebrow::before {
  width: 28px;
  height: 2px;
  background: var(--color-accent);
  content: "";
}

.case-studies-heading h2 {
  max-width: 820px;
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(2.85rem, 5.2vw, 5rem);
  font-weight: 850;
  letter-spacing: -0.064em;
  line-height: 0.98;
}

.case-studies-heading h2 em {
  color: var(--color-accent);
  font-style: normal;
}

.case-studies-heading > p {
  max-width: 450px;
  margin: 0 0 5px;
  border-left: 2px solid var(--color-accent);
  padding-left: 22px;
  color: var(--color-muted);
  font-size: clamp(1rem, 1.18vw, 1.1rem);
  line-height: 1.62;
}

.case-studies-list {
  display: grid;
  gap: clamp(88px, 10vw, 148px);
}

.case-study {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.58fr) minmax(270px, 0.62fr);
  align-items: center;
  gap: clamp(40px, 5vw, 76px);
  border-top: 1px solid var(--color-border-strong);
  padding-top: clamp(34px, 4vw, 52px);
}

.case-study-climate {
  grid-template-columns: minmax(270px, 0.62fr) minmax(0, 1.58fr);
}

.case-study-climate .case-study-copy {
  grid-column: 1;
  grid-row: 1;
}

.case-study-climate .case-study-visual {
  grid-column: 2;
  grid-row: 1;
}

.case-study-visual {
  position: relative;
  min-width: 0;
  min-height: clamp(430px, 45vw, 570px);
}

.case-study-visual::before {
  position: absolute;
  inset: 9% 4% 2% 2%;
  background:
    linear-gradient(rgba(23, 23, 19, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 23, 19, 0.045) 1px, transparent 1px),
    var(--color-surface-muted);
  background-size: 34px 34px;
  content: "";
}

.case-study-climate .case-study-visual::before {
  inset: 5% 2% 4% 5%;
  background-color: #e9f1f2;
}

.case-browser {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  overflow: hidden;
  width: calc(100% - 50px);
  border: 1px solid rgba(23, 23, 19, 0.65);
  border-radius: 9px;
  background: var(--color-white);
  box-shadow: 0 32px 74px rgba(23, 23, 19, 0.19);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.case-study-climate .case-browser {
  right: 0;
  left: auto;
}

.case-study:hover .case-browser {
  box-shadow: 0 38px 84px rgba(23, 23, 19, 0.23);
  transform: translateY(-3px);
}

.case-browser-bar {
  display: flex;
  height: 36px;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(255, 253, 248, 0.12);
  padding-inline: 13px;
  background: var(--color-graphite);
}

.case-browser-bar > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.32);
}

.case-browser-bar > span:first-child {
  background: var(--color-accent);
}

.case-browser-bar small {
  overflow: hidden;
  margin-left: 7px;
  color: rgba(255, 253, 248, 0.56);
  font-size: 0.52rem;
  letter-spacing: 0.025em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.case-browser-screen {
  min-height: 405px;
}

/* NovaDent browser preview, based on the current demo content and imagery. */

.nova-case-screen {
  background: #f7f3ea;
  color: #173f35;
  font-family: "DM Sans", sans-serif;
}

.nova-preview-nav,
.climate-preview-nav {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(23, 63, 53, 0.12);
  padding: 9px 16px;
}

.nova-preview-nav > strong {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: Georgia, serif;
  font-size: 0.72rem;
}

.nova-preview-nav strong i {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: #1d5949;
  color: #f7f3ea;
  font-family: Georgia, serif;
  font-size: 0.55rem;
  font-style: normal;
}

.nova-preview-nav > span,
.climate-preview-nav > span {
  color: #4e655f;
  font-size: 0.4rem;
  font-weight: 700;
}

.nova-preview-nav > b {
  color: #1d5949;
  font-size: 0.45rem;
}

.nova-preview-hero {
  display: grid;
  min-height: 305px;
  grid-template-columns: minmax(0, 1.05fr) minmax(150px, 0.92fr) minmax(130px, 0.65fr);
  gap: 12px;
  padding: 16px;
}

.nova-preview-copy,
.climate-preview-copy {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

.nova-preview-copy small {
  margin-bottom: 11px;
  color: #7b6a48;
  font-size: 0.38rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.nova-preview-copy > strong {
  max-width: 18ch;
  font-family: Georgia, serif;
  font-size: clamp(0.95rem, 1.6vw, 1.48rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.nova-preview-copy p,
.climate-preview-copy p {
  max-width: 29ch;
  margin: 10px 0 0;
  color: #61736e;
  font-size: 0.45rem;
  line-height: 1.45;
}

.nova-preview-copy > span {
  margin-top: 15px;
  border-radius: 2px;
  padding: 7px 9px;
  background: #1d5949;
  color: #f7f3ea;
  font-size: 0.43rem;
  font-weight: 800;
}

.nova-preview-hero > img,
.climate-preview-hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.case-study:hover .nova-preview-hero > img,
.case-study:hover .climate-preview-hero > img {
  transform: scale(1.012);
}

.nova-preview-hero > img {
  border-radius: 42% 42% 3px 3px;
}

.nova-preview-form {
  align-self: center;
  border-top: 2px solid #b68f54;
  padding: 15px 12px;
  background: #fffdf8;
  box-shadow: 0 14px 28px rgba(23, 63, 53, 0.12);
}

.nova-preview-form small {
  display: block;
  margin-bottom: 7px;
  color: #8c724b;
  font-size: 0.34rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.nova-preview-form strong {
  display: block;
  margin-bottom: 11px;
  font-family: Georgia, serif;
  font-size: 0.72rem;
  line-height: 1.1;
}

.nova-preview-form i {
  display: block;
  height: 15px;
  margin-top: 6px;
  border: 1px solid rgba(23, 63, 53, 0.16);
  background: #fff;
}

.nova-preview-form span {
  display: block;
  margin-top: 8px;
  padding: 6px;
  background: #1d5949;
  color: #fff;
  font-size: 0.37rem;
  font-weight: 800;
  text-align: center;
}

.nova-preview-strip,
.climate-preview-strip {
  display: grid;
  min-height: 52px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(23, 63, 53, 0.12);
}

.nova-preview-strip span,
.climate-preview-strip span {
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(23, 63, 53, 0.1);
  color: #31574d;
  font-size: 0.43rem;
  font-weight: 700;
  text-align: center;
}

.nova-preview-strip span:last-child,
.climate-preview-strip span:last-child {
  border-right: 0;
}

/* KlímaPont browser preview, based on its current demo content and image asset. */

.climate-case-screen {
  background: #eef5f7;
  color: #0c2638;
  font-family: "DM Sans", sans-serif;
}

.climate-preview-nav {
  border-color: rgba(12, 38, 56, 0.13);
  background: rgba(255, 255, 255, 0.86);
}

.climate-preview-nav > strong {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.62rem;
  font-weight: 900;
}

.climate-preview-nav strong i {
  display: grid;
  width: 24px;
  height: 20px;
  place-items: center;
  background: #0c2638;
  color: #fff;
  font-size: 0.45rem;
  font-style: normal;
}

.climate-preview-nav > span {
  color: #486476;
}

.climate-preview-nav > b {
  color: #0793a4;
  font-size: 0.45rem;
}

.climate-preview-hero {
  display: grid;
  min-height: 305px;
  grid-template-columns: minmax(0, 0.9fr) minmax(220px, 1.1fr);
  align-items: stretch;
}

.climate-preview-copy {
  padding: 24px;
}

.climate-preview-copy small {
  margin-bottom: 11px;
  border-left: 2px solid #0793a4;
  padding-left: 8px;
  color: #057887;
  font-size: 0.35rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.climate-preview-copy > strong {
  max-width: 17ch;
  font-size: clamp(0.95rem, 1.65vw, 1.52rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.climate-preview-copy p {
  color: #566b79;
}

.climate-preview-copy > span {
  margin-top: 16px;
  border-radius: 2px;
  padding: 7px 9px;
  background: #0793a4;
  color: #fff;
  font-size: 0.42rem;
  font-weight: 900;
}

.climate-preview-strip {
  border-color: rgba(12, 38, 56, 0.12);
  background: #fff;
}

.climate-preview-strip span {
  border-color: rgba(12, 38, 56, 0.1);
  color: #26485c;
}

.case-mobile {
  position: absolute;
  right: 0;
  bottom: 8px;
  z-index: 4;
  width: 126px;
  height: 256px;
  border: 5px solid #171713;
  border-radius: 23px;
  padding: 4px;
  background: #171713;
  box-shadow: 0 24px 48px rgba(23, 23, 19, 0.24);
  transform: rotate(2deg);
}

.case-study-climate .case-mobile {
  right: auto;
  left: 0;
  transform: rotate(-2deg);
}

.case-mobile > span {
  position: absolute;
  top: 8px;
  left: 50%;
  z-index: 2;
  width: 36px;
  height: 5px;
  border-radius: 99px;
  background: #171713;
  transform: translateX(-50%);
}

.case-mobile > div {
  overflow: hidden;
  display: flex;
  height: 100%;
  align-items: flex-start;
  flex-direction: column;
  border-radius: 15px;
  padding: 20px 10px 12px;
}

.nova-mobile > div {
  background:
    linear-gradient(rgba(247, 243, 234, 0.25), rgba(247, 243, 234, 0.94)),
    url("https://images.unsplash.com/photo-1629909613654-28e377c37b09?auto=format&fit=crop&w=500&q=80") center / cover;
  color: #173f35;
}

.climate-mobile > div {
  background:
    linear-gradient(rgba(238, 245, 247, 0.3), rgba(238, 245, 247, 0.96)),
    url("https://raw.githubusercontent.com/csakvarigergely-create/landing-demo/main/public/assets/klima-hero-real-hvac.png") center / cover;
  color: #0c2638;
}

.case-mobile strong {
  margin-bottom: 25px;
  font-size: 0.52rem;
  font-weight: 900;
}

.case-mobile small {
  margin-bottom: 8px;
  color: inherit;
  font-size: 0.38rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.case-mobile b {
  font-size: 0.75rem;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.case-mobile i {
  margin-top: 14px;
  border-radius: 2px;
  padding: 6px 7px;
  background: var(--color-accent);
  color: #171713;
  font-size: 0.39rem;
  font-style: normal;
  font-weight: 900;
}

.climate-mobile i {
  background: #0793a4;
  color: #fff;
}

.case-study-copy {
  min-width: 0;
}

.case-study-meta {
  display: grid;
  gap: 8px;
  margin-bottom: 25px;
}

.case-study-meta > span {
  color: var(--color-focus);
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.case-study-meta > small {
  color: var(--color-muted);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-transform: uppercase;
}

.case-study-copy h3 {
  margin: 0 0 18px;
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4vw, 3.9rem);
  font-weight: 850;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.case-study-copy > p {
  margin: 0 0 28px;
  color: var(--color-muted);
  font-size: 1rem;
  line-height: 1.58;
}

.case-study-copy ul {
  display: grid;
  gap: 0;
  margin: 0 0 30px;
  padding: 0;
  border-top: 1px solid var(--color-border);
  list-style: none;
}

.case-study-copy li {
  position: relative;
  border-bottom: 1px solid var(--color-border);
  padding: 10px 0 10px 19px;
  color: var(--color-graphite);
  font-size: 0.82rem;
  font-weight: 650;
}

.case-study-copy li::before {
  position: absolute;
  top: 50%;
  left: 1px;
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.case-study-link,
.automation-practice-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--color-ink);
  padding: 7px 1px;
  color: var(--color-ink);
  font-size: 0.86rem;
  font-weight: 800;
  transition: border-color 180ms ease, color 180ms ease;
}

.case-study-link span,
.automation-practice-cta span {
  color: var(--color-accent);
  font-size: 1rem;
  transition: transform 180ms ease;
}

.case-study-link:hover,
.automation-practice-cta:hover {
  border-color: var(--color-accent);
  color: var(--color-focus);
}

.case-study-link:hover span {
  transform: translate(3px, -3px);
}

.automation-practice-cta:hover span {
  transform: translateY(3px);
}

/* Concrete automation section */

.automation-practice-section {
  position: relative;
  overflow: hidden;
  padding: clamp(92px, 9vw, 138px) 0 clamp(100px, 10vw, 148px);
  background: #eee8dd;
  color: var(--color-ink);
}

.automation-practice-section::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 4px;
  background: var(--color-accent);
  content: "";
}

.automation-practice-grid {
  position: absolute;
  inset: 0 0 0 48%;
  opacity: 0.46;
  background-image:
    linear-gradient(rgba(23, 23, 19, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 23, 19, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 85%, transparent);
  pointer-events: none;
}

.automation-practice-index {
  position: absolute;
  right: 22px;
  bottom: 18px;
  color: var(--color-muted);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.automation-practice-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(310px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(50px, 7vw, 96px);
}

.automation-practice-copy {
  min-width: 0;
}

.automation-practice-copy h2 {
  margin: 0 0 25px;
  color: var(--color-ink);
  font-size: clamp(2.7rem, 4.7vw, 4.45rem);
  font-weight: 850;
  letter-spacing: -0.062em;
  line-height: 0.98;
}

.automation-practice-lead {
  max-width: 520px;
  margin: 0 0 38px;
  color: var(--color-muted);
  font-size: clamp(1rem, 1.16vw, 1.1rem);
  line-height: 1.62;
}

.automation-step-list {
  margin: 0 0 32px;
  padding: 0;
  border-top: 1px solid var(--color-border-strong);
  list-style: none;
}

.automation-step-list li {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 15px;
  border-bottom: 1px solid var(--color-border-strong);
  padding: 17px 0;
}

.automation-step-list li > span {
  padding-top: 2px;
  color: var(--color-focus);
  font-family: var(--font-heading);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.automation-step-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}

.automation-step-list p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.79rem;
  line-height: 1.5;
}

.automation-diagram {
  min-width: 0;
  border: 1px solid rgba(23, 23, 19, 0.15);
  border-radius: var(--radius-md);
  padding: clamp(22px, 3vw, 38px);
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 30px 74px rgba(23, 23, 19, 0.13);
}

.automation-map {
  display: grid;
  min-width: 0;
  min-height: 470px;
  grid-template-columns: minmax(210px, 0.92fr) 74px minmax(220px, 1fr);
  grid-template-rows: repeat(3, minmax(120px, 1fr));
  align-items: center;
}

.lead-capture-card {
  z-index: 2;
  grid-column: 1;
  grid-row: 1 / 4;
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-accent);
  border-radius: var(--radius-sm);
  padding: 18px;
  background: var(--color-surface);
  box-shadow: 0 18px 42px rgba(23, 23, 19, 0.12);
}

.lead-capture-head {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  margin-bottom: 17px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 14px;
}

.lead-capture-icon,
.automation-node-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  background: var(--color-accent-soft);
  color: var(--color-focus);
}

.lead-capture-icon svg,
.automation-node-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.lead-capture-head > div {
  display: grid;
  min-width: 0;
}

.lead-capture-head small,
.automation-node small,
.automation-expansion-copy small,
.chatbot-option small {
  color: var(--color-muted-light);
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.lead-capture-head strong {
  overflow: hidden;
  color: var(--color-ink);
  font-size: 0.78rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lead-capture-head > i {
  color: var(--color-focus);
  font-size: 0.51rem;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.lead-field {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-muted);
  font-size: 0.61rem;
}

.lead-field b {
  color: var(--color-graphite);
  font-weight: 700;
}

.lead-submit-state {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  padding: 9px 10px;
  background: #f4efe6;
  color: var(--color-graphite);
  font-size: 0.62rem;
  font-weight: 700;
}

.lead-submit-state span {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-ink);
  font-size: 0.55rem;
}

.automation-rail {
  position: relative;
  align-self: stretch;
  grid-column: 2;
  grid-row: 1 / 4;
}

.automation-rail > span {
  position: absolute;
  top: 16.5%;
  bottom: 16.5%;
  left: 50%;
  width: 1px;
  background: rgba(23, 23, 19, 0.22);
}

.automation-rail::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 50%;
  height: 1px;
  background: var(--color-accent);
  content: "";
}

.automation-rail > i {
  position: absolute;
  right: 0;
  left: 50%;
  height: 1px;
  background: var(--color-accent);
}

.automation-rail > i::after {
  position: absolute;
  top: -3px;
  right: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid var(--color-accent);
  border-right: 1px solid var(--color-accent);
  content: "";
  transform: rotate(45deg);
}

.automation-rail > i:nth-of-type(1) { top: 16.5%; }
.automation-rail > i:nth-of-type(2) { top: 50%; }
.automation-rail > i:nth-of-type(3) { top: 83.5%; }

.automation-node {
  display: grid;
  min-width: 0;
  grid-template-columns: 40px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 11px;
  border: 1px solid var(--color-border);
  border-left: 2px solid var(--color-accent);
  border-radius: var(--radius-sm);
  padding: 13px;
  background: var(--color-surface);
  box-shadow: 0 12px 28px rgba(23, 23, 19, 0.08);
}

.automation-node-data { grid-column: 3; grid-row: 1; }
.automation-node-alert { grid-column: 3; grid-row: 2; }
.automation-node-reply { grid-column: 3; grid-row: 3; }

.automation-node-icon {
  width: 40px;
  height: 40px;
}

.automation-node > div {
  display: grid;
  min-width: 0;
}

.automation-node strong {
  overflow: hidden;
  color: var(--color-ink);
  font-size: 0.72rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.automation-node p {
  overflow: hidden;
  margin: 2px 0 0;
  color: var(--color-muted);
  font-size: 0.57rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.automation-node > b {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-ink);
  font-size: 0.58rem;
}

.automation-expansion {
  display: grid;
  grid-template-columns: minmax(190px, 0.75fr) minmax(0, 1.25fr);
  align-items: center;
  gap: 20px;
  margin-top: 12px;
  border-top: 1px solid var(--color-border-strong);
  border-bottom: 1px solid var(--color-border-strong);
  padding: 18px 0;
}

.automation-expansion-copy {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

.automation-expansion-copy > span {
  color: var(--color-focus);
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.automation-expansion-copy > div {
  display: grid;
}

.automation-expansion-copy strong {
  color: var(--color-ink);
  font-size: 0.72rem;
}

.integration-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.integration-list span {
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-xs);
  padding: 5px 7px;
  background: rgba(255, 253, 248, 0.68);
  color: var(--color-muted);
  font-size: 0.56rem;
  font-weight: 700;
}

.chatbot-option {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  margin-top: 18px;
  border-left: 2px solid var(--color-accent);
  padding: 13px 15px;
  background: rgba(255, 253, 248, 0.55);
}

.chatbot-option-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--color-graphite);
  color: var(--color-accent);
}

.chatbot-option-mark svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.chatbot-option > div {
  display: grid;
  gap: 2px;
}

.chatbot-option strong {
  max-width: 56ch;
  color: var(--color-graphite);
  font-size: 0.69rem;
  line-height: 1.38;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal-enabled .automation-diagram .automation-node,
  .reveal-enabled .automation-diagram .automation-expansion,
  .reveal-enabled .automation-diagram .chatbot-option {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 400ms ease, transform 400ms ease;
  }

  .reveal-enabled .automation-diagram.is-visible .automation-node-data {
    opacity: 1;
    transform: none;
    transition-delay: 240ms;
  }

  .reveal-enabled .automation-diagram.is-visible .automation-node-alert {
    opacity: 1;
    transform: none;
    transition-delay: 390ms;
  }

  .reveal-enabled .automation-diagram.is-visible .automation-node-reply {
    opacity: 1;
    transform: none;
    transition-delay: 540ms;
  }

  .reveal-enabled .automation-diagram.is-visible .automation-expansion {
    opacity: 1;
    transform: none;
    transition-delay: 680ms;
  }

  .reveal-enabled .automation-diagram.is-visible .chatbot-option {
    opacity: 1;
    transform: none;
    transition-delay: 800ms;
  }

  .reveal-enabled .automation-diagram .automation-rail > span {
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 550ms 180ms ease;
  }

  .reveal-enabled .automation-diagram .automation-rail::before,
  .reveal-enabled .automation-diagram .automation-rail > i {
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 350ms ease;
  }

  .reveal-enabled .automation-diagram.is-visible .automation-rail > span,
  .reveal-enabled .automation-diagram.is-visible .automation-rail::before,
  .reveal-enabled .automation-diagram.is-visible .automation-rail > i {
    transform: scale(1);
  }

  .reveal-enabled .automation-diagram.is-visible .automation-rail::before { transition-delay: 130ms; }
  .reveal-enabled .automation-diagram.is-visible .automation-rail > i:nth-of-type(1) { transition-delay: 280ms; }
  .reveal-enabled .automation-diagram.is-visible .automation-rail > i:nth-of-type(2) { transition-delay: 430ms; }
  .reveal-enabled .automation-diagram.is-visible .automation-rail > i:nth-of-type(3) { transition-delay: 580ms; }
}

@media (max-width: 1120px) {
  .case-studies-heading {
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.7fr);
    gap: 44px;
  }

  .case-study,
  .case-study-climate {
    grid-template-columns: minmax(0, 1.45fr) minmax(250px, 0.65fr);
    gap: 38px;
  }

  .case-study-climate {
    grid-template-columns: minmax(250px, 0.65fr) minmax(0, 1.45fr);
  }

  .case-study-visual {
    min-height: 455px;
  }

  .case-browser-screen {
    min-height: 360px;
  }

  .nova-preview-hero,
  .climate-preview-hero {
    min-height: 265px;
  }

  .nova-preview-hero {
    grid-template-columns: minmax(0, 1fr) minmax(140px, 0.9fr) minmax(112px, 0.57fr);
  }

  .case-mobile {
    width: 112px;
    height: 230px;
  }

  .automation-practice-layout {
    grid-template-columns: minmax(285px, 0.68fr) minmax(0, 1.32fr);
    gap: 42px;
  }

  .automation-map {
    grid-template-columns: minmax(190px, 0.9fr) 56px minmax(200px, 1fr);
  }

  .lead-capture-card {
    padding: 14px;
  }

  .automation-node {
    grid-template-columns: 34px minmax(0, 1fr) 18px;
    gap: 8px;
    padding: 10px;
  }

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

@media (max-width: 980px) {
  .case-studies-heading,
  .automation-practice-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .case-studies-heading > p {
    max-width: 680px;
  }

  .case-study,
  .case-study-climate {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .case-study-climate .case-study-visual,
  .case-study-climate .case-study-copy {
    grid-column: 1;
    grid-row: auto;
  }

  .case-study-climate .case-study-visual {
    order: 1;
  }

  .case-study-climate .case-study-copy {
    order: 2;
  }

  .case-study-visual {
    min-height: 555px;
  }

  .case-study-copy {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
    column-gap: 48px;
    align-items: start;
  }

  .case-study-meta,
  .case-study-copy h3,
  .case-study-copy > p {
    grid-column: 1;
  }

  .case-study-copy ul {
    grid-column: 2;
    grid-row: 1 / 4;
    margin: 0;
  }

  .case-study-link {
    grid-column: 1;
    width: fit-content;
  }

  .automation-practice-copy {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(310px, 0.85fr);
    column-gap: 50px;
  }

  .automation-practice-copy > .eyebrow,
  .automation-practice-copy h2,
  .automation-practice-lead {
    grid-column: 1;
  }

  .automation-step-list {
    grid-column: 2;
    grid-row: 1 / 5;
    margin-bottom: 0;
  }

  .automation-practice-cta {
    grid-column: 1;
    width: fit-content;
  }

  .automation-diagram {
    margin-top: 26px;
  }

  .automation-map {
    min-height: 440px;
    grid-template-columns: minmax(220px, 0.9fr) 70px minmax(250px, 1fr);
  }
}

@media (max-width: 780px) {
  .demos-section,
  .automation-practice-section {
    padding-block: 76px 92px;
  }

  .case-studies-heading h2,
  .automation-practice-copy h2 {
    font-size: clamp(2.55rem, 8vw, 4rem);
  }

  .case-study-visual {
    min-height: 470px;
  }

  .case-browser {
    width: calc(100% - 34px);
  }

  .case-browser-screen {
    min-height: 320px;
  }

  .nova-preview-hero {
    min-height: 230px;
    grid-template-columns: minmax(0, 1.1fr) minmax(150px, 0.9fr);
  }

  .nova-preview-form {
    display: none;
  }

  .climate-preview-hero {
    min-height: 230px;
  }

  .case-mobile {
    width: 106px;
    height: 220px;
  }

  .case-study-copy,
  .automation-practice-copy {
    display: block;
  }

  .case-study-copy ul,
  .automation-step-list {
    margin-bottom: 28px;
  }

  .automation-practice-lead {
    margin-bottom: 34px;
  }

  .automation-diagram {
    padding: 22px;
  }

  .automation-map {
    min-height: 410px;
    grid-template-columns: minmax(190px, 0.88fr) 52px minmax(215px, 1fr);
  }
}

@media (max-width: 620px) {
  .demos-section,
  .automation-practice-section {
    padding-block: 64px 78px;
  }

  .case-studies-heading,
  .automation-practice-layout {
    margin-bottom: 0;
  }

  .case-studies-heading {
    margin-bottom: 54px;
  }

  .case-studies-heading .eyebrow,
  .automation-practice-copy > .eyebrow {
    margin-bottom: 15px;
    font-size: 0.64rem;
    letter-spacing: 0.1em;
  }

  .case-studies-heading .eyebrow::before,
  .automation-practice-copy > .eyebrow::before {
    width: 19px;
  }

  .case-studies-heading h2,
  .automation-practice-copy h2 {
    font-size: clamp(2.25rem, 10.5vw, 3.2rem);
    line-height: 0.99;
  }

  .case-studies-heading > p {
    border-left-width: 1px;
    padding-left: 16px;
    font-size: 0.95rem;
    line-height: 1.56;
  }

  .case-studies-list {
    gap: 82px;
  }

  .case-study {
    gap: 30px;
    padding-top: 26px;
  }

  .case-study-visual {
    min-height: 350px;
  }

  .case-study-visual::before,
  .case-study-climate .case-study-visual::before {
    inset: 10% 0 2% 0;
  }

  .case-browser,
  .case-study-climate .case-browser {
    right: auto;
    left: 0;
    width: 100%;
  }

  .case-browser-bar {
    height: 29px;
    padding-inline: 9px;
  }

  .case-browser-screen {
    min-height: 252px;
  }

  .nova-preview-nav,
  .climate-preview-nav {
    min-height: 38px;
    padding: 6px 8px;
  }

  .nova-preview-nav > span,
  .nova-preview-nav > b,
  .climate-preview-nav > span,
  .climate-preview-nav > b {
    display: none;
  }

  .nova-preview-hero,
  .climate-preview-hero {
    min-height: 174px;
  }

  .nova-preview-hero {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 8px;
    padding: 10px;
  }

  .nova-preview-copy small,
  .climate-preview-copy small {
    margin-bottom: 6px;
    font-size: 0.28rem;
  }

  .nova-preview-copy > strong,
  .climate-preview-copy > strong {
    font-size: clamp(0.72rem, 3.4vw, 0.93rem);
  }

  .nova-preview-copy p,
  .climate-preview-copy p {
    display: none;
  }

  .nova-preview-copy > span,
  .climate-preview-copy > span {
    margin-top: 10px;
    padding: 5px 6px;
    font-size: 0.31rem;
  }

  .climate-preview-hero {
    grid-template-columns: 1.02fr 0.98fr;
  }

  .climate-preview-copy {
    padding: 13px;
  }

  .nova-preview-strip,
  .climate-preview-strip {
    min-height: 40px;
  }

  .nova-preview-strip span,
  .climate-preview-strip span {
    font-size: 0.32rem;
  }

  .case-mobile {
    right: 8px;
    bottom: 0;
    width: 84px;
    height: 174px;
    border-width: 4px;
    border-radius: 17px;
    padding: 3px;
  }

  .case-study-climate .case-mobile {
    right: 8px;
    left: auto;
  }

  .case-mobile > div {
    border-radius: 11px;
    padding: 16px 7px 8px;
  }

  .case-mobile > span {
    top: 6px;
    width: 27px;
    height: 4px;
  }

  .case-mobile strong {
    margin-bottom: 17px;
    font-size: 0.39rem;
  }

  .case-mobile small {
    font-size: 0.29rem;
  }

  .case-mobile b {
    font-size: 0.53rem;
  }

  .case-mobile i {
    margin-top: 8px;
    padding: 4px;
    font-size: 0.28rem;
  }

  .case-study-meta {
    margin-bottom: 20px;
  }

  .case-study-copy h3 {
    margin-bottom: 14px;
    font-size: 2.25rem;
  }

  .case-study-copy > p {
    margin-bottom: 23px;
    font-size: 0.94rem;
  }

  .automation-practice-index {
    display: none;
  }

  .automation-practice-copy h2 {
    margin-bottom: 20px;
  }

  .automation-practice-lead {
    font-size: 0.95rem;
    line-height: 1.56;
  }

  .automation-step-list li {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 10px;
    padding: 15px 0;
  }

  .automation-diagram {
    margin-top: 46px;
    border-radius: var(--radius-sm);
    padding: 14px;
  }

  .automation-map {
    display: grid;
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 14px;
  }

  .lead-capture-card,
  .automation-node-data,
  .automation-node-alert,
  .automation-node-reply {
    grid-column: 1;
    grid-row: auto;
  }

  .lead-capture-card {
    margin-bottom: 17px;
  }

  .automation-rail {
    display: none;
  }

  .automation-node {
    position: relative;
    grid-template-columns: 38px minmax(0, 1fr) 19px;
    margin-left: 18px;
    padding: 12px;
  }

  .automation-node::before {
    position: absolute;
    top: -15px;
    bottom: 50%;
    left: -19px;
    width: 1px;
    background: var(--color-accent);
    content: "";
  }

  .automation-node::after {
    position: absolute;
    top: 50%;
    left: -19px;
    width: 18px;
    height: 1px;
    background: var(--color-accent);
    content: "";
  }

  .automation-expansion {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 18px;
  }

  .integration-list {
    justify-content: flex-start;
  }

  .chatbot-option {
    grid-template-columns: 36px minmax(0, 1fr);
    padding: 12px;
  }

  .chatbot-option-mark {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 390px) {
  .case-study-visual {
    min-height: 326px;
  }

  .case-browser-screen {
    min-height: 236px;
  }

  .nova-preview-hero,
  .climate-preview-hero {
    min-height: 161px;
  }

  .case-mobile {
    width: 78px;
    height: 162px;
  }

  .automation-node {
    grid-template-columns: 34px minmax(0, 1fr) 18px;
    gap: 8px;
    margin-left: 15px;
    padding: 10px;
  }

  .automation-node::before,
  .automation-node::after {
    left: -16px;
  }

  .automation-node::after {
    width: 15px;
  }

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

  .automation-node strong {
    font-size: 0.66rem;
  }

  .automation-node p {
    font-size: 0.53rem;
  }
}

@media (max-width: 360px) {
  .case-studies-heading h2,
  .automation-practice-copy h2 {
    font-size: 2.2rem;
  }

  .case-study-visual {
    min-height: 310px;
  }

  .case-browser-screen {
    min-height: 224px;
  }

  .nova-preview-hero,
  .climate-preview-hero {
    min-height: 151px;
  }

  .nova-preview-strip span,
  .climate-preview-strip span {
    font-size: 0.29rem;
  }

  .case-mobile {
    width: 74px;
    height: 154px;
  }

  .automation-diagram {
    padding: 11px;
  }

  .lead-capture-card {
    padding: 12px;
  }

  .lead-capture-head {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .lead-capture-head > i {
    display: none;
  }

  .chatbot-option strong {
    font-size: 0.64rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .demos-section *,
  .automation-practice-section * {
    transition: none !important;
    animation: none !important;
  }
}


/* Round 5 — project journey, pricing and launch partner programme. */

.round-five-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.62fr);
  gap: clamp(2rem, 7vw, 6.5rem);
  align-items: end;
  margin-bottom: clamp(2.75rem, 5vw, 4.75rem);
}

.round-five-heading h2 {
  max-width: 14ch;
  margin-bottom: 0;
  font-size: clamp(2.55rem, 5.1vw, 5rem);
}

.round-five-heading > p {
  max-width: 38rem;
  margin: 0 0 0.35rem;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.7;
}

/* Project journey */
.process-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(221, 214, 202, 0.28) 1px, transparent 1px) 0 0 / 10% 100%,
    var(--color-canvas-soft);
}

.process-section::before {
  position: absolute;
  top: 0;
  right: max(1rem, calc((100vw - var(--container)) / 2));
  width: 1px;
  height: clamp(3rem, 7vw, 7rem);
  background: var(--color-accent);
  content: "";
}

.process-heading > p {
  border-left: 2px solid var(--color-accent);
  padding-left: 1.25rem;
}

.project-journey {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.5vw, 1.5rem);
  align-items: start;
  padding-top: 2rem;
}

.journey-line {
  position: absolute;
  top: 2.3rem;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--color-border-strong);
  transform-origin: left;
}

.journey-step,
.commercial-gate {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.journey-step-one { grid-column: 1 / span 3; }
.commercial-gate { grid-column: 4 / span 2; }
.journey-step-two { grid-column: 6 / span 2; }
.journey-step-three { grid-column: 8 / span 2; }
.journey-step-four { grid-column: 10 / span 3; }

.journey-step::before {
  display: block;
  width: 0.7rem;
  height: 0.7rem;
  margin: 0 0 2rem;
  border: 3px solid var(--color-canvas-soft);
  border-radius: 50%;
  background: var(--color-ink);
  box-shadow: 0 0 0 1px var(--color-ink);
  content: "";
}

.journey-number {
  display: block;
  margin-bottom: 1.5rem;
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: clamp(2.7rem, 4vw, 4.25rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.journey-copy small,
.package-head > small {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--color-muted-light);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.journey-copy h3 {
  min-height: 3.3em;
  margin-bottom: 0.9rem;
  font-size: clamp(1.08rem, 1.45vw, 1.35rem);
  letter-spacing: -0.035em;
}

.journey-copy p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.65;
}

.commercial-gate {
  margin-top: -1.65rem;
  border: 1px solid rgba(242, 100, 25, 0.48);
  border-radius: var(--radius-sm);
  padding: 1.35rem 1.15rem 1.25rem;
  background: var(--color-accent);
  color: var(--color-ink);
  box-shadow: 0 20px 45px rgba(177, 62, 5, 0.16);
}

.commercial-gate::before,
.commercial-gate::after {
  position: absolute;
  left: 50%;
  width: 1px;
  height: 1.65rem;
  background: var(--color-accent);
  content: "";
  transform: translateX(-50%);
}

.commercial-gate::before { bottom: 100%; }
.commercial-gate::after { top: 100%; }

.gate-icon {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1.3rem;
  place-items: center;
  border: 1px solid rgba(23, 23, 19, 0.24);
  border-radius: var(--radius-xs);
  background: rgba(255, 253, 248, 0.28);
}

.gate-icon svg {
  width: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.commercial-gate > small {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.commercial-gate > strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  line-height: 1.15;
}

.commercial-gate p {
  margin: 0.75rem 0 1rem;
  color: rgba(23, 23, 19, 0.76);
  font-size: 0.76rem;
  line-height: 1.5;
}

.gate-status {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  border-top: 1px solid rgba(23, 23, 19, 0.2);
  padding-top: 0.8rem;
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gate-status i {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--color-ink);
}

/* Pricing */
.pricing-section {
  position: relative;
  background: var(--color-surface);
}

.pricing-heading {
  align-items: center;
}

.pricing-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
  border-top: 1px solid var(--color-border-strong);
  border-bottom: 1px solid var(--color-border-strong);
}

.pricing-panels .pricing-panel {
  display: flex;
  min-width: 0;
  flex-direction: column;
  margin: 0;
  border: 0;
  border-right: 1px solid var(--color-border);
  border-radius: 0;
  padding: clamp(1.8rem, 3vw, 2.8rem);
  background: transparent;
  box-shadow: none;
  transform: none;
}

.pricing-panels .pricing-panel:last-child {
  border-right: 0;
}

.pricing-panels .pricing-panel.recommended {
  border-color: transparent;
  background:
    linear-gradient(135deg, rgba(242, 100, 25, 0.1), transparent 40%),
    var(--color-graphite);
  color: var(--color-white);
  box-shadow: 0 26px 65px rgba(23, 23, 19, 0.18);
}

.package-head {
  position: relative;
  min-height: 13.75rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 1.6rem;
}

.recommended .package-head {
  border-color: rgba(255, 253, 248, 0.18);
}

.package-index {
  display: block;
  margin-bottom: 2.2rem;
  color: var(--color-muted-light);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.recommended .package-index,
.recommended .package-head > small {
  color: rgba(255, 253, 248, 0.56);
}

.package-marker {
  position: absolute;
  top: -0.3rem;
  right: 0;
  border-bottom: 1px solid var(--color-accent);
  padding-bottom: 0.25rem;
  color: var(--color-accent);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-head h3 {
  max-width: 18ch;
  margin-bottom: 1.1rem;
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  line-height: 1.05;
}

.recommended .package-head h3,
.recommended .package-content-label {
  color: var(--color-white);
}

.pricing-panels .price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem;
  margin: 0;
  color: var(--color-ink);
}

.pricing-panels .price strong {
  font-size: clamp(1.8rem, 2.7vw, 2.55rem);
  letter-spacing: -0.055em;
}

.pricing-panels .price span {
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
}

.recommended .price,
.recommended .price span {
  color: var(--color-white);
}

.pricing-panels .package-fit {
  min-height: 7.5rem;
  margin: 1.6rem 0;
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.recommended .package-fit,
.recommended .package-features li {
  color: rgba(255, 253, 248, 0.7);
}

.pricing-panels .package-content-label {
  min-height: 2.8rem;
  margin-bottom: 1rem;
  color: var(--color-ink);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-panels .package-features {
  display: grid;
  gap: 0.8rem;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.pricing-panels .package-features li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--color-muted);
  font-size: 0.85rem;
  line-height: 1.45;
}

.pricing-panels .package-features li::before {
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border: 1px solid var(--color-accent);
  border-radius: 0;
  background: transparent;
  content: "";
  transform: rotate(45deg);
}

.pricing-panels .pricing-panel.recommended .package-content-label {
  color: var(--color-white);
}

.pricing-panels .pricing-panel.recommended .package-features li {
  color: rgba(255, 253, 248, 0.72);
}

.pricing-panels .price-cta {
  width: 100%;
  margin-top: auto;
  padding-inline: 0.9rem;
  white-space: normal;
}

.pricing-panels .pricing-panel:not(.recommended) .price-cta {
  border-color: var(--color-border-strong);
  background: transparent;
  color: var(--color-ink);
  box-shadow: none;
}

.pricing-panels .pricing-panel:not(.recommended) .price-cta:hover {
  border-color: var(--color-ink);
  background: var(--color-ink);
  color: var(--color-white);
}

.pricing-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--color-border);
}

.pricing-notes > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  min-width: 0;
  border-right: 1px solid var(--color-border);
  padding: 1.35rem clamp(1rem, 2vw, 1.7rem);
}

.pricing-notes > div:last-child {
  border-right: 0;
}

.pricing-notes > div > span {
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-weight: 800;
}

.pricing-notes p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.45;
}

.pricing-notes strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--color-ink);
  font-size: 0.78rem;
}

/* Launch partner programme */
.partner-section {
  overflow: hidden;
  padding-top: 0;
  background: var(--color-surface);
}

.partner-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 32rem;
  grid-template-columns: minmax(15rem, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  border-radius: var(--radius-md);
  padding: clamp(2.25rem, 6vw, 5.5rem);
  background:
    radial-gradient(circle at 4% 110%, rgba(242, 100, 25, 0.28), transparent 34%),
    linear-gradient(125deg, #171713, #22221f 68%, #2b2924);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}

.partner-panel::before {
  position: absolute;
  top: -8rem;
  right: -8rem;
  width: 20rem;
  height: 20rem;
  border: 1px solid rgba(242, 100, 25, 0.22);
  border-radius: 50%;
  content: "";
}

.partner-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 253, 248, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 253, 248, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.partner-number,
.partner-copy {
  position: relative;
  z-index: 1;
}

.partner-number {
  display: grid;
  justify-items: start;
  color: var(--color-accent);
  font-family: var(--font-heading);
  line-height: 0.78;
}

.partner-number small,
.partner-number span {
  color: rgba(255, 253, 248, 0.54);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.partner-number strong {
  margin: 0.18em 0 0.1em -0.08em;
  font-size: clamp(8rem, 16vw, 14rem);
  font-weight: 900;
  letter-spacing: -0.13em;
}

.partner-copy {
  max-width: 47rem;
}

.partner-copy h2 {
  max-width: 12ch;
  margin-bottom: 1.5rem;
  color: var(--color-white);
  font-size: clamp(2.5rem, 5vw, 4.8rem);
}

.partner-copy h2 span {
  color: var(--color-accent);
}

.partner-copy .eyebrow {
  color: var(--color-accent);
}

.partner-copy > p:not(.eyebrow) {
  max-width: 43rem;
  margin-bottom: 2rem;
  color: rgba(255, 253, 248, 0.68);
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
  line-height: 1.72;
}

.partner-cta {
  min-width: min(100%, 17rem);
}

/* Controlled, single-pass entrances. Content remains complete without animation. */
.reveal-enabled .project-journey .journey-line {
  transform: scaleX(0);
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1) 140ms;
}

.reveal-enabled .project-journey.is-visible .journey-line {
  transform: scaleX(1);
}

.reveal-enabled .project-journey .journey-step,
.reveal-enabled .project-journey .commercial-gate,
.reveal-enabled .pricing-panels .pricing-panel,
.reveal-enabled .partner-panel .partner-number,
.reveal-enabled .partner-panel .partner-copy {
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 520ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-enabled .project-journey.is-visible .journey-step,
.reveal-enabled .project-journey.is-visible .commercial-gate,
.reveal-enabled .pricing-panels.is-visible .pricing-panel,
.reveal-enabled .partner-panel.is-visible .partner-number,
.reveal-enabled .partner-panel.is-visible .partner-copy {
  opacity: 1;
  transform: none;
}

.reveal-enabled .project-journey.is-visible .commercial-gate,
.reveal-enabled .pricing-panels.is-visible .pricing-panel:nth-child(2),
.reveal-enabled .partner-panel.is-visible .partner-copy { transition-delay: 120ms; }
.reveal-enabled .project-journey.is-visible .journey-step-two,
.reveal-enabled .pricing-panels.is-visible .pricing-panel:nth-child(3) { transition-delay: 220ms; }
.reveal-enabled .project-journey.is-visible .journey-step-three { transition-delay: 320ms; }
.reveal-enabled .project-journey.is-visible .journey-step-four { transition-delay: 420ms; }

@media (max-width: 1100px) {
  .project-journey {
    display: grid;
    grid-template-columns: 5rem minmax(0, 1fr);
    gap: 0;
    padding-top: 0;
  }

  .journey-line {
    top: 0;
    right: auto;
    bottom: 0;
    left: 2.15rem;
    width: 1px;
    height: auto;
    transform-origin: top;
  }

  .journey-step,
  .journey-step-one,
  .journey-step-two,
  .journey-step-three,
  .journey-step-four,
  .commercial-gate {
    grid-column: 1 / -1;
  }

  .journey-step {
    display: grid;
    grid-template-columns: 5rem minmax(0, 1fr);
    padding-bottom: 2.4rem;
  }

  .journey-step::before {
    position: absolute;
    top: 1.2rem;
    left: 1.8rem;
    margin: 0;
  }

  .journey-number {
    margin: 0;
    padding-top: 2.75rem;
    font-size: 2.4rem;
  }

  .journey-copy {
    border-top: 1px solid var(--color-border);
    padding: 1rem 0 0 1.25rem;
  }

  .journey-copy h3 {
    min-height: 0;
  }

  .commercial-gate {
    width: calc(100% - 5rem);
    margin: 0 0 2.4rem 5rem;
    padding: 1.35rem;
  }

  .commercial-gate::before,
  .commercial-gate::after {
    display: none;
  }

  .gate-icon {
    position: absolute;
    top: 1.15rem;
    right: calc(100% + 1.25rem);
    margin: 0;
    border-color: var(--color-accent);
    background: var(--color-canvas-soft);
  }

  .reveal-enabled .project-journey .journey-line {
    transform: scaleY(0);
  }

  .reveal-enabled .project-journey.is-visible .journey-line {
    transform: scaleY(1);
  }
}

@media (max-width: 900px) {
  .round-five-heading {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .round-five-heading h2 {
    max-width: 15ch;
  }

  .round-five-heading > p {
    max-width: 42rem;
  }

  .pricing-panels {
    grid-template-columns: 1fr;
    border: 1px solid var(--color-border-strong);
  }

  .pricing-panels .pricing-panel,
  .pricing-panels .pricing-panel:last-child {
    max-width: none;
    border-right: 0;
    border-bottom: 1px solid var(--color-border);
  }

  .pricing-panels .pricing-panel:last-child {
    border-bottom: 0;
  }

  .package-head {
    min-height: 0;
  }

  .pricing-panels .package-fit,
  .pricing-panels .package-content-label {
    min-height: 0;
  }

  .pricing-notes {
    grid-template-columns: 1fr;
    border: 1px solid var(--color-border);
    border-top: 0;
  }

  .pricing-notes > div {
    border-right: 0;
    border-bottom: 1px solid var(--color-border);
  }

  .pricing-notes > div:last-child {
    border-bottom: 0;
  }

  .partner-panel {
    grid-template-columns: minmax(10rem, 0.5fr) minmax(0, 1.5fr);
    gap: 2rem;
  }
}

@media (max-width: 680px) {
  .round-five-heading {
    margin-bottom: 2.5rem;
  }

  .round-five-heading h2 {
    font-size: clamp(2.15rem, 11vw, 3.35rem);
    line-height: 0.98;
  }

  .process-section {
    background: var(--color-canvas-soft);
  }

  .project-journey {
    grid-template-columns: 3.8rem minmax(0, 1fr);
  }

  .journey-line {
    left: 1.4rem;
  }

  .journey-step {
    grid-template-columns: 3.8rem minmax(0, 1fr);
    padding-bottom: 2rem;
  }

  .journey-step::before {
    top: 1.05rem;
    left: 1.05rem;
  }

  .journey-number {
    padding-top: 2.55rem;
    font-size: 1.75rem;
  }

  .journey-copy {
    padding-left: 0.9rem;
  }

  .journey-copy h3 {
    font-size: 1.12rem;
  }

  .journey-copy p {
    font-size: 0.82rem;
  }

  .commercial-gate {
    width: calc(100% - 3.8rem);
    margin: 0 0 2rem 3.8rem;
    padding: 1.15rem;
  }

  .gate-icon {
    right: calc(100% + 0.7rem);
    width: 2.25rem;
    height: 2.25rem;
  }

  .pricing-panels .pricing-panel {
    padding: 1.6rem 1.25rem;
  }

  .package-index {
    margin-bottom: 1.5rem;
  }

  .package-head h3 {
    max-width: 17ch;
    font-size: 1.5rem;
  }

  .package-marker {
    max-width: 8.5rem;
    text-align: right;
  }

  .pricing-panels .price strong {
    font-size: 2rem;
  }

  .pricing-panels .price-cta {
    min-height: 3.35rem;
    font-size: 0.82rem;
  }

  .pricing-notes > div {
    padding: 1.1rem;
  }

  .partner-section {
    padding-bottom: 3.5rem;
  }

  .partner-panel {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    border-radius: var(--radius-sm);
    padding: 1.6rem 1.25rem 1.75rem;
  }

  .partner-number {
    display: flex;
    align-items: baseline;
    gap: 0.65rem;
    border-bottom: 1px solid rgba(255, 253, 248, 0.14);
    padding-bottom: 1.2rem;
  }

  .partner-number strong {
    order: -1;
    margin: 0;
    font-size: 5.8rem;
    line-height: 0.8;
  }

  .partner-number small,
  .partner-number span {
    font-size: 0.62rem;
  }

  .partner-copy h2 {
    font-size: clamp(2.1rem, 10.5vw, 3rem);
  }

  .partner-cta {
    width: 100%;
    min-height: 3.4rem;
    padding-inline: 0.8rem;
    font-size: 0.84rem;
    text-align: center;
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .project-journey *,
  .pricing-panels *,
  .partner-panel * {
    animation: none !important;
    transition: none !important;
  }
}


/* Round 6 — FAQ, contact, closing statement and footer. */

/* FAQ */
.faq-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
  background:
    linear-gradient(90deg, rgba(23, 23, 19, 0.035) 1px, transparent 1px) 0 0 / 25% 100%,
    var(--color-canvas-soft);
}

.faq-section::before {
  position: absolute;
  top: 0;
  left: max(1rem, calc((100vw - var(--container)) / 2));
  width: min(24rem, 36vw);
  height: 3px;
  background: var(--color-accent);
  content: "";
}

.faq-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(3.5rem, 8vw, 8rem);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 7rem;
}

.faq-intro h2 {
  max-width: 10ch;
  margin-bottom: 1.5rem;
  font-size: clamp(2.7rem, 4.8vw, 4.7rem);
}

.faq-intro > p:not(.eyebrow) {
  max-width: 31rem;
  margin-bottom: 2rem;
  font-size: 1.02rem;
  line-height: 1.7;
}

.faq-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  border-bottom: 1px solid var(--color-border-strong);
  padding-bottom: 0.4rem;
  color: var(--color-ink);
  font-size: 0.82rem;
  font-weight: 800;
  transition: border-color 180ms ease, color 180ms ease;
}

.faq-contact-link span {
  color: var(--color-accent);
  transition: transform 180ms ease;
}

.faq-contact-link:hover {
  border-color: var(--color-accent);
  color: var(--color-focus);
}

.faq-contact-link:hover span {
  transform: translate(2px, 2px);
}

.faq-list {
  display: block;
  border-top: 1px solid var(--color-border-strong);
}

.faq-list details {
  margin: 0;
  border: 0;
  border-bottom: 1px solid var(--color-border);
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 5.6rem;
  align-items: center;
  gap: 1.2rem;
  padding: 1.35rem 3.5rem 1.35rem 0;
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-size: clamp(1.02rem, 1.45vw, 1.28rem);
  font-weight: 750;
  letter-spacing: -0.025em;
  line-height: 1.3;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary > span {
  flex: 0 0 2rem;
  color: var(--color-muted-light);
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 0;
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-xs);
  background: transparent;
  color: var(--color-accent);
  content: "+";
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1;
  transform: translateY(-50%);
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 220ms ease;
}

.faq-list details[open] summary::after {
  border-color: var(--color-ink);
  background: var(--color-ink);
  color: var(--color-white);
  content: "−";
}

.faq-list summary:hover::after {
  border-color: var(--color-accent);
}

.faq-list summary:focus-visible,
.faq-contact-link:focus-visible {
  border-radius: var(--radius-xs);
  outline: 3px solid rgba(242, 100, 25, 0.32);
  outline-offset: 5px;
}

.faq-answer {
  overflow: hidden;
}

.faq-list .faq-answer p {
  max-width: 63ch;
  margin: 0;
  padding: 0 3.5rem 1.7rem 3.2rem;
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

@media (prefers-reduced-motion: no-preference) {
  .faq-list details[open] .faq-answer {
    animation: faqAnswerIn 260ms ease both;
  }
}

@keyframes faqAnswerIn {
  from { opacity: 0; transform: translateY(-0.35rem); }
  to { opacity: 1; transform: none; }
}

/* Contact */
.contact-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 90%, rgba(242, 100, 25, 0.18), transparent 30%),
    linear-gradient(125deg, #171713, #22221f 70%, #292620);
  color: var(--color-white);
}

.contact-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 253, 248, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 253, 248, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, #000, transparent 74%);
}

.contact-section::after {
  position: absolute;
  top: -10rem;
  right: -10rem;
  width: 27rem;
  height: 27rem;
  border: 1px solid rgba(242, 100, 25, 0.2);
  border-radius: 50%;
  content: "";
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.contact-copy {
  padding-top: 0.5rem;
}

.contact-copy .eyebrow {
  color: var(--color-accent);
}

.contact-copy h2 {
  max-width: 10ch;
  margin-bottom: 1.6rem;
  color: var(--color-white);
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 34rem;
  margin-bottom: 2.4rem;
  color: rgba(255, 253, 248, 0.68);
  font-size: clamp(1rem, 1.3vw, 1.08rem);
  line-height: 1.72;
}

.contact-practical {
  border-top: 1px solid rgba(255, 253, 248, 0.18);
}

.contact-practical > div {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 0.8rem;
  align-items: center;
  border-bottom: 1px solid rgba(255, 253, 248, 0.13);
  padding: 1rem 0;
}

.contact-practical span {
  color: var(--color-accent);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.contact-practical strong {
  color: rgba(255, 253, 248, 0.86);
  font-size: 0.82rem;
  line-height: 1.4;
}

.contact-form {
  display: grid;
  gap: 1.25rem;
  min-width: 0;
  border: 0;
  border-left: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 0;
  padding: 0 0 0 clamp(2rem, 4vw, 4rem);
  background: transparent;
  box-shadow: none;
}

.form-heading {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 0.6rem;
  border-bottom: 1px solid rgba(255, 253, 248, 0.18);
  padding-bottom: 1.5rem;
}

.form-heading > span {
  color: var(--color-accent);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.form-heading > strong {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.25;
}

.form-heading > small {
  color: rgba(255, 253, 248, 0.56);
  font-size: 0.72rem;
}

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

.form-field {
  display: grid;
  min-width: 0;
  gap: 0.45rem;
}

.contact-form label {
  color: rgba(255, 253, 248, 0.74);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.035em;
}

.contact-form label span {
  color: var(--color-accent);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 3.35rem;
  border: 1px solid rgba(255, 253, 248, 0.2);
  border-radius: var(--radius-xs);
  padding: 0.85rem 1rem;
  background: rgba(255, 253, 248, 0.075);
  color: var(--color-white);
  outline: none;
  box-shadow: none;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.contact-form textarea {
  min-height: 9.5rem;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 253, 248, 0.52);
}

.contact-form input:hover,
.contact-form textarea:hover {
  border-color: rgba(255, 253, 248, 0.34);
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  border-color: var(--color-accent);
  background: rgba(255, 253, 248, 0.11);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(242, 100, 25, 0.18);
}

.contact-form input[aria-invalid="true"],
.contact-form textarea[aria-invalid="true"] {
  border-color: #ff9a68;
  box-shadow: 0 0 0 2px rgba(255, 154, 104, 0.18);
}

.form-actions {
  display: grid;
  grid-template-columns: minmax(13rem, auto) minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  margin-top: 0.35rem;
}

.form-actions .button {
  min-height: 3.45rem;
  box-shadow: 0 15px 34px rgba(177, 62, 5, 0.26);
}

.form-actions > small {
  max-width: 23rem;
  color: rgba(255, 253, 248, 0.56);
  font-size: 0.67rem;
  line-height: 1.45;
}

.form-status {
  position: relative;
  border-left: 3px solid var(--color-accent);
  padding: 0.9rem 1rem;
  background: rgba(255, 253, 248, 0.08);
  color: rgba(255, 253, 248, 0.82);
  font-size: 0.82rem;
  line-height: 1.5;
}

.form-status[hidden] {
  display: none;
}

.form-status[data-state="success"] {
  border-left-color: #9fd6aa;
}

.form-status[data-state="error"] {
  border-left-color: #ff9a68;
}

.contact-form button:disabled {
  border-color: rgba(255, 253, 248, 0.16);
  background: rgba(255, 253, 248, 0.12);
  color: rgba(255, 253, 248, 0.55);
  box-shadow: none;
  cursor: wait;
}

/* Closing statement */
.closing-statement {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
  padding: clamp(4rem, 9vw, 8rem) 0;
  background: var(--color-surface);
}

.closing-statement::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 23, 19, 0.04) 1px, transparent 1px) 0 0 / 16.666% 100%;
  content: "";
  pointer-events: none;
}

.closing-statement-inner {
  position: relative;
}

.closing-index {
  position: absolute;
  top: 0.4rem;
  right: 0;
  color: var(--color-muted-light);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.closing-statement p {
  display: grid;
  max-width: 13ch;
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-size: clamp(3.25rem, 8vw, 7.7rem);
  font-weight: 850;
  letter-spacing: -0.075em;
  line-height: 0.88;
}

.closing-statement p strong {
  color: var(--color-accent);
  font-weight: inherit;
}

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 7vw, 6rem) 0 1.5rem;
  background: #171713;
  color: var(--color-white);
}

.footer-monogram {
  position: absolute;
  right: -0.08em;
  bottom: -0.27em;
  color: rgba(255, 253, 248, 0.025);
  font-family: var(--font-heading);
  font-size: clamp(15rem, 34vw, 34rem);
  font-weight: 900;
  letter-spacing: -0.12em;
  line-height: 0.7;
  pointer-events: none;
}

.footer-shell {
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(250px, 1.25fr) repeat(3, minmax(130px, 0.55fr));
  gap: clamp(2rem, 5vw, 5rem);
  border-top: 1px solid rgba(255, 253, 248, 0.18);
  padding-top: 2.25rem;
}

.footer-positioning .footer-brand {
  margin-bottom: 1.2rem;
}

.footer-positioning > p {
  max-width: 22rem;
  margin: 0;
  color: rgba(255, 253, 248, 0.56);
  font-size: 0.84rem;
}

.site-footer .brand-wordmark strong {
  color: var(--color-white);
}

.site-footer .brand-wordmark small {
  color: rgba(255, 253, 248, 0.48);
}

.footer-navigation,
.footer-contact,
.footer-legal {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
}

.footer-navigation > strong,
.footer-contact > strong,
.footer-legal > strong {
  margin-bottom: 0.35rem;
  color: var(--color-accent);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer a,
.site-footer span,
.site-footer p {
  color: rgba(255, 253, 248, 0.68);
}

.site-footer .footer-monogram {
  color: rgba(255, 253, 248, 0.025);
}

.footer-navigation a,
.footer-links a,
.footer-links span {
  font-size: 0.78rem;
  font-weight: 650;
  transition: color 180ms ease;
}

.footer-navigation a:hover,
.footer-links a:not([aria-disabled="true"]):hover {
  color: var(--color-white);
}

.footer-contact > span {
  font-size: 0.8rem;
  font-weight: 700;
}

.footer-contact > small,
.footer-legal > small {
  max-width: 15rem;
  color: rgba(255, 253, 248, 0.52);
  font-size: 0.68rem;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links [aria-disabled="true"] {
  color: rgba(255, 253, 248, 0.52);
  opacity: 1;
  cursor: default;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: clamp(3rem, 7vw, 6rem);
  border-top: 1px solid rgba(255, 253, 248, 0.12);
  padding-top: 1.25rem;
}

.footer-bottom p,
.footer-bottom span {
  margin: 0;
  color: rgba(255, 253, 248, 0.48);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* Single-pass entrances, with all content present when scripting is unavailable. */
.reveal-enabled .contact-copy,
.reveal-enabled .contact-form,
.reveal-enabled .closing-statement-inner {
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 520ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-enabled .contact-copy.is-visible,
.reveal-enabled .contact-form.is-visible,
.reveal-enabled .closing-statement-inner.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-enabled .contact-form.is-visible {
  transition-delay: 120ms;
}

@media (max-width: 1040px) {
  .contact-grid {
    grid-template-columns: minmax(0, 0.75fr) minmax(390px, 1.25fr);
    gap: 3rem;
  }

  .footer-top {
    grid-template-columns: minmax(250px, 1.4fr) repeat(3, minmax(110px, 0.5fr));
    gap: 2.4rem;
  }
}

@media (max-width: 900px) {
  .faq-shell,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    position: static;
  }

  .faq-intro h2,
  .contact-copy h2 {
    max-width: 13ch;
  }

  .contact-copy {
    max-width: 43rem;
  }

  .contact-practical {
    max-width: 40rem;
  }

  .contact-form {
    border-top: 1px solid rgba(255, 253, 248, 0.18);
    border-left: 0;
    padding: 2.25rem 0 0;
  }

  .footer-top {
    grid-template-columns: minmax(240px, 1fr) repeat(2, minmax(140px, 0.55fr));
  }

  .footer-legal {
    grid-column: 2;
  }
}

@media (max-width: 680px) {
  .faq-section::before {
    width: 45%;
  }

  .faq-shell {
    gap: 2.7rem;
  }

  .faq-intro h2,
  .contact-copy h2 {
    font-size: clamp(2.25rem, 11vw, 3.4rem);
    line-height: 0.98;
  }

  .faq-list summary {
    min-height: 4.9rem;
    gap: 0.7rem;
    padding: 1.15rem 2.9rem 1.15rem 0;
    font-size: 0.98rem;
  }

  .faq-list summary > span {
    flex-basis: 1.6rem;
    font-size: 0.58rem;
  }

  .faq-list summary::after {
    width: 2rem;
    height: 2rem;
  }

  .faq-list .faq-answer p {
    padding: 0 2.8rem 1.4rem 2.3rem;
    font-size: 0.85rem;
  }

  .contact-section {
    padding-block: 4rem;
  }

  .contact-grid {
    gap: 2.7rem;
  }

  .contact-copy > p:not(.eyebrow) {
    font-size: 0.95rem;
  }

  .contact-form {
    gap: 1.1rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .contact-form input,
  .contact-form textarea {
    min-height: 3.4rem;
    font-size: 1rem;
  }

  .contact-form textarea {
    min-height: 9rem;
  }

  .form-actions {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

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

  .closing-index {
    display: none;
  }

  .closing-statement p {
    max-width: 10ch;
    font-size: clamp(3.05rem, 14vw, 5rem);
    line-height: 0.92;
  }

  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.3rem 1.5rem;
  }

  .footer-positioning {
    grid-column: 1 / -1;
    border-bottom: 1px solid rgba(255, 253, 248, 0.12);
    padding-bottom: 1.7rem;
  }

  .footer-legal {
    grid-column: auto;
  }

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

@media (max-width: 390px) {
  .faq-list summary {
    padding-right: 2.7rem;
  }

  .faq-list .faq-answer p {
    padding-right: 0.4rem;
  }

  .contact-practical > div {
    grid-template-columns: 1.7rem minmax(0, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-positioning,
  .footer-legal {
    grid-column: 1;
  }

  .footer-navigation,
  .footer-contact,
  .footer-legal {
    border-bottom: 1px solid rgba(255, 253, 248, 0.1);
    padding-bottom: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-section *,
  .contact-section *,
  .closing-statement *,
  .site-footer * {
    animation: none !important;
    transition: none !important;
  }
}


/* Polish 1: restrained visual refinement for the header through founder section. */

:root {
  --shadow-device: 0 34px 82px rgba(23, 23, 19, 0.18), 0 8px 18px rgba(23, 23, 19, 0.07);
  --shadow-device-hover: 0 42px 96px rgba(23, 23, 19, 0.21), 0 9px 20px rgba(23, 23, 19, 0.08);
  --line-editorial: rgba(23, 23, 19, 0.12);
  --emblem-size: 0.42rem;
}

/* A small geometric marker keeps the upper editorial labels in one family. */
.value-proposition-heading .eyebrow,
.system-flow-heading .eyebrow,
.case-studies-heading .eyebrow,
.automation-practice-copy > .eyebrow {
  font-size: 0.72rem;
  font-weight: 850;
}

.value-proposition-heading .eyebrow::after,
.system-flow-heading .eyebrow::after,
.case-studies-heading .eyebrow::after,
.automation-practice-copy > .eyebrow::after {
  width: var(--emblem-size);
  height: var(--emblem-size);
  flex: 0 0 var(--emblem-size);
  border: 1px solid currentColor;
  content: "";
  opacity: 0.72;
  transform: rotate(45deg);
}

/* Quieter grids and firmer editorial dividers keep the content as the focus. */
.value-proposition-section {
  background:
    linear-gradient(90deg, rgba(23, 23, 19, 0.028) 1px, transparent 1px) 0 0 / 25% 100%,
    linear-gradient(180deg, var(--color-surface) 0%, var(--color-canvas-soft) 100%);
}

.value-proposition-heading {
  gap: clamp(38px, 5.4vw, 76px);
  margin-bottom: clamp(44px, 5.4vw, 72px);
}

.value-proposition-lead,
.case-studies-heading > p {
  font-size: clamp(1.04rem, 1.22vw, 1.15rem);
  line-height: 1.64;
}

.value-editorial-grid {
  border-color: var(--line-editorial);
}

.value-story {
  gap: 34px;
  padding: clamp(27px, 2.8vw, 39px);
}

.value-story-featured {
  padding-left: 0;
}

.value-story-meta {
  color: var(--color-focus);
}

.value-story-meta svg {
  width: 28px;
  height: 28px;
}

.value-story-copy p {
  font-size: 0.96rem;
  line-height: 1.6;
}

.value-story-featured .value-story-copy p {
  font-size: 1.04rem;
  line-height: 1.62;
}

.system-flow-grid {
  opacity: 0.36;
}

.system-flow-heading {
  gap: clamp(42px, 5.5vw, 76px);
}

.system-flow-heading > p {
  font-size: clamp(1.04rem, 1.2vw, 1.14rem);
  line-height: 1.64;
}

.flow-route-label {
  margin-bottom: 34px;
}

.customer-flow::before {
  background: rgba(255, 253, 248, 0.2);
}

.flow-stage-body > p {
  color: rgba(255, 253, 248, 0.73);
  font-size: 0.9rem;
  line-height: 1.58;
}

.flow-stage-automation {
  box-shadow: inset 0 2px 0 rgba(242, 100, 25, 0.6), 0 18px 38px rgba(0, 0, 0, 0.08);
}

.flow-micro-ui {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

/* Case studies retain their distinct client visuals, with one shared depth rule. */
.demos-section {
  background:
    linear-gradient(90deg, rgba(23, 23, 19, 0.028) 1px, transparent 1px) 0 0 / 25% 100%,
    linear-gradient(180deg, var(--color-surface) 0%, var(--color-canvas-soft) 100%);
}

.case-studies-heading {
  gap: clamp(40px, 5.8vw, 82px);
  margin-bottom: clamp(54px, 6.8vw, 90px);
}

.case-studies-heading h2 {
  max-width: 790px;
}

.case-study {
  border-color: var(--line-editorial);
}

.case-study-visual::before {
  background:
    linear-gradient(rgba(23, 23, 19, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 23, 19, 0.032) 1px, transparent 1px),
    var(--color-surface-muted);
  background-size: 34px 34px;
}

.case-browser {
  box-shadow: var(--shadow-device);
}

.case-study:hover .case-browser {
  box-shadow: var(--shadow-device-hover);
}

.case-mobile {
  box-shadow: 0 27px 58px rgba(23, 23, 19, 0.26), 0 7px 17px rgba(23, 23, 19, 0.11);
}

.case-study-copy > p {
  font-size: 1.04rem;
  line-height: 1.62;
}

.case-study-copy li {
  padding-block: 11px;
  font-size: 0.86rem;
}

/* The technical flow gets more breathing room without looking like product UI. */
.automation-practice-section {
  background: #eee8dd;
}

.automation-practice-grid {
  opacity: 0.25;
}

.automation-practice-layout {
  gap: clamp(44px, 6vw, 82px);
}

.automation-practice-lead {
  font-size: clamp(1.04rem, 1.2vw, 1.14rem);
  line-height: 1.64;
}

.automation-step-list li {
  padding-block: 19px;
}

.automation-step-list p {
  font-size: 0.86rem;
  line-height: 1.56;
}

.automation-diagram {
  border-color: rgba(23, 23, 19, 0.18);
  box-shadow: var(--shadow-device);
}

.automation-node,
.lead-capture-card {
  box-shadow: 0 16px 34px rgba(23, 23, 19, 0.09);
}

/* The founder block reads as an integrated chapter rather than a detached card. */
.founder-section {
  position: relative;
  padding-block: clamp(84px, 8vw, 118px);
  background:
    linear-gradient(90deg, rgba(23, 23, 19, 0.026) 1px, transparent 1px) 0 0 / 25% 100%,
    radial-gradient(circle at 8% 20%, rgba(242, 100, 25, 0.085), transparent 26%),
    linear-gradient(180deg, #ffffff, var(--bg));
}

.founder-section::before {
  position: absolute;
  top: 0;
  left: max(1rem, calc((100% - var(--container)) / 2));
  width: min(34%, 410px);
  height: 3px;
  background: var(--color-accent);
  content: "";
}

.founder-card {
  border-radius: 20px;
  box-shadow: 0 34px 82px rgba(23, 23, 19, 0.2);
}

.founder-visual {
  min-height: 542px;
}

.founder-content {
  padding: clamp(42px, 4.5vw, 58px);
}

.founder-content p {
  font-size: 1.02rem;
  line-height: 1.64;
}

.founder-lead {
  font-size: 1.12rem;
}

.founder-values > div {
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
}

.founder-values span {
  background: var(--color-accent);
}

.founder-values > div:nth-child(2) span,
.founder-values > div:nth-child(3) span {
  background: rgba(255, 253, 248, 0.34);
}

.status-dot {
  background: var(--color-accent);
  box-shadow: 0 0 0 5px rgba(242, 100, 25, 0.13);
}

@media (max-width: 980px) {
  .case-study-copy > p {
    font-size: 1rem;
  }

  .founder-section {
    padding-block: 76px 88px;
  }

  .founder-visual {
    min-height: 400px;
  }
}

@media (max-width: 780px) {
  .value-story-copy p,
  .flow-stage-body > p,
  .automation-step-list p {
    font-size: 0.92rem;
  }

  .founder-section {
    padding-block: 72px 80px;
  }
}

@media (max-width: 620px) {
  .value-proposition-heading .eyebrow,
  .system-flow-heading .eyebrow,
  .case-studies-heading .eyebrow,
  .automation-practice-copy > .eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.105em;
  }

  .value-proposition-heading .eyebrow::after,
  .system-flow-heading .eyebrow::after,
  .case-studies-heading .eyebrow::after,
  .automation-practice-copy > .eyebrow::after {
    display: none;
  }

  .value-proposition-lead,
  .case-studies-heading > p,
  .system-flow-heading > p,
  .automation-practice-lead {
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .value-story-copy p,
  .value-story-featured .value-story-copy p,
  .flow-stage-body > p,
  .automation-step-list p,
  .case-study-copy > p {
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .founder-section {
    padding-block: 64px 72px;
  }

  .founder-card {
    border-radius: 16px;
  }

  .founder-content p {
    font-size: 0.96rem;
  }
}


/* Polish 2 — lower-page hierarchy, readability and conversion-surface refinements. */

:root {
  --editorial-line: rgba(23, 23, 19, 0.16);
  --editorial-line-inverse: rgba(255, 253, 248, 0.16);
}

/* Project journey: make the sequence clear before the detailed explanation. */
.process-section {
  background:
    linear-gradient(90deg, rgba(221, 214, 202, 0.18) 1px, transparent 1px) 0 0 / 12.5% 100%,
    var(--color-canvas-soft);
}

.process-section::before {
  height: clamp(2.5rem, 5vw, 5rem);
  opacity: 0.84;
}

.process-heading {
  margin-bottom: clamp(2.35rem, 4vw, 3.8rem);
}

.process-heading > p {
  max-width: 35rem;
  border-left-width: 1px;
  padding-left: 1.15rem;
  color: var(--color-muted);
  font-size: clamp(1.02rem, 1.32vw, 1.14rem);
  line-height: 1.66;
}

.project-journey {
  gap: clamp(0.8rem, 1.25vw, 1.28rem);
  padding-top: 1.7rem;
}

.journey-line {
  top: 2.1rem;
  background: var(--editorial-line);
}

.journey-step::before {
  width: 0.62rem;
  height: 0.62rem;
  margin-bottom: 1.65rem;
  border-width: 2px;
}

.journey-number {
  margin-bottom: 1.2rem;
  font-size: clamp(2.5rem, 3.7vw, 3.95rem);
}

.journey-copy small {
  margin-bottom: 0.45rem;
  color: var(--color-muted-light);
}

.journey-copy h3 {
  min-height: 3.1em;
  margin-bottom: 0.78rem;
  font-size: clamp(1.1rem, 1.38vw, 1.3rem);
  line-height: 1.16;
}

.journey-copy p {
  max-width: 28ch;
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.62;
}

.commercial-gate {
  margin-top: -1.2rem;
  border-color: rgba(242, 100, 25, 0.58);
  border-radius: var(--radius-xs);
  padding: 1.05rem 1rem 1rem;
  box-shadow: 0 18px 38px rgba(177, 62, 5, 0.13);
}

.commercial-gate::before,
.commercial-gate::after {
  height: 1.2rem;
}

.gate-icon {
  width: 2.15rem;
  height: 2.15rem;
  margin-bottom: 0.9rem;
}

.gate-icon svg {
  width: 1.08rem;
}

.commercial-gate > small {
  margin-bottom: 0.32rem;
  font-size: 0.59rem;
}

.commercial-gate > strong {
  font-size: 0.96rem;
  line-height: 1.18;
}

.commercial-gate p {
  margin: 0.62rem 0 0.82rem;
  color: rgba(23, 23, 19, 0.8);
  font-size: 0.8rem;
  line-height: 1.48;
}

.gate-status {
  border-top-color: rgba(23, 23, 19, 0.18);
  padding-top: 0.67rem;
  font-size: 0.61rem;
}

/* Pricing: retain the panel comparison, but give the decision points more room. */
.pricing-section {
  background: linear-gradient(180deg, var(--color-surface), var(--color-canvas-soft));
}

.pricing-heading {
  margin-bottom: clamp(2.7rem, 4.5vw, 4.2rem);
}

.pricing-heading > p {
  max-width: 36rem;
  color: var(--color-muted);
}

.pricing-panels {
  border-color: var(--editorial-line);
}

.pricing-panels .pricing-panel {
  border-right-color: var(--editorial-line);
  padding: clamp(2.1rem, 3.25vw, 3.15rem);
}

.pricing-panels .pricing-panel.recommended {
  background:
    linear-gradient(135deg, rgba(242, 100, 25, 0.12), transparent 44%),
    #20201c;
  box-shadow: 0 23px 56px rgba(23, 23, 19, 0.16);
}

.package-head {
  min-height: 13.25rem;
  padding-bottom: 1.45rem;
}

.package-index {
  margin-bottom: 1.8rem;
  color: var(--color-muted-light);
}

.package-marker {
  top: -0.12rem;
  padding-bottom: 0.28rem;
  font-size: 0.61rem;
}

.package-head h3 {
  margin-bottom: 1.2rem;
  font-size: clamp(1.5rem, 2vw, 1.95rem);
  line-height: 1.08;
}

.pricing-panels .price {
  gap: 0.45rem;
}

.pricing-panels .price strong {
  font-size: clamp(1.95rem, 2.75vw, 2.7rem);
  line-height: 0.98;
}

.pricing-panels .price span {
  font-size: 0.84rem;
}

.pricing-panels .package-fit {
  min-height: 7.1rem;
  margin: 1.7rem 0;
  font-size: 0.94rem;
  line-height: 1.64;
}

.pricing-panels .package-content-label {
  min-height: 2.7rem;
  margin-bottom: 1.1rem;
  font-size: 0.68rem;
  line-height: 1.34;
}

.pricing-panels .package-features {
  gap: 0.9rem;
  margin-bottom: 2.3rem;
}

.pricing-panels .package-features li {
  padding-left: 1.42rem;
  font-size: 0.9rem;
  line-height: 1.48;
}

.pricing-panels .price-cta {
  min-height: 3.45rem;
}

.pricing-notes {
  border-bottom-color: var(--editorial-line);
}

.pricing-notes > div {
  gap: 0.9rem;
  border-right-color: var(--editorial-line);
  padding: 1.45rem clamp(1.1rem, 2vw, 1.75rem);
}

.pricing-notes > div > span {
  font-size: 0.95rem;
}

.pricing-notes p,
.pricing-notes strong {
  font-size: 0.84rem;
  line-height: 1.5;
}

.pricing-notes strong {
  margin-bottom: 0.32rem;
}

/* Partner programme stays assertive without adding sales pressure. */
.partner-section {
  padding-top: clamp(1.75rem, 4vw, 3.4rem);
  background: var(--color-canvas-soft);
}

.partner-panel {
  min-height: 30rem;
  border: 1px solid rgba(255, 253, 248, 0.09);
  border-radius: var(--radius-sm);
  box-shadow: 0 24px 54px rgba(23, 23, 19, 0.15);
}

.partner-grid {
  opacity: 0.78;
}

.partner-number strong {
  font-size: clamp(7.25rem, 14vw, 12.75rem);
}

.partner-copy h2 {
  margin-bottom: 1.35rem;
}

.partner-copy > p:not(.eyebrow) {
  color: rgba(255, 253, 248, 0.74);
  font-size: clamp(1rem, 1.23vw, 1.08rem);
  line-height: 1.68;
}

.partner-cta {
  min-height: 3.4rem;
}

/* FAQ: strengthen the list rather than turning it into card UI. */
.faq-section {
  background:
    linear-gradient(90deg, rgba(23, 23, 19, 0.022) 1px, transparent 1px) 0 0 / 25% 100%,
    var(--color-canvas-soft);
}

.faq-section::before {
  height: 2px;
}

.faq-shell {
  gap: clamp(3rem, 7vw, 7rem);
}

.faq-intro > p:not(.eyebrow) {
  color: var(--color-muted);
  font-size: 1.05rem;
  line-height: 1.68;
}

.faq-list {
  border-top-color: var(--editorial-line);
}

.faq-list details {
  border-bottom-color: var(--editorial-line);
}

.faq-list details[open] {
  background: rgba(255, 253, 248, 0.32);
}

.faq-list summary {
  min-height: 5.9rem;
  padding-block: 1.42rem;
  color: var(--color-ink);
  font-size: clamp(1.08rem, 1.48vw, 1.3rem);
}

.faq-list summary > span {
  color: var(--color-muted);
  font-size: 0.68rem;
}

.faq-list summary::after {
  border-color: var(--editorial-line);
}

.faq-list .faq-answer p {
  max-width: 59ch;
  padding-bottom: 1.9rem;
  color: var(--color-muted);
  font-size: 0.98rem;
  line-height: 1.68;
}

/* Contact: visual comfort and contrast, without touching field mappings or submit logic. */
.contact-section {
  background:
    radial-gradient(circle at 8% 92%, rgba(242, 100, 25, 0.14), transparent 29%),
    linear-gradient(125deg, #171713, #20201c 70%, #292720);
}

.contact-grid-lines {
  opacity: 0.72;
}

.contact-copy h2 {
  margin-bottom: 1.45rem;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 35rem;
  margin-bottom: 2.55rem;
  color: rgba(255, 253, 248, 0.74);
  font-size: clamp(1.04rem, 1.32vw, 1.12rem);
  line-height: 1.68;
}

.contact-practical {
  border-top-color: var(--editorial-line-inverse);
}

.contact-practical > div {
  border-bottom-color: rgba(255, 253, 248, 0.11);
  padding: 1.08rem 0;
}

.contact-practical strong {
  font-size: 0.88rem;
}

.contact-form {
  border-left-color: var(--editorial-line-inverse);
  gap: 1.35rem;
}

.form-heading {
  gap: 0.5rem;
  border-bottom-color: var(--editorial-line-inverse);
  padding-bottom: 1.65rem;
}

.form-heading > small,
.form-actions > small {
  color: rgba(255, 253, 248, 0.64);
  font-size: 0.74rem;
}

.contact-form label {
  color: rgba(255, 253, 248, 0.82);
  font-size: 0.76rem;
}

.contact-form input,
.contact-form textarea {
  min-height: 3.55rem;
  border-color: rgba(255, 253, 248, 0.24);
  padding: 0.95rem 1.05rem;
  background: rgba(255, 253, 248, 0.085);
  font-size: 0.98rem;
}

.contact-form textarea {
  min-height: 10rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 253, 248, 0.58);
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  border-color: var(--color-accent);
  background: rgba(255, 253, 248, 0.12);
  box-shadow: 0 0 0 3px rgba(242, 100, 25, 0.2);
}

.form-actions {
  margin-top: 0.6rem;
}

.form-actions .button {
  min-height: 3.65rem;
}

.form-status {
  border-left-width: 3px;
  background: rgba(255, 253, 248, 0.11);
  color: rgba(255, 253, 248, 0.9);
  font-size: 0.88rem;
}

.form-status[data-state="success"] {
  background: rgba(159, 214, 170, 0.12);
}

.form-status[data-state="error"] {
  background: rgba(255, 154, 104, 0.13);
}

/* Closing and footer: a quieter final cadence with confident brand visibility. */
.closing-statement {
  padding: clamp(4.5rem, 8vw, 7.25rem) 0;
}

.closing-statement::before {
  background: linear-gradient(90deg, rgba(23, 23, 19, 0.025) 1px, transparent 1px) 0 0 / 20% 100%;
}

.closing-index {
  color: var(--color-muted);
}

.closing-statement p {
  max-width: 12ch;
  font-size: clamp(3.35rem, 7.7vw, 7.15rem);
  line-height: 0.9;
}

.site-footer {
  padding-top: clamp(3.75rem, 6.5vw, 5.5rem);
  background: #181814;
}

.footer-top {
  gap: clamp(2rem, 4.6vw, 4.6rem);
  border-top-color: var(--editorial-line-inverse);
  padding-top: 2.4rem;
}

.footer-positioning .footer-brand {
  margin-bottom: 1.35rem;
}

.site-footer .brand-mark img {
  width: 3.75rem;
  height: auto;
}

.footer-positioning > p {
  color: rgba(255, 253, 248, 0.62);
  font-size: 0.9rem;
  line-height: 1.55;
}

.footer-navigation,
.footer-contact,
.footer-legal {
  gap: 0.78rem;
}

.footer-navigation > strong,
.footer-contact > strong,
.footer-legal > strong {
  margin-bottom: 0.48rem;
}

.footer-navigation a,
.footer-links a,
.footer-links span,
.footer-contact > span {
  font-size: 0.82rem;
}

.footer-contact > small,
.footer-legal > small {
  color: rgba(255, 253, 248, 0.58);
  font-size: 0.73rem;
}

.footer-bottom {
  margin-top: clamp(2.75rem, 5.8vw, 5rem);
  border-top-color: rgba(255, 253, 248, 0.11);
}

/* 2 + 1 keeps package comparison readable at small desktop / tablet widths. */
@media (max-width: 1100px) {
  .journey-copy p {
    max-width: 52ch;
  }

  .commercial-gate {
    margin-top: 0;
    padding: 1.15rem 1.25rem;
  }

  .pricing-panels {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 1px solid var(--editorial-line);
  }

  .pricing-panels .pricing-panel,
  .pricing-panels .pricing-panel:last-child {
    border-right: 1px solid var(--editorial-line);
    border-bottom: 1px solid var(--editorial-line);
  }

  .pricing-panels .pricing-panel:nth-child(2) {
    border-right: 0;
  }

  .pricing-panels .pricing-panel:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }

  .pricing-panels .pricing-panel:last-child .package-fit {
    max-width: 48rem;
  }

  .pricing-panels .pricing-panel:last-child .package-features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pricing-notes {
    border-color: var(--editorial-line);
  }
}

@media (max-width: 900px) {
  .faq-shell {
    gap: 2.8rem;
  }

  .faq-intro > p:not(.eyebrow) {
    max-width: 39rem;
  }

  .contact-grid {
    gap: 2.8rem;
  }

  .contact-form {
    border-top-color: var(--editorial-line-inverse);
  }
}

@media (max-width: 780px) {
  .project-journey {
    padding-top: 0;
  }

  .journey-line {
    background: var(--editorial-line);
  }

  .journey-copy p {
    font-size: 0.9rem;
  }

  .commercial-gate {
    padding: 1.05rem 1.1rem;
  }

  .pricing-panels {
    grid-template-columns: 1fr;
  }

  .pricing-panels .pricing-panel,
  .pricing-panels .pricing-panel:nth-child(2),
  .pricing-panels .pricing-panel:last-child {
    grid-column: auto;
    border-right: 0;
    border-bottom: 1px solid var(--editorial-line);
  }

  .pricing-panels .pricing-panel:last-child {
    border-bottom: 0;
  }

  .pricing-panels .pricing-panel:last-child .package-features {
    grid-template-columns: 1fr;
  }

  .pricing-panels .package-fit,
  .pricing-panels .package-content-label,
  .package-head {
    min-height: 0;
  }

  .partner-panel {
    min-height: 0;
  }
}

@media (max-width: 680px) {
  .process-section {
    background: var(--color-canvas-soft);
  }

  .journey-copy p {
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .pricing-panels .pricing-panel {
    padding: 1.75rem 1.3rem;
  }

  .package-head {
    padding-bottom: 1.3rem;
  }

  .package-index {
    margin-bottom: 1.45rem;
  }

  .pricing-panels .package-fit {
    margin: 1.45rem 0;
    font-size: 0.92rem;
  }

  .pricing-panels .package-features {
    gap: 0.82rem;
    margin-bottom: 1.9rem;
  }

  .pricing-panels .package-features li {
    font-size: 0.88rem;
  }

  .pricing-notes > div {
    padding: 1.18rem 1.1rem;
  }

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

  .partner-copy > p:not(.eyebrow),
  .faq-intro > p:not(.eyebrow),
  .contact-copy > p:not(.eyebrow) {
    font-size: 0.98rem;
  }

  .faq-list summary {
    min-height: 5.15rem;
    font-size: 1.02rem;
  }

  .faq-list .faq-answer p {
    padding-bottom: 1.6rem;
    font-size: 0.92rem;
  }

  .contact-form {
    gap: 1.2rem;
  }

  .contact-form input,
  .contact-form textarea {
    min-height: 3.45rem;
    font-size: 1rem;
  }

  .contact-form textarea {
    min-height: 9.25rem;
  }

  .form-actions .button {
    min-height: 3.55rem;
  }

  .closing-statement {
    padding: 4.25rem 0;
  }

  .footer-positioning > p {
    font-size: 0.86rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-section *,
  .pricing-section *,
  .partner-section *,
  .faq-section *,
  .contact-section *,
  .closing-statement *,
  .site-footer * {
    animation: none !important;
    transition: none !important;
  }
}
