:root {
  --bg: #fffdf8;
  --bg-soft: #f9f6ee;
  --surface: #ffffff;
  --text: #1f2a2e;
  --muted: #5a6a70;
  --line: #e7e1d4;
  --primary: #1f8a70;
  --primary-hover: #176a56;
  --accent: #f5b27f;
  --accent-soft: #fde7d7;
  --shadow: 0 14px 38px rgba(31, 42, 46, 0.12);
  --radius-xl: 24px;
  --radius-md: 14px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Nunito", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 88% 5%, rgba(245, 178, 127, 0.22), transparent 34%),
    radial-gradient(circle at 14% 18%, rgba(31, 138, 112, 0.1), transparent 26%),
    var(--bg);
  line-height: 1.6;
}

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

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

.section {
  padding: clamp(3.2rem, 6vw, 5.6rem) 0;
}

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

.section-highlight {
  background: linear-gradient(180deg, #fff8ef 0%, #fffdf7 100%);
}

h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin-bottom: 1.2rem;
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
}

p {
  margin: 0 0 1rem;
}

.lead {
  color: var(--muted);
  font-size: 1.08rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 248, 0.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(231, 225, 212, 0.7);
}

.nav-wrap {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.brand-logo {
  display: block;
  width: 170px;
  height: auto;
  margin-top: 3px;
  margin-left: -10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0.8rem 1.3rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(31, 138, 112, 0.25);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: #fff;
}

.hero {
  padding-top: clamp(3rem, 7vw, 6rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  background: var(--accent-soft);
  color: #7b4f2d;
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
}

.hero-note {
  color: var(--muted);
  margin: 0;
}

.hero-visual {
  position: relative;
  min-height: 370px;
}

.pdf-card {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.pdf-card h3 {
  margin-bottom: 0.6rem;
}

.pdf-card ul {
  margin: 0.6rem 0 0;
  padding-left: 1.15rem;
}

.pdf-card-back {
  width: 72%;
  left: 8%;
  top: 4%;
  transform: rotate(-4deg);
  background: linear-gradient(160deg, #fffdf9, #fff5eb);
}

.pdf-card-front {
  width: 76%;
  right: 2%;
  top: 20%;
  transform: rotate(2.2deg);
}

.chip {
  display: inline-flex;
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
  background: #e8f7f2;
  color: #1f6c59;
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.task-block {
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 0.65rem 0.8rem;
  margin-top: 0.55rem;
  font-size: 0.96rem;
  background: #fffdfa;
}

.steps-grid,
.benefits-grid,
.preview-grid {
  display: grid;
  gap: 1rem;
}

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

.card,
.preview-card,
.benefit-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.15rem;
}

.step-num {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-content: center;
  border-radius: 999px;
  background: #e8f7f2;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

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

.section-intro {
  color: var(--muted);
}

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

.preview-label {
  margin-bottom: 0.4rem;
  color: var(--muted);
  font-weight: 700;
}

.split-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
}

.check-list,
.trust-box ul {
  margin: 0;
  padding-left: 1.15rem;
}

.check-list li,
.trust-box li {
  margin-bottom: 0.7rem;
}

.trust-box {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  background: #fff;
  box-shadow: 0 8px 20px rgba(31, 42, 46, 0.08);
}

.form-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.2rem;
  align-items: start;
}

.lead-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

label {
  display: grid;
  gap: 0.45rem;
  font-weight: 700;
  font-size: 0.95rem;
}

input,
select {
  width: 100%;
  border: 1px solid #d9d2c4;
  border-radius: 10px;
  padding: 0.68rem 0.76rem;
  font: inherit;
  color: var(--text);
  background: #fff;
}

input:focus,
select:focus {
  outline: 2px solid rgba(31, 138, 112, 0.2);
  border-color: var(--primary);
}

.consent-row {
  margin: 0.95rem 0;
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-weight: 500;
}

.consent-row input[type="checkbox"] {
  margin-top: 0.28rem;
  width: auto;
}

.form-note {
  min-height: 1.2rem;
  margin-top: 0.65rem;
  font-weight: 700;
}

.form-note.success {
  color: #1f6c59;
}

.form-note.error {
  color: #9a3b2d;
}

.faq-list {
  display: grid;
  gap: 0.65rem;
}

details {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem 0.95rem;
  background: #fff;
}

summary {
  cursor: pointer;
  font-weight: 700;
}

summary::-webkit-details-marker {
  display: none;
}

.final-cta {
  background: linear-gradient(180deg, #fffdf8 0%, #f6f1e8 100%);
}

.final-cta-wrap {
  text-align: center;
  max-width: 760px;
}

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

.footer-wrap {
  min-height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero-grid,
  .split-grid,
  .form-wrap {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    min-height: 330px;
  }
}

@media (max-width: 720px) {
  .steps-grid,
  .benefits-grid,
  .preview-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .nav-wrap {
    height: 68px;
  }

  .brand-logo {
    width: 142px;
    margin-left: -7px;
  }

  .btn {
    width: 100%;
  }

  .site-header .btn {
    width: auto;
    padding: 0.6rem 0.9rem;
    font-size: 0.92rem;
  }

  .hero-visual {
    min-height: 300px;
  }

  .pdf-card-back {
    width: 88%;
    left: 0;
  }

  .pdf-card-front {
    width: 90%;
    right: 0;
  }
}
