:root {
  --forest: #0d2b14;
  --forest-mid: #17411f;
  --forest-light: #2d7a3a;
  --leaf: #4cbb5f;
  --gold: #d4a843;
  --sand: #f3ede2;
  --paper: #fafaf7;
  --paper-strong: #f6f4ee;
  --ink: #111410;
  --muted: #63685f;
  --line: rgba(17, 20, 16, 0.11);
  --line-strong: rgba(17, 20, 16, 0.18);
  --shadow: 0 20px 50px rgba(13, 43, 20, 0.08);
  --radius: 24px;
  --radius-sm: 16px;
  --nav-height: 76px;
  --wrap: 1120px;
  --font-sans: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top right, rgba(212, 168, 67, 0.12), transparent 26%),
    linear-gradient(180deg, #f8f6ef 0%, var(--paper) 24%, var(--paper) 100%);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.65;
  min-width: 320px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

a:hover,
a:focus-visible {
  color: var(--forest-light);
}

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

.wrap {
  width: min(calc(100% - 2.5rem), var(--wrap));
  margin: 0 auto;
}

.wrap-narrow {
  width: min(calc(100% - 2.5rem), 860px);
}

.section {
  padding: 5.75rem 0;
  scroll-margin-top: calc(var(--nav-height) + 18px);
}

.section-sm {
  padding: 0 0 1.5rem;
}

.section-alt {
  background: linear-gradient(180deg, rgba(243, 237, 226, 0.9), rgba(243, 237, 226, 0.62));
}

.skip-link,
.sr-only {
  position: absolute;
}

.skip-link {
  left: 1rem;
  top: -4rem;
  z-index: 300;
  background: var(--forest);
  color: #fff;
  padding: 0.75rem 1rem;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  backdrop-filter: blur(18px);
  background: rgba(250, 250, 247, 0.9);
  border-bottom: 1px solid rgba(17, 20, 16, 0.08);
}

.nav {
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo,
.footer-logo {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.05em;
  text-decoration: none;
}

.logo {
  font-size: 1.3rem;
}

.logo em,
.footer-logo em {
  color: var(--forest-light);
  font-style: normal;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links,
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-links a,
.footer-links a {
  text-decoration: none;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 500;
}

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

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  padding: 0.65rem 0.9rem;
  color: var(--ink);
}

.nav-btn,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-btn {
  background: var(--forest);
  color: #fff;
  padding: 0.8rem 1.2rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.btn {
  padding: 0.95rem 1.4rem;
  font-weight: 600;
}

.btn:hover,
.btn:focus-visible,
.nav-btn:hover,
.nav-btn:focus-visible,
.pkg-link:hover,
.pkg-link:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--forest);
  color: #fff;
  box-shadow: 0 14px 30px rgba(13, 43, 20, 0.16);
}

.btn-primary:hover,
.btn-primary:focus-visible,
.nav-btn:hover,
.nav-btn:focus-visible {
  background: var(--forest-mid);
}

.btn-secondary {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.52);
}

.hero {
  position: relative;
  overflow: clip;
  padding-top: 4.5rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 15%, rgba(45, 122, 58, 0.12), transparent 22%),
    radial-gradient(circle at 82% 8%, rgba(212, 168, 67, 0.14), transparent 19%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 2rem;
  align-items: end;
}

.hero-copy,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-eyebrow,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--forest-light);
}

.hero-eyebrow {
  padding: 0.5rem 0.85rem;
  border: 1px solid rgba(45, 122, 58, 0.22);
  background: rgba(255, 255, 255, 0.5);
}

.pulse {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--leaf);
  animation: pulse 1.8s ease-in-out infinite;
}

h1,
.section-title,
.hero-panel h2,
.pkg-name,
.step h3,
.sector h3,
.problem-card h3,
.cs-title,
.faq-question {
  font-family: var(--font-sans);
  letter-spacing: -0.04em;
  font-weight: 700;
}

h1 {
  margin: 0;
  max-width: 13ch;
  font-size: clamp(2.8rem, 7vw, 4.9rem);
  line-height: 0.98;
}

h1 span {
  color: var(--forest-light);
}

.hero-sub,
.section-sub,
.founder-copy,
.faq-answer p,
.cs-text,
.problem-card p,
.sector-pain,
.sector-result,
.step p,
.pkg-features li,
.pkg-time {
  color: var(--muted);
}

.hero-sub {
  max-width: 42rem;
  margin: 1.5rem 0 0;
  font-size: 1.125rem;
  line-height: 1.7;
}

.hero-fit {
  margin: 1rem 0 0;
  color: var(--forest);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.audit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}

.audit-list li {
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(17, 20, 16, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-panel {
  padding: 1.8rem;
  border: 1px solid rgba(17, 20, 16, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.hero-panel__eyebrow {
  margin: 0 0 0.75rem;
  color: var(--forest-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-panel h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.1;
}

.hero-panel__list {
  margin: 0;
  padding-left: 1rem;
  color: var(--muted);
}

.hero-panel__list li + li {
  margin-top: 0.75rem;
}

.trust-strip,
.problem-grid,
.packages-grid,
.steps,
.case-study-outcomes {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.trust-strip {
  grid-template-columns: repeat(4, 1fr);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.62));
}

.trust-item {
  padding: 1.3rem 1.15rem;
  background: rgba(255, 255, 255, 0.78);
}

.trust-item--highlight {
  background: rgba(13, 43, 20, 0.92);
}

.trust-item--highlight .trust-num {
  color: #fff;
}

.trust-item--highlight .trust-label {
  color: rgba(255, 255, 255, 0.72);
}

.trust-num {
  display: block;
  margin-bottom: 0.2rem;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--forest);
}

.trust-label,
.footer-copy,
.footer-meta {
  color: var(--muted);
  font-size: 0.92rem;
}

.section-title {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.02;
}

.section-sub {
  max-width: 42rem;
  margin: 1rem 0 0;
  font-size: 1.05rem;
  line-height: 1.72;
}

.section-note {
  margin: 0.9rem 0 0;
  color: var(--forest-light);
  font-size: 0.94rem;
}

.problem-grid,
.packages-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3rem;
}

.problem-card,
.pkg,
.step,
.case-study-outcome {
  background: var(--paper);
}

.problem-card {
  padding: 2rem 1.8rem 1.9rem;
  border-top: 3px solid rgba(45, 122, 58, 0.18);
}

.problem-card h3,
.step h3,
.sector h3 {
  margin: 0.8rem 0 0.55rem;
  font-size: 1.3rem;
}

.problem-kicker {
  margin: 0;
  color: var(--forest-light);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pkg {
  position: relative;
  padding: 2.2rem 1.8rem;
}

.pkg-featured {
  background: var(--forest);
  color: #fff;
}

.pkg-badge {
  position: absolute;
  right: 1.2rem;
  top: 1.2rem;
  background: var(--gold);
  color: var(--ink);
  padding: 0.28rem 0.7rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
}

.pkg-num,
.cs-tag,
.sector-tag,
.step-n {
  text-transform: uppercase;
}

.pkg-num,
.cs-tag,
.sector-tag {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.pkg-num {
  color: var(--muted);
}

.pkg-featured .pkg-num,
.pkg-featured .pkg-features li,
.pkg-featured .pkg-time {
  color: rgba(255, 255, 255, 0.74);
}

.pkg-name {
  margin: 0.45rem 0 0;
  font-size: 1.7rem;
  line-height: 1.08;
}

.pkg-price {
  margin: 0.35rem 0 0;
  font-family: var(--font-sans);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--forest);
}

.pkg-featured .pkg-price,
.pkg-featured .pkg-pitch {
  color: var(--gold);
}

.pkg-features {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.pkg-features li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.4rem;
  border-top: 1px solid rgba(17, 20, 16, 0.08);
}

.pkg-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--leaf);
}

.pkg-featured .pkg-features li {
  border-color: rgba(255, 255, 255, 0.1);
}

.pkg-pitch,
.upfront {
  margin: 1.3rem 0 0;
  font-style: italic;
}

.pkg-link {
  display: inline-block;
  margin-top: 1.1rem;
  color: inherit;
  font-weight: 700;
}

.upfront {
  padding: 1rem 1.2rem;
  border-left: 3px solid var(--forest-light);
  background: rgba(13, 43, 20, 0.05);
  color: var(--forest);
  font-size: 0.96rem;
}

#packages .packages-grid {
  margin-top: 2.5rem;
}

.compare-wrap {
  margin-top: 3rem;
  overflow-x: auto;
}

.compare {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
  border-radius: var(--radius);
  overflow: hidden;
}

.compare th,
.compare td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(17, 20, 16, 0.08);
  text-align: left;
}

.compare thead th {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.compare thead th:first-child {
  background: rgba(177, 42, 42, 0.08);
  color: #8b2020;
}

.compare thead th:last-child {
  background: rgba(13, 43, 20, 0.08);
  color: var(--forest);
}

.compare tbody td:first-child {
  color: #842424;
}

.compare tbody td:last-child {
  color: var(--forest);
  font-weight: 600;
}

.steps {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 3rem;
}

.step {
  padding: 2rem 1.5rem;
  background: var(--paper-strong);
}

.step-n {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1;
  color: rgba(13, 43, 20, 0.12);
}

.sectors-grid,
.cs-grid,
.founder-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

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

.sector {
  padding: 2rem 1.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
}

.sector-tag {
  color: var(--forest-light);
}

.sector h3 {
  line-height: 1.12;
}

.sector-result {
  margin: 1rem 0 0;
  color: var(--forest);
  font-weight: 600;
  line-height: 1.55;
}

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

.cs-card {
  border: 1px solid var(--line);
  border-top: 3px solid rgba(45, 122, 58, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 32px rgba(13, 43, 20, 0.05);
  display: flex;
  flex-direction: column;
}

.cs-header {
  position: relative;
  isolation: isolate;
  padding: 1.8rem 2rem 1rem;
  background: transparent;
  color: var(--ink);
}

.cs-header::after {
  content: attr(data-num);
  position: absolute;
  right: 1.35rem;
  top: 1.15rem;
  z-index: -1;
  font-family: var(--font-sans);
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1;
  color: rgba(13, 43, 20, 0.06);
}

.cs-tag {
  margin: 0;
  color: var(--forest-light);
}

.cs-title {
  margin: 0.55rem 0 0;
  font-size: 1.55rem;
  line-height: 1.08;
}

.cs-sector {
  margin: 0.8rem 0 0;
  color: var(--forest);
  font-size: 0.95rem;
  font-weight: 600;
}

.cs-body {
  padding: 0 2rem 2rem;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.cs-preview,
.cs-nda {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.cs-nda {
  margin-top: 1rem;
  align-self: flex-start;
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper-strong);
  font-size: 0.84rem;
}

.cs-context {
  margin: 0 0 0.45rem;
  color: var(--forest-light);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cs-preview + .cs-context {
  margin-top: 1.1rem;
}

.cs-points {
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
}

.cs-points li {
  position: relative;
  padding: 0.58rem 0 0.58rem 1.05rem;
  border-top: 1px solid rgba(17, 20, 16, 0.08);
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.cs-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.92rem;
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 999px;
  background: var(--forest-light);
}

.cs-link,
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  font-weight: 600;
}

.cs-link {
  margin-top: auto;
  padding-top: 1.4rem;
  color: var(--forest);
}

.cs-link::after {
  content: "→";
}

.back-link {
  margin-bottom: 1.4rem;
  color: var(--forest-light);
}

.back-link::before {
  content: "←";
}

.case-study-page {
  min-height: 100vh;
}

.case-study-shell {
  margin-top: 2.5rem;
}

.case-study-visual {
  margin: 1.5rem 0 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
}

.case-study-visual img {
  width: 100%;
  border-radius: calc(var(--radius) - 10px);
}

.case-study-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.case-study-band > div {
  padding: 1.35rem 1.25rem;
  background: rgba(255, 255, 255, 0.82);
}

.case-study-label {
  margin: 0 0 0.35rem;
  color: var(--forest-light);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.case-study-value {
  margin: 0;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.6;
}

.case-study-copy {
  margin-top: 1.5rem;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.case-study-copy h2 {
  margin: 0 0 0.8rem;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.case-study-copy h2:not(:first-child) {
  margin-top: 2rem;
}

.case-study-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.case-study-cta {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  background: rgba(13, 43, 20, 0.05);
}

.case-study-cta__title {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 700;
}

.case-study-cta__text {
  margin-top: 0.5rem !important;
}

.case-study-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1rem;
}

.case-study-outcomes {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1.8rem;
}

.case-study-outcome {
  padding: 1.2rem 1rem;
  background: var(--paper-strong);
}

.case-study-number {
  display: block;
  color: var(--forest);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.case-study-metric {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.founder-grid {
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
}

.founder-media {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
}

.founder-photo {
  width: 100%;
  border-radius: calc(var(--radius) - 8px);
  object-fit: cover;
  object-position: center 18%;
  aspect-ratio: 4 / 5;
  background: var(--forest);
}

.founder-title {
  margin-bottom: 1rem;
}

.founder-copy + .founder-copy {
  margin-top: 1rem;
}

.faq {
  margin-top: 3rem;
  border-top: 1px solid var(--line);
}

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

.faq-item h3 {
  margin: 0;
}

.faq-question {
  width: 100%;
  padding: 1.3rem 0;
  background: transparent;
  border: 0;
  color: var(--ink);
  text-align: left;
  font-size: 1.28rem;
  line-height: 1.15;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-question::after {
  content: "+";
  font-family: var(--font-sans);
  font-size: 1.7rem;
  color: var(--muted);
}

.faq-question[aria-expanded="true"]::after {
  content: "−";
}

.faq-answer {
  padding: 0 0 1.4rem;
  max-width: 44rem;
}

.faq-answer p {
  margin: 0;
}

.cta-section {
  background:
    radial-gradient(circle at top left, rgba(212, 168, 67, 0.18), transparent 22%),
    linear-gradient(180deg, var(--forest) 0%, #0a2210 100%);
  color: #fff;
}

.cta-section .eyebrow {
  color: var(--gold);
}

.cta-section .section-title,
.cta-section .section-sub,
.cta-meta,
.cta-meta a {
  color: inherit;
}

.cta-section .section-title,
.cta-section .section-sub {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.audit-list--light {
  justify-content: center;
}

.audit-list--light li {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.section-trust {
  background: linear-gradient(180deg, rgba(248, 246, 239, 0.25), rgba(243, 237, 226, 0.78));
}

.trust-compare {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: start;
}

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

.trust-proof {
  padding: 1.35rem 1.2rem;
  border-top: 3px solid rgba(45, 122, 58, 0.2);
  background: rgba(255, 255, 255, 0.72);
}

.trust-proof__title {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.trust-proof__text {
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.65;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-cta {
  background: var(--gold);
  color: var(--ink);
}

.btn-cta:hover,
.btn-cta:focus-visible {
  background: #e7ba56;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  background: #1fbd5a;
}

.cta-meta {
  margin: 1.3rem 0 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  background: #0d120e;
  color: #fff;
  padding: 2.25rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-logo {
  font-size: 1.1rem;
}

.footer-copy,
.footer-meta,
.footer-links a {
  color: rgba(255, 255, 255, 0.68);
}

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

.legal-copy {
  margin-top: 2rem;
  color: var(--muted);
}

.legal-copy p {
  margin: 0 0 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.88);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

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

@media (max-width: 980px) {
  .hero-grid,
  .trust-compare,
  .founder-grid,
  .cs-grid,
  .sectors-grid,
  .problem-grid,
  .packages-grid {
    grid-template-columns: 1fr;
  }

  .steps,
  .trust-strip,
  .trust-compare__grid,
  .case-study-band,
  .case-study-outcomes {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    top: calc(100% + 0.7rem);
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(250, 250, 247, 0.98);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

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

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-btn {
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 4.6rem 0;
  }

  .wrap,
  .wrap-narrow {
    width: min(calc(100% - 1.5rem), var(--wrap));
  }

  .steps,
  .trust-strip,
  .trust-compare__grid,
  .case-study-band,
  .case-study-outcomes {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3.2rem;
  }

  .audit-list {
    flex-direction: column;
  }

  h1 {
    max-width: 11ch;
  }

  .faq-question {
    font-size: 1.1rem;
  }

  .footer-links {
    width: 100%;
  }
}
