:root {
  color-scheme: light;
  --bg: #f5f7f4;
  --surface: #fffdf8;
  --ink: #172422;
  --muted: #62716c;
  --line: #d9e2dc;
  --accent: #176b57;
  --accent-dark: #123f34;
  --blue: #255f85;
  --warm: #b86b14;
  --red: #b44d44;
  --soft: #e6f2ec;
  --paper: #fff8ea;
  --paper-2: #f4ede0;
  --shadow: 0 24px 70px rgba(18, 63, 52, 0.14);
  font-family: "Avenir Next", "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.language-switcher {
  display: flex;
  justify-content: flex-end;
  gap: 0.9rem;
  padding: 0.45rem 1.5rem;
  font-size: 0.8rem;
  background: #f4f6f5;
  border-bottom: 1px solid #e3e7e5;
}

.language-switcher a {
  color: #6b7671;
  text-decoration: none;
}

.language-switcher a.is-active {
  color: #123f34;
  font-weight: 600;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  background: rgba(255, 253, 248, 0.93);
  border-bottom: 1px solid rgba(217, 226, 220, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 8px;
  background: var(--accent);
  color: white;
  font-size: 0.68rem;
  font-weight: 900;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--ink);
}

.nav-cta {
  padding: 10px 14px;
  border: 1px solid rgba(23, 107, 87, 0.22);
  border-radius: 8px;
  background: var(--accent);
  color: white;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
  min-height: calc(100svh - 76px);
  padding: clamp(54px, 8vw, 92px) clamp(20px, 5vw, 64px) 48px;
  background: #eef6f0;
  border-bottom: 1px solid var(--line);
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  top: -120px;
  left: -90px;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(23, 107, 87, 0.14), rgba(23, 107, 87, 0));
}

.hero::after {
  right: -40px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(184, 107, 20, 0.16), rgba(184, 107, 20, 0));
  transform: rotate(18deg);
}

.hero-copy {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

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

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

h1 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(2.7rem, 7vw, 5rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.hero-text {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.16rem;
}

.hero-list {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.hero-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 700;
}

.hero-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  content: "•";
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  line-height: 1;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--accent);
  color: white;
}

.button.primary:hover {
  background: var(--accent-dark);
}

.button.secondary {
  border-color: rgba(37, 95, 133, 0.22);
  background: white;
  color: var(--ink);
}

.button.full {
  width: 100%;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 760px;
  margin: 28px 0 0;
  padding: 0;
}

.hero-proof div {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(23, 107, 87, 0.18);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.78);
}

.hero-proof dt {
  color: var(--accent-dark);
  font-size: 1.15rem;
  font-weight: 900;
}

.hero-proof dd {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-note {
  max-width: 640px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.report-preview {
  justify-self: center;
  width: min(100%, 480px);
  position: relative;
  z-index: 1;
}

.sample-card {
  overflow: hidden;
  border: 1px solid rgba(18, 63, 52, 0.14);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.sample-card img {
  display: block;
  width: 100%;
  height: auto;
}

.preview-note {
  display: grid;
  gap: 4px;
  max-width: 390px;
  margin: -18px auto 0;
  padding: 16px 18px;
  border: 1px solid rgba(184, 107, 20, 0.22);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 44px rgba(184, 107, 20, 0.16);
  position: relative;
}

.preview-note strong {
  color: var(--warm);
}

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

.preview-window {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf7;
  box-shadow: var(--shadow);
}

.preview-topbar {
  display: flex;
  gap: 7px;
  padding: 14px;
  border-bottom: 1px solid var(--line);
  background: #f2eee4;
}

.preview-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #b7b1a6;
}

.preview-body {
  padding: 26px;
}

.preview-label {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.preview-body h2 {
  font-size: 2rem;
}

.score-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 24px 0;
}

.score-grid div {
  min-width: 0;
  padding: 14px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf0;
}

.score-grid strong,
.score-grid span {
  display: block;
}

.score-grid strong {
  font-size: 0.95rem;
}

.score-grid span {
  color: var(--muted);
  font-size: 0.82rem;
}

.finding-line {
  height: 18px;
  margin: 12px 0;
  border-radius: 8px;
}

.finding-line.high {
  width: 100%;
  background: linear-gradient(90deg, rgba(196, 73, 73, 0.22), rgba(196, 73, 73, 0.05));
}

.finding-line.medium {
  width: 82%;
  background: linear-gradient(90deg, rgba(197, 139, 36, 0.24), rgba(197, 139, 36, 0.05));
}

.finding-line.low {
  width: 68%;
  background: linear-gradient(90deg, rgba(79, 143, 95, 0.22), rgba(79, 143, 95, 0.05));
}

.mini-plan {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 24px;
  padding: 16px;
  border-radius: 8px;
  background: var(--soft);
}

.mini-plan span {
  display: grid;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font-weight: 900;
}

.mini-plan p {
  margin: 0;
  color: var(--ink);
}

.trust-strip {
  display: grid;
  gap: 14px;
  padding: 28px clamp(20px, 5vw, 64px);
  background: #fffdf8;
  border-bottom: 1px solid var(--line);
}

.trust-strip-intro {
  display: grid;
  gap: 6px;
}

.trust-strip-intro strong {
  font-size: 1.02rem;
}

.trust-strip-intro p,
.trust-strip-note {
  margin: 0;
  color: var(--muted);
}

.trust-strip-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-strip-list li {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font-weight: 700;
}

.trust-strip-note {
  font-weight: 700;
}

.fit-section {
  background: linear-gradient(180deg, #fffdf8 0%, #f7f3eb 100%);
}

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

.fit-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: 0 16px 40px rgba(18, 63, 52, 0.07);
}

.fit-card h3 {
  margin-bottom: 14px;
}

.fit-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.fit-card li {
  margin-bottom: 10px;
}

.good-fit {
  border-color: rgba(23, 107, 87, 0.2);
}

.bad-fit {
  border-color: rgba(180, 77, 68, 0.18);
  background: #fffaf8;
}

.section {
  padding: clamp(58px, 8vw, 92px) clamp(20px, 5vw, 64px);
}

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

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

.feature-grid article {
  position: relative;
  overflow: hidden;
  min-height: 180px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 16px 36px rgba(18, 63, 52, 0.05);
}

.feature-grid article::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  content: "";
}

.feature-grid article.tone-green::before {
  background: var(--accent);
}

.feature-grid article.tone-blue::before {
  background: var(--blue);
}

.feature-grid article.tone-gold::before {
  background: var(--warm);
}

.feature-grid article.tone-red::before {
  background: var(--red);
}

.feature-code {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.process-section {
  background: #173d34;
  color: white;
}

.process-section .eyebrow {
  color: #f4b95f;
}

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

.process-grid article {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.process-grid span {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 999px;
  background: #f4b95f;
  color: #173d34;
  font-weight: 900;
}

.process-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.feature-grid p,
.price-panel p,
.contact-copy p,
.note-box p {
  margin: 0;
  color: var(--muted);
}

.band {
  background: #1c2830;
  color: #fffdf8;
}

.band .eyebrow {
  color: #e7a35d;
}

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

.deliverable-card {
  padding: 22px;
  border: 1px solid rgba(255, 253, 247, 0.18);
  border-radius: 18px;
  background: rgba(255, 253, 247, 0.07);
}

.deliverable-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: #e7a35d;
  font-weight: 900;
}

.deliverable-card h3 {
  margin-bottom: 10px;
}

.deliverable-card p {
  margin: 0;
  color: rgba(255, 253, 247, 0.82);
}

.note-box {
  padding: 24px;
  border: 1px solid rgba(255, 253, 247, 0.18);
  border-radius: 18px;
  background: rgba(255, 253, 247, 0.08);
}

.note-box p {
  color: rgba(255, 253, 247, 0.78);
}

.price-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 370px);
  gap: 28px;
  align-items: center;
}

.details-section {
  background: #fffdf8;
}

.proof-section {
  background: linear-gradient(180deg, #f3f7f4 0%, #eef4f1 100%);
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 22px;
  align-items: start;
}

.proof-copy {
  max-width: 760px;
}

.proof-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.proof-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.proof-points div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

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

.proof-points strong {
  margin-bottom: 8px;
  color: var(--accent-dark);
}

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

.proof-note {
  background: white;
  border-color: rgba(18, 63, 52, 0.12);
}

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

.details-card,
.faq-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.details-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.details-card li,
.faq-grid p {
  margin: 0 0 10px;
  color: var(--muted);
}

.faq-section {
  background: #f6f1e8;
}

.price-panel > div:first-child {
  max-width: 760px;
}

.price-panel h2 {
  margin-bottom: 18px;
}

.price-list,
.contact-points {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.price-list li,
.contact-points li {
  margin-bottom: 10px;
}

.price-card {
  padding: 26px;
  border: 1px solid rgba(23, 107, 87, 0.2);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.price {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 3.3rem;
  font-weight: 900;
  line-height: 1;
}

.price-card p {
  margin-bottom: 22px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 34px;
  align-items: start;
  background: #e9f4f8;
}

.contact-copy {
  max-width: 680px;
}

.contact-copy h2 {
  margin-bottom: 18px;
}

.intake-sidecard {
  display: grid;
  gap: 6px;
  max-width: 560px;
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(23, 107, 87, 0.16);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.72);
}

.intake-sidecard strong {
  color: var(--accent-dark);
}

.intake-sidecard span {
  color: var(--muted);
}

.intake-shell {
  display: grid;
  gap: 16px;
}

.intake-progress {
  display: grid;
  gap: 10px;
}

.progress-bar {
  overflow: hidden;
  height: 10px;
  border-radius: 999px;
  background: rgba(23, 107, 87, 0.12);
}

.progress-fill {
  display: block;
  width: 33.333%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), #2d8b73);
  transition: width 180ms ease;
}

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

.progress-step {
  padding: 10px 12px;
  border: 1px solid rgba(23, 107, 87, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
}

.progress-step.is-active {
  border-color: rgba(23, 107, 87, 0.26);
  background: white;
  color: var(--accent-dark);
}

.intake-success,
.intake-error {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border-radius: 18px;
}

.intake-success {
  border: 1px solid rgba(23, 107, 87, 0.22);
  background: #edf8f2;
}

.intake-error {
  border: 1px solid rgba(180, 77, 68, 0.24);
  background: #fff5f3;
}

.intake-success p,
.intake-error span {
  margin: 0;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 18px 42px rgba(37, 95, 133, 0.08);
}

.intake-form {
  gap: 16px;
}

.intake-step {
  display: grid;
  gap: 12px;
}

.step-kicker {
  margin: 0;
  color: var(--warm);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.step-copy {
  margin: -4px 0 4px;
  color: var(--muted);
}

.email-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--accent-dark);
  font-weight: 900;
  text-decoration: none;
}

.email-link:hover {
  color: var(--accent);
}

.contact-form label {
  font-weight: 800;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  background: white;
  color: var(--ink);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.choice-grid {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.choice-grid legend {
  margin-bottom: 2px;
  font-weight: 800;
}

.choice-card {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  cursor: pointer;
}

.choice-card input {
  width: auto;
  margin: 0 0 6px;
}

.choice-card span {
  font-weight: 800;
}

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

.consent-line {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 2px;
}

.consent-line input {
  width: auto;
  margin-top: 4px;
}

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

.form-nav {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-top: 4px;
}

.form-nav .button {
  min-width: 150px;
}

.intake-summary {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border: 1px solid rgba(23, 107, 87, 0.16);
  border-radius: 16px;
  background: rgba(230, 242, 236, 0.58);
}

.intake-summary strong {
  color: var(--accent-dark);
}

.intake-summary ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.intake-summary li {
  margin-bottom: 6px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 28px clamp(20px, 5vw, 64px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: 26px;
  align-items: center;
  background: #183d35;
  color: white;
}

.cta-band .eyebrow {
  color: #f2bf68;
}

.cta-band-copy p:last-child {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.cta-band-actions {
  display: grid;
  gap: 12px;
}

.mobile-cta {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 30;
  display: none;
  width: min(320px, calc(100vw - 28px));
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 18px 40px rgba(18, 63, 52, 0.2);
  backdrop-filter: blur(14px);
}

.mobile-cta.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .hero,
  .proof-layout,
  .price-panel,
  .contact-section,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .feature-grid,
  .details-grid,
  .faq-grid,
  .trust-strip-list,
  .deliverables-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fit-grid,
  .proof-points,
  .progress-steps {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .hero {
    padding-top: 42px;
  }

  h1 {
    font-size: clamp(2.35rem, 15vw, 3.7rem);
  }

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

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

  .feature-grid,
  .details-grid,
  .faq-grid,
  .deliverables-grid,
  .trust-strip-list,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .price {
    font-size: 2.8rem;
  }

  .section {
    padding-bottom: 80px;
  }

  .form-nav {
    flex-direction: column;
  }

  .form-nav .button {
    width: 100%;
  }

  .mobile-cta {
    display: block;
  }
}
