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

:root {
  --bg: #f9f7f4;
  --bg-card: #ffffff;
  --accent: #0b6e4f;
  --accent2: #10b981;
  --accent-light: rgba(11,110,79,0.07);
  --text: #1c1c1c;
  --text2: #3d3d3d;
  --text-muted: #7d7d7d;
  --border: rgba(0,0,0,0.08);
  --shadow: 0 2px 12px rgba(0,0,0,0.05);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* ─── TOP ─── */
.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.top-logo {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.top-logo span { color: var(--accent); }
.top-nav {
  display: flex;
  gap: 1.2rem;
  list-style: none;
}
.top-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.15s;
}
.top-nav a:hover { color: var(--accent); }

/* ─── HERO ─── */
.hero {
  text-align: center;
  padding: 3rem 1.5rem 2rem;
  max-width: 720px;
  margin: 0 auto;
}
.hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
  color: var(--text);
}
.hero h1 span { color: var(--accent); }
.hero p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 500px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}

.hero-form {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  text-align: left;
}
.hero-form input,
.hero-form select,
.hero-form textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text);
  outline: none;
  width: 100%;
  border-radius: 6px;
  transition: border-color 0.15s;
}
.hero-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath fill='%237d7d7d' d='M6 7L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  cursor: pointer;
}
.hero-form input:focus,
.hero-form select:focus,
.hero-form textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-light); }
.hero-form textarea { resize: vertical; min-height: 70px; border-radius: 6px; }
.hero-form input::placeholder,
.hero-form textarea::placeholder { color: var(--text-muted); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.8rem 1.8rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  transition: background 0.15s;
  width: 100%;
}
.btn:hover { background: #095e43; }

.hero-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  padding-top: 0.5rem;
}

/* ─── TRUST BAR ─── */
.trust {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 1.5rem 1.5rem 2.5rem;
  max-width: 600px;
  margin: 0 auto;
}
.trust-item {
  text-align: center;
}
.trust-item strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
}
.trust-item span {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ─── SECTION ─── */
.wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.block {
  padding: 2rem 0;
}
.block:first-of-type { border-top: 1px solid var(--border); }
.block h2 {
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}
.block p {
  color: var(--text2);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0.6rem;
}

.benefits {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1rem 0;
}
.ben-item {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}
.ben-check {
  width: 20px;
  height: 20px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.ben-item p {
  color: var(--text2);
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 0;
}

/* ─── QUOTE ─── */
.quote {
  background: var(--accent-light);
  padding: 1.2rem 1.5rem;
  border-left: 3px solid var(--accent);
  margin: 0.5rem 0 1.5rem;
  border-radius: 0 6px 6px 0;
}
.quote p {
  font-style: italic;
  color: var(--text2);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 0.4rem;
}
.quote cite {
  font-style: normal;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ─── HOW IT WORKS ROW ─── */
.steps-row {
  display: flex;
  gap: 1rem;
  padding: 0.5rem 0 0;
}
.step {
  flex: 1;
  text-align: center;
}
.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem;
}
.step h3 {
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.2rem;
}
.step p {
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.5;
  margin: 0;
}

/* ─── FOOTER ─── */
.footer {
  border-top: 1px solid var(--border);
  margin-top: 2rem;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.78rem;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--accent); }
.footer p {
  color: var(--text-muted);
  font-size: 0.76rem;
}

/* ─── PARTNERS ─── */
.phead {
  padding: 2rem 1.5rem 0;
  max-width: 640px;
  margin: 0 auto;
}
.phead h1 {
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 0.2rem;
}
.phead h1 span { color: var(--accent); }
.phead p { color: var(--text-muted); font-size: 0.82rem; }

.p-controls {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  align-items: center;
  padding: 1rem 1.5rem;
  max-width: 640px;
  margin: 0 auto;
}
.p-search {
  position: relative;
  flex: 1;
  min-width: 140px;
  max-width: 220px;
}
.p-search input {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 0.5rem 0.7rem 0.5rem 1.7rem;
  font-size: 0.8rem;
  font-family: inherit;
  color: var(--text);
  outline: none;
  border-radius: 5px;
}
.p-search input:focus { border-color: var(--accent); }
.p-search input::placeholder { color: var(--text-muted); }
.p-search-icon {
  position: absolute;
  left: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.6rem;
  color: var(--text-muted);
  pointer-events: none;
}

.p-tabs { display: flex; gap: 0.15rem; flex-wrap: wrap; }
.p-tab {
  background: none;
  border: none;
  padding: 0.35rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
  font-family: inherit;
  border-radius: 4px;
}
.p-tab:hover { color: var(--accent); background: var(--accent-light); }
.p-tab.active {
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.p-wrap { max-width: 640px; margin: 0 auto; padding: 0 1.5rem 3rem; }
.p-count {
  font-size: 0.72rem;
  color: var(--text-muted);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0.5rem;
}
.p-count strong { color: var(--accent); }

.l-group { margin-bottom: 1.2rem; }
.l-label {
  font-weight: 700;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.2rem;
  margin-bottom: 0.4rem;
}

.p-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.25rem;
}

.p-card {
  padding: 0.3rem 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 1px solid var(--border);
}
.p-card:hover { border-color: var(--accent); }

.p-icon {
  width: 18px;
  height: 18px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
  border-radius: 3px;
}

.p-name {
  font-size: 0.75rem;
  color: var(--text);
  line-height: 1.3;
}

.no-r { text-align: center; padding: 2rem; color: var(--text-muted); display: none; }
.no-r.show { display: block; }

/* ─── LEGAL ─── */
.l-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.l-hero {
  padding: 2rem 0 0;
}
.l-hero h1 {
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 0.15rem;
}
.l-hero p { color: var(--text-muted); font-size: 0.78rem; }

.l-body { padding: 1rem 0 3rem; }
.l-body h2 {
  font-weight: 700;
  font-size: 1rem;
  margin: 1.5rem 0 0.4rem;
}
.l-body p {
  color: var(--text2);
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}
.l-body ul {
  color: var(--text2);
  font-size: 0.85rem;
  line-height: 1.7;
  margin: 0 0 0.5rem 1.2rem;
}
.l-body ul li { margin-bottom: 0.15rem; }

/* ─── MOBILE ─── */
@media (max-width: 640px) {
  .top-nav { display: none; }
  .steps-row { flex-direction: column; gap: 0.8rem; }
  .step { text-align: left; display: flex; gap: 0.7rem; align-items: flex-start; }
  .step-num { margin: 0; flex-shrink: 0; }
  .footer { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .p-controls { flex-direction: column; align-items: stretch; }
  .p-search { max-width: none; }
  .trust { gap: 1.2rem; }
}