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

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

:root {
  --black: #0E0E0E;
  --white: #F5F2EE;
  --accent: #1B6B4A;
  --accent-light: #D4EDE3;
  --accent-mid: #2A9669;
  --warm: #E8E0D4;
  --warm-dark: #C4B89E;
  --muted: #6B6560;
  --surface: #FDFBF8;
  --border: rgba(14,14,14,0.09);
  --red: #C0392B;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
}

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

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 64px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 20px;
  letter-spacing: -0.5px; display: flex; align-items: center; gap: 8px;
}
.logo-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-mid); display: inline-block; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { font-size: 14px; color: var(--muted); transition: color 0.2s; }
.nav-links a:hover { color: var(--black); }
.nav-cta {
  background: var(--black) !important; color: var(--white) !important;
  padding: 8px 20px; border-radius: 100px; font-size: 13px !important; font-weight: 500 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--accent) !important; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--black); color: var(--white);
  padding: 14px 28px; border-radius: 100px;
  font-size: 15px; font-weight: 500; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; transition: background 0.2s, transform 0.15s;
  display: inline-block; text-align: center;
}
.btn-primary:hover { background: var(--accent); transform: translateY(-1px); }
.btn-secondary {
  background: transparent; color: var(--black);
  padding: 14px 28px; border-radius: 100px;
  font-size: 15px; font-weight: 500; border: 1.5px solid rgba(14,14,14,0.2);
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  transition: border-color 0.2s, transform 0.15s; display: inline-block;
}
.btn-secondary:hover { border-color: var(--black); transform: translateY(-1px); }
.btn-accent {
  background: var(--accent-mid); color: #fff;
  padding: 14px 28px; border-radius: 100px;
  font-size: 15px; font-weight: 500; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; transition: background 0.2s; display: inline-block;
}
.btn-accent:hover { background: var(--accent); }

/* ── SECTION HELPERS ── */
.section-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
}
.section-title {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(28px, 3.5vw, 44px); letter-spacing: -0.5px; line-height: 1.05; margin-bottom: 14px;
}
.section-sub {
  font-size: 16px; font-weight: 300; color: var(--muted);
  max-width: 520px; line-height: 1.7; margin-bottom: 48px;
}

/* ── FOOTER ── */
footer {
  background: var(--black); color: rgba(255,255,255,0.4);
  padding: 40px 48px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
footer .nav-logo { color: var(--white); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: rgba(255,255,255,0.35); font-size: 13px; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.7); }
footer p { font-size: 12px; }

/* ── FORMS ── */
.field-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.flbl { font-size: 11px; font-weight: 500; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; }
.finput {
  border: 1px solid var(--border); border-radius: 10px; padding: 10px 14px;
  font-size: 14px; font-family: 'DM Sans', sans-serif; color: var(--black);
  background: #fff; outline: none; width: 100%; transition: border-color 0.15s;
}
.finput:focus { border-color: var(--accent-mid); }
.fselect {
  border: 1px solid var(--border); border-radius: 10px; padding: 10px 14px;
  font-size: 14px; font-family: 'DM Sans', sans-serif; color: var(--black);
  background: #fff; outline: none; width: 100%;
}
.field-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--black); color: var(--white);
  padding: 18px 48px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.trust-icon {
  width: 28px; height: 28px; background: rgba(255,255,255,0.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px;
}

@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  footer { flex-direction: column; padding: 28px 20px; }
  .trust-bar { padding: 18px 20px; gap: 12px; }
}
