:root {
  --bg: #f7f3ec;
  --surface: #fffdf8;
  --text: #1e1e1c;
  --muted: #68645d;
  --primary: #2f6f5e;
  --primary-dark: #235347;
  --accent: #d96c4a;
  --line: #e4ded3;
  --soft: #eee7dc;
  --shadow: 0 24px 70px rgba(49, 42, 32, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Manrope, Inter, Arial, sans-serif;
  line-height: 1.55;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1180px, calc(100% - 40px));
  margin: 18px auto 0;
  padding: 12px 14px;
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid rgba(228, 222, 211, 0.82);
  border-radius: 14px;
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 38px rgba(49, 42, 32, 0.08);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fffdf8;
  background: var(--primary);
  border-radius: 10px;
  font-weight: 800;
}

.brand strong,
.site-footer strong {
  display: block;
  font-size: 15px;
}

.brand small,
.site-footer p {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

.main-nav a:hover,
.footer-links a:hover {
  color: var(--primary);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  color: #fffdf8;
  background: var(--primary);
  border-radius: 8px;
  font-weight: 700;
  white-space: nowrap;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 108px 0;
}

.section-tight {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 84px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
  gap: 70px;
  align-items: center;
  min-height: calc(100vh - 74px);
  padding-top: 72px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(42px, 5.2vw, 66px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-text,
.section-heading p,
.split-intro > p,
.difference-copy p,
.form-copy p {
  color: var(--muted);
  font-size: 18px;
}

.hero-text {
  max-width: 690px;
  margin-bottom: 30px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: #fffdf8;
  background: var(--primary);
  box-shadow: 0 14px 30px rgba(47, 111, 94, 0.22);
}

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

.button-secondary {
  color: var(--primary);
  background: rgba(255, 253, 248, 0.58);
  border-color: rgba(47, 111, 94, 0.28);
}

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

.fact {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.fact strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
}

.fact span {
  color: var(--muted);
  font-size: 13px;
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  position: absolute;
  inset: 12% -4% auto auto;
  width: 72%;
  height: 48%;
  background: rgba(217, 108, 74, 0.16);
  border-radius: 999px;
  content: "";
}

.strategy-board {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.board-header {
  display: flex;
  gap: 7px;
  padding: 16px;
  background: #efe8dc;
  border-bottom: 1px solid var(--line);
}

.board-dot {
  width: 9px;
  height: 9px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.72;
}

.board-dot:nth-child(2) {
  background: #e2b14f;
}

.board-dot:nth-child(3) {
  background: var(--primary);
}

.board-content {
  padding: 30px;
}

.board-kicker {
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.board-content h2 {
  margin-bottom: 24px;
  font-size: 30px;
}

.board-flow {
  display: grid;
  gap: 10px;
}

.flow-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  background: #f8f2e8;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-weight: 800;
}

.flow-number {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #fffdf8;
  background: var(--primary);
  border-radius: 8px;
  font-size: 13px;
}

.board-note {
  margin: 22px 0 0;
  color: var(--muted);
}

.split-intro {
  display: grid;
  grid-template-columns: 0.95fr 0.8fr;
  gap: 70px;
  align-items: end;
  padding-bottom: 36px;
}

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

.info-card,
.proof-card {
  min-height: 230px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.info-card p,
.proof-card p,
.process-card p,
.system-card p,
.compare-card li,
.fit-panel li,
.faq-answer {
  color: var(--muted);
}

.section-heading {
  max-width: 800px;
  margin-bottom: 44px;
}

.system-section {
  padding-top: 78px;
}

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

.system-card {
  position: relative;
  min-height: 210px;
  padding: 24px;
  background: #efe8dc;
  border: 1px solid #ded5c7;
  border-radius: 12px;
}

.system-card span,
.process-index {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  color: #fffdf8;
  background: var(--primary);
  border-radius: 9px;
  font-weight: 800;
}

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

.process-card {
  display: grid;
  grid-template-columns: 76px 0.36fr 1fr;
  gap: 24px;
  align-items: start;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.process-index {
  margin: 0;
}

.difference-section {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 54px;
  align-items: start;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.compare-card {
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.compare-card.featured {
  color: #fffdf8;
  background: var(--primary);
  border-color: var(--primary);
}

.compare-card.featured li {
  color: rgba(255, 253, 248, 0.82);
}

.compare-card ul,
.fit-panel ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.compare-card li,
.fit-panel li {
  position: relative;
  padding-left: 20px;
}

.compare-card li::before,
.fit-panel li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  content: "";
}

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.fit-panel {
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.fit-panel.good {
  border-color: rgba(47, 111, 94, 0.32);
}

.fit-panel.bad {
  background: #f2ece3;
}

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

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 22px 24px;
  color: var(--text);
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-weight: 800;
}

.faq-question span {
  flex: 1;
}

.faq-icon {
  color: var(--primary);
  font-size: 24px;
  line-height: 1;
}

.faq-answer {
  display: none;
  padding: 0 24px 22px;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.final-section {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 54px;
  align-items: start;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-links a {
  padding: 10px 14px;
  color: var(--primary);
  background: rgba(255, 253, 248, 0.62);
  border: 1px solid rgba(47, 111, 94, 0.22);
  border-radius: 8px;
  font-weight: 800;
}

.lead-form {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.form-row {
  margin-bottom: 14px;
}

.form-row label {
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 800;
}

.form-row input,
.form-row textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  color: var(--text);
  background: #f9f4eb;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
}

.form-row textarea {
  min-height: 104px;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: rgba(47, 111, 94, 0.5);
  box-shadow: 0 0 0 4px rgba(47, 111, 94, 0.1);
}

.privacy-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 16px 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.privacy-check a {
  color: var(--primary);
  font-weight: 800;
}

.form-button {
  width: 100%;
}

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

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 32px 0 42px;
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.success-page,
.privacy-page {
  min-height: 100vh;
}

.simple-page {
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
}

.simple-card {
  padding: 36px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.simple-card p,
.simple-card li {
  color: var(--muted);
}

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

  .main-nav {
    display: none;
  }

  .hero,
  .split-intro,
  .difference-section,
  .final-section {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero {
    min-height: 0;
  }

  .cards-grid,
  .proof-grid,
  .system-flow {
    grid-template-columns: 1fr 1fr;
  }

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

  .process-card p {
    grid-column: 2;
  }
}

@media (max-width: 680px) {
  .site-header {
    width: min(100% - 24px, 1180px);
    margin-top: 10px;
  }

  .brand {
    min-width: 0;
  }

  .brand small,
  .header-cta {
    display: none;
  }

  .section,
  .section-tight {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 68px 0;
  }

  .section-tight {
    padding-bottom: 56px;
  }

  .hero {
    padding-top: 52px;
  }

  h1 {
    font-size: clamp(34px, 10.4vw, 44px);
    line-height: 1.04;
  }

  h2 {
    font-size: clamp(28px, 9vw, 40px);
  }

  .hero-text,
  .section-heading p,
  .split-intro > p,
  .difference-copy p,
  .form-copy p {
    font-size: 16px;
  }

  .hero-facts,
  .cards-grid,
  .proof-grid,
  .system-flow,
  .compare-grid,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .board-content,
  .lead-form,
  .simple-card {
    padding: 22px;
  }

  .process-card {
    display: block;
  }

  .process-index {
    margin-bottom: 16px;
  }

  .site-footer {
    display: block;
    width: min(100% - 28px, 1180px);
  }

  .footer-links {
    margin-top: 18px;
  }
}
