:root {
  --page: #f7f2e7;
  --ink: #171916;
  --muted: #62675f;
  --soft: #e9dfcf;
  --line: #d6d0bf;
  --panel: #ffffff;
  --panel-2: #eeeadc;
  --green: #0b5d47;
  --green-2: #153f34;
  --acid: #b8e85f;
  --copper: #b86532;
  --blue: #234f68;
  --shadow: 0 28px 80px rgba(31, 34, 27, 0.16);
  --shadow-soft: 0 18px 55px rgba(31, 34, 27, 0.1);
  --radius: 18px;
  --max: 1160px;
  --h-font: "Aptos Display", "Segoe UI", sans-serif;
  --b-font: "Aptos", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(23, 25, 22, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23, 25, 22, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, #fff9ee 0%, var(--page) 38%, #eadfcd 100%);
  background-size: 76px 76px, 76px 76px, auto;
  color: var(--ink);
  font-family: var(--b-font);
  line-height: 1.55;
}

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

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

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(23, 25, 22, 0.1);
  background: rgba(246, 245, 239, 0.88);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  color: var(--ink);
  font-family: var(--h-font);
  font-size: 1.15rem;
  font-weight: 800;
}

.logo span {
  color: var(--green);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  justify-content: flex-end;
}

.nav a {
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.94rem;
  padding: 0.45rem 0.65rem;
}

.nav a:hover {
  background: rgba(11, 93, 71, 0.08);
  color: var(--green);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--h-font);
  font-weight: 800;
  line-height: 1.02;
}

h1 {
  font-size: clamp(3.1rem, 6.8vw, 5.35rem);
  letter-spacing: -0.065em;
}

h2 {
  letter-spacing: -0.045em;
  font-size: 3rem;
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0;
}

.eyebrow,
.badge {
  display: inline-block;
  margin-bottom: 0.85rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.section {
  padding: 5rem 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: end;
  margin-bottom: 1.4rem;
}

.section-head p,
.split-section > p,
.hero-lead,
.muted,
.lead {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.76rem 1rem;
  font-weight: 800;
}

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 16px 34px rgba(11, 93, 71, 0.22);
}

.btn-primary:hover {
  background: var(--green-2);
}

.btn-secondary,
.btn-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.45);
  color: var(--ink);
}

.text-link,
.case-cta {
  color: var(--green);
  font-weight: 850;
}

.text-link::after,
.case-cta::after {
  content: " ->";
}

.hero {
  position: relative;
  min-height: calc(90svh - 68px);
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(184, 232, 95, 0.28), transparent 30%),
    radial-gradient(circle at 12% 80%, rgba(184, 101, 50, 0.16), transparent 32%),
    linear-gradient(135deg, #fffaf0 0%, #f3ead8 48%, #e9dfcf 100%);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 25, 22, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23, 25, 22, 0.035) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.65), transparent 86%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 28%;
  background: linear-gradient(180deg, transparent, rgba(247, 242, 231, 0.98));
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0.78;
  pointer-events: none;
}

.hero-orb-a {
  top: 11%;
  right: 9%;
  width: 220px;
  height: 220px;
  background: rgba(11, 93, 71, 0.16);
}

.hero-orb-b {
  bottom: 12%;
  left: 8%;
  width: 160px;
  height: 160px;
  background: rgba(184, 101, 50, 0.18);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  gap: 3.4rem;
  align-items: center;
  padding: 6.8rem 0 5.4rem;
}

.hero-copy h1 {
  margin-bottom: 1.15rem;
}

.hero-lead {
  max-width: 650px;
  font-size: 1.22rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.2rem;
}

.hero-trust span {
  border: 1px solid rgba(11, 93, 71, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 800;
  padding: 0.42rem 0.68rem;
}

.hero-system {
  position: relative;
  min-height: 560px;
}

.system-shell {
  position: relative;
  min-height: 540px;
  border: 1px solid rgba(23, 25, 22, 0.12);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(245, 238, 222, 0.66)),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 34px 110px rgba(31, 34, 27, 0.18);
  overflow: hidden;
  padding: 1rem;
  backdrop-filter: blur(18px);
}

.system-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 68% 20%, rgba(184, 232, 95, 0.22), transparent 27%),
    linear-gradient(90deg, rgba(23, 25, 22, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23, 25, 22, 0.035) 1px, transparent 1px);
  background-size: auto, 54px 54px, 54px 54px;
  pointer-events: none;
}

.system-topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  border-bottom: 1px solid rgba(23, 25, 22, 0.1);
  padding: 0.3rem 0.35rem 0.95rem;
}

.system-topbar span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(23, 25, 22, 0.18);
}

.system-topbar strong {
  margin-left: 0.55rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.system-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
  padding-top: 1rem;
}

.system-card {
  min-height: 150px;
  border: 1px solid rgba(23, 25, 22, 0.11);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  padding: 1rem;
}

.system-card strong {
  display: block;
  margin: 0.35rem 0 0.2rem;
  color: var(--ink);
  font-size: 1.55rem;
}

.system-card p,
.mini-label {
  color: var(--muted);
  font-size: 0.86rem;
}

.ai-card {
  transform: translateY(2.5rem);
}

.crm-card {
  transform: translateY(1rem);
}

.report-card {
  transform: translateY(3.1rem);
}

.lead-stack {
  display: grid;
  gap: 0.38rem;
  margin-top: 0.85rem;
}

.lead-stack i {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(11, 93, 71, 0.2), rgba(11, 93, 71, 0.55));
}

.lead-stack i:nth-child(2) { width: 78%; }
.lead-stack i:nth-child(3) { width: 88%; }
.lead-stack i:nth-child(4) { width: 62%; }

.ai-core {
  position: relative;
  width: 78px;
  height: 78px;
  margin-top: 0.9rem;
  border-radius: 24px;
  background: radial-gradient(circle, var(--acid), rgba(11, 93, 71, 0.18) 58%, transparent 59%);
  animation: softPulse 3.4s ease-in-out infinite;
}

.ai-core span {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(11, 93, 71, 0.32);
  border-radius: inherit;
}

.ai-core span:nth-child(2) { inset: 24px; }
.ai-core span:nth-child(3) { inset: 33px; background: var(--green); }

.pipeline-mini {
  display: flex;
  align-items: end;
  gap: 0.42rem;
  height: 82px;
  margin-top: 0.75rem;
}

.pipeline-mini span {
  flex: 1;
  height: var(--h);
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, var(--green), rgba(11, 93, 71, 0.18));
}

.flow-lines {
  position: absolute;
  inset: 76px 0 auto;
  z-index: 1;
  width: 100%;
  height: 420px;
  overflow: visible;
}

.flow-lines path {
  fill: none;
  stroke: rgba(11, 93, 71, 0.28);
  stroke-width: 2;
  stroke-dasharray: 9 11;
  animation: dashFlow 11s linear infinite;
}

.flow-lines circle {
  fill: var(--acid);
  filter: drop-shadow(0 0 14px rgba(184, 232, 95, 0.85));
}

.floating-note {
  position: absolute;
  z-index: 3;
  max-width: 190px;
  border: 1px solid rgba(23, 25, 22, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  padding: 0.8rem;
  animation: floatNote 5.8s ease-in-out infinite;
}

.floating-note span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
}

.floating-note strong {
  color: var(--ink);
  font-size: 0.92rem;
}

.note-a {
  right: 2rem;
  top: 7.2rem;
}

.note-b {
  left: 2rem;
  bottom: 2rem;
  animation-delay: -1.8s;
}

.proof-strip {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.36);
}

.signal-section {
  position: relative;
  z-index: 2;
  margin-top: -2.2rem;
}

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

.signal-grid article {
  min-height: 190px;
  border: 1px solid rgba(23, 25, 22, 0.12);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(239, 229, 210, 0.88)),
    #fff;
  box-shadow: 0 24px 70px rgba(31, 34, 27, 0.12);
  padding: 1.15rem;
}

.signal-grid span {
  color: var(--copper);
  font-weight: 850;
}

.signal-grid strong {
  display: block;
  margin: 1.4rem 0 0.55rem;
  color: var(--ink);
  font-size: 1.1rem;
}

.signal-grid p {
  color: var(--muted);
}

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

.proof-items span {
  border-left: 1px solid var(--line);
  color: var(--muted);
  min-height: 74px;
  padding: 1rem;
}

.proof-items span:last-child {
  border-right: 1px solid var(--line);
}

.section-note {
  max-width: 330px;
  color: var(--muted);
  font-size: 0.98rem;
}

.live-system-section {
  padding-top: 6.2rem;
}

.flow-board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  border: 1px solid rgba(23, 25, 22, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 16% 26%, rgba(184, 232, 95, 0.2), transparent 24%),
    radial-gradient(circle at 84% 72%, rgba(184, 101, 50, 0.12), transparent 28%),
    rgba(255, 255, 255, 0.54);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  padding: 1rem;
}

.flow-board::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(11, 93, 71, 0.28), transparent);
}

.flow-step {
  position: relative;
  z-index: 2;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(23, 25, 22, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  padding: 1rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.flow-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.flow-step span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(11, 93, 71, 0.1);
  color: var(--green);
  font-weight: 900;
}

.flow-step p {
  color: var(--muted);
}

.flow-pulse {
  position: absolute;
  top: calc(50% - 7px);
  left: 8%;
  z-index: 3;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--acid);
  box-shadow: 0 0 0 10px rgba(184, 232, 95, 0.18), 0 0 30px rgba(11, 93, 71, 0.25);
  animation: boardPulse 7.5s ease-in-out infinite;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: 3rem;
  align-items: start;
}

.split-section > p {
  font-size: 1.05rem;
  padding-top: 2rem;
}

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

.service-tile,
.case-tile,
.card,
.metric-card,
.case-card,
.contact-card,
.doc-card,
.case-hero {
  border: 1px solid rgba(23, 25, 22, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 32px rgba(31, 34, 27, 0.07);
}

.service-tile {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.15rem;
  overflow: hidden;
  position: relative;
}

.service-tile::after,
.case-tile::after {
  content: "";
  position: absolute;
  inset: auto 1rem 1rem auto;
  width: 68px;
  height: 68px;
  border-right: 2px solid rgba(11, 93, 71, 0.18);
  border-bottom: 2px solid rgba(11, 93, 71, 0.18);
  pointer-events: none;
}

.tile-large,
.case-primary {
  background:
    linear-gradient(135deg, rgba(11, 93, 71, 0.12), transparent 45%),
    rgba(255, 255, 255, 0.82);
}

.service-tile span,
.case-tile span {
  color: var(--copper);
  font-weight: 850;
}

.service-tile p,
.case-tile p,
.case-card p,
.metric-card p,
.contact-card p,
.contact-card li {
  color: var(--muted);
}

.service-tile a,
.case-tile a {
  color: var(--green);
  font-weight: 850;
}

.method-section {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(11, 93, 71, 0.1), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(235, 224, 205, 0.5));
}

.method-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 1.14fr);
  gap: 2rem;
}

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

.method-list article {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 0.9rem;
}

.method-list span {
  color: var(--green);
  font-weight: 850;
}

.method-list p {
  color: var(--muted);
}

.transformation-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(235, 224, 205, 0.2));
}

.transformation-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: 2rem;
  align-items: center;
}

.transformation-copy {
  max-width: 560px;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.before-after {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 0.85rem;
  align-items: stretch;
}

.chaos-card,
.order-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(23, 25, 22, 0.12);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
  padding: 1.15rem;
}

.chaos-card {
  transform: rotate(-1.2deg);
}

.order-card {
  background:
    linear-gradient(145deg, rgba(11, 93, 71, 0.08), rgba(255, 255, 255, 0.76)),
    rgba(255, 255, 255, 0.86);
}

.chaos-card span,
.order-card span {
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.chaos-card strong,
.order-card strong {
  display: block;
  margin: 1.1rem 0 0.5rem;
  color: var(--ink);
  font-size: 1.35rem;
}

.chaos-card p,
.order-card p {
  color: var(--muted);
}

.chaos-dots i,
.order-bars i {
  position: absolute;
  display: block;
}

.chaos-dots i {
  width: 74px;
  height: 42px;
  border: 1px solid rgba(184, 101, 50, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 32px rgba(31, 34, 27, 0.08);
}

.chaos-dots i:nth-child(1) { left: 12%; bottom: 18%; transform: rotate(-10deg); }
.chaos-dots i:nth-child(2) { left: 42%; bottom: 33%; transform: rotate(12deg); }
.chaos-dots i:nth-child(3) { right: 12%; bottom: 15%; transform: rotate(-4deg); }
.chaos-dots i:nth-child(4) { left: 18%; top: 43%; transform: rotate(7deg); }
.chaos-dots i:nth-child(5) { right: 18%; top: 38%; transform: rotate(-15deg); }

.order-bars i {
  left: 1.15rem;
  right: 1.15rem;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(11, 93, 71, 0.12), rgba(11, 93, 71, 0.04));
  border: 1px solid rgba(11, 93, 71, 0.1);
}

.order-bars i:nth-child(1) { bottom: 8.9rem; }
.order-bars i:nth-child(2) { bottom: 6.2rem; width: 82%; }
.order-bars i:nth-child(3) { bottom: 3.5rem; width: 68%; }
.order-bars i:nth-child(4) { bottom: 0.8rem; width: 92%; }

.case-tile {
  min-height: 220px;
}

.case-primary {
  grid-column: span 1;
  grid-row: span 2;
}

.case-tile a {
  height: 100%;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem;
}

.cta-panel {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 3rem 0;
}

.cta-panel h2 {
  max-width: 900px;
  margin-bottom: 1.2rem;
}

.grid,
.metrics,
.cases,
.contacts,
.services-grid,
.why-grid {
  display: grid;
  gap: 0.9rem;
}

.services-grid,
.why-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

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

.card,
.metric-card,
.case-card,
.contact-card {
  padding: 1rem;
}

.service-card {
  transform: translateY(8px);
  opacity: 0;
  animation: reveal 0.62s ease forwards;
}

.reveal-item {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.62s ease, transform 0.62s ease;
}

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

.service-card:nth-child(2) { animation-delay: 0.08s; }
.service-card:nth-child(3) { animation-delay: 0.14s; }
.service-card:nth-child(4) { animation-delay: 0.2s; }
.service-card:nth-child(5) { animation-delay: 0.26s; }
.service-card:nth-child(6) { animation-delay: 0.32s; }

.small {
  font-size: 0.88rem;
}

.check-list,
.doc-list,
.doc-card ul,
.doc-card ol,
.case-bullets {
  padding-left: 1.2rem;
}

.check-list li,
.case-bullets li {
  margin-bottom: 0.42rem;
}

.form-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

label {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

input,
select,
textarea {
  width: 100%;
  margin-bottom: 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font: inherit;
  padding: 0.72rem 0.78rem;
}

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

.site-footer {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  padding: 1.2rem 0 1.6rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.44);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

.footer-links,
.legal-links {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 0.85rem;
}

.footer-meta p,
.footer-legal-note p {
  margin: 0.35rem 0;
}

.footer-legal-note {
  padding-top: 1rem;
}

.footer-links a,
.legal-links a,
.footer-meta a,
.doc-card a,
.consent-check a,
.cookie-copy a {
  color: var(--green);
}

.cookie-banner {
  position: fixed;
  inset-inline: 1rem;
  bottom: 1rem;
  z-index: 1000;
}

.cookie-banner__inner {
  width: min(100%, 980px);
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 1rem;
  align-items: center;
  margin: 0 auto;
  border: 1px solid rgba(23, 25, 22, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.cookie-copy strong {
  display: block;
  margin-bottom: 0.35rem;
}

.cookie-copy p {
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-end;
}

.consent-row {
  margin: 0.5rem 0 1rem;
}

.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.consent-check input {
  width: auto;
  margin: 0.2rem 0 0;
}

.case-card-link {
  padding: 0;
  overflow: hidden;
}

.case-link {
  display: block;
  height: 100%;
  padding: 1rem;
  transition: transform 0.18s ease, background 0.18s ease;
}

.case-link:hover {
  transform: translateY(-2px);
  background: rgba(11, 93, 71, 0.045);
}

.case-company {
  color: var(--ink);
  font-weight: 750;
  margin: 0.55rem 0;
}

.case-bullets {
  color: var(--muted);
  margin: 0.9rem 0 0;
}

.doc-page,
.case-page {
  padding: 4rem 0;
}

.doc-card,
.case-hero {
  padding: 1.25rem;
}

.case-hero {
  margin-bottom: 1rem;
}

.doc-card h1,
.doc-card h2,
.doc-card h3 {
  margin-bottom: 0.8rem;
}

.doc-card p,
.doc-card li {
  color: var(--muted);
}

.doc-card + .doc-card {
  margin-top: 1rem;
}

.doc-note {
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(246, 245, 239, 0.8);
  padding: 0.9rem 1rem;
}

.stack-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.stack-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(11, 93, 71, 0.16);
  border-radius: var(--radius);
  background: rgba(11, 93, 71, 0.06);
  color: var(--green);
  font-size: 0.84rem;
  padding: 0.35rem 0.55rem;
}

.doc-grid {
  display: grid;
  gap: 1rem;
}

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

@keyframes dashFlow {
  to {
    stroke-dashoffset: -120;
  }
}

@keyframes softPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(184, 232, 95, 0.18);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 0 0 14px rgba(184, 232, 95, 0.08);
  }
}

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

@keyframes boardPulse {
  0% {
    left: 8%;
  }
  33% {
    left: 36%;
  }
  66% {
    left: 64%;
  }
  100% {
    left: 88%;
  }
}

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

@media (min-width: 760px) {
  .form-wrap {
    grid-template-columns: 1.2fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

@media (max-width: 980px) {
  h1 {
    font-size: 3.6rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero-layout,
  .split-section,
  .method-grid,
  .transformation-grid {
    grid-template-columns: 1fr;
  }

  .proof-items,
  .service-bento,
  .case-grid-premium,
  .signal-grid,
  .flow-board,
  .metrics,
  .cases,
  .contacts {
    grid-template-columns: 1fr 1fr;
  }

  .hero-system {
    min-height: 500px;
  }

  .system-shell {
    min-height: 500px;
  }

  .case-primary {
    grid-row: auto;
    grid-column: span 2;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 1.25rem, var(--max));
  }

  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 0.85rem 0;
  }

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

  .nav a {
    padding: 0.35rem 0.42rem;
  }

  h1 {
    font-size: 2.85rem;
  }

  h2 {
    font-size: 1.95rem;
  }

  h3 {
    font-size: 1.22rem;
  }

  .hero {
    min-height: calc(100svh - 116px);
  }

  .hero-layout {
    gap: 2rem;
    padding: 4.8rem 0 4.2rem;
  }

  .hero-lead {
    font-size: 1.05rem;
  }

  .section {
    padding: 3.2rem 0;
  }

  .section-head,
  .proof-items,
  .service-bento,
  .case-grid-premium,
  .signal-grid,
  .metrics,
  .cases,
  .contacts {
    grid-template-columns: 1fr;
  }

  .hero-system,
  .system-shell {
    min-height: auto;
  }

  .system-grid,
  .before-after {
    grid-template-columns: 1fr;
  }

  .system-card,
  .ai-card,
  .crm-card,
  .report-card,
  .chaos-card {
    transform: none;
  }

  .flow-lines,
  .floating-note,
  .flow-board::before,
  .flow-pulse {
    display: none;
  }

  .flow-step {
    min-height: 210px;
  }

  .signal-section {
    margin-top: 0;
  }

  .case-primary {
    grid-column: auto;
  }

  .proof-items span {
    min-height: auto;
    border-right: 1px solid var(--line);
  }

  .split-section > p {
    padding-top: 0;
  }

  .method-list article {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .cookie-banner__inner {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-actions .btn {
    width: 100%;
  }
}

/* Design Director v2: product-led homepage */
.hero-v2 {
  min-height: calc(92svh - 68px);
  background:
    radial-gradient(circle at 82% 16%, rgba(184, 232, 95, 0.34), transparent 26%),
    radial-gradient(circle at 14% 86%, rgba(184, 101, 50, 0.16), transparent 30%),
    linear-gradient(135deg, #fffaf0 0%, #f4ead8 45%, #e9dec8 100%);
}

.hero-mesh {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(23, 25, 22, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23, 25, 22, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.66), transparent 42%);
  background-size: 72px 72px, 72px 72px, auto;
  mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.72) 72%, transparent 100%);
}

.hero-v2 .hero-layout {
  grid-template-columns: minmax(0, 0.78fr) minmax(560px, 1.22fr);
  gap: 2.6rem;
  padding: 6.2rem 0 5.2rem;
}

.hero-v2 h1 {
  max-width: 760px;
  font-size: clamp(3.35rem, 7vw, 6.4rem);
}

.hero-v2 .hero-lead {
  max-width: 580px;
}

.hero-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.hero-proof-row span {
  border: 1px solid rgba(23, 25, 22, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 10px 24px rgba(31, 34, 27, 0.06);
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 850;
  padding: 0.45rem 0.7rem;
}

.ops-stage {
  position: relative;
  min-height: 620px;
  perspective: 1200px;
}

.ops-window {
  position: relative;
  min-height: 610px;
  border: 1px solid rgba(23, 25, 22, 0.12);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(246, 238, 222, 0.72)),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 40px 130px rgba(31, 34, 27, 0.2);
  overflow: hidden;
  transform: rotateX(2deg) rotateY(-4deg);
}

.ops-window::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 62% 32%, rgba(184, 232, 95, 0.18), transparent 24%),
    radial-gradient(circle at 30% 70%, rgba(11, 93, 71, 0.1), transparent 26%),
    linear-gradient(90deg, rgba(23, 25, 22, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23, 25, 22, 0.028) 1px, transparent 1px);
  background-size: auto, auto, 44px 44px, 44px 44px;
}

.ops-topbar {
  position: relative;
  z-index: 4;
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 0.46rem;
  border-bottom: 1px solid rgba(23, 25, 22, 0.1);
  padding: 0 1.05rem;
}

.ops-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(23, 25, 22, 0.18);
}

.ops-topbar strong {
  margin-left: 0.55rem;
  color: var(--ink);
  font-size: 0.9rem;
}

.ops-topbar em {
  margin-left: auto;
  border-radius: 999px;
  background: rgba(184, 232, 95, 0.26);
  color: var(--green);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
  padding: 0.28rem 0.52rem;
  text-transform: uppercase;
}

.ops-sidebar {
  position: absolute;
  z-index: 4;
  top: 74px;
  left: 1rem;
  bottom: 1rem;
  width: 138px;
  display: flex;
  flex-direction: column;
  gap: 0.58rem;
  border: 1px solid rgba(23, 25, 22, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.66);
  padding: 0.85rem;
}

.ops-sidebar b {
  margin-bottom: 0.35rem;
  color: var(--ink);
  font-size: 0.86rem;
}

.ops-sidebar span {
  border-radius: 14px;
  background: rgba(23, 25, 22, 0.045);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
  padding: 0.48rem 0.55rem;
}

.ops-sidebar .is-hot {
  background: rgba(11, 93, 71, 0.1);
  color: var(--green);
}

.ops-canvas {
  position: absolute;
  inset: 74px 1rem 1rem 154px;
  z-index: 3;
  border: 1px solid rgba(23, 25, 22, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.34);
  overflow: hidden;
}

.signal,
.pipeline-panel,
.task-panel,
.metric-panel,
.ai-hub {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(23, 25, 22, 0.12);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 50px rgba(31, 34, 27, 0.1);
  backdrop-filter: blur(14px);
}

.signal {
  left: 1rem;
  width: 104px;
  border-radius: 16px;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 900;
  padding: 0.6rem 0.7rem;
  animation: signalFloat 6s ease-in-out infinite;
}

.signal-a { top: 2.3rem; }
.signal-b { top: 8.9rem; animation-delay: -1.2s; }
.signal-c { top: 15.6rem; animation-delay: -2.4s; }

.ai-hub {
  top: 42%;
  left: 45%;
  width: 126px;
  height: 126px;
  display: grid;
  place-items: center;
  border-radius: 38px;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle, rgba(184, 232, 95, 0.48), rgba(255, 255, 255, 0.92) 62%);
  animation: hubPulse 4s ease-in-out infinite;
}

.ai-hub i {
  position: absolute;
  inset: 13px;
  border: 1px solid rgba(11, 93, 71, 0.22);
  border-radius: 30px;
}

.ai-hub strong {
  color: var(--green);
  font-size: 1.7rem;
}

.ai-hub span {
  margin-top: -1.6rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.ops-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.ops-lines path {
  fill: none;
  stroke: rgba(11, 93, 71, 0.31);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 8 12;
  animation: dashFlow 9s linear infinite;
}

.pipeline-panel {
  top: 1.3rem;
  right: 1.15rem;
  width: 205px;
  border-radius: 22px;
  padding: 0.9rem;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.72rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.panel-head b {
  color: var(--green);
}

.pipeline-row {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 0.5rem;
  align-items: center;
  margin: 0.46rem 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.pipeline-row i {
  height: 8px;
  border-radius: 999px;
  background: rgba(23, 25, 22, 0.08);
  overflow: hidden;
}

.pipeline-row i::after {
  content: "";
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--acid));
}

.task-panel {
  right: 1.15rem;
  top: 13.2rem;
  width: 220px;
  border-radius: 22px;
  padding: 0.9rem;
}

.metric-panel {
  right: 1.15rem;
  bottom: 1.15rem;
  width: 220px;
  border-radius: 22px;
  padding: 0.9rem;
}

.task-panel span,
.metric-panel span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
}

.task-panel b,
.metric-panel b {
  display: block;
  margin: 0.28rem 0;
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1.05;
}

.task-panel small,
.metric-panel small {
  color: var(--green);
  font-weight: 800;
}

.sparkline {
  display: flex;
  align-items: end;
  gap: 0.28rem;
  height: 58px;
  margin-top: 0.8rem;
}

.sparkline i {
  flex: 1;
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(180deg, var(--green), rgba(11, 93, 71, 0.12));
}

.sparkline i:nth-child(1) { height: 35%; }
.sparkline i:nth-child(2) { height: 48%; }
.sparkline i:nth-child(3) { height: 42%; }
.sparkline i:nth-child(4) { height: 66%; }
.sparkline i:nth-child(5) { height: 88%; }

.proof-v2 {
  position: relative;
  z-index: 5;
  margin-top: -2.2rem;
}

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

.proof-v2 article {
  min-height: 150px;
  border: 1px solid rgba(23, 25, 22, 0.11);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
  padding: 1rem;
}

.proof-v2 b {
  display: block;
  margin-bottom: 1.2rem;
  color: var(--green);
  font-size: 2rem;
  line-height: 1;
}

.proof-v2 span {
  color: var(--muted);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
  gap: 2rem;
  align-items: center;
}

.story-copy p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.story-board {
  position: relative;
  min-height: 430px;
  border: 1px solid rgba(23, 25, 22, 0.11);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 48%, rgba(184, 232, 95, 0.24), transparent 28%),
    rgba(255, 255, 255, 0.56);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.story-beam {
  position: absolute;
  left: 12%;
  right: 12%;
  top: 50%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--green), var(--acid), transparent);
  animation: beamMove 5.8s ease-in-out infinite;
}

.story-node {
  position: absolute;
  z-index: 2;
  width: 190px;
  border: 1px solid rgba(23, 25, 22, 0.11);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  padding: 0.95rem;
}

.story-node span {
  color: var(--copper);
  font-weight: 900;
}

.story-node b,
.story-node small {
  display: block;
}

.story-node b {
  margin: 0.75rem 0 0.24rem;
  color: var(--ink);
}

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

.node-chaos { left: 6%; top: 12%; transform: rotate(-2deg); }
.node-ai { left: 38%; top: 30%; }
.node-crm { right: 7%; top: 12%; transform: rotate(2deg); }
.node-growth { right: 24%; bottom: 9%; }

.module-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  gap: 0.9rem;
}

.module-card {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid rgba(23, 25, 22, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  padding: 1.15rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.module-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 90px rgba(31, 34, 27, 0.15);
}

.module-card span {
  color: var(--copper);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.module-visual {
  position: relative;
  height: 135px;
  margin-top: 1.2rem;
  border-radius: 22px;
  background: rgba(23, 25, 22, 0.04);
}

.module-visual.bars {
  display: flex;
  align-items: end;
  gap: 0.5rem;
  padding: 1rem;
}

.module-visual.bars i {
  flex: 1;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, var(--green), rgba(11, 93, 71, 0.12));
}

.module-visual.bars i:nth-child(1) { height: 44%; }
.module-visual.bars i:nth-child(2) { height: 72%; }
.module-visual.bars i:nth-child(3) { height: 58%; }
.module-visual.bars i:nth-child(4) { height: 92%; }

.module-visual.orbit i {
  position: absolute;
  border-radius: 999px;
}

.module-visual.orbit i:nth-child(1) {
  inset: 22px;
  border: 1px solid rgba(11, 93, 71, 0.22);
}

.module-visual.orbit i:nth-child(2) {
  top: 44px;
  left: calc(50% - 23px);
  width: 46px;
  height: 46px;
  background: var(--acid);
  box-shadow: 0 0 34px rgba(184, 232, 95, 0.5);
}

.module-visual.orbit i:nth-child(3) {
  top: 24px;
  right: 34px;
  width: 20px;
  height: 20px;
  background: var(--green);
  animation: orbitDot 5s ease-in-out infinite;
}

.module-visual.stack i {
  position: absolute;
  left: 1rem;
  right: 1rem;
  height: 36px;
  border: 1px solid rgba(11, 93, 71, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
}

.module-visual.stack i:nth-child(1) { top: 1rem; }
.module-visual.stack i:nth-child(2) { top: 3.7rem; left: 2.1rem; }
.module-visual.stack i:nth-child(3) { top: 6.4rem; right: 2.3rem; }

.compare-stage {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0.9rem;
}

.compare-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(23, 25, 22, 0.12);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  padding: 1.1rem;
}

.compare-card span {
  color: var(--copper);
  font-weight: 900;
  text-transform: uppercase;
}

.compare-card b {
  display: block;
  margin-top: 0.8rem;
  color: var(--ink);
  font-size: 1.45rem;
}

.before-card {
  transform: rotate(-1deg);
}

.after-card {
  background:
    linear-gradient(145deg, rgba(11, 93, 71, 0.1), rgba(255, 255, 255, 0.76)),
    rgba(255, 255, 255, 0.86);
}

.scatter i {
  position: absolute;
  width: 84px;
  height: 46px;
  border: 1px solid rgba(184, 101, 50, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
}

.scatter i:nth-child(1) { left: 12%; top: 38%; transform: rotate(-14deg); }
.scatter i:nth-child(2) { left: 48%; top: 34%; transform: rotate(11deg); }
.scatter i:nth-child(3) { right: 10%; top: 52%; transform: rotate(-6deg); }
.scatter i:nth-child(4) { left: 18%; bottom: 16%; transform: rotate(9deg); }
.scatter i:nth-child(5) { right: 21%; bottom: 22%; transform: rotate(-18deg); }
.scatter i:nth-child(6) { left: 43%; bottom: 8%; transform: rotate(4deg); }

.control-list {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1.1rem;
  display: grid;
  gap: 0.65rem;
}

.control-list i {
  height: 48px;
  border: 1px solid rgba(11, 93, 71, 0.12);
  border-radius: 17px;
  background: linear-gradient(90deg, rgba(11, 93, 71, 0.13), rgba(184, 232, 95, 0.1));
}

.control-list i:nth-child(2) { width: 86%; }
.control-list i:nth-child(3) { width: 73%; }
.control-list i:nth-child(4) { width: 94%; }

.case-grid-v2 .case-tile a {
  min-height: 260px;
}

.case-meter {
  height: 9px;
  border-radius: 999px;
  background: rgba(23, 25, 22, 0.08);
  overflow: hidden;
}

.case-meter i {
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--acid));
}

.cta-panel-v2 {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(23, 25, 22, 0.12);
  border-radius: 32px;
  background:
    radial-gradient(circle at 84% 20%, rgba(184, 232, 95, 0.22), transparent 30%),
    rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  padding: 2rem;
}

.cta-panel-v2 h2 {
  max-width: 760px;
}

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

@keyframes hubPulse {
  0%,
  100% {
    box-shadow: 0 18px 50px rgba(31, 34, 27, 0.1), 0 0 0 0 rgba(184, 232, 95, 0.2);
  }
  50% {
    box-shadow: 0 22px 60px rgba(31, 34, 27, 0.13), 0 0 0 18px rgba(184, 232, 95, 0.06);
  }
}

@keyframes beamMove {
  0%,
  100% {
    opacity: 0.55;
    transform: scaleX(0.78);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes orbitDot {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-112px, 64px);
  }
}

@media (max-width: 1080px) {
  .hero-v2 .hero-layout,
  .story-grid,
  .transformation-grid {
    grid-template-columns: 1fr;
  }

  .hero-v2 .hero-layout {
    gap: 2rem;
  }

  .ops-window {
    transform: none;
  }

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

  .module-crm {
    grid-column: span 2;
  }
}

@media (max-width: 760px) {
  .hero-v2 .hero-layout {
    grid-template-columns: 1fr;
    padding: 4.5rem 0 3.6rem;
  }

  .ops-stage,
  .ops-window {
    min-height: 760px;
  }

  .ops-window {
    border-radius: 26px;
  }

  .ops-sidebar {
    left: 0.8rem;
    right: 0.8rem;
    top: 68px;
    bottom: auto;
    width: auto;
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ops-sidebar b {
    grid-column: 1 / -1;
  }

  .ops-canvas {
    inset: 250px 0.8rem 0.8rem;
  }

  .ai-hub {
    left: 50%;
    top: 35%;
    width: 108px;
    height: 108px;
  }

  .signal {
    width: 92px;
    left: 0.7rem;
  }

  .signal-a { top: 1rem; }
  .signal-b { top: 5.4rem; }
  .signal-c { top: 9.8rem; }

  .pipeline-panel,
  .task-panel,
  .metric-panel {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: auto;
    margin: 0.7rem;
  }

  .pipeline-panel {
    margin-top: 13rem;
  }

  .ops-lines {
    opacity: 0.45;
  }

  .proof-v2-grid,
  .module-grid,
  .compare-stage {
    grid-template-columns: 1fr;
  }

  .module-crm {
    grid-column: auto;
  }

  .story-board {
    min-height: 690px;
  }

  .story-node {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
    margin: 1rem;
    transform: none;
  }

  .story-beam {
    display: none;
  }

  .cta-panel-v2 {
    align-items: stretch;
    flex-direction: column;
  }
}
