:root {
  --bg: #f8f5f0;
  --card: #fffdf9;
  --text: #2f2a26;
  --muted: #6b625c;
  --border: #e8dfd6;
  --button: #efe6db;
  --button-hover: #e5d9ca;
}

* {
  box-sizing: border-box;
}

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

.site-wrapper {
  width: min(100%, 920px);
  margin: 0 auto;
  padding: 20px;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 8px 0 24px;
}

.brand {
  font-size: 1rem;
  font-weight: 700;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.main-nav a {
  text-decoration: none;
  color: var(--text);
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.main-nav a.active,
.main-nav a:hover {
  border-color: var(--border);
  background: var(--card);
}

.hero-page,
.content-page {
  min-height: calc(100vh - 110px);
}

.hero-page {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card,
.offer-card,
.page-intro,
.contact-form,
.soft-cta,
.steps-list,
.message {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
}

.hero-card {
  width: 100%;
  max-width: 680px;
  padding: 42px 24px;
  text-align: center;
}

.narrow {
  max-width: 760px;
  margin: 0 auto;
}

.page-intro,
.offer-card,
.contact-form,
.soft-cta,
.steps-list,
.message {
  padding: 24px;
  margin-bottom: 18px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

h1, h2 {
  line-height: 1.25;
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 14px;
}

h2 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.intro {
  max-width: 560px;
  margin: 0 auto 24px;
  color: var(--muted);
}

.button-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0 18px;
}

.big-button {
  display: inline-block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  border: 1px solid var(--border);
  background: var(--button);
  color: var(--text);
  padding: 15px 18px;
  border-radius: 16px;
  font-weight: 600;
  transition: 0.2s ease;
  cursor: pointer;
}

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

.mini-note {
  color: var(--muted);
  font-size: 0.95rem;
}

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

.step-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.step-number {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: var(--bg);
  font-weight: 700;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

label {
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  font: inherit;
  color: var(--text);
}

textarea {
  resize: vertical;
}

.message.success {
  background: #f4f8f0;
}

.message.error {
  background: #fcf1f1;
}

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

  .main-nav {
    width: 100%;
  }

  .main-nav a {
    flex: 1 1 auto;
    text-align: center;
  }

  .hero-card {
    padding: 32px 18px;
  }
}
