:root {
  --bg: #f6f3ec;
  --ink: #182017;
  --muted: #657061;
  --card: #fffdf7;
  --line: rgba(24, 32, 23, 0.12);
  --forest: #174b34;
  --forest-2: #0e3525;
  --gold: #c18b32;
  --mint: #dff2de;
  --shadow: 0 24px 70px rgba(31, 43, 29, 0.16);
  --radius: 28px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(193, 139, 50, 0.18), transparent 30rem),
    linear-gradient(180deg, #fbf7ef 0%, var(--bg) 52%, #efe7d9 100%);
  font-family: "Segoe UI", Tahoma, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(24, 32, 23, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 32, 23, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 16px min(32px, 5vw);
  background: rgba(251, 247, 239, 0.84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand {
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: var(--forest);
  border-radius: 12px;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.92rem;
  text-decoration: none;
}

.nav-links {
  justify-content: flex-end;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.86rem 1.2rem;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--forest), var(--forest-2));
  box-shadow: 0 18px 36px rgba(23, 75, 52, 0.22);
}

.btn-ghost,
.btn-small {
  color: var(--forest);
  background: rgba(23, 75, 52, 0.08);
  border: 1px solid rgba(23, 75, 52, 0.14);
}

.btn-small {
  min-height: 40px;
  padding: 0.6rem 1rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 70px;
}

.hero-glow {
  position: absolute;
  top: 10%;
  right: -8rem;
  width: 28rem;
  height: 28rem;
  background: rgba(23, 75, 52, 0.15);
  border-radius: 999px;
  filter: blur(40px);
}

.hero-grid,
.split {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: 44px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  max-width: 100%;
  width: fit-content;
  padding: 0.34rem 0.72rem;
  color: var(--forest);
  background: rgba(23, 75, 52, 0.08);
  border: 1px solid rgba(23, 75, 52, 0.14);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: normal;
}

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

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

h1 {
  max-width: 780px;
  margin: 1.1rem 0 1.2rem;
  font-size: clamp(2.55rem, 7vw, 5.4rem);
  line-height: 0.94;
  letter-spacing: -0.08em;
}

h2 {
  max-width: 760px;
  margin: 0.9rem 0 1rem;
  font-size: clamp(1.9rem, 4vw, 3.15rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.1rem;
}

.lead,
.section-lead {
  color: var(--muted);
  font-size: clamp(1.04rem, 2vw, 1.22rem);
}

.hero-copy {
  min-width: 0;
}

.hero-actions,
.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-list {
  padding: 0;
  list-style: none;
}

.trust-list li {
  min-width: 0;
  padding: 0.55rem 0.75rem;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.diagnostic-card,
.card,
.proof-panel,
.final-card {
  background: rgba(255, 253, 247, 0.86);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.diagnostic-card {
  padding: 24px;
  border-radius: var(--radius);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.status-dot {
  width: 10px;
  height: 10px;
  background: #25d366;
  border-radius: 999px;
  box-shadow: 0 0 0 7px rgba(37, 211, 102, 0.14);
}

label {
  display: block;
  margin: 14px 0 7px;
  color: var(--ink);
  font-weight: 800;
  font-size: 0.9rem;
}

input,
select {
  width: 100%;
  min-height: 48px;
  padding: 0.8rem 0.9rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(24, 32, 23, 0.16);
  border-radius: 14px;
}

input:focus,
select:focus {
  outline: 3px solid rgba(193, 139, 50, 0.22);
  border-color: var(--gold);
}

.form-btn {
  width: 100%;
  margin-top: 18px;
}

.privacy-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.section {
  padding: 72px 0;
}

.muted {
  background: rgba(255, 253, 247, 0.42);
  border-block: 1px solid var(--line);
}

.grid {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

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

.card {
  min-height: 230px;
  padding: 24px;
  border-radius: 24px;
}

.card p,
.steps p,
.proof-list,
.faq p,
.final-card p,
.footer {
  color: var(--muted);
}

.card-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  place-items: center;
  color: var(--forest);
  background: var(--mint);
  border-radius: 14px;
  font-weight: 900;
}

.steps {
  display: grid;
  gap: 12px;
}

.steps article {
  padding: 18px;
  background: #fffdf7;
  border: 1px solid var(--line);
  border-radius: 20px;
}

.steps strong {
  display: block;
  margin-bottom: 0.3rem;
}

.proof-panel {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 28px;
  align-items: center;
  padding: 30px;
  border-radius: var(--radius);
}

.proof-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 1.2rem;
}

.narrow {
  max-width: 820px;
}

.faq details {
  margin-top: 12px;
  padding: 18px 20px;
  background: rgba(255, 253, 247, 0.8);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
}

.faq p {
  margin: 0.8rem 0 0;
}

.final-cta {
  padding: 30px 0 82px;
}

.final-card {
  padding: clamp(28px, 6vw, 56px);
  text-align: center;
  border-radius: 34px;
}

.final-card .eyebrow,
.final-card h2,
.final-card p {
  margin-left: auto;
  margin-right: auto;
}

.footer {
  padding: 28px 20px;
  text-align: center;
  font-size: 0.9rem;
}

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

  .nav-links a {
    display: none;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-grid,
  .split,
  .proof-panel {
    grid-template-columns: 1fr;
  }

  .cards-3 {
    grid-template-columns: 1fr;
  }

  .diagnostic-card {
    padding: 18px;
  }
}

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

  .site-header {
    padding: 12px 14px;
  }

  .brand span:last-child {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .btn {
    width: 100%;
  }

  h1 {
    font-size: clamp(2.25rem, 15vw, 3.7rem);
    letter-spacing: -0.075em;
  }

  .hero-actions {
    flex-direction: column;
  }

  .trust-list {
    display: grid;
    grid-template-columns: 1fr;
  }

  .trust-list li {
    border-radius: 18px;
  }

  .section {
    padding: 54px 0;
  }
}
