:root {
  --ink: #101c1b;
  --ink-soft: #4b5d59;
  --ivory: #f7f0e6;
  --paper: #fffaf1;
  --mint: #dcefe7;
  --teal: #246f69;
  --teal-dark: #123f3d;
  --coral: #ef654f;
  --gold: #e5b84f;
  --sky: #8cced7;
  --leaf: #b9d46f;
  --clay: #c47f56;
  --line: rgba(23, 32, 31, 0.14);
  --shadow: 0 24px 60px rgba(16, 28, 27, 0.17);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.96), rgba(247, 240, 230, 0.96)),
    repeating-linear-gradient(90deg, rgba(36, 111, 105, 0.06) 0 1px, transparent 1px 96px);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 16px;
  left: 50%;
  display: flex;
  width: min(1120px, calc(100% - 32px));
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 12px 10px 10px;
  color: var(--paper);
  background: rgba(23, 32, 31, 0.46);
  border: 1px solid rgba(255, 250, 242, 0.22);
  border-radius: var(--radius);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.site-header.scrolled {
  color: var(--ink);
  background: rgba(255, 250, 242, 0.92);
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(23, 32, 31, 0.10);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 800;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--paper);
  background:
    linear-gradient(135deg, var(--teal-dark), var(--teal) 58%, var(--coral));
  border-radius: 7px;
  font-size: 0.82rem;
  overflow: hidden;
}

.brand-mark::after {
  position: absolute;
  right: 7px;
  bottom: 8px;
  width: 14px;
  height: 3px;
  background: var(--gold);
  border-radius: 99px;
  transform: rotate(-28deg);
  content: "";
}

.brand-name {
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 9px 12px;
  border-radius: 7px;
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 250, 242, 0.16);
  outline: none;
}

.site-header.scrolled .site-nav a:hover,
.site-header.scrolled .site-nav a:focus-visible {
  background: var(--mint);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 10px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  align-items: center;
  overflow: hidden;
  padding: 138px 0 76px;
  color: var(--paper);
  isolation: isolate;
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 72vh;
  align-items: end;
  overflow: hidden;
  padding: 142px 0 74px;
  color: var(--paper);
  isolation: isolate;
}

.hero-image,
.hero-overlay,
.page-hero-image,
.page-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image,
.page-hero-image {
  z-index: -2;
  object-fit: cover;
  object-position: center;
}

.hero-overlay,
.page-hero-overlay {
  z-index: -1;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 18, 17, 0.92) 0%, rgba(9, 18, 17, 0.78) 38%, rgba(9, 18, 17, 0.35) 72%, rgba(9, 18, 17, 0.56) 100%),
    repeating-linear-gradient(90deg, rgba(255, 250, 241, 0.08) 0 1px, transparent 1px 120px),
    linear-gradient(180deg, rgba(9, 18, 17, 0.12) 0%, rgba(9, 18, 17, 0.64) 100%);
}

.page-hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 18, 17, 0.94) 0%, rgba(9, 18, 17, 0.82) 48%, rgba(9, 18, 17, 0.48) 100%),
    repeating-linear-gradient(90deg, rgba(255, 250, 241, 0.08) 0 1px, transparent 1px 116px),
    linear-gradient(180deg, rgba(9, 18, 17, 0.06) 0%, rgba(9, 18, 17, 0.70) 100%);
}

.hero-content {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.page-hero-content {
  max-width: 880px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.47fr);
  gap: 52px;
  align-items: center;
}

.hero-main {
  max-width: 760px;
}

.brand-pill {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
}

.brand-pill span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 250, 241, 0.24);
  border-radius: 7px;
  color: rgba(255, 250, 241, 0.88);
  background: rgba(255, 250, 241, 0.10);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(2.9rem, 5.8vw, 6.25rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.page-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.6rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-tagline {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--gold);
  font-size: clamp(1.55rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.02;
}

.hero-copy {
  max-width: 650px;
  margin: 14px 0 0;
  color: rgba(255, 250, 242, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.lift-board {
  position: relative;
  overflow: hidden;
  padding: 20px;
  color: var(--ink);
  background: rgba(255, 250, 241, 0.92);
  border: 1px solid rgba(255, 250, 241, 0.38);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.lift-board::before {
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: linear-gradient(90deg, var(--coral), var(--gold), var(--sky), var(--leaf));
  content: "";
}

.lift-board-header,
.lift-board-path,
.lift-findings p,
.audit-panel-header,
.audit-meter > div,
.audit-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.lift-board-header {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lift-board-header strong {
  color: var(--teal-dark);
}

.lift-score {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 8px;
  align-items: end;
  margin: 26px 0;
}

.lift-score span {
  max-width: 120px;
  color: var(--ink-soft);
  font-weight: 900;
  line-height: 1.1;
}

.lift-score strong {
  color: var(--teal-dark);
  font-size: clamp(4.5rem, 10vw, 6.5rem);
  line-height: 0.78;
}

.lift-score small {
  align-self: end;
  margin-bottom: 5px;
  color: var(--ink-soft);
  font-size: 1rem;
  font-weight: 900;
}

.lift-board-path {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  position: relative;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.lift-board-path::before {
  position: absolute;
  right: 18px;
  left: 18px;
  top: 50%;
  height: 2px;
  background: rgba(36, 111, 105, 0.24);
  content: "";
}

.lift-board-path span {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 0;
  min-height: 38px;
  place-items: center;
  padding: 7px 9px;
  border: 1px solid rgba(36, 111, 105, 0.16);
  border-radius: 7px;
  background: #fffefb;
  color: var(--teal-dark);
  font-size: 0.83rem;
  font-weight: 900;
}

.lift-findings {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.lift-priorities {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.lift-priorities div {
  display: grid;
  gap: 6px;
  padding: 12px;
  border: 1px solid rgba(36, 111, 105, 0.14);
  border-radius: 7px;
  background:
    linear-gradient(135deg, rgba(220, 239, 231, 0.82), rgba(255, 250, 241, 0.92));
}

.lift-priorities span {
  color: var(--coral);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lift-priorities strong {
  color: var(--teal-dark);
  line-height: 1.22;
}

.lift-findings p {
  display: block;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(16, 28, 27, 0.10);
  border-radius: 7px;
  color: var(--ink-soft);
  background: #fffefb;
  font-size: 0.94rem;
}

.lift-findings strong {
  color: var(--ink);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button.primary {
  color: var(--paper);
  background: var(--coral);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #cb614a;
}

.button.secondary {
  color: var(--paper);
  border-color: rgba(255, 250, 242, 0.58);
  background: rgba(255, 250, 242, 0.10);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(255, 250, 242, 0.18);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-proof span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 250, 242, 0.22);
  border-radius: 7px;
  color: rgba(255, 250, 242, 0.82);
  background: rgba(255, 250, 242, 0.08);
  font-size: 0.84rem;
  font-weight: 800;
}

.full-width {
  width: 100%;
}

.intro-band {
  background:
    linear-gradient(90deg, rgba(220, 239, 231, 0.96), rgba(255, 246, 226, 0.96)),
    repeating-linear-gradient(135deg, rgba(36, 111, 105, 0.08) 0 1px, transparent 1px 18px);
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: 54px;
  align-items: center;
  padding: 54px 0;
}

h2,
h3,
p {
  overflow-wrap: anywhere;
}

h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.18;
  letter-spacing: 0;
}

h4 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.audit-copy p,
.contact-grid > div > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.method-stack {
  display: grid;
  gap: 12px;
}

.method-stack article {
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 16px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(18, 63, 61, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.72);
  box-shadow: 0 10px 26px rgba(16, 28, 27, 0.07);
}

.method-stack span {
  display: grid;
  width: 42px;
  height: 42px;
  grid-row: 1 / 3;
  place-items: center;
  color: var(--paper);
  background: var(--teal-dark);
  border-radius: 7px;
  font-size: 0.82rem;
  font-weight: 900;
}

.method-stack strong {
  font-size: 1.08rem;
  line-height: 1.2;
}

.method-stack p {
  margin: 4px 0 0;
  color: var(--ink-soft);
}

.section {
  padding: 88px 0;
}

section[id] {
  scroll-margin-top: 112px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
  margin-bottom: 36px;
}

.section-heading.compact {
  display: block;
  max-width: 790px;
}

.service-grid,
.package-grid,
.process-grid {
  display: grid;
  gap: 18px;
}

.service-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.systems-teaser-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.98), rgba(221, 239, 232, 0.96)),
    repeating-linear-gradient(90deg, rgba(36, 111, 105, 0.06) 0 1px, transparent 1px 92px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.systems-teaser {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 44px;
  align-items: center;
}

.systems-teaser-copy p:not(.section-kicker) {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.systems-teaser-copy .button {
  margin-top: 28px;
}

.systems-mini-grid {
  display: grid;
  gap: 14px;
}

.systems-mini-grid article {
  display: grid;
  grid-template-columns: 46px 1fr;
  column-gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(18, 63, 61, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.84);
  box-shadow: 0 12px 30px rgba(16, 28, 27, 0.08);
}

.systems-mini-grid span {
  display: grid;
  width: 40px;
  height: 40px;
  grid-row: 1 / 3;
  place-items: center;
  color: var(--paper);
  background: var(--teal-dark);
  border-radius: 7px;
  font-size: 0.78rem;
  font-weight: 900;
}

.systems-mini-grid strong {
  font-size: 1.08rem;
  line-height: 1.2;
}

.systems-mini-grid p {
  margin: 4px 0 0;
  color: var(--ink-soft);
}

.service-card,
.package-card,
.audit-panel,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.86);
  box-shadow: 0 12px 34px rgba(23, 32, 31, 0.08);
}

.service-card {
  position: relative;
  min-height: 244px;
  padding: 24px;
  overflow: hidden;
}

.service-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--teal), var(--sky), var(--gold), var(--coral));
  content: "";
}

.service-number {
  display: inline-block;
  margin-bottom: 40px;
  color: var(--teal);
  font-weight: 900;
}

.service-tag {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card p,
.package-card p,
.package-card li,
.process-grid p,
.form-note {
  color: var(--ink-soft);
}

.section-note {
  max-width: 360px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
}

.section-heading.compact .section-note {
  max-width: 620px;
  margin-top: 14px;
}

.proof-section {
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(18, 63, 61, 0.98), rgba(16, 28, 27, 0.98)),
    repeating-linear-gradient(90deg, rgba(255, 250, 241, 0.07) 0 1px, transparent 1px 90px);
  border-top: 1px solid rgba(255, 250, 242, 0.12);
  border-bottom: 1px solid rgba(255, 250, 242, 0.12);
}

.proof-section .section-kicker {
  color: var(--gold);
}

.proof-section h2 {
  color: var(--paper);
}

.proof-section .section-note {
  color: rgba(255, 250, 242, 0.74);
}

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

.proof-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(255, 250, 242, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.08);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
}

.proof-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--coral), var(--gold), var(--sky));
  content: "";
}

.proof-card strong {
  color: var(--gold);
  font-size: clamp(3rem, 5vw, 4.6rem);
  font-weight: 950;
  line-height: 0.9;
}

.proof-card h3 {
  margin-top: 18px;
  color: var(--paper);
  font-size: 1.08rem;
}

.proof-card p {
  margin: 12px 0 22px;
  color: rgba(255, 250, 242, 0.76);
}

.proof-source {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  align-self: flex-start;
  margin-top: auto;
  padding: 8px 10px;
  border: 1px solid rgba(229, 184, 79, 0.45);
  border-radius: 7px;
  color: var(--paper);
  font-size: 0.82rem;
  font-weight: 900;
}

.proof-source:hover,
.proof-source:focus-visible {
  color: var(--ink);
  background: var(--gold);
  outline: none;
}

.specialist-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.96), rgba(229, 239, 235, 0.96)),
    repeating-linear-gradient(90deg, rgba(36, 111, 105, 0.055) 0 1px, transparent 1px 88px);
}

.specialist-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1.12fr);
  gap: 46px;
  align-items: start;
}

.specialist-copy,
.niche-copy p {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

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

.specialist-points article {
  display: grid;
  grid-template-columns: 46px 1fr;
  column-gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(18, 63, 61, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.82);
  box-shadow: 0 12px 30px rgba(16, 28, 27, 0.08);
}

.specialist-points span {
  display: grid;
  width: 40px;
  height: 40px;
  grid-row: 1 / 3;
  place-items: center;
  color: var(--paper);
  background: var(--coral);
  border-radius: 7px;
  font-size: 0.78rem;
  font-weight: 900;
}

.specialist-points strong {
  font-size: 1.08rem;
  line-height: 1.2;
}

.specialist-points p {
  margin: 4px 0 0;
  color: var(--ink-soft);
}

.trust-section {
  background:
    linear-gradient(135deg, rgba(36, 111, 105, 0.08), rgba(229, 190, 91, 0.13)),
    var(--paper);
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
  gap: 28px;
  align-items: stretch;
}

.trust-copy {
  display: grid;
  align-content: center;
  gap: 18px;
}

.trust-copy h2 {
  max-width: 880px;
}

.trust-copy p:not(.section-kicker) {
  max-width: 760px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.trust-list {
  display: grid;
  gap: 12px;
}

.trust-list article {
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.78);
  box-shadow: 0 16px 42px rgba(36, 46, 49, 0.08);
}

.trust-list span {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  place-items: center;
  border-radius: 999px;
  color: var(--pine);
  background: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
}

.trust-list strong {
  display: block;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.2;
}

.trust-list p {
  margin: 8px 0 0;
  color: var(--ink-soft);
}

.muted-section {
  background:
    linear-gradient(180deg, rgba(242, 234, 220, 0.94), rgba(255, 244, 228, 0.96)),
    repeating-linear-gradient(90deg, rgba(196, 127, 86, 0.08) 0 1px, transparent 1px 80px);
}

.package-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  align-items: stretch;
}

.package-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 28px;
  border-top: 5px solid rgba(36, 111, 105, 0.22);
}

.package-card.featured {
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(18, 63, 61, 0.98), rgba(15, 44, 43, 0.98)),
    repeating-linear-gradient(135deg, rgba(255, 250, 241, 0.08) 0 1px, transparent 1px 18px);
  border-color: rgba(255, 250, 242, 0.12);
  border-top-color: var(--gold);
  box-shadow: var(--shadow);
}

.package-card.featured p,
.package-card.featured li {
  color: rgba(255, 250, 242, 0.78);
}

.package-card.featured .package-label {
  color: var(--gold);
}

.package-label {
  margin: 0 0 16px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.package-price {
  margin: 18px 0 8px;
  color: var(--teal);
  font-size: 1.65rem;
  font-weight: 900;
}

.featured .package-price {
  color: var(--mint);
}

.package-summary {
  min-height: 76px;
  margin: 0 0 12px;
}

.package-card ul {
  display: grid;
  gap: 10px;
  margin: 10px 0 28px;
  padding-left: 20px;
}

.bundle-panel {
  margin-top: 26px;
  padding: 28px;
  border: 1px solid rgba(18, 63, 61, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.92), rgba(221, 239, 232, 0.92)),
    repeating-linear-gradient(90deg, rgba(36, 111, 105, 0.07) 0 1px, transparent 1px 86px);
  box-shadow: 0 12px 34px rgba(23, 32, 31, 0.08);
}

.bundle-heading {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 22px;
}

.bundle-heading h3 {
  max-width: 690px;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.bundle-heading > p,
.bundle-note {
  max-width: 390px;
  margin: 0;
  color: var(--ink-soft);
}

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

.bundle-card {
  padding: 18px;
  border: 1px solid rgba(18, 63, 61, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.84);
}

.bundle-label {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.bundle-card ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--ink-soft);
}

.bundle-card strong {
  color: var(--teal-dark);
}

.bundle-note {
  max-width: 780px;
  margin-top: 18px;
  font-size: 0.94rem;
}

.system-path-grid,
.systems-detail-grid {
  display: grid;
  gap: 18px;
}

.system-path-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.system-path-card,
.systems-detail-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.86);
  box-shadow: 0 12px 34px rgba(23, 32, 31, 0.08);
}

.system-path-card::before,
.systems-detail-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--teal), var(--sky), var(--gold), var(--coral));
  content: "";
}

.system-path-card span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--teal);
  font-weight: 900;
}

.system-path-card p,
.systems-detail-card p,
.systems-question-grid p,
.systems-cta p {
  color: var(--ink-soft);
}

.systems-detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 36px;
}

.systems-detail-card {
  min-height: 246px;
}

.systems-question-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1.18fr);
  gap: 52px;
  align-items: start;
}

.systems-question-grid > div > p {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 250, 242, 0.72);
  font-size: 1.05rem;
}

.systems-question-list {
  display: grid;
  gap: 12px;
}

.systems-question-list p {
  margin: 0;
  padding: 16px 18px;
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: var(--radius);
  color: rgba(255, 250, 242, 0.82);
  background: rgba(255, 250, 242, 0.08);
  font-weight: 800;
}

.systems-cta-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.96), rgba(228, 243, 237, 0.96)),
    repeating-linear-gradient(0deg, rgba(36, 111, 105, 0.06) 0 1px, transparent 1px 92px);
}

.systems-cta {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
}

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

.systems-cta p:not(.section-kicker) {
  max-width: 670px;
  margin: 22px 0 0;
  font-size: 1.05rem;
}

.free-guide-strip {
  padding: 28px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.free-guide-card {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  padding: 24px;
  border: 1px solid rgba(18, 63, 61, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.96), rgba(220, 239, 231, 0.92)),
    repeating-linear-gradient(90deg, rgba(36, 111, 105, 0.07) 0 1px, transparent 1px 88px);
  box-shadow: 0 12px 34px rgba(23, 32, 31, 0.08);
}

.free-guide-card h2 {
  max-width: 720px;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.free-guide-card p:not(.section-kicker) {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.guide-preview-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.98), rgba(221, 239, 232, 0.96)),
    repeating-linear-gradient(90deg, rgba(36, 111, 105, 0.06) 0 1px, transparent 1px 92px);
}

.guide-preview-grid,
.guide-signup-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1.12fr);
  gap: 48px;
  align-items: start;
}

.guide-lead {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.guide-checklist {
  display: grid;
  gap: 14px;
}

.guide-checklist article {
  display: grid;
  grid-template-columns: 46px 1fr;
  column-gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(18, 63, 61, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.84);
  box-shadow: 0 12px 30px rgba(16, 28, 27, 0.08);
}

.guide-checklist span {
  display: grid;
  width: 40px;
  height: 40px;
  grid-row: 1 / 3;
  place-items: center;
  color: var(--paper);
  background: var(--coral);
  border-radius: 7px;
  font-size: 0.78rem;
  font-weight: 900;
}

.guide-checklist strong {
  font-size: 1.08rem;
  line-height: 1.2;
}

.guide-checklist p {
  margin: 4px 0 0;
  color: var(--ink-soft);
}

.guide-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.guide-proof span {
  padding: 10px 12px;
  border: 1px solid rgba(25, 73, 70, 0.16);
  border-radius: 7px;
  color: var(--teal-dark);
  background: var(--paper);
  font-weight: 800;
}

.guide-proof a {
  padding: 10px 12px;
  border: 1px solid rgba(25, 73, 70, 0.16);
  border-radius: 7px;
  color: var(--paper);
  background: var(--teal-dark);
  font-weight: 900;
}

.checkbox-label {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--teal);
}

.checkbox-label span {
  color: var(--ink-soft);
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  color: var(--coral);
  font-weight: 900;
}

.text-link::after {
  content: "->";
  margin-left: 8px;
}

.audit-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.96), rgba(228, 243, 237, 0.96)),
    repeating-linear-gradient(0deg, rgba(36, 111, 105, 0.06) 0 1px, transparent 1px 92px);
}

.example-section {
  background: #fffaf1;
}

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

.example-card {
  position: relative;
  display: grid;
  min-height: 320px;
  align-content: end;
  overflow: hidden;
  padding: 28px;
  border-radius: var(--radius);
  color: var(--paper);
  background: var(--teal-dark);
  isolation: isolate;
}

.example-card::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(14, 24, 23, 0.94), rgba(14, 24, 23, 0.56)),
    url("https://images.unsplash.com/photo-1763665814605-a6489a3bf2a0?auto=format&fit=crop&w=1500&q=82") center / cover;
  content: "";
}

.example-card.example-restaurant::before {
  background:
    linear-gradient(90deg, rgba(14, 24, 23, 0.92), rgba(14, 24, 23, 0.50)),
    url("https://images.unsplash.com/photo-1760322327968-d5a0184003bb?auto=format&fit=crop&w=1500&q=82") center / cover;
}

.example-card.example-flooring::before {
  background:
    linear-gradient(90deg, rgba(14, 24, 23, 0.92), rgba(14, 24, 23, 0.50)),
    url("https://images.unsplash.com/photo-1556912172-45b7abe8b7e1?auto=format&fit=crop&w=1500&q=82") center / cover;
}

.example-card.placeholder {
  color: var(--ink);
  background: var(--mint);
  border: 1px solid rgba(25, 73, 70, 0.14);
}

.example-card.placeholder::before {
  background:
    linear-gradient(135deg, rgba(220, 235, 228, 0.95), rgba(255, 250, 242, 0.86)),
    linear-gradient(45deg, rgba(47, 109, 104, 0.12), rgba(223, 118, 95, 0.10));
}

.example-label {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.example-card.placeholder .example-label {
  color: var(--teal);
}

.example-card h3 {
  max-width: 520px;
  font-size: clamp(1.65rem, 3vw, 2.75rem);
}

.example-card p:not(.example-label) {
  max-width: 570px;
  color: rgba(255, 250, 242, 0.78);
}

.example-card.placeholder p:not(.example-label) {
  color: var(--ink-soft);
}

.example-button {
  width: fit-content;
  margin-top: 22px;
  color: var(--ink);
  background: var(--gold);
}

.example-button:hover,
.example-button:focus-visible {
  background: #d7ad58;
}

.audit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  gap: 48px;
  align-items: center;
}

.audit-copy p {
  margin: 22px 0 0;
}

.audit-checklist {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.audit-checklist li {
  position: relative;
  padding: 14px 16px 14px 44px;
  border: 1px solid rgba(36, 111, 105, 0.14);
  border-radius: var(--radius);
  color: var(--ink-soft);
  background: rgba(255, 250, 241, 0.74);
}

.audit-checklist li::before {
  position: absolute;
  top: 15px;
  left: 16px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--gold));
  content: "";
}

.audit-checklist strong {
  color: var(--teal-dark);
}

.audit-panel {
  position: relative;
  padding: 24px;
  overflow: hidden;
}

.audit-panel::before {
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: linear-gradient(90deg, var(--teal), var(--sky), var(--gold), var(--coral));
  content: "";
}

.audit-panel-header {
  align-items: start;
  padding-top: 8px;
}

.audit-label {
  margin: 0 0 8px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.audit-score {
  display: grid;
  min-width: 112px;
  min-height: 112px;
  place-items: center;
  padding: 14px;
  border: 1px solid rgba(36, 111, 105, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #fffefb, #eff8f4);
}

.audit-score span {
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.audit-score strong {
  color: var(--teal-dark);
  font-size: 3rem;
  line-height: 0.86;
}

.audit-meters {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.audit-meter {
  display: grid;
  gap: 8px;
}

.audit-meter > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.audit-meter span {
  color: var(--ink-soft);
  font-weight: 850;
}

.audit-meter strong {
  color: var(--teal-dark);
}

.meter-track {
  display: block;
  width: 100%;
  height: 12px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(18, 63, 61, 0.10);
}

.meter-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--sky), var(--gold));
}

.w-74 {
  width: 74%;
}

.w-58 {
  width: 58%;
}

.w-44 {
  width: 44%;
}

.w-61 {
  width: 61%;
}

.audit-callout {
  align-items: start;
  margin-top: 28px;
  padding: 16px;
  border: 1px solid rgba(239, 101, 79, 0.18);
  border-radius: var(--radius);
  background: #fff6e8;
}

.audit-callout span {
  min-width: 128px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.audit-callout p {
  margin: 0;
  color: var(--ink-soft);
}

.dark-section {
  color: var(--paper);
  background: var(--ink);
}

.dark-section .section-kicker {
  color: var(--gold);
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 36px;
}

.process-grid article {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 250, 242, 0.26);
}

.process-grid span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 24px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 7px;
  font-weight: 900;
}

.process-grid p {
  color: rgba(255, 250, 242, 0.72);
}

.niche-section {
  background: var(--mint);
}

.niche-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1.22fr);
  gap: 48px;
  align-items: center;
}

.niche-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.niche-list span {
  padding: 12px 14px;
  border: 1px solid rgba(25, 73, 70, 0.16);
  border-radius: 7px;
  color: var(--teal-dark);
  background: var(--paper);
  font-weight: 800;
}

.contact-section {
  background: #fbf5ec;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(330px, 0.72fr);
  gap: 58px;
  align-items: start;
}

.contact-grid > div > p {
  margin-top: 24px;
  max-width: 630px;
}

.contact-actions {
  margin-top: 28px;
}

.contact-direct {
  display: grid;
  gap: 10px;
}

.contact-actions a {
  padding-bottom: 3px;
  color: var(--teal-dark);
  border-bottom: 2px solid var(--coral);
  font-weight: 900;
}

.contact-direct span {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fffefb;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(47, 109, 104, 0.18);
}

.form-note {
  margin: 0;
  font-size: 0.9rem;
}

.site-footer {
  padding: 28px 0;
  color: rgba(255, 250, 242, 0.72);
  background: var(--ink);
}

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

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--paper);
  font-weight: 900;
}

@media (max-width: 960px) {
  .service-grid,
  .proof-grid,
  .process-grid,
  .bundle-grid,
  .system-path-grid,
  .systems-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .lift-board {
    max-width: 560px;
  }

  .audit-grid,
  .example-grid,
  .niche-grid,
  .contact-grid,
  .intro-grid,
  .specialist-grid,
  .trust-grid,
  .systems-teaser,
  .systems-question-grid,
  .guide-preview-grid,
  .guide-signup-grid {
    grid-template-columns: 1fr;
  }

  .package-summary {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .container,
  .hero-content {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .brand-name {
    max-width: 52vw;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    display: none;
    min-width: 220px;
    flex-direction: column;
    align-items: stretch;
    padding: 8px;
    color: var(--ink);
    background: rgba(255, 250, 242, 0.98);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 18px 42px rgba(23, 32, 31, 0.16);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .hero-grid,
  .hero-main {
    min-width: 0;
    max-width: 100%;
  }

  .hero-main,
  .hero h1,
  .hero-tagline,
  .hero-copy {
    width: 100%;
  }

  .hero {
    min-height: 0;
    padding: 116px 0 68px;
  }

  .page-hero {
    min-height: 0;
    padding: 116px 0 68px;
  }

  .hero-image,
  .page-hero-image {
    object-position: 59% center;
  }

  .hero-overlay,
  .page-hero-overlay {
    background:
      linear-gradient(90deg, rgba(9, 18, 17, 0.92) 0%, rgba(9, 18, 17, 0.80) 100%),
      repeating-linear-gradient(90deg, rgba(255, 250, 241, 0.08) 0 1px, transparent 1px 82px),
      linear-gradient(180deg, rgba(9, 18, 17, 0.08) 0%, rgba(9, 18, 17, 0.68) 100%);
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.05rem, 8.4vw, 3.05rem);
    line-height: 1.02;
  }

  .page-hero h1 {
    font-size: clamp(3rem, 17vw, 5.2rem);
  }

  .hero-tagline {
    max-width: 100%;
    font-size: clamp(1.16rem, 5.5vw, 1.65rem);
    line-height: 1.08;
  }

  .section {
    padding: 64px 0;
  }

  .section-heading {
    display: block;
  }

  .bundle-heading {
    display: block;
  }

  .systems-cta {
    display: grid;
  }

  .free-guide-card {
    display: grid;
  }

  .bundle-heading > p {
    max-width: none;
    margin-top: 14px;
  }

  .section-note {
    max-width: none;
    margin-top: 16px;
  }

  .service-card {
    min-height: 0;
  }

  .service-number {
    margin-bottom: 32px;
  }

  .audit-panel-header,
  .audit-callout {
    display: grid;
  }

  .audit-score {
    width: 100%;
    min-height: 92px;
  }

  .footer-content {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 540px) {
  .service-grid,
  .proof-grid,
  .process-grid,
  .bundle-grid,
  .system-path-grid,
  .systems-detail-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-main,
  .hero h1,
  .hero-tagline,
  .hero-copy,
  .hero-actions,
  .hero-proof {
    max-width: 340px;
  }

  .hero-proof span {
    flex: 1 1 100%;
    justify-content: center;
  }

  .brand-pill {
    display: grid;
  }

  .lift-board {
    padding: 18px;
  }

  .lift-score {
    margin: 22px 0;
  }

  .button {
    padding-right: 14px;
    padding-left: 14px;
  }

  .intro-grid {
    padding: 42px 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;
  }
}
