:root {
  --bg: #ffffff;
  --bg-soft: #f6f8fb;
  --bg-band: #edf3f5;
  --text: #172033;
  --muted: #5b6576;
  --muted-strong: #3f4a5d;
  --navy: #0c2747;
  --navy-light: #173c66;
  --green: #2f8f6b;
  --green-soft: #e7f3ee;
  --border: #dfe6ef;
  --shadow: 0 20px 45px rgba(12, 39, 71, 0.08);
  --container: 1120px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

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

ul {
  margin: 0;
  padding: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: var(--radius);
  background: var(--navy);
  color: #fff;
  padding: 10px 14px;
  transition: transform 180ms ease;
}

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

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

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

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

.section-band {
  background: var(--bg-band);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(223, 230, 239, 0.8);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: 178px;
  height: auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--navy);
  color: #fff;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.2;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.3;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted-strong);
  font-size: 0.95rem;
}

.site-nav a {
  border-radius: var(--radius);
  padding: 10px 12px;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--bg-soft);
  color: var(--navy);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

.hero {
  min-height: calc(100vh - 76px);
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 110px 0 96px;
  background:
    linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.92) 46%, rgba(246, 248, 251, 0.68) 100%),
    radial-gradient(circle at 78% 32%, rgba(47, 143, 107, 0.12), transparent 32%),
    var(--bg);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  display: block;
  border: 1px solid rgba(23, 60, 102, 0.12);
  border-radius: 999px;
}

.shape-one {
  width: 420px;
  height: 420px;
  right: 6%;
  top: 12%;
}

.shape-two {
  width: 240px;
  height: 240px;
  right: 20%;
  bottom: 10%;
  background: rgba(47, 143, 107, 0.05);
}

.shape-three {
  width: 160px;
  height: 160px;
  right: 38%;
  top: 24%;
  border-color: rgba(47, 143, 107, 0.16);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  align-items: center;
  gap: 72px;
}

.hero-content {
  max-width: 720px;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  color: var(--navy);
  font-size: clamp(2.7rem, 7vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.3;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 18px;
  color: var(--muted-strong);
  font-size: clamp(1.15rem, 2.6vw, 1.45rem);
  line-height: 1.45;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 32px;
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.trust-strip span {
  border: 1px solid rgba(223, 230, 239, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 7px 11px;
  color: var(--muted-strong);
  font-size: 0.88rem;
  font-weight: 650;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 700;
  line-height: 1.2;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

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

.button-primary {
  background: var(--navy);
  color: #fff;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--navy-light);
}

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

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(47, 143, 107, 0.35);
  background: var(--green-soft);
}

.full-width {
  width: 100%;
}

.hero-visual {
  position: relative;
  width: min(100%, 620px);
  justify-self: end;
  border-radius: 12px;
}

.hero-visual::before {
  display: none;
}

.audit-dashboard {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(188, 204, 224, 0.72);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(246, 248, 251, 0.92)),
    #fff;
  box-shadow: var(--shadow);
  padding: 22px;
}

.audit-dashboard::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(12, 39, 71, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 39, 71, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(130deg, #000 0%, transparent 68%);
  pointer-events: none;
}

.dashboard-topline,
.dashboard-score,
.dashboard-grid,
.dashboard-footer {
  position: relative;
  z-index: 1;
}

.dashboard-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.86rem;
}

.dashboard-topline strong {
  color: var(--navy);
}

.dashboard-score {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(223, 230, 239, 0.9);
  border-radius: 10px;
  background: #fff;
  padding: 20px;
}

.score-label {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

.dashboard-score strong {
  color: var(--navy);
  font-size: clamp(1.25rem, 2.7vw, 1.75rem);
  line-height: 1.12;
}

.score-pill {
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  padding: 7px 11px;
  font-size: 0.8rem;
  font-weight: 750;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
  margin-top: 12px;
}

.audit-panel {
  min-height: 132px;
  border: 1px solid rgba(223, 230, 239, 0.9);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.86);
  padding: 18px;
}

.panel-large {
  grid-row: span 2;
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.panel-heading span {
  color: var(--muted);
  font-size: 0.92rem;
}

.panel-heading strong {
  color: var(--navy);
}

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

.progress-list span {
  position: relative;
  overflow: hidden;
  height: 10px;
  border-radius: 999px;
  background: #e7edf5;
}

.progress-list span::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--value);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--navy), #1d6ed4);
}

.panel-icon {
  display: inline-grid;
  place-items: center;
  min-width: 52px;
  height: 44px;
  margin-bottom: 18px;
  padding: 0 10px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 850;
}

.audit-panel strong,
.audit-panel small {
  display: block;
}

.audit-panel strong {
  color: var(--navy);
  line-height: 1.25;
}

.audit-panel small {
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.4;
}

.mini-checklist {
  display: grid;
  gap: 12px;
  list-style: none;
}

.mini-checklist li {
  position: relative;
  padding-left: 26px;
  color: var(--muted-strong);
  font-size: 0.94rem;
}

.mini-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green-soft);
}

.mini-checklist li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 11px;
  width: 6px;
  height: 3px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}

.dashboard-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.dashboard-footer span {
  border: 1px solid rgba(223, 230, 239, 0.86);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  padding: 7px 10px;
  color: var(--muted-strong);
  font-size: 0.82rem;
  font-weight: 650;
}

.visual-header {
  position: relative;
  display: grid;
  gap: 4px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.visual-header span {
  color: var(--muted);
  font-size: 0.92rem;
}

.visual-header strong {
  color: var(--navy);
  font-size: 1.25rem;
}

.visual-lines {
  position: relative;
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.visual-lines div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  border-bottom: 1px solid rgba(223, 230, 239, 0.75);
  color: var(--muted-strong);
}

.visual-lines div:last-child {
  border-bottom: 0;
}

.status-dot {
  position: relative;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-soft);
}

.status-dot::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: var(--green);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 40px;
}

.section-heading.compact {
  max-width: 520px;
  margin-bottom: 0;
}

.section-heading p {
  font-size: 1.03rem;
}

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

.audience-card,
.step,
.reason-card,
.team-card,
.price-card,
.contact-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}

.audience-card {
  min-height: 136px;
  padding: 24px;
}

.card-icon {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 800;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
  gap: 64px;
}

.split-layout.reversed {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.split-layout.reversed .section-heading {
  order: 2;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.check-item {
  position: relative;
  min-height: 62px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  padding: 18px 18px 18px 48px;
  color: var(--muted-strong);
  font-weight: 650;
}

.check-item::before,
.plain-list li::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green-soft);
  left: 18px;
  top: 21px;
}

.check-item::after,
.plain-list li::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 4px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
  left: 22px;
  top: 26px;
}

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

.step {
  padding: 24px;
}

.step span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  font-weight: 800;
}

.step p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.report-panel {
  border-left: 3px solid var(--green);
  padding: 6px 0 6px 28px;
}

.reason-grid {
  display: grid;
  gap: 14px;
}

.reason-card {
  padding: 22px;
}

.reason-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
}

.reason-card p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.plain-list {
  display: grid;
  gap: 12px;
  list-style: none;
}

.plain-list li {
  position: relative;
  min-height: 28px;
  padding-left: 36px;
  color: var(--muted-strong);
}

.plain-list li::before {
  left: 0;
  top: 4px;
}

.plain-list li::after {
  left: 4px;
  top: 9px;
}

.pricing-layout {
  display: grid;
  gap: 28px;
}

.price-card {
  overflow: hidden;
}

.price-card + .price-card {
  margin-top: 14px;
}

.price-card.featured {
  border-color: rgba(47, 143, 107, 0.5);
  box-shadow: var(--shadow);
}

.price-card summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 34px;
  align-items: center;
  gap: 22px;
  cursor: pointer;
  list-style: none;
  padding: 24px 28px;
}

.price-card summary::-webkit-details-marker {
  display: none;
}

.price-card summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 500;
  grid-column: 3;
}

.price-card[open] summary::after {
  content: "-";
  background: var(--green-soft);
  border-color: rgba(47, 143, 107, 0.28);
  color: var(--green);
}

.price-card summary strong,
.price-card summary small {
  display: block;
}

.price-card summary strong {
  color: var(--navy);
  font-size: 1.18rem;
  line-height: 1.25;
}

.price-card summary small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.price {
  white-space: nowrap;
  color: var(--navy);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  font-weight: 800;
  line-height: 1;
}

.price-details {
  border-top: 1px solid var(--border);
  padding: 24px 28px 28px;
}

.price-details p {
  max-width: 760px;
}

.pricing-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  padding: 22px 24px;
}

.pricing-note p {
  max-width: 720px;
  margin-bottom: 0;
}

.note {
  margin: 22px 0;
  border-top: 1px solid var(--border);
  padding-top: 18px;
  font-size: 0.95rem;
}

.person-section {
  display: grid;
  grid-template-columns: 180px minmax(0, 760px);
  align-items: start;
  gap: 46px;
}

.person-mark {
  display: grid;
  place-items: center;
  width: 148px;
  height: 148px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(47, 143, 107, 0.1), rgba(12, 39, 71, 0.04)),
    #fff;
  color: var(--navy);
  font-size: 2.2rem;
  font-weight: 800;
}

.team-section .section-heading {
  max-width: 850px;
}

.team-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.92fr 0.92fr;
  gap: 16px;
}

.team-card {
  min-height: 310px;
  padding: 26px;
}

.team-card.lead {
  border-color: rgba(47, 143, 107, 0.42);
  box-shadow: var(--shadow);
}

.team-avatar {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(47, 143, 107, 0.16), rgba(12, 39, 71, 0.06)),
    #fff;
  color: var(--navy);
  font-weight: 850;
}

.team-role {
  margin-bottom: 8px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.team-card p:last-child {
  margin-bottom: 0;
}

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

.boundary-list div {
  border: 1px solid rgba(23, 60, 102, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  padding: 18px 20px;
  color: var(--muted-strong);
  font-weight: 650;
}

.final-cta {
  background: var(--navy);
  color: #fff;
  text-align: center;
}

.final-cta .eyebrow,
.final-cta h2,
.final-cta p {
  color: #fff;
}

.final-cta p {
  max-width: 660px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.82);
}

.final-cta .button-primary {
  margin-top: 12px;
  background: #fff;
  color: var(--navy);
}

.final-cta .button-primary:hover,
.final-cta .button-primary:focus-visible {
  background: var(--green-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.55fr);
  gap: 64px;
}

.contact-card {
  display: grid;
  gap: 12px;
  padding: 28px;
  font-style: normal;
}

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

.contact-card a,
.contact-card span {
  color: var(--muted-strong);
}

.contact-card a:hover,
.contact-card a:focus-visible {
  color: var(--green);
  outline: none;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #fff;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0;
  font-size: 0.92rem;
}

.footer-inner a {
  color: var(--navy);
  font-weight: 650;
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding: 88px 0;
  }

  .hero-grid,
  .split-layout,
  .split-layout.reversed,
  .pricing-layout,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    justify-self: start;
  }

  .split-layout.reversed .section-heading {
    order: 0;
  }

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

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

  .section-heading.compact {
    max-width: 760px;
  }
}

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

  .section {
    padding: 72px 0;
  }

  .header-inner {
    min-height: 66px;
  }

  .brand small {
    display: none;
  }

  .brand-logo {
    width: 142px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 66px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    padding: 10px;
    box-shadow: var(--shadow);
  }

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

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

  .hero {
    padding: 76px 0 68px;
  }

  h1 {
    font-size: clamp(2.5rem, 16vw, 4rem);
  }

  h2 {
    font-size: clamp(1.95rem, 10vw, 2.75rem);
  }

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

  .trust-strip span {
    width: 100%;
  }

  .hero-visual {
    width: 100%;
    padding: 0;
  }

  .audit-dashboard {
    padding: 16px;
  }

  .dashboard-score {
    flex-direction: column;
  }

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

  .panel-large {
    grid-row: auto;
  }

  .audience-grid,
  .check-grid,
  .steps,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .person-section {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .person-mark {
    width: 112px;
    height: 112px;
    font-size: 1.7rem;
  }

  .price-card summary,
  .price-details,
  .contact-card {
    padding: 24px;
  }

  .price-card summary {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .price-card summary::after {
    grid-column: 1;
    grid-row: 1;
    justify-self: end;
  }

  .price-card summary > span:first-child {
    padding-right: 46px;
  }

  .pricing-note {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-inner {
    flex-direction: column;
  }
}

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