*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }

:root {
  --bg: #F4F8F6;
  --surface: #FFFFFF;
  --ink: #0E110F;
  --ink-soft: #4B564E;
  --green: #145C38;
  --green-deep: #0D3E26;
  --green-soft: #E7F1EA;
  --line: rgba(14, 17, 15, 0.14);
}

html, body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  min-height: 100vh;
}

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

h1, h2, h3 {
  font-family: "Fraunces", "Georgia", serif;
  font-weight: 650;
  margin: 0;
  letter-spacing: -0.01em;
}

p { margin: 0; }

.container { max-width: 1440px; margin: 0 auto; width: 100%; box-sizing: border-box; position: relative; }
.pad-x { padding-left: 80px; padding-right: 80px; }
@media (max-width: 680px) { .pad-x { padding-left: 20px; padding-right: 20px; } }

.eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--green-deep);
}

.card { background: var(--surface); border: 1px solid var(--line); border-radius: 20px; }

.navlink { font-size: 15px; font-weight: 600; color: var(--ink-soft); }
.navlink:hover { color: var(--ink); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 28px; border-radius: 999px; font-size: 15px; font-weight: 600;
  cursor: pointer; border: 1.5px solid transparent; background: none; font-family: inherit;
}
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-deep); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); }

.site-header {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px; padding-bottom: 24px; flex-wrap: wrap; gap: 12px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-family: "Fraunces", serif; font-weight: 650; font-size: 19px; }
.brand-text small { font-size: 10.5px; font-weight: 600; color: var(--ink-soft); letter-spacing: 0.02em; }
.nav-links { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
@media (max-width: 680px) { .nav-links { gap: 12px; } .nav-links a.navlink { display: none; } }

.hero-title { font-size: 56px; line-height: 1.08; }
@media (max-width: 680px) { .hero-title { font-size: 32px; } }
.section-title { font-size: 32px; }
@media (max-width: 680px) { .section-title { font-size: 24px; } }

.cta-row { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
@media (max-width: 680px) { .cta-row { flex-direction: column; align-items: stretch; } }

.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
@media (max-width: 680px) { .grid-3 { grid-template-columns: 1fr; } }

.row-between { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
@media (max-width: 680px) { .row-between { flex-direction: column; align-items: flex-start; } }

.card-row { display: flex; gap: 32px; align-items: flex-start; }
@media (max-width: 680px) { .card-row { flex-direction: column; } }

.deco-sunflower { position: absolute; top: -140px; right: -120px; opacity: 0.5; pointer-events: none; }
@media (max-width: 680px) { .deco-sunflower { width: 220px; height: 220px; top: -60px; right: -60px; opacity: 0.35; } }

.site-footer {
  border-top: 1px solid var(--line); padding-top: 36px; padding-bottom: 44px;
  display: flex; flex-direction: column; gap: 20px;
}
.footer-note { font-size: 12.5px; color: var(--ink-soft); opacity: 0.85; }

label { font-size: 13.5px; font-weight: 700; color: var(--ink); display: block; margin-bottom: 8px; }
.hint { font-size: 12px; font-weight: 400; color: var(--ink-soft); display: block; margin-top: 4px; }
input, textarea, select {
  width: 100%; box-sizing: border-box; font-family: inherit; font-size: 15px; color: var(--ink);
  padding: 13px 16px; border-radius: 12px; border: 1.5px solid var(--line); background: #fff;
}
textarea { resize: none; }
.field { display: flex; flex-direction: column; }
.field-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 480px) { .field-row-2 { grid-template-columns: 1fr; } }

.toggle {
  font-size: 14.5px; font-weight: 600; padding: 12px 16px; border-radius: 12px;
  cursor: pointer; text-align: center; border: 1.5px solid var(--line); background: #fff; color: var(--ink);
}
.toggle.active { background: var(--green); color: #fff; border-color: var(--green); }

.form-card { padding: 40px; display: flex; flex-direction: column; gap: 22px; }
@media (max-width: 680px) { .form-card { padding: 22px; } }

.step-card { padding: 28px 36px; display: flex; align-items: flex-start; gap: 12px; }
@media (max-width: 680px) { .step-card { padding: 18px 14px; } }
.step { display: flex; flex-direction: column; align-items: center; gap: 10px; flex: 1; text-align: center; }
.step span { font-size: 13.5px; font-weight: 700; }
@media (max-width: 680px) { .step span { font-size: 11px; } }
.dot { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; flex-shrink: 0; }
@media (max-width: 680px) { .dot { width: 28px; height: 28px; font-size: 12px; } }
.dot-done { background: var(--green); color: #fff; }
.dot-active { background: var(--ink); color: #fff; }
.dot-pending { background: #fff; color: var(--ink-soft); border: 1.5px solid var(--line); }

.template-card { padding: 26px 30px; display: flex; flex-direction: column; gap: 14px; text-align: left; }
@media (max-width: 680px) { .template-card { padding: 18px; } }

.info-box {
  background: var(--green-soft); border-radius: 14px; padding: 16px 20px; text-align: left;
  display: flex; gap: 12px; align-items: flex-start; box-sizing: border-box; width: 100%;
}

.chip {
  font-size: 13.5px; font-weight: 600; padding: 9px 18px; border-radius: 999px;
  border: 1.5px solid var(--line); color: var(--ink-soft); background: #fff; cursor: pointer;
}
.chip.active { background: var(--green); color: #fff; border-color: var(--green); }
.tag { font-size: 11.5px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; }
.tag-category { background: var(--green-soft); color: var(--green-deep); }
.tag-example { background: var(--ink); color: #fff; }

.testimonial { border-left: 3px solid var(--green); padding-left: 16px; }

.legal { max-width: 760px; margin: 0 auto; padding-top: 20px; padding-bottom: 80px; display: flex; flex-direction: column; gap: 24px; }
.legal h2 { font-size: 22px; margin-top: 8px; }
.legal p, .legal li { font-size: 15px; line-height: 1.65; color: var(--ink-soft); }
.legal .placeholder { color: var(--green-deep); font-weight: 600; }
