@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;1,400;1,600&family=DM+Sans:opsz,wght@9..40,400;9..40,500&display=swap');

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

:root {
  --green: #1A7A56;
  --green-light: #E8F5EF;
  --green-dark: #0F5C3A;
  --green-deep: #0A4229;
  --green-deeper: #062B1C;
  --blue-light: #E6F1FB;
  --blue-mid: #0C447C;
  --text: #1C1917;
  --text-muted: #6B6560;
  --text-faint: #A89E96;
  --border: #E5E0D8;
  --border-mid: #C8C2B8;
  --bg: #FFFDF9;
  --bg-soft: #F5F0E8;
  --bg-softer: #EDE8DF;
  --amber: #C9962A;
  --radius: 10px;
  --radius-lg: 14px;
  --radius-xl: 18px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2.5rem;
  border-bottom: 0.5px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(255,253,249,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
}

.logo { font-size: 17px; font-weight: 500; letter-spacing: -0.3px; text-decoration: none; color: var(--text); }
.logo span { color: var(--green); }
.nav-links { display: flex; gap: 1.75rem; align-items: center; }
.nav-links a { font-size: 14px; color: var(--text-muted); text-decoration: none; transition: color 0.15s; }
.nav-links a:hover { color: var(--text); }

.btn-primary { background: var(--green); color: #fff; border: none; padding: 0.65rem 1.4rem; border-radius: var(--radius); font-size: 14px; font-weight: 500; cursor: pointer; font-family: inherit; text-decoration: none; display: inline-block; transition: background 0.15s, transform 0.1s; line-height: 1; }
.btn-primary:hover { background: var(--green-dark); }
.btn-primary:active { transform: scale(0.98); }
.btn-primary.lg { padding: 0.85rem 2rem; font-size: 15px; }

.btn-outline { background: transparent; color: var(--text); border: 0.5px solid var(--border-mid); padding: 0.65rem 1.4rem; border-radius: var(--radius); font-size: 14px; font-weight: 500; cursor: pointer; font-family: inherit; text-decoration: none; display: inline-block; transition: background 0.15s, transform 0.1s; line-height: 1; }
.btn-outline:hover { background: var(--bg-soft); }
.btn-outline:active { transform: scale(0.98); }
.btn-outline.lg { padding: 0.85rem 2rem; font-size: 15px; }

.btn-white { background: #fff; color: var(--green-deep); border: none; padding: 0.85rem 2rem; border-radius: var(--radius); font-size: 15px; font-weight: 500; cursor: pointer; font-family: inherit; text-decoration: none; display: inline-block; transition: background 0.15s; }
.btn-white:hover { background: #f5f2ed; }

.btn-ghost { background: transparent; color: rgba(255,255,255,0.85); border: 0.5px solid rgba(255,255,255,0.3); padding: 0.85rem 2rem; border-radius: var(--radius); font-size: 15px; font-weight: 500; cursor: pointer; font-family: inherit; text-decoration: none; display: inline-block; transition: background 0.15s; }
.btn-ghost:hover { background: rgba(255,255,255,0.08); }

.badge { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 500; padding: 4px 12px; border-radius: 20px; }
.badge-green { background: var(--green-light); color: var(--green-deep); }
.badge-blue { background: var(--blue-light); color: var(--blue-mid); }
.badge-gray { background: var(--bg-softer); color: var(--text-muted); }
.badge-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); }

.card { background: var(--bg); border: 0.5px solid var(--border); border-radius: var(--radius-lg); padding: 1.25rem; }

.stars { display: flex; gap: 3px; }
.star { width: 11px; height: 11px; background: var(--amber); clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%); }
.star-empty { background: #D8D2C8; }

hr.divider { border: none; border-top: 0.5px solid var(--border); margin: 0 2.5rem; }

.section-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 1px; color: var(--green); text-transform: uppercase; text-align: center; margin-bottom: 0.75rem; }
.section-title { font-family: 'Lora', serif; font-size: 34px; font-weight: 400; text-align: center; letter-spacing: -0.3px; margin-bottom: 0.75rem; line-height: 1.2; color: var(--text); }
.section-sub { font-size: 16px; color: var(--text-muted); text-align: center; max-width: 480px; margin: 0 auto 3.5rem; line-height: 1.7; }

.field { margin-bottom: 1.25rem; }
.field label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 5px; color: var(--text); }
.field .sublabel { font-size: 12px; color: var(--text-muted); margin-bottom: 7px; display: block; }

input[type=text], input[type=email], select, textarea { width: 100%; font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--text); background: var(--bg); border: 0.5px solid var(--border-mid); border-radius: var(--radius); padding: 0.65rem 0.85rem; outline: none; transition: border-color 0.15s; appearance: none; -webkit-appearance: none; }
input:focus, select:focus, textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(26,122,86,0.12); }
textarea { resize: vertical; min-height: 80px; line-height: 1.6; }
select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A89E96' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.85rem center; padding-right: 2.5rem; }

.notice { background: var(--bg-soft); border-radius: var(--radius); border: 0.5px solid var(--border); padding: 0.75rem 1rem; font-size: 13px; color: var(--text-muted); line-height: 1.6; display: flex; gap: 8px; }
.notice-green { background: var(--green-light); border-color: rgba(26,122,86,0.25); color: var(--green-dark); }
.notice svg { flex-shrink: 0; margin-top: 1px; }

.error-msg { font-size: 12px; color: #A32D2D; margin-top: 4px; display: none; }
.error-msg.show { display: block; }

.progress-bar { height: 3px; background: var(--bg-softer); border-radius: 2px; margin-bottom: 2rem; overflow: hidden; }
.progress-fill { height: 100%; background: var(--green); border-radius: 2px; transition: width 0.4s ease; }

.progress-steps { display: flex; align-items: center; margin-bottom: 2.5rem; }
.ps { display: flex; align-items: center; gap: 6px; }
.ps-dot { width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 500; flex-shrink: 0; }
.ps-dot.done { background: var(--green); color: #fff; }
.ps-dot.active { background: var(--green); color: #fff; }
.ps-dot.todo { background: var(--bg-soft); color: var(--text-muted); border: 0.5px solid var(--border-mid); }
.ps-label { font-size: 12px; color: var(--text-muted); }
.ps-label.active { color: var(--text); font-weight: 500; }
.ps-line { flex: 1; height: 0.5px; background: var(--border); margin: 0 8px; }

footer { padding: 1.5rem 2.5rem; border-top: 0.5px solid var(--border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; background: var(--bg-soft); }
footer p { font-size: 13px; color: var(--text-faint); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 13px; color: var(--text-faint); text-decoration: none; }
.footer-links a:hover { color: var(--text-muted); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.5s ease both; }
.fade-up-1 { animation-delay: 0.05s; }
.fade-up-2 { animation-delay: 0.1s; }
.fade-up-3 { animation-delay: 0.18s; }
.fade-up-4 { animation-delay: 0.26s; }

@media (max-width: 640px) {
  nav { padding: 1rem 1.25rem; }
  .nav-links a:not(:last-child) { display: none; }
  hr.divider { margin: 0 1.25rem; }
  footer { padding: 1.25rem; flex-direction: column; align-items: flex-start; }
  .section-title { font-size: 26px; }
}
