:root {
  --primary: #073d2f;
  --deep: #042b22;
  --cream: #f6f3ee;
  --grey: #e8ebe7;
  --text: #111111;
  --muted: #626a65;
  --accent: #0b5a43;
  --line: rgba(7, 61, 47, 0.14);
  --shadow: 0 28px 70px rgba(8, 34, 27, 0.16);
  --heading: "Space Grotesk", Arial, sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Satoshi", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--cream);
  font-family: var(--sans);
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  max-width: 760px;
  text-align: center;
}

.section-dark {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 50% 30%, rgba(31, 116, 82, 0.34), transparent 28%),
    radial-gradient(circle at 50% 88%, rgba(246, 243, 238, 0.12), transparent 26%),
    linear-gradient(135deg, var(--deep), var(--primary));
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  color: #fff;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--text);
  background: rgba(246, 243, 238, 0.96);
  box-shadow: 0 12px 35px rgba(8, 34, 27, 0.08);
}

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

.brand {
  font-family: var(--heading);
  font-size: 1.55rem;
  font-weight: 700;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  color: inherit;
  font-size: 0.92rem;
  font-weight: 600;
}

.nav-cta {
  padding: 11px 18px;
  color: var(--primary);
  background: #e7f2e8;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: -18px;
  right: -18px;
  top: 100%;
  height: 22px;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  color: inherit;
  border: 0;
  background: transparent;
  font-weight: 600;
  cursor: pointer;
}

.nav-chevron {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-top: -3px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 160ms ease, margin-top 160ms ease;
}

.nav-dropdown:hover .nav-chevron,
.nav-dropdown:focus-within .nav-chevron,
.nav-dropdown.is-open .nav-chevron {
  margin-top: 3px;
  transform: rotate(225deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  min-width: 230px;
  padding: 8px;
  color: var(--text);
  background: rgba(246, 243, 238, 0.98);
  border: 1px solid rgba(7, 61, 47, 0.14);
  box-shadow: 0 22px 55px rgba(8, 34, 27, 0.16);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 10px 12px;
  color: var(--text);
  font-size: 0.88rem;
  border: 1px solid transparent;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.nav-dropdown-menu a::after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1.4px solid var(--accent);
  border-right: 1.4px solid var(--accent);
  opacity: 0;
  transform: rotate(45deg) translateX(-4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  background: #fff;
  border-color: rgba(7, 61, 47, 0.1);
  transform: translateX(2px);
}

.nav-dropdown-menu a:hover::after,
.nav-dropdown-menu a:focus-visible::after {
  opacity: 1;
  transform: rotate(45deg) translateX(0);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

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

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 740px;
  height: 90vh;
  padding: 350px 0 80px;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: 1;
}



.hero-grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-dark .eyebrow {
  color: #b9d8c9;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  font-family: var(--heading);
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 960px;
  font-size: clamp(2.10rem, 3.4rem, 5.4rem);
  line-height: 1.01;
}

h2 {
  font-size: clamp(1.95rem, 3vw, 3.05rem);
  line-height: 1.06;
}

h3 {
  font-size: clamp(1.18rem, 1.55vw, 1.55rem);
}

.hero-text {
  max-width: 560px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 1);
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--deep);
  background: #bef4be;
  border: 1px solid rgba(7, 61, 47, 0.22);
}

.pricing .btn-primary {
  color: #bef4be;
  background: var(--primary);
}

.btn-secondary {
  color: #bef4be;
  border-color: #bef4be;
  background: #06402a7d;
}

.btn-soft {
  color: var(--primary);
  background: #e8f1eb;
}

.btn-icon {
  gap: 12px;
}

.hero-visual {
  position: relative;
  width: min(610px, 100%);
  min-height: 340px;
  margin-top: 6px;
}

.hero-visual img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.32);
  opacity: 0.94;
}

.metric-card,
.dashboard-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(246, 243, 238, 0.92);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.metric-card {
  min-width: 118px;
  padding: 10px 12px;
  color: var(--primary);
}

.metric-card span {
  display: block;
  color: #56635d;
  font-size: 0.66rem;
  font-weight: 700;
}

.metric-card strong {
  display: block;
  margin-top: 3px;
  font-size: 1.18rem;
}

.card-one {
  top: 19%;
  left: -34px;
}

.card-two {
  right: -28px;
  bottom: 31%;
}

.dashboard-card {
  left: 50%;
  bottom: 10%;
  width: 196px;
  transform: translateX(-50%);
  padding: 13px;
}

.hero-score-row {
  width: min(680px, calc(100% - 24px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: -8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(4, 43, 34, 0.56);
  backdrop-filter: blur(16px);
}

.hero-score-row div {
  padding: 15px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-score-row div:last-child {
  border-right: 0;
}

.hero-score-row span {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-score-row strong {
  display: block;
  margin-top: 4px;
  font-family: var(--serif);
  font-size: 1.72rem;
  line-height: 1;
}

.dash-top {
  display: flex;
  gap: 6px;
  margin-bottom: 18px;
}

.dash-top span {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.dash-row {
  height: 9px;
  margin-top: 8px;
  background: #cfd8d2;
}

.dash-row.strong {
  width: 72%;
  background: var(--primary);
}

.dash-bars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  gap: 8px;
  height: 58px;
  margin-top: 16px;
}

.dash-bars i {
  display: block;
  background: linear-gradient(#0b5a43, #b9d8c9);
}

.dash-bars i:nth-child(1) {
  height: 36%;
}

.dash-bars i:nth-child(2) {
  height: 62%;
}

.dash-bars i:nth-child(3) {
  height: 48%;
}

.dash-bars i:nth-child(4) {
  height: 82%;
}

.trust-strip {
  padding: 60px 0 60px;
  background: #eeede8;
  overflow: hidden;
}

.trust-label {
  margin: 0 0 40px;
  text-align: center;
  color: #41504a;
  font-size: 0.88rem;
  font-weight: 600;
}

.ticker-wrap {
  position: relative;
  overflow: hidden;
  /* fade edges */
  -webkit-mask-image: linear-gradient(to right,
      transparent 0%,
      #000 8%,
      #000 92%,
      transparent 100%);
  mask-image: linear-gradient(to right,
      transparent 0%,
      #000 8%,
      #000 92%,
      transparent 100%);
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: ticker-scroll 120s linear infinite;
}

.ticker-track:hover {
  animation-play-state: normal;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.ticker-track img {
  height: 28px;
  width: auto;
  flex-shrink: 0;
}

.ticker-track img.logo-sm {
  height: 18px;
}

/* ── Service Showcase ─────────────────────────────────────────── */
.service-showcase {
  padding: 100px 0 80px;
  background: var(--cream);
}

.service-showcase-heading {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.showcase-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
  cursor: pointer;
  transition: transform 180ms ease, opacity 180ms ease;
}

.showcase-card:hover,
.showcase-card:focus-visible {
  opacity: 0.86;
  transform: translateY(-3px);
}

/* Visual area */
.showcase-visual {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  background: var(--grey);
}

.showcase-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── Web card visual ── */
.sv-web {
  background: linear-gradient(135deg, #e8f0eb 0%, #d6e4da 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  padding: 24px 20px 0;
}

.sv-browser {
  width: 68%;
  background: #fff;
  border: 1px solid rgba(7,61,47,0.12);
  box-shadow: 0 18px 48px rgba(0,0,0,0.14);
  flex-shrink: 0;
}

.sv-bar {
  display: flex;
  gap: 5px;
  padding: 8px 10px;
  background: #f0f3f0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

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

.sv-screen {
  padding: 12px;
}

.sv-hero-block {
  height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  margin-bottom: 10px;
}

.sv-line {
  height: 7px;
  background: #dde4df;
  margin-bottom: 6px;
  width: 100%;
}

.sv-line.w80 { width: 80%; }
.sv-line.w55 { width: 55%; }

.sv-btn-row {
  display: flex;
  gap: 7px;
  margin-top: 10px;
}

.sv-pill {
  height: 18px;
  width: 54px;
  background: var(--primary);
}

.sv-pill.ghost {
  background: transparent;
  border: 1px solid var(--primary);
}

.sv-phone {
  width: 26%;
  background: #fff;
  border: 1px solid rgba(7,61,47,0.12);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  border-radius: 10px 10px 0 0;
  padding: 8px 6px 0;
  align-self: flex-end;
  margin-bottom: 16px;
}

.sv-notch {
  width: 28px;
  height: 5px;
  background: #b8c2bc;
  border-radius: 3px;
  margin: 0 auto 8px;
}

.sv-pscreen { padding: 4px 2px; }
.sv-pblock  { height: 30px; background: linear-gradient(135deg, var(--primary), var(--accent)); margin-bottom: 6px; }
.sv-pline   { height: 5px; background: #dde4df; margin-bottom: 4px; }
.sv-pline.w60 { width: 60%; }

/* ── Ads card visual ── */
.sv-ads {
  background: linear-gradient(135deg, #f5f8f6 0%, #e8efea 100%);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sv-dash {
  width: 100%;
  background: #fff;
  border: 1px solid rgba(7,61,47,0.1);
  box-shadow: 0 12px 36px rgba(0,0,0,0.1);
  padding: 18px;
}

.sv-dash-header {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.sv-tag {
  padding: 4px 10px;
  background: #e8f2ea;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
}

.sv-metric-row {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.sv-metric {
  flex: 1;
  text-align: center;
  padding: 8px 4px;
  border: 1px solid var(--line);
}

.sv-metric strong {
  display: block;
  color: var(--primary);
  font-size: 1.1rem;
}

.sv-metric span {
  display: block;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  margin-top: 2px;
}

.sv-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 52px;
}

.sv-bar-col {
  flex: 1;
  height: var(--h);
  background: linear-gradient(to top, var(--primary), #4a9e7a);
  border-radius: 1px 1px 0 0;
}

/* ── Analytics card visual ── */
.sv-analytics {
  background: linear-gradient(135deg, #edf3ee 0%, #dfe9e2 100%);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sv-funnel-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sv-funnel-bar {
  width: var(--w);
  background: var(--primary);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 7px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-width: 80px;
}

.sv-funnel-bar span {
  opacity: 0.75;
  font-weight: 400;
}

.sv-heat-row {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.sv-heat {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11,90,67,0.65), rgba(11,90,67,0.05) 70%);
}

.sv-heat.mid {
  width: 68px;
  height: 68px;
  background: radial-gradient(circle, rgba(11,90,67,0.82), rgba(11,90,67,0.06) 70%);
}

/* Copy area */
.showcase-copy {
  padding: 22px 4px 0;
}

.showcase-copy h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--text);
  line-height: 1.3;
}

.showcase-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.our-work {
  padding: 96px 0;
  background: #fff;
}

.work-heading {
  max-width: 660px;
  margin-bottom: 46px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.work-card {
  display: flex;
  min-height: 0;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.work-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(8, 34, 27, 0.1);
}

.work-visual {
  display: grid;
  place-items: center;
  min-height: 250px;
  padding: 34px;
  background:
    radial-gradient(circle at 68% 24%, rgba(11, 90, 67, 0.18), transparent 30%),
    linear-gradient(135deg, #e7eee9, #f7f4ef);
}

.work-visual img {
  max-width: 78%;
  max-height: 112px;
  object-fit: contain;
  filter: saturate(0.92);
}

.work-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 30px;
}

.work-copy span {
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.work-copy h3 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.4vw, 2.5rem);
  line-height: 1;
}

.work-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ── Branding & Design visual ── */
.sv-brand {
  background: linear-gradient(135deg, #f2f6f3 0%, #e4ede6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sv-brand-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 80%;
}

.sv-logo-mark {
  position: relative;
  width: 64px;
  height: 64px;
}

.sv-lm-shape {
  position: absolute;
  width: 44px;
  height: 44px;
  background: var(--primary);
  top: 0;
  left: 0;
}

.sv-lm-shape.two {
  width: 32px;
  height: 32px;
  background: #4a9e7a;
  bottom: 0;
  right: 0;
  top: auto;
  left: auto;
}

.sv-palette {
  display: flex;
  gap: 6px;
}

.sv-swatch {
  width: 28px;
  height: 28px;
  background: var(--c);
  border-radius: 50%;
}

.sv-type-sample {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sv-type-h {
  height: 14px;
  background: var(--primary);
  width: 60%;
}

.sv-type-b {
  height: 8px;
  background: #c8d6cc;
  width: 100%;
}

.sv-type-b.w70 { width: 70%; }
.sv-type-b.w50 { width: 50%; }

/* ── Retention visual ── */
.sv-retention {
  background: linear-gradient(135deg, #edf4f0 0%, #dce9e2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.sv-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.sv-flow-node {
  padding: 7px 14px;
  font-size: 0.68rem;
  font-weight: 700;
  text-align: center;
  border-radius: 2px;
}

.sv-flow-node.trigger {
  background: var(--primary);
  color: #fff;
  width: 80px;
}

.sv-flow-node.email {
  background: #fff;
  color: var(--primary);
  border: 1px solid rgba(7,61,47,0.2);
  flex: 1;
}

.sv-flow-node.sms {
  background: #e8f2ea;
  color: var(--primary);
  flex: 1;
}

.sv-flow-node.win {
  background: var(--accent);
  color: #fff;
  width: 100%;
}

.sv-flow-arrow {
  width: 1px;
  height: 14px;
  background: rgba(7,61,47,0.3);
  position: relative;
}

.sv-flow-arrow::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: -3px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid rgba(7,61,47,0.3);
}

.sv-flow-row {
  display: flex;
  gap: 8px;
  width: 100%;
}

.sv-flow-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  padding: 6px 12px;
  background: #fff;
  border: 1px solid rgba(7,61,47,0.12);
  width: 100%;
  justify-content: space-between;
}

.sv-flow-stat span {
  font-size: 0.65rem;
  color: var(--muted);
  font-weight: 600;
}

.sv-flow-stat strong {
  font-size: 1rem;
  color: var(--primary);
}

/* ── Social Media visual ── */
.sv-social {
  background: linear-gradient(135deg, #f0f5f2 0%, #e2ece6 100%);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}

.sv-grid-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}

.sv-post {
  aspect-ratio: 1;
  background: #c8d8cc;
}

.sv-post.p1 { background: linear-gradient(135deg, var(--primary), #4a9e7a); }
.sv-post.p2 { background: #d8e8dc; }
.sv-post.p3 { background: linear-gradient(135deg, #4a9e7a, #b9d8c9); }
.sv-post.p4 { background: #e2eee6; }
.sv-post.p5 { background: linear-gradient(135deg, var(--accent), var(--primary)); }
.sv-post.p6 { background: #ccdbd0; }

.sv-cal-row {
  display: flex;
  gap: 6px;
  justify-content: center;
}

.sv-cal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c8d8cc;
}

.sv-cal-dot.active {
  background: var(--primary);
}

/* ── AI Solutions visual ── */
.sv-ai {
  background: linear-gradient(135deg, #0b3d2f 0%, #073d2f 100%);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sv-chat {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.sv-chat-msg {
  max-width: 82%;
  padding: 8px 12px;
  font-size: 0.68rem;
  line-height: 1.5;
  border-radius: 2px;
}

.sv-chat-msg.bot {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  align-self: flex-start;
  border: 1px solid rgba(255,255,255,0.12);
}

.sv-chat-msg.user {
  background: #4a9e7a;
  color: #fff;
  align-self: flex-end;
}

.sv-ai-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 4px;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  font-weight: 700;
}

.sv-ai-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4a9e7a;
  animation: ai-pulse 1.6s ease-in-out infinite;
}

@keyframes ai-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* responsive */
@media (max-width: 980px) {
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 600px) {
  .showcase-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }

  .our-work {
    padding: 74px 0;
  }

  .work-copy {
    padding: 26px;
  }

  .work-visual {
    min-height: 210px;
  }
}

.intro-section,
.feature-section,
.pricing,
.testimonial-cards,
.content-section,
.faq {
  padding: 96px 0;
}

.value-prop {
  background: #f9f8f5;
}

.intro-section p:last-child,
.section-heading p:last-child,
.faq-intro p,
.feature-copy p:not(.eyebrow),
.authority-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  align-items: center;
  gap: 96px;
  width: min(980px, 100%);
  margin: 0 auto;
}

.alt .feature-grid {
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1fr);
}

.mock-window,
.analytics-card,
.campaign-board {
  position: relative;
  min-height: 390px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 22px 55px rgba(8, 34, 27, 0.1);
}

.mock-toolbar {
  display: flex;
  gap: 7px;
}

.mock-toolbar span {
  width: 9px;
  height: 9px;
  background: #b8c2bc;
  border-radius: 50%;
}

.mock-hero {
  height: 155px;
  margin: 30px 0 24px;
  background:
    linear-gradient(90deg, rgba(7, 61, 47, 0.92), rgba(7, 61, 47, 0.4)),
    linear-gradient(135deg, #d6ded8, #f8f5ef);
}

.mock-content div {
  height: 12px;
  margin-bottom: 12px;
  background: #dde4df;
}

.mock-content div:nth-child(2) {
  width: 72%;
}

.mock-content button {
  margin-top: 16px;
  padding: 13px 18px;
  color: #fff;
  border: 0;
  background: var(--primary);
}

.floating-chip {
  position: absolute;
  right: 22px;
  bottom: 28px;
  padding: 12px 15px;
  color: var(--primary);
  background: #e1efe6;
  font-size: 0.84rem;
  font-weight: 700;
}

.feature-copy {
  max-width: 520px;
}

.check-list,
.price-card ul {
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li,
.price-card li {
  position: relative;
  padding: 13px 0 13px 30px;
  border-bottom: 1px solid var(--line);
  color: #34423d;
}

.check-list li::before,
.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 9px;
  height: 9px;
  background: var(--accent);
}

.analytics-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.analytics-head span {
  color: var(--muted);
  font-weight: 700;
}

.analytics-head strong {
  color: var(--primary);
  font-size: 2.2rem;
}

.funnel {
  display: grid;
  gap: 13px;
}

.funnel div {
  width: var(--w);
  min-width: 170px;
  padding: 12px 15px;
  color: #fff;
  background: var(--primary);
  font-size: 0.88rem;
  font-weight: 700;
}

.heatmap {
  display: flex;
  gap: 18px;
  margin-top: 38px;
}

.heatmap span {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 90, 67, 0.72), rgba(11, 90, 67, 0.06) 70%);
}

.campaign-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  align-content: center;
  background: linear-gradient(135deg, #fff, #edf3ee);
}

.channel-card,
.lead-card {
  padding: 22px;
  min-height: 110px;
  display: flex;
  align-items: center;
  color: var(--primary);
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 800;
}

.lead-card {
  grid-column: span 2;
  justify-content: center;
  color: #fff;
  background: var(--primary);
}

.journey-line {
  grid-column: span 2;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.authority {
  padding: 120px 0 88px;
}

.authority-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

.authority-copy {
  max-width: 760px;
  text-align: left;
}

.authority-copy p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.authority-grid,
.service-grid,
.pricing-grid,
.quote-grid,
.content-grid {
  display: grid;
  gap: 20px;
}

.authority-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.dark-card,
.service-card {
  min-height: 250px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.035);
  border: 0;
}

.dark-card img {
  width: 100%;
  height: 92px;
  object-fit: cover;
  margin-bottom: 22px;
  filter: saturate(0.72);
  opacity: 0.72;
}

.service-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.service-card:hover,
.service-card:focus-visible {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-3px);
  outline: none;
}

.service-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  object-position: center;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  filter: saturate(0.92) contrast(0.98);
}

.dark-card span {
  color: #b9d8c9;
  font-weight: 800;
}

.dark-card h3,
.service-card h3 {
  margin-top: 24px;
  font-family: var(--sans);
  font-size: 1.15rem;
  line-height: 1.25;
}

.service-card h3 {
  margin-top: 0;
}

.dark-card p,
.service-card p {
  color: rgba(255, 255, 255, 0.68);
}

.service-card p {
  margin-bottom: 0;
}

.stats {
  padding: 0 0 80px;
  background: var(--cream);
}

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

.stats-grid div {
  min-width: 0;
  padding: clamp(26px, 4vw, 46px) clamp(18px, 3vw, 34px);
  border-right: 1px solid var(--line);
}

.stats-grid div:last-child {
  border-right: 0;
}

.stats-grid strong {
  display: block;
  color: var(--primary);
  font-family: var(--heading);
  font-size: clamp(2.05rem, 4vw, 3.55rem);
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.stats-grid span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: clamp(0.78rem, 1vw, 0.95rem);
  font-weight: 700;
}

.testimonial-feature {
  padding: 30px 0 106px;
}

.testimonial-layout {
  display: grid;
  grid-template-columns: 330px 1fr;
  align-items: stretch;
  width: min(980px, 100%);
  background: #dfe7e1;
  box-shadow: none;
}

.portrait-card {
  display: grid;
  place-items: center;
  min-height: 320px;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.36), transparent 28%),
    linear-gradient(135deg, #073d2f, #0b5a43);
}

.portrait-initial {
  display: grid;
  place-items: center;
  width: 124px;
  height: 124px;
  color: var(--primary);
  background: #f6f3ee;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 4.4rem;
  font-weight: 700;
}

blockquote {
  margin: 0;
  padding: 54px;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.7vw, 2.6rem);
  line-height: 1.12;
}

blockquote cite {
  display: block;
  margin-top: 28px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.92rem;
  font-style: normal;
  font-weight: 700;
}

.services {
  padding: 108px 0;
}

.section-heading {
  max-width: 660px;
  margin-bottom: 44px;
}

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

.service-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  width: min(980px, 100%);
  margin: 0 auto;
}

.price-card {
  position: relative;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: none;
}

.price-card.featured {
  border: 1px solid var(--primary);
  transform: translateY(-18px);
  box-shadow: var(--shadow);
}

.price-card p {
  margin: 0 0 10px;
  color: var(--muted);
  font-weight: 800;
}

.price-card h3 {
  margin-bottom: 24px;
  font-family: var(--sans);
  font-size: 1.7rem;
  line-height: 1.15;
}

.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 10px;
  color: #fff;
  background: var(--primary);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quote-grid,
.content-grid {
  grid-template-columns: repeat(3, 1fr);
  width: min(980px, 100%);
  margin: 0 auto;
}

.quote-card {
  padding: 30px;
  min-height: 230px;
  background: #e6ece7;
}

.quote-card p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.15;
}

.quote-card span {
  display: block;
  margin-top: 26px;
  color: var(--muted);
  font-weight: 800;
}

.content-card {
  background: #fff;
  border: 1px solid var(--line);
}

.thumb {
  height: 190px;
  background-size: cover;
  background-position: center;
}

.thumb-one {
  background:
    linear-gradient(135deg, rgba(7, 61, 47, 0.1), rgba(7, 61, 47, 0.7)),
    linear-gradient(45deg, #e8ebe7 25%, #c5d2ca 25%, #c5d2ca 50%, #e8ebe7 50%, #e8ebe7 75%, #d7dfda 75%);
  background-size: cover, 34px 34px;
}

.thumb-two {
  background:
    radial-gradient(circle at 72% 34%, rgba(11, 90, 67, 0.58), transparent 21%),
    linear-gradient(135deg, #073d2f, #d8e0da);
}

.thumb-three {
  background:
    linear-gradient(90deg, rgba(7, 61, 47, 0.76), rgba(246, 243, 238, 0.1)),
    repeating-linear-gradient(90deg, #f6f3ee, #f6f3ee 24px, #dfe7e1 24px, #dfe7e1 48px);
}

.content-card h3 {
  padding: 24px 24px 10px;
  font-family: var(--sans);
  font-size: 1.1rem;
  line-height: 1.3;
}

.content-card a {
  display: inline-block;
  padding: 0 24px 26px;
  color: var(--accent);
  font-weight: 800;
}

.final-cta {
  padding: 62px 0;
}

.cta-layout {
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.cta-layout h2 {
  max-width: 580px;
  font-size: clamp(1.9rem, 2.75vw, 2.75rem);
  line-height: 1.08;
}

.cta-layout>div {
  position: relative;
  z-index: 1;
}

.cta-layout img {
  position: absolute;
  right: 120px;
  bottom: -82px;
  width: 270px;
  height: 220px;
  object-fit: cover;
  opacity: 0.55;
  mask-image: linear-gradient(90deg, transparent, #000 30%);
  z-index: 0;
}

.cta-layout .btn {
  position: relative;
  z-index: 1;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  width: min(920px, 100%);
  margin: 0 auto;
}

.faq-intro {
  max-width: 650px;
  text-align: center;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  width: 100%;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0;
  color: var(--text);
  border: 0;
  background: transparent;
  text-align: left;
  font-weight: 800;
  cursor: pointer;
}

.faq-item button span {
  flex: 0 0 auto;
  color: var(--accent);
  font-size: 1.45rem;
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 240ms ease;
}

.faq-panel p {
  overflow: hidden;
  margin: 0;
  color: var(--muted);
}

.faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
  padding-bottom: 22px;
}

.site-footer {
  padding: 44px 0;
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
}

.footer-inner div {
  display: flex;
  gap: 18px;
  font-weight: 700;
}

.mobile-float {
  display: none;
}

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

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

/* Growth partner body refresh */
.trust-strip {
  padding: 38px 0 48px;
  background: #fff;
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 860px;
  margin-top: 28px;
  background: var(--line);
  border: 1px solid var(--line);
}

.trust-stats div {
  padding: 20px 24px;
  text-align: center;
  background: #fff;
}

.trust-stats strong {
  display: block;
  color: var(--primary);
  font-family: var(--heading);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
}

.trust-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.core-positioning,
.growth-system,
.services,
.case-studies,
.standalone-stats,
.pricing,
.testimonial-cards,
.faq {
  padding: 104px 0;
}

.core-positioning,
.case-studies,
.testimonial-cards {
  background: var(--cream);
}

.growth-system,
.services,
.standalone-stats,
.pricing {
  background: #fff;
}

.section-heading > p:not(.eyebrow) {
  max-width: 690px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading.centered > p:not(.eyebrow) {
  margin-inline: auto;
}

.pillar-grid,
.outcome-grid,
.case-grid,
.systems-grid {
  display: grid;
  gap: 18px;
}

.pillar-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 46px;
}

.pillar-card,
.outcome-card,
.case-card,
.system-card {
  background: #fff;
  border: 1px solid var(--line);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.pillar-card:hover,
.outcome-card:hover,
.case-card:hover,
.system-card:hover {
  transform: translateY(-3px);
  border-color: rgba(7, 61, 47, 0.28);
  box-shadow: 0 18px 45px rgba(8, 34, 27, 0.08);
}

.pillar-card {
  min-height: 245px;
  padding: 28px;
}

.pillar-icon {
  position: relative;
  width: 54px;
  height: 54px;
  margin-bottom: 26px;
  background: #edf5ef;
  border: 1px solid rgba(7, 61, 47, 0.12);
  border-radius: 50%;
}

.pillar-icon i {
  position: absolute;
  display: block;
}

.brand-icon i:first-child {
  inset: 15px;
  border-radius: 50%;
  border: 2px solid var(--accent);
}

.brand-icon i:last-child {
  width: 18px;
  height: 18px;
  right: 8px;
  bottom: 8px;
  background: var(--primary);
  border-radius: 50%;
}

.build-icon i:first-child {
  width: 28px;
  height: 22px;
  left: 13px;
  top: 14px;
  border: 2px solid var(--accent);
}

.build-icon i:last-child {
  width: 24px;
  height: 3px;
  left: 15px;
  bottom: 13px;
  background: var(--primary);
}

.acquire-icon i:first-child {
  width: 30px;
  height: 30px;
  left: 12px;
  top: 12px;
  border-radius: 50%;
  border: 2px solid var(--accent);
}

.acquire-icon i:last-child {
  width: 18px;
  height: 2px;
  right: 9px;
  top: 18px;
  background: var(--primary);
  transform: rotate(35deg);
}

.retain-icon i:first-child {
  width: 30px;
  height: 30px;
  left: 12px;
  top: 12px;
  border-radius: 50%;
  border: 2px solid #b9d8c9;
}

.retain-icon i:last-child {
  width: 18px;
  height: 18px;
  left: 18px;
  top: 18px;
  background: var(--accent);
  border-radius: 50%;
}

.pillar-card span,
.system-step span,
.work-copy span,
.case-card p {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pillar-card h3,
.outcome-card h3,
.system-card h3 {
  margin-top: 24px;
  font-size: 1.25rem;
  line-height: 1.15;
}

.pillar-card p,
.outcome-card p,
.system-card p,
.case-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.growth-system {
  overflow: hidden;
}

.system-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
  padding: 72px 0 24px;
}

.flow-line {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 96px;
  height: 2px;
  background: linear-gradient(90deg, rgba(7, 61, 47, 0.08), var(--accent), rgba(7, 61, 47, 0.08));
}

.flow-stage {
  position: relative;
  padding-right: 32px;
}

.flow-stage span {
  display: block;
  margin-bottom: 26px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.flow-node {
  position: relative;
  width: 86px;
  height: 86px;
  margin-bottom: 32px;
  border-radius: 50%;
  background: #fff;
  border-radius: 50%;
  border: 1px solid rgba(7, 61, 47, 0.18);
  box-shadow: 0 18px 45px rgba(8, 34, 27, 0.08);
}

.flow-node::before,
.flow-node::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
}

.flow-node::before {
  background: rgba(11, 90, 67, 0.12);
}

.flow-node::after {
  inset: 32px;
  background: var(--accent);
}

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

.flow-stage p {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.outcome-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 42px;
}

.outcome-card {
  min-height: 260px;
  padding: 0;
  overflow: hidden;
}

.outcome-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  background: var(--grey);
}

.outcome-card h3 {
  margin: 26px 28px 0;
  font-size: 1.45rem;
}

.outcome-card strong {
  display: block;
  margin: 20px 28px 0;
  color: var(--primary);
  font-size: 0.95rem;
}

.outcome-card p {
  margin: 14px 28px 30px;
}

.case-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 42px;
}

.case-card {
  padding: 30px;
}

.case-logo {
  display: grid;
  place-items: center;
  height: 150px;
  margin-bottom: 26px;
  background: #fff;
  border: 1px solid var(--line);
}

.case-logo img {
  max-width: 58%;
  max-height: 78px;
  object-fit: contain;
}

.case-card strong {
  display: block;
  margin-top: 18px;
  color: var(--text);
  font-family: var(--heading);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.15;
}

.split-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 72px;
  align-items: start;
}

.why-us,
.founder-section,
.final-cta {
  padding: 100px 0;
}

.why-top {
  margin-bottom: 52px;
}

.why-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.why-list li,
.founder-points span {
  padding: 22px 24px;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 800;
}

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

.team-card {
  min-height: 0;
  padding: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  transition: transform 180ms ease, background 180ms ease;
}

.team-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.08);
}

.team-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  background: rgba(255, 255, 255, 0.06);
  filter: saturate(0.96) contrast(1.02);
}

.team-copy {
  padding: 24px;
}

.team-card span {
  display: block;
  margin-top: 8px;
  color: #b9d8c9;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.team-card h3 {
  margin-top: 0;
  font-size: 1.35rem;
}

.team-card p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

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

.system-card {
  padding: 28px;
}

.system-card h3 {
  margin-top: 0;
}

.standalone-stats .section-heading {
  margin-bottom: 34px;
}

.standalone-stats .stats-grid {
  background: var(--line);
}

.founder-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
}

.founder-copy p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
}

.founder-points {
  display: grid;
  gap: 14px;
}

.pricing-grid,
.quote-grid {
  width: auto;
}

.price-card p {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
}

.quote-card {
  background: #fff;
  border: 1px solid var(--line);
}

.quote-card p {
  font-family: var(--heading);
  font-size: clamp(1.2rem, 1.6vw, 1.55rem);
}

.cta-layout {
  min-height: 0;
}

.cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 980px) {
  .container {
    width: min(100% - 32px, 760px);
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 82px;
    display: grid;
    gap: 0;
    padding: 14px;
    color: var(--text);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu a {
    padding: 14px;
  }

  .nav-dropdown {
    display: grid;
  }

  .nav-dropdown::after {
    display: none;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 14px;
    color: var(--text);
  }

  .nav-chevron {
    margin-right: 4px;
  }

  .nav-dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    padding: 0 0 8px 12px;
    border: 0;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown-menu a {
    min-height: 40px;
    padding: 10px 12px;
    font-size: 0.9rem;
    background: rgba(7, 61, 47, 0.035);
    border-color: rgba(7, 61, 47, 0.08);
    margin-bottom: 6px;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    display: block;
    transform: none;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    transform: none;
  }

  .nav-cta {
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding: 250px 0 58px;
  }

  .hero-grid,
  .feature-grid,
  .alt .feature-grid,
  .authority-layout,
  .testimonial-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 330px;
    height: 330px;
  }

  .trust-inner,
  .cta-layout,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .logos,
  .service-grid,
  .pricing-grid,
  .quote-grid,
  .content-grid,
  .authority-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .stats-grid strong {
    font-size: clamp(1.75rem, 3.6vw, 2.7rem);
  }

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

  .pillar-grid,
  .outcome-grid,
  .system-flow {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 38px;
  }

  .split-section,
  .founder-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .flow-line {
    display: none;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 560px);
  }

  .intro-section,
  .feature-section,
  .pricing,
  .testimonial-cards,
  .content-section,
  .faq,
  .services,
  .authority {
    padding: 74px 0;
  }

  h1 {
    font-size: clamp(2.45rem, 9.5vw, 3.45rem);
  }

  h2 {
    font-size: clamp(1.85rem, 8vw, 2.55rem);
  }

  .hero-actions,
  .hero-actions .btn,
  .final-cta .btn {
    width: 100%;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 290px;
    height: 290px;
  }

  .card-one {
    left: 8px;
  }

  .card-two {
    right: 8px;
  }

  .dashboard-card {
    width: 170px;
    bottom: 5%;
  }

  .cta-layout h2 {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
  }

  .hero-score-row {
    grid-template-columns: 1fr;
  }

  .hero-score-row div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .logos,
  .service-grid,
  .pricing-grid,
  .quote-grid,
  .content-grid,
  .stats-grid,
  .authority-grid {
    grid-template-columns: 1fr;
  }

  .trust-stats,
  .pillar-grid,
  .outcome-grid,
  .case-grid,
  .systems-grid {
    grid-template-columns: 1fr;
  }

  .system-flow {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 38px;
    padding: 8px 0 0 34px;
  }

  .system-flow::before {
    content: "";
    position: absolute;
    left: 11px;
    top: 28px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg, var(--accent), rgba(7, 61, 47, 0.08));
  }

  .flow-stage {
    display: grid;
    grid-template-columns: 52px 1fr;
    grid-template-areas:
      "node num"
      "node title"
      "node text";
    column-gap: 18px;
    padding: 0 0 34px;
  }

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

  .flow-stage span {
    grid-area: num;
    margin: 0 0 4px;
    font-size: 0.68rem;
  }

  .flow-node {
    grid-area: node;
    width: 42px;
    height: 42px;
    margin: 2px 0 0;
    box-shadow: 0 10px 24px rgba(8, 34, 27, 0.08);
  }

  .flow-node::before {
    inset: 10px;
  }

  .flow-node::after {
    inset: 17px;
  }

  .flow-stage h3 {
    grid-area: title;
    font-size: 1.2rem;
  }

  .flow-stage p {
    grid-area: text;
    margin-top: 7px;
    font-size: 0.92rem;
  }

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

  .core-positioning,
  .growth-system,
  .services,
  .case-studies,
  .standalone-stats,
  .pricing,
  .testimonial-cards,
  .faq {
    padding: 74px 0;
  }

  .pillar-card,
  .outcome-card,
  .case-card,
  .system-card {
    min-height: 0;
    padding: 24px;
  }

  .case-logo {
    height: 120px;
  }

  .cta-actions,
  .cta-actions .btn {
    width: 100%;
  }

  .stats-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    text-align: center;
    padding: 24px 18px;
  }

  .stats-grid div:last-child {
    border-bottom: 0;
  }

  .stats-grid strong {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .mock-window,
  .analytics-card,
  .campaign-board {
    min-height: 360px;
    padding: 20px;
  }

  blockquote {
    padding: 32px;
  }

  .footer-inner div {
    flex-wrap: wrap;
  }

  .cta-layout img {
    display: none;
  }

  .mobile-float {
    position: fixed;
    z-index: 45;
    left: 16px;
    right: 16px;
    bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    color: #fff;
    background: var(--primary);
    box-shadow: 0 18px 50px rgba(8, 34, 27, 0.28);
    font-weight: 800;
  }
}
