:root {
  --navy: #071f3d;
  --navy-soft: #123455;
  --sage: #5ea391;
  --sage-strong: #3f8375;
  --sage-light: #d7e8e2;
  --sage-pale: #eff7f4;
  --paper: #fbfaf7;
  --mist: #eef2f4;
  --ink: #122034;
  --muted: #64717f;
  --line: #dfe6e7;
  --warm: #c96f4a;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(7, 31, 61, 0.12);
  --shadow-strong: 0 28px 70px rgba(7, 31, 61, 0.18);
  --radius: 8px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(94, 163, 145, 0.75);
  outline-offset: 4px;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 50;
  padding: 10px 14px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  transform: translateY(-140%);
}

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

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: 100%;
  height: 3px;
  background: var(--sage);
  transform: scaleX(0);
  transform-origin: left;
}

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 2vw, 28px);
  padding: 12px clamp(20px, 5vw, 72px);
  background: rgba(251, 250, 247, 0.92);
  border-bottom: 1px solid rgba(223, 230, 231, 0.78);
  backdrop-filter: blur(14px);
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  width: auto;
  min-width: 0;
  height: auto;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(7, 31, 61, 0.08);
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(7, 31, 61, 0.08);
}

.brand-mark img {
  width: auto;
  height: 58px;
  max-width: none;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 1px;
  color: var(--navy);
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 0.98rem;
}

.brand-copy small {
  color: var(--sage-strong);
  font-size: 0.78rem;
  font-weight: 800;
}

.main-nav {
  flex: 1 1 auto;
  justify-content: flex-end;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: clamp(8px, 1vw, 14px);
  color: var(--navy);
  font-size: clamp(0.84rem, 0.9vw, 0.92rem);
  font-weight: 700;
}

.main-nav a {
  flex: 0 0 auto;
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
}

.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  background: var(--sage);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  min-width: max-content;
  padding: 11px 18px;
  color: var(--white);
  background: var(--navy);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(7, 31, 61, 0.18);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 2px;
}

.page-subnav {
  position: sticky;
  top: var(--header-height);
  z-index: 18;
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  padding: 10px clamp(20px, 6vw, 88px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(223, 230, 231, 0.9);
  box-shadow: 0 10px 24px rgba(7, 31, 61, 0.04);
  backdrop-filter: blur(12px);
  scrollbar-width: thin;
}

.page-subnav a {
  flex: 0 0 auto;
  padding: 8px 11px;
  color: var(--navy);
  background: var(--sage-pale);
  border: 1px solid rgba(94, 163, 145, 0.24);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 850;
}

.page-subnav a:hover,
.page-subnav a:focus-visible {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(64px, 10vw, 118px) clamp(20px, 6vw, 88px);
  background:
    linear-gradient(120deg, rgba(239, 247, 244, 0.98) 0%, rgba(251, 250, 247, 0.98) 58%, rgba(215, 232, 226, 0.78) 100%),
    var(--sage-pale);
  border-bottom: 1px solid var(--line);
  --cursor-x: 72%;
  --cursor-y: 34%;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(251, 250, 247, 0.86) 0%, rgba(251, 250, 247, 0.72) 42%, rgba(251, 250, 247, 0.12) 74%),
    repeating-linear-gradient(90deg, rgba(7, 31, 61, 0.045) 0 1px, transparent 1px 110px),
    repeating-linear-gradient(0deg, rgba(7, 31, 61, 0.035) 0 1px, transparent 1px 110px);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  height: 34%;
  background:
    linear-gradient(180deg, rgba(251, 250, 247, 0) 0%, rgba(251, 250, 247, 0.9) 100%),
    repeating-linear-gradient(90deg, rgba(7, 31, 61, 0.04) 0 1px, transparent 1px 96px);
  pointer-events: none;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: clamp(20px, 8vw, 120px);
  opacity: 0.075;
  pointer-events: none;
}

.hero-background img {
  width: min(52vw, 620px);
  min-width: 360px;
  filter: saturate(0.9);
}

.hero-scene {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.48;
}

.hero-logo-panel,
.floating-card,
.workflow-panel {
  position: absolute;
  border: 1px solid rgba(7, 31, 61, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 45px rgba(7, 31, 61, 0.1);
  backdrop-filter: blur(16px);
}

.hero-logo-panel {
  top: 14%;
  right: clamp(32px, 7vw, 110px);
  display: grid;
  place-items: center;
  width: clamp(210px, 18vw, 270px);
  aspect-ratio: 1;
  padding: 22px;
  overflow: hidden;
  border-radius: 999px;
  animation: float-panel 8s ease-in-out infinite;
}

.hero-logo-panel img {
  width: 86%;
  height: 86%;
  object-fit: contain;
  border-radius: 999px;
  mix-blend-mode: multiply;
}

.hero-logo-panel span {
  position: absolute;
  bottom: 22px;
  left: 50%;
  display: block;
  width: max-content;
  max-width: 72%;
  padding: 4px 8px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
  text-align: center;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.floating-card {
  display: grid;
  gap: 4px;
  width: clamp(176px, 15vw, 224px);
  padding: 16px;
  color: var(--navy);
  animation: float-panel 7s ease-in-out infinite;
}

.floating-card span {
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 900;
}

.floating-card strong {
  font-size: 1rem;
  line-height: 1.2;
}

.floating-card small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.floating-card-one {
  top: 28%;
  right: clamp(230px, 21vw, 360px);
}

.floating-card-two {
  right: clamp(28px, 6vw, 96px);
  bottom: 19%;
  animation-delay: -2s;
}

.floating-card-three {
  right: clamp(230px, 20vw, 340px);
  bottom: 29%;
  animation-delay: -4s;
}

.workflow-panel {
  right: clamp(28px, 7vw, 110px);
  bottom: 9%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 850;
  animation: float-panel 9s ease-in-out infinite;
  animation-delay: -1.2s;
}

.workflow-panel i {
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, rgba(94, 163, 145, 0.2), var(--sage));
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(700px, 52vw);
}

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

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.08;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3.1rem, 8vw, 5.9rem);
  font-weight: 850;
}

h2 {
  max-width: 16ch;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 820;
}

.section-heading h2 {
  max-width: 19ch;
}

h3 {
  font-size: 1.28rem;
}

.hero-lead {
  max-width: 660px;
  margin: 28px 0 0;
  color: var(--navy-soft);
  font-size: 1.18rem;
}

.hero-note {
  max-width: 630px;
  margin: 18px 0 0;
  color: var(--navy);
  font-size: 0.98rem;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.28) 46%, transparent 72%);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

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

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(120%);
}

.button-primary {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 14px 30px rgba(7, 31, 61, 0.2);
}

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

.button-secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(7, 31, 61, 0.18);
}

.proof-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.proof-points span {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  padding: 10px 14px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(94, 163, 145, 0.3);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
}

.proof-points strong {
  color: var(--sage-strong);
  font-size: 1.28rem;
  line-height: 1;
}

.section {
  padding: clamp(72px, 10vw, 122px) clamp(20px, 6vw, 88px);
}

.section-muted {
  background: var(--white);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-heading {
  display: grid;
  gap: 18px;
  max-width: 780px;
  margin-bottom: 42px;
}

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

.problem-grid,
.offer-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.info-card,
.offer-card,
.why-item,
.deliverable-card {
  --card-lift: 0px;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 26px rgba(7, 31, 61, 0.05);
}

.tilt-card {
  transform-style: preserve-3d;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
  will-change: transform;
}

.tilt-card:hover,
.tilt-card:focus-within {
  --card-lift: -5px;
  border-color: rgba(94, 163, 145, 0.48);
  box-shadow: var(--shadow);
}

.info-card {
  min-height: 260px;
  padding: 26px;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  color: var(--navy);
  background: var(--sage-light);
  border-radius: 999px;
}

.deliverable-grid,
.audience-grid,
.process-grid,
.guide-grid {
  display: grid;
  gap: 18px;
}

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

.deliverable-card {
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.deliverable-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.card-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.info-card p,
.pillar p,
.why-item p,
.about-content p {
  color: var(--muted);
}

.solution-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 7vw, 84px);
  align-items: start;
}

.pillar-list {
  display: grid;
  gap: 14px;
}

.pillar {
  --card-lift: 0px;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.pillar > span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: var(--sage);
  border-radius: 999px;
  font-weight: 850;
}

.pillar p {
  margin: 10px 0 0;
}

.audience-band {
  padding: clamp(42px, 7vw, 72px) clamp(20px, 6vw, 88px);
  background: var(--navy);
  color: var(--white);
}

.audience-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.audience-band h2,
.audience-band .eyebrow {
  color: var(--white);
}

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

.audience-card {
  min-height: 240px;
  padding: 28px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.audience-card h3 {
  color: var(--white);
}

.audience-card p {
  color: rgba(255, 255, 255, 0.74);
}

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

.check-list li {
  position: relative;
  padding-left: 34px;
  font-weight: 700;
}

.check-list li::before,
.offer-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 14px;
  height: 8px;
  border-left: 3px solid var(--sage);
  border-bottom: 3px solid var(--sage);
  transform: rotate(-45deg);
}

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

.offer-card {
  position: relative;
  display: flex;
  --card-lift: 0px;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  min-height: 520px;
  flex-direction: column;
  padding: 30px;
}

.offer-for,
.offer-result {
  margin: 16px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.offer-result {
  margin-top: auto;
  padding-top: 18px;
  color: var(--navy);
}

.offer-card:hover {
  --card-lift: -6px;
  border-color: rgba(94, 163, 145, 0.52);
  box-shadow: var(--shadow-strong);
}

.offer-card-featured {
  background: var(--sage-pale);
  border-color: rgba(94, 163, 145, 0.45);
}

.offer-top p {
  margin: 0 0 8px;
  color: var(--sage);
  font-weight: 800;
}

.offer-card ul {
  display: grid;
  gap: 14px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.offer-card li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
}

.price {
  margin: 18px 0;
  color: var(--navy);
  font-size: 1.12rem;
  font-weight: 850;
}

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

.process-step {
  position: relative;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.process-step span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  color: var(--white);
  background: var(--navy);
  border-radius: 999px;
  font-weight: 900;
}

.process-step p {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  width: fit-content;
  color: var(--navy);
  font-weight: 850;
  border-bottom: 2px solid var(--sage);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: center;
}

.about-mark {
  display: grid;
  place-items: center;
  min-height: 380px;
  padding: 38px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.about-mark img {
  width: min(100%, 330px);
}

.about-content p {
  max-width: 720px;
  font-size: 1.05rem;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.value-grid span {
  padding: 12px;
  text-align: center;
  color: var(--navy);
  background: var(--sage-light);
  border-radius: var(--radius);
  font-weight: 850;
}

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

.trust-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

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

.trust-list span {
  padding: 12px 14px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(7, 31, 61, 0.05);
}

.why-item {
  padding: 26px;
}

.why-item strong {
  color: var(--navy);
  font-size: 1.12rem;
}

.contact-section {
  background: var(--navy);
  color: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: start;
}

.contact-section h2,
.contact-section .eyebrow {
  color: var(--white);
}

.contact-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.legal-note {
  padding-left: 16px;
  border-left: 3px solid var(--sage);
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-links a {
  width: fit-content;
  border-bottom: 2px solid var(--sage);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 30px;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

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

.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(7, 31, 61, 0.05);
}

.faq-item summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--navy);
  font-weight: 850;
}

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.consent-field {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 0.92rem;
}

.consent-field input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--sage);
}

.form-status {
  min-height: 1.4em;
  margin: -4px 0 0;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 800;
}

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

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

.guide-card {
  display: grid;
  gap: 8px;
  min-height: 200px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 26px rgba(7, 31, 61, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.guide-card:hover,
.guide-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(94, 163, 145, 0.48);
  box-shadow: var(--shadow);
}

.guide-card span {
  color: var(--sage-strong);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.guide-card strong {
  color: var(--navy);
  font-size: 1.08rem;
}

.guide-card small {
  color: var(--muted);
  font-size: 0.92rem;
}

.sitemap-section {
  border-top: 1px solid var(--line);
}

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

.sitemap-group {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 26px rgba(7, 31, 61, 0.05);
}

.sitemap-group h3 {
  font-size: 1.12rem;
}

.sitemap-group p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.sitemap-group ul {
  display: grid;
  gap: 0;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.sitemap-group li + li {
  border-top: 1px solid rgba(223, 230, 231, 0.86);
}

.sitemap-group a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: baseline;
  padding: 10px 0;
  color: var(--navy);
}

.sitemap-group a:hover span,
.sitemap-group a:focus-visible span {
  color: var(--sage-strong);
}

.sitemap-group span {
  font-weight: 850;
}

.sitemap-group small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.seo-hero {
  padding: clamp(70px, 10vw, 118px) clamp(20px, 6vw, 88px);
  background: var(--sage-pale);
  border-bottom: 1px solid var(--line);
}

.seo-hero-inner,
.seo-content {
  width: min(980px, 100%);
  margin: 0 auto;
}

.breadcrumb,
.breadcrumb-trail {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--sage-strong);
  font-weight: 850;
}

.breadcrumb-trail a::after {
  content: "/";
  margin-left: 8px;
  color: var(--muted);
}

.seo-hero h1 {
  max-width: 13ch;
}

.seo-hero p {
  max-width: 720px;
  color: var(--navy-soft);
  font-size: 1.12rem;
}

.seo-content {
  display: grid;
  gap: 34px;
}

.seo-content article,
.seo-cta {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.seo-content h2 {
  max-width: 24ch;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.seo-content p,
.seo-content li {
  color: var(--muted);
}

.seo-content ul {
  display: grid;
  gap: 10px;
}

.related-pages {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.related-pages a {
  padding: 10px 12px;
  color: var(--navy);
  background: var(--sage-pale);
  border: 1px solid rgba(94, 163, 145, 0.24);
  border-radius: 999px;
  font-weight: 800;
}

.seo-grid,
.comparison-list,
.resource-example {
  display: grid;
  gap: 12px;
}

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

.seo-grid div,
.comparison-list div,
.resource-example span {
  padding: 16px;
  background: var(--sage-pale);
  border: 1px solid rgba(94, 163, 145, 0.22);
  border-radius: var(--radius);
}

.seo-grid strong,
.comparison-list strong {
  color: var(--navy);
}

.comparison-list p {
  margin: 8px 0 0;
}

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

.resource-example span {
  color: var(--navy);
  font-weight: 850;
}

.method-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 24px;
}

.method-list li::marker {
  color: var(--sage-strong);
  font-weight: 900;
}

.seo-notice {
  background: #fff7ed !important;
  border-color: rgba(201, 111, 74, 0.3) !important;
}

.source-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.source-list span {
  padding: 8px 10px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(201, 111, 74, 0.24);
  border-radius: 999px;
  font-weight: 800;
}

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

.seo-galaxy .related-pages {
  margin-top: 18px;
}

.seo-galaxy .related-pages a {
  max-width: 100%;
  white-space: normal;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: var(--navy);
  font-weight: 800;
}

.field input,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #f8faf9;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(94, 163, 145, 0.16);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(260px, 0.9fr) auto;
  align-items: start;
  gap: 24px;
  padding: 28px clamp(20px, 6vw, 88px);
  color: var(--navy);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.footer-brand,
.footer-links {
  display: grid;
  gap: 6px;
}

.site-footer span {
  color: var(--muted);
}

.footer-links a,
.footer-links span {
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links a {
  width: fit-content;
  border-bottom: 1px solid rgba(94, 163, 145, 0.6);
}

.footer-directory {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  padding-top: 26px;
  border-top: 1px solid rgba(223, 230, 231, 0.9);
}

.footer-directory-group {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-directory-group strong {
  color: var(--navy);
  font-size: 0.92rem;
}

.footer-directory-group ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-directory-group a {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.footer-directory-group a:hover,
.footer-directory-group a:focus-visible {
  color: var(--sage-strong);
}

.reveal {
  --reveal-y: 18px;
  opacity: 0;
  transform: translate3d(0, var(--reveal-y), 0);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  --reveal-y: 0px;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.tilt-card.reveal {
  transform: perspective(900px) translate3d(0, calc(var(--reveal-y) + var(--card-lift)), 0) rotateX(var(--tilt-y)) rotateY(var(--tilt-x));
}

.tilt-card.reveal.is-visible {
  transform: perspective(900px) translate3d(0, var(--card-lift), 0) rotateX(var(--tilt-y)) rotateY(var(--tilt-x));
}

@keyframes float-panel {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -12px;
  }
}

@media (max-width: 1180px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: var(--header-height) 18px auto 18px;
    display: grid;
    justify-content: stretch;
    gap: 4px;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

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

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

@media (max-width: 980px) {
  .problem-grid,
  .offer-grid,
  .why-grid,
  .deliverable-grid,
  .audience-grid,
  .process-grid,
  .guide-grid,
  .sitemap-directory,
  .footer-directory,
  .seo-grid,
  .resource-example,
  .seo-card-grid,
  .trust-layout,
  .solution-layout,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-content {
    width: min(720px, 100%);
  }

  .hero-scene {
    opacity: 0.22;
  }

  .floating-card,
  .workflow-panel {
    display: none;
  }

  .problem-grid,
  .why-grid,
  .faq-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-mark {
    min-height: auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 681px) and (max-width: 980px) {
  .admin-guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 981px) and (max-width: 1200px) {
  .floating-card,
  .workflow-panel {
    display: none;
  }

  .hero-content {
    width: min(760px, 68vw);
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 72px;
  }

  .site-header {
    padding-inline: 16px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 62px;
    height: 58px;
  }

  .brand-mark img {
    height: 52px;
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 74px 18px 66px;
  }

  .hero-background {
    justify-content: center;
    padding: 0;
    opacity: 0.055;
  }

  .hero-background img {
    min-width: 420px;
  }

  .hero-logo-panel {
    top: 18px;
    right: 18px;
    width: 170px;
    opacity: 0.32;
  }

  h1 {
    max-width: 10ch;
    font-size: 3.2rem;
  }

  h2 {
    max-width: 13ch;
    font-size: 2.2rem;
  }

  .seo-hero h1 {
    max-width: 16ch;
    font-size: 2.7rem;
  }

  .seo-content h2 {
    max-width: 18ch;
  }

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

  .section {
    padding: 68px 18px;
  }

  .problem-grid,
  .why-grid,
  .value-grid,
  .deliverable-grid,
  .audience-grid,
  .process-grid,
    .guide-grid,
    .sitemap-directory,
    .footer-directory,
    .seo-grid,
    .resource-example,
  .seo-card-grid,
  .trust-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .info-card,
  .offer-card,
  .why-item,
  .contact-form,
  .pillar {
    padding: 22px;
  }

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

  .offer-card {
    min-height: auto;
  }

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

  .site-footer {
    align-items: flex-start;
    padding: 24px 18px;
  }
}

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

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

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

  .hero-scene,
  .hero-logo-panel,
  .floating-card,
  .workflow-panel {
    animation: none;
  }

  .tilt-card.reveal,
  .tilt-card.reveal.is-visible {
    transform: none;
  }
}
