:root {
  color-scheme: light;
  --ink: #10201f;
  --muted: #60706f;
  --soft: #f4f7f5;
  --softer: #fafbf9;
  --line: #dce5df;
  --accent: #0f5f54;
  --accent-dark: #0f2f2e;
  --accent-soft: #dceee9;
  --risk: #8a3d2e;
  --opportunity: #276144;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(18, 44, 42, 0.11);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

[hidden] { display: none !important; }
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--softer);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

button {
  cursor: pointer;
}

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

h1 {
  max-width: 780px;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: -0.075em;
  margin-bottom: 1.4rem;
}

.slogan-primary { color: var(--ink); }
.slogan-accent   { color: var(--accent); }

h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.055em;
  margin-bottom: 1.1rem;
}

h3 {
  font-size: 1.05rem;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--accent-dark);
  color: var(--white);
  padding: 0.75rem 1rem;
  transition: transform 160ms ease;
}

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

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

.section {
  padding: clamp(4.5rem, 8vw, 8rem) 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(220, 229, 223, 0.8);
  background: rgba(250, 251, 249, 0.88);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 1rem;
  flex-wrap: nowrap;
}

.site-nav-mobile-actions {
  display: none;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  display: block;
  height: 2.4rem;
  width: auto;
}

.brand-logo--footer {
  height: 3rem;
}

/* Hamburger — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--accent-dark);
  border-radius: 2px;
  transition: transform 220ms ease, opacity 220ms ease;
  transform-origin: center;
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-nav a,
.site-footer a {
  transition:
    color 160ms ease,
    opacity 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--accent);
}

.nav-actions,
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.72rem 1.08rem;
  font-weight: 700;
  line-height: 1;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

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

.button--primary {
  background: var(--accent-dark);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(15, 47, 46, 0.18);
}

.button--secondary {
  border-color: var(--line);
  background: var(--white);
  color: var(--accent-dark);
}

.button--ghost {
  border-color: rgba(15, 47, 46, 0.25);
  background: transparent;
  color: var(--accent-dark);
}

.hero {
  overflow: hidden;
  padding-top: clamp(5rem, 9vw, 8.8rem);
  background: #ffffff;
}

.hero-mobile-samphire {
  display: none;
}

.hero-desktop {
  display: block;
}

.hero-slideshow-wrap {
  position: relative;
  overflow: hidden;
}

.hero-slideshow-wrap--desktop {
  display: block;
  width: 100%;
  max-width: 520px;
  margin-inline: auto;
  aspect-ratio: 3 / 4;
  border-radius: calc(var(--radius-md) + 4px);
  box-shadow:
    0 24px 54px rgba(15, 47, 46, 0.14),
    0 8px 18px rgba(15, 47, 46, 0.08);
}

.hero-slideshow-wrap--mobile {
  display: none;
}

.hero-slideshow-wrap .hero-slideshow {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-slideshow__track {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 2.4s ease-in-out;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: none;
  }
}

.hero-grid,
.split,
.credibility-grid,
.contact-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.split--reverse {
  grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1fr);
}

.split--reverse > :first-child {
  order: 2;
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.uk-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.25rem;
  padding: 0.42rem 0.9rem 0.42rem 0.62rem;
  border: 1px solid rgba(15, 47, 46, 0.12);
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff, #f7faf8);
  box-shadow:
    0 1px 2px rgba(18, 44, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
}

.uk-badge__flag {
  display: inline-flex;
  flex-shrink: 0;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(1, 33, 105, 0.18);
}

.uk-badge__flag svg {
  display: block;
}

.hero-subtitle {
  max-width: 720px;
  color: #43514f;
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
}

.proof-list,
.check-list {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 1.6rem 0;
  list-style: none;
}

.proof-list li,
.check-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #30403e;
  font-weight: 650;
}

.proof-list li::before,
.check-list li::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
}

.budget-line {
  color: var(--accent-dark);
  font-weight: 750;
}

.product-panel {
  position: relative;
  border: 1px solid rgba(15, 47, 46, 0.14);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff, #f7faf8);
  padding: clamp(1rem, 2.3vw, 1.5rem);
  box-shadow: var(--shadow);
}

.product-panel-as-of {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.product-panel-as-of time {
  color: var(--accent-dark);
  font-weight: 600;
}


.panel-top,
.schedule-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.panel-top {
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.panel-top strong {
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  padding: 0.38rem 0.65rem;
  font-size: 0.78rem;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 1rem 0;
}

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

.metric-grid div,
.chart-card,
.location-card,
.pain-card,
.cred-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.metric-grid div {
  padding: 1rem;
}

.metric-grid span,
.roi-card span,
.timeline-item span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.metric-grid strong {
  display: block;
  margin-top: 0.25rem;
  color: var(--accent-dark);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.metric-delta {
  display: block;
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.metric-delta--up {
  color: var(--opportunity);
}

.chart-card {
  overflow: hidden;
  margin-top: 0.75rem;
}

.chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 0.7rem 1rem;
}

.chart-header span {
  color: var(--muted);
  font-size: 0.82rem;
}

.chart-legend {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem !important;
  color: var(--muted) !important;
}

.legend-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  flex-shrink: 0;
}

.legend-dot--fy25 { background: var(--accent-soft); }
.legend-dot--fy26 { background: #6aada0; }

.chart-body {
  padding: 1rem 1rem 0.4rem;
}

.chart-body svg {
  display: block;
  overflow: visible;
}

.location-card {
  overflow: hidden;
  margin-top: 0.75rem;
}

.location-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 0.7rem 1rem;
}

.location-header span {
  color: var(--muted);
  font-size: 0.82rem;
}

.location-period {
  color: var(--muted);
  font-size: 0.78rem;
}

.location-row {
  display: grid;
  grid-template-columns: 6rem 1fr auto;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1rem;
  border-bottom: 1px solid var(--line);
}

.location-row:last-child {
  border-bottom: 0;
}

.location-name {
  color: #30403e;
  font-size: 0.88rem;
  font-weight: 650;
}

.location-bar-track {
  height: 6px;
  border-radius: 999px;
  background: var(--soft);
  overflow: hidden;
}

.location-bar-fill {
  height: 100%;
  border-radius: 999px;
  background: var(--accent);
}

.location-value {
  color: var(--accent-dark);
  font-size: 0.88rem;
  font-weight: 750;
  text-align: right;
  white-space: nowrap;
}

/* ── Product panel entrance animations ──────────────────────────────── */
@keyframes pp-fade-up {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pp-pop {
  0%   { opacity: 0; transform: scale(0.8); }
  65%  { opacity: 1; transform: scale(1.06); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes pp-bar-grow {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}
@keyframes pp-scale-x {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes pp-draw {
  from { stroke-dashoffset: 600; }
  to   { stroke-dashoffset: 0; }
}
@keyframes pp-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* as-of timestamp */
.product-panel.is-visible .product-panel-as-of {
  animation: pp-fade-up 0.4s ease-out 0.05s both;
}

/* top metric cards */
.product-panel.is-visible .metric-grid div:first-child {
  animation: pp-fade-up 0.45s ease-out 0.15s both;
}
.product-panel.is-visible .metric-grid div:last-child {
  animation: pp-fade-up 0.45s ease-out 0.28s both;
}

/* profit value pop */
.product-panel.is-visible .metric-grid div:first-child strong {
  display: block;
  animation: pp-pop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.38s both;
}

/* delta badges */
.product-panel.is-visible .metric-delta {
  animation: pp-fade-up 0.35s ease-out 0.55s both;
}

/* sparkline draw */
.pp-sparkline {
  stroke-dasharray: 600;
}
.product-panel.is-visible .pp-sparkline {
  animation: pp-draw 1.1s ease-out 0.38s both;
}
.product-panel.is-visible .pp-spark-area {
  animation: pp-fade 0.9s ease-out 1.1s both;
}

/* bar chart card */
.product-panel.is-visible .chart-card {
  animation: pp-fade-up 0.4s ease-out 0.42s both;
}

/* individual bar groups */
.chart-body svg .pp-bar rect {
  transform-box: fill-box;
  transform-origin: bottom;
}
.product-panel.is-visible .chart-body svg .pp-bar rect {
  animation: pp-bar-grow 0.45s ease-out both;
}
.product-panel.is-visible .chart-body svg .pp-bar:nth-child(1) rect { animation-delay: 0.54s; }
.product-panel.is-visible .chart-body svg .pp-bar:nth-child(2) rect { animation-delay: 0.62s; }
.product-panel.is-visible .chart-body svg .pp-bar:nth-child(3) rect { animation-delay: 0.70s; }
.product-panel.is-visible .chart-body svg .pp-bar:nth-child(4) rect { animation-delay: 0.78s; }
.product-panel.is-visible .chart-body svg .pp-bar:nth-child(5) rect { animation-delay: 0.86s; }
.product-panel.is-visible .chart-body svg .pp-bar:nth-child(6) rect { animation-delay: 0.94s; }
.product-panel.is-visible .chart-body svg .pp-bar:nth-child(7) rect { animation-delay: 1.02s; }

/* categories card */
.product-panel.is-visible .location-card {
  animation: pp-fade-up 0.4s ease-out 0.68s both;
}

/* category rows — location-header is :nth-child(1), rows start at 2 */
.product-panel.is-visible .location-card > div:nth-child(2) { animation: pp-fade-up 0.35s ease-out 0.82s both; }
.product-panel.is-visible .location-card > div:nth-child(3) { animation: pp-fade-up 0.35s ease-out 0.92s both; }
.product-panel.is-visible .location-card > div:nth-child(4) { animation: pp-fade-up 0.35s ease-out 1.02s both; }
.product-panel.is-visible .location-card > div:nth-child(5) { animation: pp-fade-up 0.35s ease-out 1.12s both; }
.product-panel.is-visible .location-card > div:nth-child(6) { animation: pp-fade-up 0.35s ease-out 1.22s both; }

/* category bars grow from left */
.location-bar-fill {
  transform-origin: left center;
}
.product-panel.is-visible .location-card > div:nth-child(2) .location-bar-fill { animation: pp-scale-x 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 1.00s both; }
.product-panel.is-visible .location-card > div:nth-child(3) .location-bar-fill { animation: pp-scale-x 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 1.10s both; }
.product-panel.is-visible .location-card > div:nth-child(4) .location-bar-fill { animation: pp-scale-x 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 1.20s both; }
.product-panel.is-visible .location-card > div:nth-child(5) .location-bar-fill { animation: pp-scale-x 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 1.30s both; }
.product-panel.is-visible .location-card > div:nth-child(6) .location-bar-fill { animation: pp-scale-x 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 1.40s both; }

/* respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .product-panel.is-visible * { animation: none !important; }
}

.industry-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.6rem;
}

.industry-cloud span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  padding: 0.5rem 0.75rem;
  color: #334240;
  font-weight: 650;
  font-size: 0.9rem;
}

.pain-card,
.cred-card {
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: 0 16px 42px rgba(18, 44, 42, 0.06);
}

.stats-band {
  background: var(--accent-dark);
  color: var(--white);
}

.stats-band p,
.stats-band h2,
.stats-band h3 {
  color: rgba(255, 255, 255, 0.74);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stat-card {
  min-height: 235px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
  padding: 1.4rem;
}

.stat-card strong {
  display: block;
  margin-bottom: 2rem;
  color: var(--white);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.stat-card h2 {
  font-size: 1.05rem;
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin-bottom: 0.75rem;
}

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

.section-heading--center {
  text-align: center;
  margin-inline: auto;
}

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

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  margin: -0.35rem 0 1rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.breadcrumbs a {
  color: var(--accent);
  font-weight: 750;
}

.direct-answer,
.intent-panel,
.content-card,
.side-cta,
.related-card,
.resource-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 16px 42px rgba(18, 44, 42, 0.05);
}

.direct-answer {
  max-width: 760px;
  margin-top: 1.5rem;
  padding: 1rem;
}

.direct-answer strong,
.panel-label {
  display: block;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.direct-answer p {
  margin: 0.35rem 0 0;
  color: #334240;
}

.intent-panel {
  padding: clamp(1.2rem, 3vw, 2rem);
}

.intent-panel h2 {
  margin: 0.7rem 0 1rem;
  color: var(--accent-dark);
  font-size: clamp(1.5rem, 3vw, 2.45rem);
  line-height: 1.05;
}

.intent-panel ul {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 0 0 1.2rem;
  list-style: none;
}

.intent-panel li {
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.7rem;
  color: #30403e;
  font-weight: 720;
}

.intent-panel a {
  color: var(--accent);
  font-weight: 800;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.content-layout article {
  display: grid;
  gap: 1rem;
}

.content-card,
.side-cta {
  padding: clamp(1.1rem, 3vw, 1.6rem);
}

.content-card h2,
.side-cta h2 {
  font-size: clamp(1.45rem, 2.6vw, 2.2rem);
  line-height: 1.08;
}

.content-card p:last-child,
.side-cta p:last-child {
  margin-bottom: 0;
}

.side-cta {
  position: sticky;
  top: 6rem;
}

.side-cta .button {
  width: 100%;
}

.related-grid,
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.related-card,
.resource-card {
  display: grid;
  gap: 0.65rem;
  padding: 1.1rem;
}

.related-card span,
.resource-card {
  color: var(--accent-dark);
  font-weight: 800;
}

.related-card strong {
  color: var(--muted);
  font-size: 0.82rem;
}

.resource-card:hover,
.resource-card:focus-visible,
.related-card:hover,
.related-card:focus-visible {
  border-color: rgba(15, 95, 84, 0.45);
  box-shadow: 0 18px 42px rgba(18, 44, 42, 0.08);
}

.bullet-grid,
.icp-grid,
.feature-grid,
.landscape-grid,
.use-case-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.bullet-card,
.icp-card,
.feature-card,
.landscape-card,
.use-card,
.workflow-step,
.roi-card,
.timeline-item,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  padding: 1.1rem;
}

.bullet-card,
.icp-card,
.feature-card {
  color: #273735;
  font-weight: 730;
}

.comparison-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 18px 52px rgba(18, 44, 42, 0.07);
}

.table-row {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.comparison-table--three .table-row {
  grid-template-columns: 1fr 1.4fr 1.4fr;
}

.table-row:last-child {
  border-bottom: 0;
}

.table-row > div {
  padding: 1rem;
  border-right: 1px solid var(--line);
  color: var(--muted);
}

.table-row > div:first-child {
  color: var(--ink);
  font-weight: 750;
}

.table-row > div:last-child {
  border-right: 0;
}

.table-head {
  background: var(--accent-dark);
}

.table-head > div {
  color: var(--white);
  font-weight: 800;
}

.table-head > div:first-child {
  color: var(--white);
}

.winner {
  background: #f0f8f4;
  color: var(--accent-dark) !important;
  font-weight: 750;
}

.true-competitor {
  margin: 1rem 0 0;
  color: var(--accent-dark);
  font-weight: 780;
}

.roi-stack {
  display: grid;
  gap: 0.85rem;
}

/* ── Pricing comparison ──────────────────────────────── */

.pricing-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: white;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.pricing-card--old {
  background: #f8f8f6;
}

.pricing-card--new {
  background: var(--accent-dark);
  color: white;
}

.pricing-label {
  display: inline-block;
  border-radius: 999px;
  padding: 0.28rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  width: fit-content;
}

.pricing-card--old .pricing-label {
  background: var(--soft);
  color: var(--muted);
}

.pricing-card--new .pricing-label {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
}

.pricing-amount {
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
  margin-bottom: 1.25rem;
  color: var(--ink);
}

.pricing-card--new .pricing-amount {
  color: white;
}

.pricing-amount span {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  opacity: 0.6;
  margin-left: 0.1em;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}

.pricing-list li {
  font-size: 0.9rem;
  line-height: 1.45;
  padding-left: 1.3rem;
  position: relative;
  color: var(--muted);
}

.pricing-card--new .pricing-list li {
  color: rgba(255,255,255,0.65);
}

.pricing-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--muted);
}

.pricing-card--new .pricing-list li::before {
  content: '✓';
  color: #7dffb4;
  font-weight: 900;
}

.pricing-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 52px;
  background: white;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  gap: 0.5rem;
  flex-shrink: 0;
}

.pricing-divider-line {
  flex: 1;
  width: 1px;
  background: var(--line);
}

.pricing-divider span {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 720px) {
  .pricing-compare {
    grid-template-columns: 1fr;
  }
  .pricing-divider {
    flex-direction: row;
    width: 100%;
    height: 36px;
    border-left: 0;
    border-right: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .pricing-divider-line {
    flex: 1;
    width: auto;
    height: 1px;
  }
}

/* ROI role breakdown table (inside left pricing card) */
.roi-card-sub {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0 0 1rem;
}

.roi-role-table {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: white;
}

.roi-role-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.52rem 0.85rem;
  font-size: 0.81rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.roi-role-row:last-child {
  border-bottom: 0;
}

.roi-role-row span:first-child {
  color: var(--ink);
  font-weight: 500;
}

.roi-role-row span:last-child {
  color: var(--muted);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  font-size: 0.79rem;
}

/* "Save up to" micro-label above the 75% big number */
.roi-save-label {
  display: block;
  font-style: normal;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0;
  opacity: 0.6;
  margin-bottom: 0.15em;
}

/* ── End pricing comparison ──────────────────────────── */

/* ── Cost estimator ──────────────────────────────────── */

.estimator-section {
  background: var(--soft);
}

.estimator {
  max-width: 560px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.estimator-progress {
  height: 3px;
  background: var(--line);
}

.estimator-progress-bar {
  height: 100%;
  background: var(--accent);
  width: 0%;
  transition: width 350ms ease;
}

.estimator-steps {
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.estimator-q {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--accent-dark);
  margin: 0 0 1.25rem;
  line-height: 1.35;
}

.estimator-options {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.estimator-opt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--softer);
  color: var(--accent-dark);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms, background 160ms, transform 120ms;
}

.estimator-opt::after {
  content: '→';
  color: var(--muted);
  font-size: 0.9rem;
  transition: transform 160ms, color 160ms;
}

.estimator-opt:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  transform: translateX(3px);
}

.estimator-opt:hover::after {
  color: var(--accent);
  transform: translateX(3px);
}

/* Result */

.estimator-result {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  animation: estimator-in 350ms ease both;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@keyframes estimator-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.estimator-result-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.35rem;
}

.estimator-from {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
}

.estimator-amount {
  font-size: clamp(2.8rem, 7vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  color: var(--accent-dark);
  line-height: 1;
}

.estimator-per {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 600;
}

.estimator-tier {
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.5rem;
}

.estimator-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
  width: 100%;
  text-align: left;
}

.estimator-features li {
  font-size: 0.9rem;
  color: var(--ink);
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.45;
}

.estimator-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 900;
}

.estimator-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.5rem;
  width: 100%;
}

.estimator-cta {
  display: inline-block;
}

.estimator-reset {
  background: none;
  border: none;
  padding: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  letter-spacing: 0.01em;
}

.estimator-reset:hover { color: var(--ink); }

/* ── End cost estimator ──────────────────────────────── */


/* ── Process flow diagram ────────────────────────────── */

.process-flow-section {
  background: var(--softer);
}

.process-flow-layout {
  display: grid;
  grid-template-columns: 420px minmax(0, 540px);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  margin-top: 2rem;
  max-width: 1020px;
  margin-inline: auto;
}

.process-flow-panel {
  position: sticky;
  top: 6rem;
}

.process-flow-panel .product-panel {
  width: 100%;
}

.process-flow {
  display: flex;
  flex-direction: column;
  --pf-step-gap: 2.75rem;
}

.pf-row:not(:last-child) {
  margin-bottom: var(--pf-step-gap);
}

@media (max-width: 980px) {
  .process-flow-layout {
    grid-template-columns: 1fr;
    max-width: 560px;
  }
  .process-flow-panel {
    position: static;
  }

  .process-flow {
    --pf-step-gap: 1.25rem;
  }
}

.pf-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: visible;
}

.pf-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0 1.5rem;
  align-items: stretch;
  flex: 0 0 auto;
  overflow: visible;
}

.pf-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--line);
  color: var(--accent-dark);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  z-index: 1;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.pf-badge--final {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: white;
  box-shadow: 0 2px 12px rgba(15,47,46,0.25);
}

.pf-connector {
  position: relative;
  flex: 1;
  width: 2px;
  background: var(--line);
  min-height: 1.5rem;
  margin: 0;
}

.pf-row:not(:last-child) .pf-connector::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 2px;
  height: var(--pf-step-gap);
  background: var(--line);
}

.pf-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.pf-card--final {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  margin-bottom: 0;
}

.pf-label {
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.pf-card--final .pf-label {
  color: rgba(255,255,255,0.45);
}

.pf-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent-dark);
  margin: 0;
  line-height: 1.25;
}

.pf-card--final h3 {
  color: white;
}

.pf-card p {
  font-size: 0.86rem;
  line-height: 1.55;
  margin: 0;
  color: var(--muted);
}

.pf-card--final p {
  color: rgba(255,255,255,0.6);
}

/* ── Process flow scroll animation ───────────────────── */
.pf-row {
  --pf-delay: 0ms;
}

.pf-row .pf-badge,
.pf-row .pf-card {
  opacity: 0;
  transform: translateX(-20px);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1) var(--pf-delay),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1) var(--pf-delay);
}

.pf-row .pf-badge {
  transform: translateX(-20px) scale(0.7);
  transition:
    opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1) var(--pf-delay),
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1) var(--pf-delay);
}

.pf-connector {
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 0.5s ease calc(var(--pf-delay) + 200ms);
}

.pf-row.pf-visible .pf-badge {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.pf-row.pf-visible .pf-card {
  opacity: 1;
  transform: translateX(0);
}

.pf-row.pf-visible .pf-connector {
  transform: scaleY(1);
}

@media (prefers-reduced-motion: reduce) {
  .pf-row .pf-badge,
  .pf-row .pf-card,
  .pf-row .pf-connector {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── End process flow ────────────────────────────────── */



.roi-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.3rem 1rem;
  align-items: start;
}

.roi-card strong {
  color: var(--accent-dark);
  font-size: 1.7rem;
  letter-spacing: -0.04em;
}

.roi-card p {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.persona-strip,
.comments-first {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  margin-top: 1rem;
  padding: 1.2rem;
}

.persona-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}

.persona-strip span {
  color: var(--muted);
  margin-right: auto;
}

.persona-strip strong {
  border-radius: 999px;
  background: var(--soft);
  padding: 0.45rem 0.7rem;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.workflow-step span {
  display: inline-grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-dark);
  color: var(--white);
  font-weight: 800;
}

.workflow-step h3 {
  margin: 1.2rem 0 0.45rem;
}

.workflow-step p,
.landscape-card p,
.use-card p {
  margin-bottom: 0;
}

.comments-first {
  margin: 1rem 0;
  background: linear-gradient(135deg, #ffffff, #edf6f2);
}

.comments-first h3 {
  margin-bottom: 0.45rem;
}

.comments-first p {
  max-width: 820px;
  margin-bottom: 0;
}

.objection {
  background: var(--accent-dark);
  color: var(--white);
}

.objection p {
  color: rgba(255, 255, 255, 0.76);
}

.objection .eyebrow {
  color: #9dd8c8;
}

.objection-copy {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.landscape-card--own {
  border-color: rgba(15, 95, 84, 0.35);
  background: var(--accent-dark);
}

.landscape-card--own h3,
.landscape-card--own p {
  color: var(--white);
}

.credibility-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.6fr);
}

.cred-card strong {
  display: block;
  color: var(--accent-dark);
  font-size: 1.4rem;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.roadmap-section {
  background: linear-gradient(180deg, var(--softer), #eef5f2);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.timeline-item strong {
  display: block;
  margin-top: 0.6rem;
  color: var(--accent-dark);
}

.faq-grid {
  align-items: start;
}

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

.faq-item summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 780;
  padding: 0.25rem 0;
  line-height: 1.4;
}

.faq-item p {
  margin: 0.8rem 0 0;
  line-height: 1.65;
}

.final-cta {
  background:
    radial-gradient(circle at 20% 20%, rgba(157, 216, 200, 0.16), transparent 28rem),
    var(--accent-dark);
  color: var(--white);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.final-cta .eyebrow {
  color: #9dd8c8;
}

.calendly-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: white;
}

.final-cta .button--secondary {
  border-color: transparent;
}

.final-cta .button--ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.built-for {
  margin-top: 1rem;
  font-size: 0.95rem;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  color: var(--ink);
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
}

.contact-form label span {
  color: #30403e;
  font-weight: 750;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fbfcfb;
  color: var(--ink);
  padding: 0.82rem 0.9rem;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(15, 95, 84, 0.13);
}

.contact-form [aria-invalid="true"] {
  border-color: var(--risk);
}

.error-message {
  min-height: 1rem;
  color: var(--risk);
  font-size: 0.78rem;
}

.form-status {
  display: none;
  border-radius: var(--radius-sm);
  padding: 0.8rem;
  font-weight: 750;
}

.form-status--success,
.form-status--error {
  display: block;
}

.form-status--success {
  background: #e7f5ed;
  color: var(--opportunity);
}

.form-status--error {
  background: #f8e9e5;
  color: var(--risk);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #ffffff;
  padding: 3rem 0 1.5rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0;
}

.footer-email-link {
  font-size: 0.825rem;
  color: var(--muted);
  transition: color 160ms ease;
}

.footer-email-link:hover { color: var(--accent); }

.footer-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.15rem 0.1rem;
}

.footer-nav a {
  font-size: 0.875rem;
  color: var(--muted);
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  transition: color 160ms ease, background 160ms ease;
}

.footer-nav a:hover { color: var(--ink); }

.footer-nav-sep {
  width: 1px;
  height: 14px;
  background: var(--line);
  margin: 0 0.4rem;
  flex-shrink: 0;
}

.footer-legal {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.footer-legal-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 1.25rem;
}

.footer-legal-identity {
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0;
}

.site-footer small {
  color: var(--muted);
  font-size: 0.82rem;
}

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

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .funnel-flow {
    stroke-dasharray: none;
    stroke-dashoffset: 0;
    opacity: 0.28;
  }

  .funnel-particles {
    display: none;
  }

  .funnel-squiggle {
    stroke-dasharray: none;
    stroke-dashoffset: 0;
    animation: none !important;
  }

  .funnel-messy,
  .funnel-messy-arrows,
  .funnel-input,
  .funnel-output,
  .funnel-hub,
  .funnel-connector {
    opacity: 1;
    transform: none;
    animation: none !important;
  }

  .funnel-hub-pulse {
    display: none;
  }
}

@media (max-width: 1080px) {
  .site-header .nav-shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    min-height: 56px;
    gap: 0.75rem;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    flex-shrink: 0;
    min-width: 0;
  }

  .brand-logo {
    height: 2rem;
  }

  .site-nav {
    display: none;
  }

  .nav-actions {
    display: none !important;
  }

  .nav-toggle {
    display: flex;
    grid-column: 2;
    grid-row: 1;
    margin-left: 0;
    flex-shrink: 0;
  }

  .site-nav.is-open .site-nav-mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    padding-top: 1rem;
    margin-top: 0.25rem;
    border-top: 1px solid var(--line);
  }

  .site-nav.is-open .site-nav-mobile-actions .button {
    width: 100%;
    justify-content: center;
  }

  .site-nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 8px 28px rgba(0,0,0,0.1);
    padding: 1rem 1.5rem 1.25rem;
    gap: 0.1rem;
    z-index: 200;
  }

  .site-nav.is-open > a {
    padding: 0.7rem 0;
    font-size: 1rem;
    font-weight: 600;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
  }

  .stats-grid,
  .bullet-grid,
  .icp-grid,
  .feature-grid,
  .landscape-grid,
  .use-case-grid,
  .timeline,
  .related-grid,
  .resource-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  /* Hide the "Who it is for" section entirely on mobile — table is too dense to be useful */
  #who-we-serve {
    display: none;
  }
}

@media (max-width: 820px) {
  .funnel-wrap {
    padding: 0.5rem 0;
  }

  h1 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

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

  /* Hide the dashboard mock on mobile — hero copy is enough */
  .product-panel {
    display: none;
  }

  .proof-list {
    display: none;
  }

  .budget-line {
    margin-top: 1.75rem;
  }

  .hero.hero--home.section {
    margin-top: -56px;
    padding: 0;
    background: var(--accent-dark);
  }

  .site-header:has(+ #main .hero--home) {
    background: rgba(15, 47, 46, 0.28);
    backdrop-filter: blur(20px) saturate(1.45);
    -webkit-backdrop-filter: blur(20px) saturate(1.45);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .site-header:has(+ #main .hero--home) .brand-logo {
    filter: brightness(0) invert(1);
  }

  .site-header:has(+ #main .hero--home) .nav-toggle {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px) saturate(1.35);
    -webkit-backdrop-filter: blur(14px) saturate(1.35);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    -webkit-tap-highlight-color: transparent;
  }

  .site-header:has(+ #main .hero--home) .nav-toggle span {
    background: var(--white);
  }

  .hero-mobile-samphire {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--accent-dark);
  }

  .hero-desktop {
    display: none;
  }

  .hero-mobile-samphire__photo {
    position: relative;
    flex: 0 0 auto;
    width: 100%;
    aspect-ratio: 2 / 2.55;
    height: auto;
    max-height: none;
    min-height: 0;
    overflow: hidden;
  }

  .hero-mobile-samphire__photo .hero-slideshow-wrap--mobile {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
  }

  .hero-mobile-samphire__photo .hero-slide img {
    object-fit: cover;
    object-position: center bottom;
  }

  .hero-mobile-samphire__panel {
    position: relative;
    z-index: 2;
    margin-top: -2.5rem;
    background: rgba(15, 47, 46, 0.55);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    padding: clamp(1.85rem, 6vw, 2.35rem) clamp(1.5rem, 6.5vw, 2rem) clamp(2.35rem, 8vw, 3rem);
  }

  .hero-mobile-samphire__content {
    max-width: 100%;
    margin-inline: auto;
    text-align: center;
  }

  .hero-mobile-samphire__content h1 {
    margin: 0 0 0.95rem;
    font-size: clamp(1.95rem, 8.4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -0.03em;
  }

  .hero-mobile-samphire__content h1 .slogan-primary,
  .hero-mobile-samphire__content h1 .slogan-accent {
    display: block;
    color: var(--white);
    font-weight: 700;
  }

  .hero-mobile-samphire__content .hero-subtitle {
    max-width: 21.5rem;
    margin: 0 auto 1.65rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.97rem;
    line-height: 1.58;
  }

  .hero-mobile-samphire__content .button--samphire {
    display: flex;
    width: 100%;
    max-width: none;
    min-height: 48px;
    margin-inline: auto;
    background: rgba(255, 255, 255, 0.92);
    color: var(--accent-dark);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    font-size: 0.92rem;
    font-weight: 700;
  }

  .hero-mobile-samphire__content .button--samphire:hover,
  .hero-mobile-samphire__content .button--samphire:focus-visible {
    background: var(--white);
    transform: none;
  }

  .hero:not(.hero--home) {
    padding-top: clamp(4.25rem, 8vw, 5.5rem);
  }

  #why-us {
    display: none;
  }

  .side-cta {
    position: static;
  }

  .split--reverse > :first-child {
    order: initial;
  }

  .stats-grid,
  .bullet-grid,
  .icp-grid,
  .feature-grid,
  .landscape-grid,
  .use-case-grid,
  .timeline,
  .workflow,
  .related-grid,
  .resource-grid {
    grid-template-columns: 1fr;
  }

  .footer-nav-sep { display: none; }
}

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

  .section {
    padding: 3.5rem 0;
  }

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

  .hero-actions .button {
    width: 100%;
    justify-content: center;
  }

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

  .panel-top,
  .schedule-row,
  .roi-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .cookie-banner-inner {
    padding: 1rem 0;
  }

  /* Section headings */
  .section-heading {
    margin-bottom: 2rem;
  }

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

  /* Process flow */
  .pf-card {
    padding: 1rem 1.1rem;
  }

  /* Use case cards */
  .stat-card {
    min-height: auto;
  }

  /* Trust cards */
  .trust-card {
    padding: 1.25rem;
  }

  /* Footer inner */
  .footer-inner {
    gap: 1.5rem;
  }

  .footer-legal {
    padding-top: 1.25rem;
  }

  .footer-legal-row {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
  }
}

/* ── Trust / Proof Section ───────────────────────────────────── */

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.trust-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.trust-card-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-soft);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 0.35rem;
}

/* Illustrated trust cards */
.trust-card--illustrated {
  padding: 0;
  overflow: hidden;
}

.trust-card-illustration {
  background: #f0f9f6;
  padding: 1.75rem 1.5rem 1.5rem;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-card--illustrated .trust-card-body {
  padding: 1.4rem 1.75rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.funnel-wrap {
  padding: 1rem 0;
  overflow: hidden;
}

.funnel-svg--mobile,
.funnel-mobile {
  display: none;
}

@media (max-width: 820px) {
  .funnel-svg--desktop {
    display: none;
  }

  .funnel-mobile {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 420px;
    margin: 0 auto;
  }

  .funnel-wrap {
    overflow: visible;
    padding: 0.5rem 0 0.75rem;
  }

  .funnel-mobile__stage-label {
    margin: 0 0 0.75rem;
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
  }

  .funnel-mobile__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .funnel-mobile__pill {
    display: block;
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
    padding: 0.5rem 0.65rem;
    color: var(--accent-dark);
    font-size: 0.78rem;
    font-weight: 650;
    line-height: 1.2;
    text-align: center;
  }

  .funnel-mobile__pill--messy {
    border-style: dashed;
    border-color: #adb8b5;
    color: #30403e;
    font-weight: 550;
  }

  .funnel-mobile__pill:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: calc((100% - 0.5rem) / 2);
    margin-inline: auto;
  }

  .funnel-mobile__bridge {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.85rem 0;
  }

  .funnel-mobile__bridge--to-output {
    padding: 1rem 0 1.1rem;
  }

  .funnel-mobile__line {
    display: block;
    width: 2px;
    height: 1.25rem;
    background: var(--line);
  }

  .funnel-mobile__bridge--to-output .funnel-mobile__line {
    height: 1rem;
  }

  .funnel-mobile__hub {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-dark);
    box-shadow: 0 0 0 6px rgba(15, 47, 46, 0.08);
  }

  .funnel-mobile__output-svg {
    display: block;
    width: 100%;
    max-width: 310px;
    margin: 0 auto;
  }

  .funnel-mobile .funnel-output {
    transform: translateY(18px) scale(0.985);
    transform-box: fill-box;
    transform-origin: center;
  }

  .funnel-diagram.is-animating .funnel-mobile .funnel-output {
    animation: funnel-output-in-mobile 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.9s forwards;
  }
}

@keyframes funnel-output-in-mobile {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Funnel diagram scroll animation */
.funnel-flow {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  opacity: 0;
}

.funnel-particles {
  opacity: 0;
}

.funnel-messy {
  opacity: 0;
  transform: translateX(-14px);
}

.funnel-messy-arrows {
  opacity: 0;
}

.funnel-squiggle {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

.funnel-diagram.is-animating .funnel-squiggle {
  animation: squiggle-draw 0.75s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.funnel-diagram.is-animating .funnel-squiggle--1 { animation-delay: 0.42s; }
.funnel-diagram.is-animating .funnel-squiggle--2 { animation-delay: 0.46s; }
.funnel-diagram.is-animating .funnel-squiggle--3 { animation-delay: 0.50s; }
.funnel-diagram.is-animating .funnel-squiggle--4 { animation-delay: 0.52s; }
.funnel-diagram.is-animating .funnel-squiggle--5 { animation-delay: 0.56s; }
.funnel-diagram.is-animating .funnel-squiggle--6 { animation-delay: 0.60s; }
.funnel-diagram.is-animating .funnel-squiggle--7 { animation-delay: 0.64s; }

@keyframes squiggle-draw {
  to { stroke-dashoffset: 0; }
}

.funnel-input {
  opacity: 0;
  transform: translateX(-14px);
}

.funnel-output {
  opacity: 0;
  transform: translateX(18px) scale(0.985);
  transform-box: fill-box;
  transform-origin: center;
}

.funnel-hub {
  opacity: 0;
  transform: scale(0.4);
  transform-box: fill-box;
  transform-origin: center;
}

.funnel-hub-pulse {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
}

.funnel-connector {
  opacity: 0;
  transform: translateX(-6px);
}

.funnel-diagram.is-animating .funnel-flow {
  animation: funnel-draw 1s ease forwards;
}

.funnel-diagram.is-animating .funnel-flow--1 { animation-delay: 0.05s; }
.funnel-diagram.is-animating .funnel-flow--2 { animation-delay: 0.1s; }
.funnel-diagram.is-animating .funnel-flow--3 { animation-delay: 0.15s; }
.funnel-diagram.is-animating .funnel-flow--4 { animation-delay: 0.08s; }
.funnel-diagram.is-animating .funnel-flow--5 { animation-delay: 0.2s; }
.funnel-diagram.is-animating .funnel-flow--6 { animation-delay: 0.25s; }
.funnel-diagram.is-animating .funnel-flow--7 { animation-delay: 0.3s; }

.funnel-diagram.is-animating .funnel-messy {
  animation: funnel-input-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.funnel-diagram.is-animating .funnel-messy--1 { animation-delay: 0s; }
.funnel-diagram.is-animating .funnel-messy--2 { animation-delay: 0.06s; }
.funnel-diagram.is-animating .funnel-messy--3 { animation-delay: 0.12s; }
.funnel-diagram.is-animating .funnel-messy--4 { animation-delay: 0.18s; }
.funnel-diagram.is-animating .funnel-messy--5 { animation-delay: 0.24s; }
.funnel-diagram.is-animating .funnel-messy--6 { animation-delay: 0.3s; }
.funnel-diagram.is-animating .funnel-messy--7 { animation-delay: 0.36s; }

.funnel-diagram.is-animating .funnel-messy-arrows {
  animation: funnel-input-in 0.4s ease 0.38s forwards;
}

.funnel-diagram.is-animating .funnel-input {
  animation: funnel-input-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.funnel-diagram.is-animating .funnel-input--1 { animation-delay: 0.44s; }
.funnel-diagram.is-animating .funnel-input--2 { animation-delay: 0.5s; }
.funnel-diagram.is-animating .funnel-input--3 { animation-delay: 0.56s; }
.funnel-diagram.is-animating .funnel-input--4 { animation-delay: 0.62s; }
.funnel-diagram.is-animating .funnel-input--5 { animation-delay: 0.68s; }
.funnel-diagram.is-animating .funnel-input--6 { animation-delay: 0.74s; }
.funnel-diagram.is-animating .funnel-input--7 { animation-delay: 0.8s; }

.funnel-diagram.is-animating .funnel-hub {
  animation: funnel-hub-in 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.85s forwards;
}

.funnel-diagram.is-animating .funnel-connector {
  animation: funnel-connector-in 0.5s ease 1s forwards;
}

.funnel-diagram.is-animating .funnel-output {
  animation: funnel-output-in 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.9s forwards;
}

.funnel-diagram.is-flowing .funnel-flow {
  stroke-dasharray: 5 11;
  stroke-dashoffset: 0;
  opacity: 1;
  animation: funnel-stream 1.35s linear infinite;
}

.funnel-diagram.is-flowing .funnel-flow--1 { animation-delay: 0s; }
.funnel-diagram.is-flowing .funnel-flow--2 { animation-delay: 0.14s; }
.funnel-diagram.is-flowing .funnel-flow--3 { animation-delay: 0.28s; }
.funnel-diagram.is-flowing .funnel-flow--4 { animation-delay: 0.07s; }
.funnel-diagram.is-flowing .funnel-flow--5 { animation-delay: 0.42s; }
.funnel-diagram.is-flowing .funnel-flow--6 { animation-delay: 0.56s; }
.funnel-diagram.is-flowing .funnel-flow--7 { animation-delay: 0.7s; }

.funnel-diagram.is-flowing .funnel-particles {
  opacity: 1;
  transition: opacity 0.4s ease;
}

.funnel-diagram.is-flowing .funnel-hub-pulse {
  animation: funnel-hub-pulse 2.2s ease-out infinite;
}

.funnel-diagram.is-flowing .funnel-connector {
  opacity: 1;
  transform: translateX(0);
  animation: funnel-connector-nudge 1.6s ease-in-out infinite;
}

@keyframes funnel-draw {
  to {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes funnel-stream {
  to {
    stroke-dashoffset: -32;
  }
}

@keyframes funnel-input-in {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes funnel-hub-in {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes funnel-hub-pulse {
  0% {
    opacity: 0.22;
    transform: scale(0.85);
  }

  70% {
    opacity: 0;
    transform: scale(1.65);
  }

  100% {
    opacity: 0;
    transform: scale(1.65);
  }
}

@keyframes funnel-connector-in {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes funnel-connector-nudge {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(5px);
  }
}

@keyframes funnel-output-in {
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.funnel-caption {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: var(--muted);
  max-width: 600px;
}

.trust-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent-dark);
  margin: 0;
}

.trust-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* ── Pricing tiers ──────────────────────────────────────────── */

.pricing-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.pricing-tier {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.055);
  padding: 1.75rem;
  gap: 1rem;
}

.pricing-tier--featured {
  background: white;
  border-color: white;
}

.pricing-tier-head {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.pricing-tier-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.2rem;
}

.pricing-tier--featured .pricing-tier-tag {
  color: var(--accent-dark);
}

.pricing-tier h3 {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: white;
  margin: 0;
}

.pricing-tier--featured h3 {
  color: var(--accent-dark);
}

.pricing-tier-pitch {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

.pricing-tier--featured .pricing-tier-pitch {
  color: var(--muted);
}

.pricing-tier-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.45);
  margin: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1rem;
}

.pricing-tier--featured .pricing-tier-desc {
  color: var(--muted);
  border-top-color: var(--line);
}

.pricing-tier-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.pricing-tier-list li {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.65);
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.45;
}

.pricing-tier-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.35);
  font-weight: 900;
}

.pricing-tier--featured .pricing-tier-list li {
  color: var(--ink);
}

.pricing-tier--featured .pricing-tier-list li::before {
  color: var(--accent-dark);
}

.pricing-tier-footnote {
  margin: 0.75rem 0 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

.pricing-tier--featured .pricing-tier-footnote {
  color: var(--muted);
}

.pricing-tier-cta {
  display: block;
  text-align: center;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  margin-top: auto;
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
  transition: background 0.15s, border-color 0.15s;
}

.pricing-tier-cta:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.35);
}

.pricing-tier--featured .pricing-tier-cta {
  background: var(--accent-dark);
  color: white;
  border-color: transparent;
}

.pricing-tier--featured .pricing-tier-cta:hover {
  background: #1a4a48;
}

@media (max-width: 860px) {
  .pricing-tiers {
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: min(82vw, 300px);
    align-items: stretch;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: max(1rem, calc((100vw - 100%) / 2));
    -webkit-overflow-scrolling: touch;
    margin-inline: calc(-1 * ((100vw - 100%) / 2));
    padding-inline: max(1rem, calc((100vw - 100%) / 2));
    padding-bottom: 0.35rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.22) transparent;
  }

  .pricing-tiers::-webkit-scrollbar {
    height: 6px;
  }

  .pricing-tiers::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
  }

  .pricing-tier {
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
}

/* ── Scales with you section ────────────────────────────────── */

.scale-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  position: relative;
}

.scale-grid::before {
  content: '';
  position: absolute;
  top: 2.1rem;
  left: calc(33.33% + 0.75rem);
  right: calc(33.33% + 0.75rem);
  height: 1px;
  background: linear-gradient(90deg, var(--accent-dark) 0%, var(--accent-dark) 100%);
  opacity: 0.15;
  pointer-events: none;
}

.scale-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  position: relative;
}

.scale-card-stage {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 0.25rem;
}

.scale-card-stage::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-dark);
  flex-shrink: 0;
}

.scale-card:nth-child(2) .scale-card-stage::before {
  width: 10px;
  height: 10px;
  outline: 2px solid var(--accent-dark);
  outline-offset: 2px;
  background: transparent;
}

.scale-card:nth-child(3) .scale-card-stage::before {
  width: 12px;
  height: 12px;
  background: var(--accent-dark);
}

.scale-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent-dark);
  margin: 0;
}

.scale-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

.scale-footer {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  max-width: 640px;
}

.scale-footer p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 860px) {
  .scale-grid {
    grid-template-columns: 1fr;
  }
  .scale-grid::before {
    display: none;
  }
}

/* ── Trust card visualisations ─────────────────────────────── */

.trust-card-viz {
  background: #f2f8f6;
  border: 1px solid #d8ede8;
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 0.25rem;
  overflow: hidden;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.trust-logo {
  height: 1.5rem;
  width: auto;
  opacity: 0.55;
  filter: grayscale(1);
}

.client-logos-section {
  padding: clamp(0.5rem, 1vw, 0.875rem) 0 clamp(2rem, 4vw, 3rem);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.client-logos__lead {
  margin: 0 0 2.25rem;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.01em;
}

.client-logos {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.75rem, 1.75vw, 2rem);
}

.client-logos__item {
  display: flex;
  flex: 1 1 0;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: 2.75rem;
}

.client-logos__logo {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

@media (max-width: 820px) {
  .client-logos-section {
    padding-top: clamp(2.75rem, 8vw, 3.5rem);
    padding-bottom: clamp(2.25rem, 6vw, 3rem);
  }

  .client-logos__lead {
    margin-bottom: 1.75rem;
    padding-inline: 1rem;
  }

  .client-logos {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem 1.25rem;
  }

  .client-logos__item {
    flex: none;
    height: 2.5rem;
  }
}

@media (max-width: 420px) {
  .client-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1.5rem;
  }

  .client-logos__item {
    height: 2.35rem;
  }
}

.trust-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.trust-quote {
  background: var(--soft);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin: 0;
}

.trust-quote p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 0.75rem;
}

.trust-quote footer {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
}

.trust-case-study {
  margin-top: 2rem;
  padding: 1.5rem 1.75rem;
  background: var(--soft);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
}

/* ── Controls Section ────────────────────────────────────────── */

.controls-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.controls-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
}

.controls-card h3 {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1rem;
}

.controls-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.controls-card li {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--ink);
  padding-left: 1.2rem;
  position: relative;
}

.controls-card li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--muted);
}

.controls-note {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 68ch;
}

/* ── Brevo email form ─────────────────────────────────────────── */

.brevo-form-wrap {
  text-align: left;
  background: #ffffff;
  color: var(--ink);
}

.brevo-form-panel {
  max-width: 100%;
  margin: 0;
  padding: 0;
  background: #ffffff !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.brevo-form {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.brevo-form-block {
  padding: 0;
}

.brevo-form-title {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.15;
}

.brevo-form-lead {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Override stats-band white text on nested form copy */
.stats-band .brevo-form-wrap {
  color: var(--ink);
}

.stats-band .brevo-form-wrap .brevo-form-title {
  color: var(--ink);
}

.stats-band .brevo-form-wrap .brevo-form-lead,
.stats-band .brevo-form-wrap .entry__specification,
.stats-band .brevo-form-wrap .brevo-form-disclaimer {
  color: var(--muted);
}

.stats-band .brevo-form-wrap .entry__label {
  color: var(--ink);
}

.brevo-form-wrap .entry__label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
}

.brevo-form-wrap .entry__label span {
  color: var(--risk);
}

/* Beat Brevo sib-styles `.sib-form .input { color: inherit }` inside dark sections */
.brevo-form-wrap.sib-form .input.brevo-form-input,
.brevo-form-wrap.sib-form input.brevo-form-input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.72rem 0.85rem;
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  -webkit-text-fill-color: var(--ink);
  background: #ffffff;
  caret-color: var(--ink);
}

.brevo-form-wrap.sib-form .input.brevo-form-input::placeholder,
.brevo-form-wrap.sib-form input.brevo-form-input::placeholder {
  color: #a8b4bc;
  -webkit-text-fill-color: #a8b4bc;
  opacity: 1;
}

.brevo-form-wrap.sib-form .input.brevo-form-input:focus,
.brevo-form-wrap.sib-form input.brevo-form-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(15, 95, 84, 0.12);
  color: var(--ink);
  -webkit-text-fill-color: var(--ink);
}

.brevo-form-wrap.sib-form .input.brevo-form-input:-webkit-autofill,
.brevo-form-wrap.sib-form input.brevo-form-input:-webkit-autofill {
  -webkit-text-fill-color: var(--ink);
  box-shadow: 0 0 0 1000px #ffffff inset;
}

.brevo-form-wrap .entry__specification {
  display: block;
  margin: 0.4rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
}

.brevo-form-declaration .sib-form__declaration {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0.75rem;
  align-items: start;
}

.brevo-form-disclaimer {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--muted);
}

.brevo-form-disclaimer a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.brevo-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.25rem;
  padding: 0.72rem 1.35rem;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--accent-dark);
  color: #ffffff;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease;
}

.brevo-form-submit:hover {
  background: #1a4a48;
}

.brevo-form-message {
  margin: 0 0 1rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  line-height: 1.5;
}

.brevo-form-message[hidden] {
  display: none !important;
}

.brevo-form-message-text {
  margin: 0;
}

.brevo-form-message--success {
  background: rgba(15, 95, 84, 0.1);
  border: 1px solid rgba(15, 95, 84, 0.22);
  color: var(--accent);
}

.brevo-form-message--success .brevo-form-message-text {
  color: var(--accent);
  font-weight: 600;
}

.stats-band .brevo-form-wrap .brevo-form-message--success,
.stats-band .brevo-form-wrap .brevo-form-message--success .brevo-form-message-text {
  color: var(--accent);
}

.brevo-form-message--error {
  background: rgba(180, 35, 24, 0.08);
  border: 1px solid rgba(180, 35, 24, 0.2);
  color: #8b1a12;
}

.brevo-form-message--validation {
  background: rgba(15, 47, 46, 0.08);
  border: 1px solid rgba(15, 47, 46, 0.22);
  color: var(--accent-dark);
}

.brevo-form-message--validation .brevo-form-message-text {
  color: var(--accent-dark);
  font-weight: 600;
}

.stats-band .brevo-form-wrap .brevo-form-message--validation,
.stats-band .brevo-form-wrap .brevo-form-message--validation .brevo-form-message-text {
  color: var(--accent-dark);
}

.brevo-modal {
  position: fixed;
  inset: 0;
  z-index: 9900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.brevo-modal[hidden] {
  display: none;
}

.brevo-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 47, 46, 0.6);
  backdrop-filter: blur(4px);
}

.brevo-modal-box {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 80px rgba(0,0,0,0.25);
  width: min(92vw, 540px);
  max-height: 90vh;
  overflow: auto;
  padding: 1.5rem 1.5rem 1.25rem;
}

.brevo-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.85rem;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  z-index: 2;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
}

.brevo-modal-close:hover {
  color: var(--ink);
}

/* Inline brevo embed under pricing */
.brevo-inline {
  max-width: 540px;
  margin: 2.5rem auto 0;
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  padding: 1.25rem 1.25rem 1rem;
}

.brevo-inline-lead {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  text-align: center;
  color: var(--muted);
  background: #ffffff;
}

@media (max-width: 640px) {
  .brevo-modal-box {
    width: min(96vw, 540px);
    padding: 1.25rem 1rem 1rem;
  }

  .brevo-form-declaration .sib-form__declaration {
    grid-template-columns: 1fr;
  }
}

/* ── Cookie Banner ───────────────────────────────────────────── */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--accent-dark);
  color: var(--white);
  z-index: 9000;
  border-top: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.18);
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.1rem 0;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1;
  min-width: 200px;
}

.cookie-banner-text strong {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 0.25rem;
}

.cookie-banner-text p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.72);
  margin: 0;
  line-height: 1.5;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .cookie-banner-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .cookie-banner-actions .button {
    width: 100%;
    justify-content: center;
  }

  .cookie-text-btn {
    text-align: center;
    padding: 0.25rem 0;
  }
}

.cookie-text-btn {
  background: none;
  border: none;
  padding: 0;
  color: rgba(255,255,255,0.65);
  font-size: 0.8rem;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-family: inherit;
}

.cookie-text-btn:hover { color: var(--white); }

/* ── Cookie Preferences Modal ────────────────────────────────── */

.cookie-prefs-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,30,28,0.55);
  z-index: 9500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.cookie-prefs-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  box-shadow: 0 24px 64px rgba(0,0,0,0.22);
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  overflow: hidden;
}

.cookie-prefs-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--line);
}

.cookie-prefs-header h2 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--accent-dark);
  margin: 0;
}

.cookie-prefs-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--muted);
  padding: 0.25rem;
  line-height: 1;
}

.cookie-prefs-close:hover { color: var(--ink); }

.cookie-prefs-body {
  overflow-y: auto;
  flex: 1;
  padding: 0.5rem 0;
}

.cookie-category {
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--line);
}

.cookie-category:last-child { border-bottom: none; }

.cookie-category-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

.cookie-category-row > div strong {
  display: block;
  font-size: 0.88rem;
  color: var(--ink);
  margin-bottom: 0.3rem;
}

.cookie-category-row > div p {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.cookie-category-row code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.76rem;
  color: var(--ink);
}

.cookie-always-active {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.cookie-toggle-label {
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
  margin-top: 0.1rem;
}

.cookie-toggle-label input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-track {
  display: block;
  width: 42px;
  height: 24px;
  background: var(--line);
  border-radius: 12px;
  transition: background 200ms;
  position: relative;
}

.cookie-toggle-track::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  transition: transform 200ms;
}

.cookie-toggle-label input:checked + .cookie-toggle-track {
  background: var(--accent);
}

.cookie-toggle-label input:checked + .cookie-toggle-track::after {
  transform: translateX(18px);
}

.cookie-toggle-label input:focus-visible + .cookie-toggle-track {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.cookie-prefs-footer {
  padding: 1.1rem 1.5rem;
  border-top: 1px solid var(--line);
}

/* ── Footer legal bar ────────────────────────────────────────── */

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 1rem;
  align-items: center;
}

.footer-legal-links a,
.footer-legal-btn {
  font-size: 0.75rem;
  color: var(--muted);
  transition: color 160ms ease;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
}

.footer-legal-links a:hover,
.footer-legal-btn:hover { color: var(--ink); }

.footer-disclaimer {
  font-size: 0.72rem;
  color: var(--muted);
  opacity: 0.7;
  max-width: 560px;
  text-align: center;
  margin: 0;
  line-height: 1.55;
}

/* ── Legal pages (standalone /privacy-policy, /cookie-policy) ── */

.legal-page {
  background: var(--soft);
  min-height: calc(100vh - 80px);
}

.legal-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-dark);
  margin-bottom: 2rem;
  transition: color 160ms ease;
}

.legal-back-link:hover { color: var(--accent); }

/* ── Legal overlay (legacy, kept for cookie policy modal fallback) ── */

.legal-overlay {
  position: fixed;
  inset: 0;
  background: var(--soft);
  z-index: 9800;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.legal-topbar {
  position: sticky;
  top: 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 0.85rem 2rem;
  z-index: 1;
}

.legal-back-btn {
  background: none;
  border: none;
  padding: 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-dark);
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.legal-back-btn:hover { color: var(--accent); }

.legal-scroll {
  flex: 1;
}

.legal-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}

.legal-content h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 900;
  color: var(--accent-dark);
  margin: 0 0 0.5rem;
}

.legal-effective {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0 0 2rem;
}

.legal-content h2 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent-dark);
  margin: 2.5rem 0 0.75rem;
}

.legal-content h3 {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--ink);
  margin: 1.5rem 0 0.5rem;
}

.legal-content p,
.legal-content li {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--ink);
}

.legal-content ul,
.legal-content ol {
  padding-left: 1.5rem;
  margin: 0.5rem 0 1rem;
}

.legal-content li { margin-bottom: 0.35rem; }

.legal-content a {
  color: var(--accent);
  text-underline-offset: 3px;
}

.cookie-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 0.75rem;
}

.cookie-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  font-size: 0.8rem;
}

.cookie-table th,
.cookie-table td {
  text-align: left;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--line);
  vertical-align: top;
  line-height: 1.45;
}

.cookie-table th {
  background: var(--soft);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Calendly placeholder ────────────────────────────────────── */

.calendly-placeholder {
  background: var(--soft);
  border: 1px dashed var(--line);
  border-radius: var(--radius-md);
  padding: 2rem;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.25rem;
}

.calendly-placeholder p {
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 42ch;
  line-height: 1.6;
  margin: 0;
}

.calendly-placeholder-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── Responsive adjustments for new sections ─────────────────── */

@media (max-width: 768px) {
  .trust-grid,
  .controls-grid {
    grid-template-columns: 1fr;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .legal-content {
    padding: 2rem 1.25rem 4rem;
  }

  .cookie-table {
    font-size: 0.72rem;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
