:root {
  --navy-950: #031126;
  --navy-900: #071d43;
  --navy-800: #0b2b58;
  --navy-700: #123d70;
  --teal-600: #08a9a4;
  --teal-500: #0cc2c1;
  --teal-400: #38d5cd;
  --teal-100: #d8f7f4;
  --ink: #0b1730;
  --slate: #4f6475;
  --muted: #718494;
  --line: #dce6ec;
  --line-strong: #c8d6de;
  --paper: #ffffff;
  --paper-soft: #f4f8fa;
  --paper-warm: #fbfcfb;
  --danger: #b73535;
  --success: #087d6f;
  --shadow-sm: 0 12px 32px rgba(7, 29, 67, .08);
  --shadow-md: 0 24px 70px rgba(7, 29, 67, .12);
  --shadow-lg: 0 40px 100px rgba(3, 17, 38, .18);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1180px;
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

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

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p,
ul,
ol,
blockquote,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy-900);
  line-height: 1.08;
  letter-spacing: -.035em;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 5.6rem);
  font-weight: 760;
}

h1 span {
  color: var(--teal-600);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 740;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
  font-weight: 720;
  letter-spacing: -.02em;
}

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

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

.section {
  position: relative;
  padding: 112px 0;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: #fff;
  background: var(--navy-900);
  border-radius: 10px;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: var(--header-height);
  background: rgba(255, 255, 255, .82);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .95);
  border-color: rgba(200, 214, 222, .7);
  box-shadow: 0 10px 36px rgba(7, 29, 67, .07);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

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

.brand img {
  width: 172px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: .92rem;
  font-weight: 650;
}

.site-nav > a:not(.button) {
  position: relative;
  color: var(--navy-800);
}

.site-nav > a:not(.button)::after {
  position: absolute;
  content: "";
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--teal-500);
  transition: right .2s ease;
}

.site-nav > a:not(.button):hover::after,
.site-nav > a:not(.button):focus-visible::after {
  right: 0;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  cursor: pointer;
}

.menu-button > span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy-900);
  transition: transform .2s ease, opacity .2s ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: .95rem;
  font-weight: 760;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

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

.button:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(12, 194, 193, .35);
  outline-offset: 3px;
}

.button-primary {
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--teal-400), var(--teal-500));
  box-shadow: 0 14px 32px rgba(12, 194, 193, .25);
}

.button-primary:hover {
  box-shadow: 0 20px 40px rgba(12, 194, 193, .35);
}

.button-secondary {
  color: var(--navy-900);
  background: #fff;
  border-color: #b9ccd6;
}

.button-secondary:hover,
.button-quiet:hover {
  border-color: var(--teal-500);
  box-shadow: var(--shadow-sm);
}

.button-quiet {
  color: var(--navy-900);
  background: rgba(255, 255, 255, .72);
  border-color: var(--line);
}

.button-small {
  min-height: 44px;
  padding: 11px 17px;
  border-radius: 12px;
  font-size: .88rem;
}

.button-large {
  min-height: 58px;
  padding: 17px 24px;
}

.button-full {
  width: 100%;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--navy-700);
  font-size: .76rem;
  font-weight: 820;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 8px 12px;
  border: 1px solid rgba(12, 194, 193, .24);
  border-radius: 999px;
  background: rgba(255, 255, 255, .66);
}

.section-kicker.light {
  color: var(--teal-400);
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--teal-500);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(12, 194, 193, .14);
}

.hero {
  min-height: auto;
  padding-top: calc(var(--header-height) + 76px);
  padding-bottom: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(12, 194, 193, .12), transparent 34%),
    linear-gradient(180deg, #f8fbfc 0%, #ffffff 82%);
}

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

.hero-orb-one {
  width: 430px;
  height: 430px;
  top: 110px;
  right: -160px;
  background: radial-gradient(circle, rgba(12, 194, 193, .14), transparent 68%);
}

.hero-orb-two {
  width: 360px;
  height: 360px;
  left: -190px;
  bottom: 80px;
  background: radial-gradient(circle, rgba(7, 29, 67, .08), transparent 68%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(420px, .88fr);
  gap: clamp(52px, 7vw, 96px);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-lead {
  max-width: 730px;
  margin-bottom: 34px;
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  color: var(--navy-800);
  font-size: .9rem;
  font-weight: 680;
}

.hero-assurance span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-assurance i {
  display: inline-grid;
  place-items: center;
  width: 21px;
  height: 21px;
  color: var(--navy-950);
  background: var(--teal-100);
  border-radius: 999px;
  font-style: normal;
  font-size: .72rem;
}

.hero-visual {
  position: relative;
  z-index: 2;
}

.presentation-slider {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px;
  gap: 16px;
  align-items: center;
  max-width: 510px;
  margin-inline: auto;
}

.slider-frame {
  padding: 14px;
  background: #fff;
  border: 1px solid rgba(183, 201, 211, .75);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}

.slider-topbar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 4px 3px 12px;
  color: var(--navy-700);
  font-size: .66rem;
  font-weight: 820;
  letter-spacing: .12em;
}

.slider-viewport {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #05070a;
  border-radius: 18px;
}

.vertical-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(7%);
  pointer-events: none;
  transition: opacity .55s ease, transform .65s cubic-bezier(.2, .75, .2, 1);
}

.vertical-slide.is-active {
  z-index: 2;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.vertical-slide.is-leaving {
  z-index: 1;
  opacity: 0;
  transform: translateY(-7%);
}

.vertical-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-caption {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 18px;
  min-height: 102px;
  padding: 18px 8px 4px;
  align-items: start;
}

.slider-caption span {
  display: block;
  margin-bottom: 4px;
  color: var(--teal-600);
  font-size: .63rem;
  font-weight: 840;
  letter-spacing: .11em;
}

.slider-caption strong {
  display: block;
  color: var(--navy-900);
  line-height: 1.3;
}

.slider-caption p {
  margin-bottom: 0;
  font-size: .82rem;
  line-height: 1.55;
}

.slider-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
}

.slider-arrow {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--navy-800);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}

.slider-arrow:hover {
  background: var(--teal-100);
  border-color: var(--teal-500);
}

.slider-dots {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.slider-dot {
  width: 8px;
  height: 28px;
  padding: 0;
  background: #cad7de;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: height .2s ease, background .2s ease;
}

.slider-dot.is-active {
  height: 42px;
  background: var(--teal-500);
}

.proof-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 78px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .82);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.proof-bar div {
  padding: 24px 26px;
  border-right: 1px solid var(--line);
}

.proof-bar div:last-child {
  border-right: 0;
}

.proof-bar strong,
.proof-bar span {
  display: block;
}

.proof-bar strong {
  margin-bottom: 2px;
  color: var(--navy-900);
  font-size: 1rem;
}

.proof-bar span {
  color: var(--muted);
  font-size: .82rem;
}

.problem-section {
  padding-top: 72px;
  background: var(--paper);
}

.split-heading {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(54px, 8vw, 110px);
  align-items: end;
  margin-bottom: 56px;
}

.split-heading h2 {
  margin-bottom: 0;
}

.split-heading > p {
  margin-bottom: 5px;
  font-size: 1.08rem;
}

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

.comparison-card {
  min-height: 360px;
  padding: clamp(30px, 4vw, 48px);
  border-radius: var(--radius-lg);
}

.comparison-muted {
  background: var(--paper-soft);
  border: 1px solid var(--line);
}

.comparison-positive {
  background: linear-gradient(145deg, var(--navy-900), #0a315b);
  box-shadow: var(--shadow-md);
}

.comparison-positive h3,
.comparison-positive p,
.comparison-positive li {
  color: #fff;
}

.comparison-label {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--teal-600);
  font-size: .72rem;
  font-weight: 840;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.comparison-positive .comparison-label {
  color: var(--teal-400);
}

.comparison-card h3 {
  max-width: 480px;
  margin-bottom: 28px;
  font-size: clamp(1.65rem, 2.7vw, 2.5rem);
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--slate);
}

.check-list li::before {
  position: absolute;
  content: "✓";
  left: 0;
  top: .05em;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: var(--navy-950);
  background: var(--teal-100);
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 900;
}

.check-list.negative li::before {
  content: "–";
  color: var(--muted);
  background: #e5ecef;
}

.comparison-positive .check-list li::before {
  background: var(--teal-500);
}

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

.section-heading {
  max-width: 840px;
  margin-bottom: 58px;
}

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

.section-heading p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.07rem;
}

.workflow-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 70px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.workflow-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow-sm);
}

.workflow-card-output {
  border-color: rgba(12, 194, 193, .45);
  box-shadow: 0 22px 70px rgba(12, 194, 193, .11);
}

.workflow-image {
  aspect-ratio: 8 / 5;
  overflow: hidden;
  background: #05070a;
}

.workflow-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.workflow-card figcaption {
  padding: 28px 30px 30px;
}

.workflow-card figcaption > span {
  display: block;
  margin-bottom: 9px;
  color: var(--teal-600);
  font-size: .72rem;
  font-weight: 840;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.workflow-card figcaption h3 {
  font-size: 1.55rem;
}

.workflow-card figcaption p {
  margin-bottom: 0;
  font-size: .93rem;
}

.workflow-arrow {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: auto;
  color: var(--navy-950);
  background: var(--teal-500);
  border-radius: 999px;
  font-size: 1.5rem;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(12, 194, 193, .25);
}

.included-section {
  background: #fff;
}

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

.deliverable-card {
  min-height: 270px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.deliverable-card:hover {
  transform: translateY(-5px);
  border-color: rgba(12, 194, 193, .55);
  box-shadow: var(--shadow-md);
}

.deliverable-card p {
  margin-bottom: 0;
  font-size: .94rem;
}

.icon-box {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 26px;
  color: var(--teal-600);
  background: var(--teal-100);
  border-radius: 15px;
}

.icon-box svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.seo-section {
  padding-top: 34px;
  background: #fff;
}

.seo-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(50px, 8vw, 110px);
  padding: clamp(42px, 6vw, 76px);
  color: #fff;
  background:
    radial-gradient(circle at 84% 15%, rgba(12, 194, 193, .18), transparent 30%),
    linear-gradient(145deg, var(--navy-950), var(--navy-800));
  border-radius: 36px;
  box-shadow: var(--shadow-lg);
}

.seo-card h2 {
  color: #fff;
}

.seo-copy p {
  color: #c8d6df;
}

.seo-copy p:first-child {
  font-size: 1.08rem;
}

.seo-points {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.seo-points li {
  position: relative;
  padding-left: 24px;
  color: #fff;
  font-weight: 650;
}

.seo-points li::before {
  position: absolute;
  content: "";
  left: 0;
  top: .67em;
  width: 8px;
  height: 8px;
  background: var(--teal-500);
  border-radius: 999px;
}

.process-section {
  background: var(--paper-warm);
}

.process-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(60px, 9vw, 130px);
  align-items: start;
}

.process-intro {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.process-intro p {
  max-width: 470px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 13px;
  color: var(--navy-900);
  font-weight: 780;
}

.text-link span {
  color: var(--teal-600);
  transition: transform .2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.process-list {
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.process-list li {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 24px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}

.process-list h3 {
  margin-bottom: 8px;
  font-size: 1.46rem;
}

.process-list p {
  margin-bottom: 0;
}

.step-number {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--navy-950);
  background: var(--teal-100);
  border-radius: 18px;
  font-size: .86rem;
  font-weight: 860;
}

.positioning-section {
  padding-top: 0;
  padding-bottom: 0;
  background: var(--paper-warm);
}

.positioning-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  padding: clamp(40px, 6vw, 72px);
  background:
    linear-gradient(120deg, rgba(12, 194, 193, .09), transparent 42%),
    var(--navy-900);
  border-radius: 34px;
  box-shadow: var(--shadow-lg);
}

.positioning-card h2 {
  margin-bottom: 0;
  color: #fff;
}

.positioning-points {
  display: grid;
  gap: 18px;
}

.positioning-points p {
  margin-bottom: 0;
  color: #d5e1e8;
}

.positioning-points strong {
  color: var(--teal-400);
}

.pricing-section {
  background: linear-gradient(180deg, var(--paper-warm), #fff);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 520px;
  padding: 30px 26px 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

.price-card-featured {
  border-color: rgba(12, 194, 193, .78);
  box-shadow: 0 24px 70px rgba(12, 194, 193, .14);
  transform: translateY(-10px);
}

.price-card-starter {
  background: linear-gradient(180deg, #f4fffd, #fff 42%);
  border-color: rgba(12, 194, 193, .38);
}

.price-badge {
  position: absolute;
  top: 0;
  left: 50%;
  padding: 8px 15px;
  color: var(--navy-950);
  background: var(--teal-500);
  border-radius: 0 0 12px 12px;
  font-size: .69rem;
  font-weight: 860;
  letter-spacing: .08em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.plan-name {
  display: block;
  margin-bottom: 18px;
  color: var(--navy-700);
  font-size: .78rem;
  font-weight: 820;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.price-card h3 {
  display: flex;
  align-items: flex-start;
  gap: 3px;
  margin-bottom: 3px;
  font-size: 3.3rem;
  letter-spacing: -.06em;
}

.price-card h3 sup {
  padding-top: 9px;
  font-size: 1.15rem;
  letter-spacing: 0;
}

.price-note {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: .88rem;
}

.check-list.compact {
  gap: 12px;
  margin-bottom: 30px;
  font-size: .88rem;
}

.pack-balance-note {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px 28px;
  margin-top: 32px;
  padding: 18px 24px;
  color: var(--navy-900);
  background: var(--teal-100);
  border: 1px solid rgba(12, 194, 193, .28);
  border-radius: 16px;
  text-align: center;
}

.pack-balance-note span {
  color: var(--slate);
}

.audience-section {
  padding-top: 20px;
  background: #fff;
}

.audience-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  align-items: center;
  padding: 54px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.audience-copy h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.4vw, 3.3rem);
}

.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.audience-tags span {
  padding: 12px 16px;
  color: var(--navy-800);
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 690;
}

.about-section {
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(320px, .78fr) minmax(0, 1.22fr);
  gap: clamp(60px, 9vw, 120px);
  align-items: center;
}

.about-image {
  position: relative;
  overflow: hidden;
  background: #05070a;
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
}

.about-image-label {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 17px 20px;
  background: rgba(3, 17, 38, .82);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  backdrop-filter: blur(12px);
}

.about-image-label strong,
.about-image-label span {
  display: block;
}

.about-image-label strong {
  color: #fff;
}

.about-image-label span {
  color: var(--teal-400);
  font-size: .82rem;
}

.about-copy h2 {
  max-width: 720px;
}

.about-lead {
  color: var(--navy-700);
  font-size: 1.12rem;
}

.about-copy blockquote {
  position: relative;
  margin: 32px 0;
  padding: 22px 26px 22px 32px;
  color: var(--navy-900);
  background: var(--paper-soft);
  border-left: 4px solid var(--teal-500);
  border-radius: 0 16px 16px 0;
  font-size: 1.05rem;
  font-weight: 680;
}

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

.about-stats div {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.about-stats strong,
.about-stats span {
  display: block;
}

.about-stats strong {
  margin-bottom: 2px;
  color: var(--navy-900);
  font-size: .93rem;
}

.about-stats span {
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.45;
}

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

.faq-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(60px, 9vw, 120px);
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.faq-heading h2 {
  font-size: clamp(2.3rem, 4vw, 3.7rem);
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

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

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

.faq-item button span {
  flex: 0 0 auto;
  color: var(--teal-600);
  font-size: 1.35rem;
  transition: transform .2s ease;
}

.faq-item button[aria-expanded="true"] span {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 52px 24px 0;
}

.faq-answer p {
  margin-bottom: 0;
}

.contact-section {
  padding-top: 92px;
  padding-bottom: 92px;
  background: #fff;
}

.contact-card {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(48px, 8vw, 90px);
  padding: clamp(38px, 6vw, 74px);
  color: #fff;
  background:
    radial-gradient(circle at 12% 10%, rgba(12, 194, 193, .18), transparent 30%),
    linear-gradient(145deg, var(--navy-950), var(--navy-800));
  border-radius: 36px;
  box-shadow: var(--shadow-lg);
}

.contact-copy h2 {
  color: #fff;
}

.contact-copy > p {
  color: #d0dde5;
}

.contact-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 34px 0;
}

.contact-summary div {
  padding: 17px 14px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
}

.contact-summary strong,
.contact-summary span {
  display: block;
}

.contact-summary strong {
  color: var(--teal-400);
  font-size: .9rem;
}

.contact-summary span {
  color: #c7d4dd;
  font-size: .7rem;
  line-height: 1.4;
}

.email-link {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .35);
  font-weight: 700;
}

.lead-form {
  padding: 30px;
  color: var(--ink);
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.lead-form label {
  display: block;
  margin-bottom: 15px;
}

.lead-form label > span:not(.button-label):not(.button-loading) {
  display: block;
  margin-bottom: 7px;
  color: var(--navy-800);
  font-size: .8rem;
  font-weight: 740;
}

.lead-form label em {
  color: var(--muted);
  font-style: normal;
  font-weight: 540;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  color: var(--ink);
  background: var(--paper-soft);
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.lead-form input,
.lead-form select {
  height: 50px;
  padding: 0 13px;
}

.lead-form textarea {
  min-height: 110px;
  padding: 13px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  background: #fff;
  border-color: var(--teal-500);
  box-shadow: 0 0 0 4px rgba(12, 194, 193, .11);
  outline: 0;
}

.lead-form .is-invalid {
  border-color: var(--danger);
  box-shadow: 0 0 0 4px rgba(183, 53, 53, .1);
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: .75rem;
  text-align: center;
}

.form-status {
  min-height: 24px;
  margin-top: 9px;
  font-size: .82rem;
  font-weight: 660;
  text-align: center;
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-error {
  color: var(--danger);
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
}

.site-footer {
  padding: 64px 0 28px;
  color: #d1dde5;
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .7fr .9fr;
  gap: 60px;
  padding-bottom: 42px;
}

.footer-brand img {
  width: 176px;
  height: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: .92;
}

.footer-brand p {
  max-width: 420px;
  margin-bottom: 0;
  color: #9fb0bd;
  font-size: .9rem;
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 11px;
  font-size: .88rem;
}

.footer-links a,
.footer-contact a {
  color: #fff;
  font-weight: 660;
}

.footer-contact span {
  color: #94a8b6;
}

.footer-disclosures {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-disclosures details {
  padding: 12px 16px;
  background: rgba(255, 255, 255, .04);
  border-radius: 10px;
}

.footer-disclosures summary {
  color: #fff;
  font-size: .8rem;
  font-weight: 720;
  cursor: pointer;
}

.footer-disclosures p {
  margin: 10px 0 0;
  color: #9fb0bd;
  font-size: .75rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  color: #8298a8;
  font-size: .78rem;
}

.mobile-cta {
  display: none;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2, .75, .2, 1);
}

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

@media (max-width: 1080px) {
  :root {
    --header-height: 76px;
  }

  .site-nav {
    gap: 18px;
    font-size: .86rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
    gap: 50px;
  }

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

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

@media (max-width: 860px) {
  .section {
    padding: 88px 0;
  }

  .menu-button {
    display: block;
  }

  .menu-button[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    gap: 0;
    padding: 18px 20px 24px;
    background: rgba(255, 255, 255, .98);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform .25s ease, opacity .25s ease, visibility .25s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .site-nav > a:not(.button) {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav > a:not(.button)::after {
    display: none;
  }

  .site-nav .button {
    margin-top: 16px;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 58px);
  }

  .hero-grid,
  .split-heading,
  .process-layout,
  .positioning-card,
  .seo-card,
  .audience-grid,
  .about-grid,
  .faq-layout,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 60px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy h1,
  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-assurance {
    justify-content: center;
  }

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

  .proof-bar div:nth-child(2) {
    border-right: 0;
  }

  .proof-bar div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .split-heading {
    align-items: start;
    gap: 24px;
  }

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

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

  .workflow-arrow {
    transform: rotate(90deg);
  }

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

  .seo-card,
  .positioning-card,
  .contact-card {
    gap: 34px;
  }

  .process-intro,
  .faq-heading {
    position: static;
  }

  .audience-grid {
    gap: 34px;
  }

  .about-grid {
    gap: 50px;
  }

  .about-image {
    max-width: 520px;
    margin-inline: auto;
  }

  .footer-grid {
    grid-template-columns: 1.25fr .75fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  :root {
    --header-height: 70px;
  }

  body {
    padding-bottom: 68px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 74px 0;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 3.55rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .brand img {
    width: 150px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 46px);
    padding-bottom: 34px;
  }

  .eyebrow {
    justify-content: center;
    padding: 7px 10px;
    font-size: .66rem;
  }

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

  .hero-actions {
    display: grid;
  }

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

  .hero-assurance {
    display: grid;
    justify-content: start;
    max-width: 320px;
    margin-inline: auto;
    text-align: left;
  }

  .presentation-slider {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .slider-frame {
    padding: 10px;
    border-radius: 20px;
  }

  .slider-caption {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 142px;
  }

  .slider-rail {
    flex-direction: row;
    justify-content: center;
  }

  .slider-dots {
    flex-direction: row;
  }

  .slider-dot {
    width: 28px;
    height: 8px;
  }

  .slider-dot.is-active {
    width: 42px;
    height: 8px;
  }

  .slider-arrow {
    transform: rotate(-90deg);
  }

  .proof-bar {
    margin-top: 52px;
  }

  .proof-bar div {
    padding: 18px 16px;
  }

  .problem-section {
    padding-top: 60px;
  }

  .comparison-card {
    min-height: 0;
    padding: 28px;
    border-radius: 24px;
  }

  .workflow-card figcaption {
    padding: 23px;
  }

  .deliverables-grid,
  .pricing-grid,
  .form-row,
  .contact-summary,
  .about-stats,
  .footer-disclosures,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .seo-card,
  .positioning-card,
  .contact-card {
    width: min(calc(100% - 20px), var(--container));
    padding: 30px 24px;
    border-radius: 26px;
  }

  .process-list li {
    grid-template-columns: 58px 1fr;
    gap: 18px;
  }

  .step-number {
    width: 50px;
    height: 50px;
    border-radius: 14px;
  }

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

  .pack-balance-note {
    display: grid;
  }

  .about-copy blockquote {
    padding: 20px 20px 20px 24px;
  }

  .lead-form {
    padding: 22px;
  }

  .footer-contact {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
    text-align: center;
  }

  .mobile-cta {
    position: fixed;
    z-index: 1100;
    left: 10px;
    right: 10px;
    bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 12px 18px;
    color: var(--navy-950);
    background: linear-gradient(135deg, var(--teal-400), var(--teal-500));
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 14px;
    box-shadow: 0 16px 44px rgba(3, 17, 38, .35);
    font-size: .9rem;
    font-weight: 820;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

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


/* =========================================================
   AUDIT-REFINED V2.1
   Compact single-page hierarchy; no fabricated social proof.
   ========================================================= */

.workflow-process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
  border-top: 0;
}

.workflow-process-list li {
  display: block;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
}

.workflow-process-list .step-number {
  margin-bottom: 20px;
}

.workflow-cta {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

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

.deliverable-card {
  min-height: 250px;
  padding: 28px 25px;
}

.price-note {
  margin-bottom: 6px;
}

.price-card-starter .price-note {
  margin-bottom: 30px;
}

.saving-note {
  display: block;
  margin-bottom: 26px;
  color: var(--teal-700);
  font-size: .78rem;
  font-weight: 820;
  letter-spacing: .02em;
}

.about-section {
  padding: 66px 0;
  background: #fff;
}

.about-compact {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  padding: clamp(28px, 4vw, 44px);
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: 28px;
}

.about-portrait {
  overflow: hidden;
  aspect-ratio: 5 / 6;
  background: #05070a;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-compact-copy h2 {
  max-width: 850px;
  margin-bottom: 13px;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
}

.about-compact-copy p {
  max-width: 850px;
  margin-bottom: 16px;
  color: var(--slate);
  font-size: 1rem;
}

.about-founder-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  align-items: baseline;
}

.about-founder-meta strong {
  color: var(--navy-900);
}

.about-founder-meta span {
  color: var(--teal-700);
  font-size: .86rem;
  font-weight: 720;
}

.testimonial-card {
  padding: 42px;
  background: var(--navy-900);
  border-radius: 28px;
}

.testimonial-card blockquote {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(1.4rem, 3vw, 2.25rem);
  font-weight: 650;
  line-height: 1.35;
}

.testimonial-card cite {
  color: var(--teal-400);
  font-style: normal;
}

@media (max-width: 1050px) {
  .deliverables-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .workflow-process-list {
    grid-template-columns: 1fr;
  }

  .workflow-process-list li {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
  }

  .workflow-process-list .step-number {
    margin-bottom: 0;
  }

  .about-compact {
    grid-template-columns: 130px minmax(0, 1fr);
  }
}

@media (max-width: 620px) {
  .deliverables-grid {
    grid-template-columns: 1fr;
  }

  .workflow-process-list li {
    padding: 22px;
  }

  .about-section {
    padding: 54px 0;
  }

  .about-compact {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 18px;
    padding: 22px;
    border-radius: 22px;
  }

  .about-compact-copy h2 {
    font-size: 1.52rem;
  }

  .about-compact-copy p {
    grid-column: 1 / -1;
    font-size: .92rem;
  }

  .about-founder-meta {
    display: grid;
  }
}


/* Additional vertical tightening after audit review */
.comparison-card { min-height: 320px; }
.workflow-process-list { margin-top: 28px; }
.workflow-cta { margin-top: 20px; }
