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

:root {
  --bg: #f0f5fe;
  --bg2: #e6eefa;
  --bg-card: #ffffff;
  --teal: #0f766e;
  --teal-light: rgba(15,118,110,0.06);
  --teal-mid: rgba(15,118,110,0.13);
  --blue: #1d4ed8;
  --blue-soft: rgba(29,78,216,0.05);
  --text: #0f172a;
  --text2: #334155;
  --text-muted: #64748b;
  --border: rgba(15,118,110,0.08);
  --shadow-card: 0 2px 12px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.03);
  --shadow-hover: 0 8px 24px rgba(0,0,0,0.07);
  --radius: 16px;
  --font-head: 'Outfit', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; }

/* ─── HEADER ─── */
.hdr {
  padding: 0 2rem;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.hdr-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.hdr-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.hdr-logo::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--teal);
  border-radius: 3px;
}
.hdr-logo span { color: var(--teal); }
.hdr-nav { display: flex; gap: 0.3rem; align-items: center; }
.hdr-nav a {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.hdr-nav a:hover { background: var(--teal-light); color: var(--teal); }
.hdr-cta {
  background: var(--teal);
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-head);
  transition: background 0.2s, transform 0.15s;
  margin-left: 0.5rem;
}
.hdr-cta:hover { background: #0d6b64; transform: translateY(-1px); }

/* ─── HERO ─── */
.hero {
  padding: 4rem 2rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(15,118,110,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { max-width: 740px; margin: 0 auto; position: relative; z-index: 2; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--teal-light);
  border: 1px solid var(--teal-mid);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 1rem;
}
.hero h1 .hl {
  background: linear-gradient(135deg, var(--teal), #0d9488);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero h1 .hl2 {
  background: linear-gradient(135deg, var(--blue), #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 550px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.hf {
  max-width: 520px;
  margin: 0 auto;
  text-align: left;
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 2rem;
  border: 1px solid var(--border);
}
.hf h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--teal);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hf h3::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.hf input,
.hf select,
.hf textarea {
  display: block;
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.78rem 1rem;
  font-size: 0.87rem;
  font-family: var(--font-body);
  color: var(--text);
  outline: none;
  margin-bottom: 0.7rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.hf 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='%2364748b' d='M6 7L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  cursor: pointer;
}
.hf input:focus,
.hf select:focus,
.hf textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-light); }
.hf textarea { resize: vertical; min-height: 70px; margin-bottom: 1rem; }

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  background: linear-gradient(135deg, var(--teal), #0d9488);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 0.85rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(15,118,110,0.25);
}
.btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

.hn {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.8rem;
}

/* ─── EMBEDDED FORM ─── */
.fc-body {
  width: 100%;
  margin: 0;
  padding: 0;
}
.embed-form-wrap {
  width: 100%;
  min-height: 120px;
  margin: 0;
  padding: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.embed-form-wrap > * {
  width: 100% !important;
  max-width: 100% !important;
}
.embed-form-wrap iframe {
  width: 100% !important;
}

/* ─── STATS BAR ─── */
.stats {
  padding: 2.5rem 2rem;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.stats-i {
  text-align: center;
  padding: 0 0.5rem;
}
.stats-i strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.8rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--teal), #0d9488);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stats-i span {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-top: 0.3rem;
}

/* ─── SECTION ─── */
.wr { max-width: 740px; margin: 0 auto; padding: 4rem 2rem; }
.blk { margin-bottom: 3.5rem; }
.blk:last-child { margin-bottom: 0; }
.blk h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.blk h2 .h-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--teal);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.15rem 0.5rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.blk h2 em { font-style: normal; color: var(--teal); }
.blk > p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 0.6rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 1.5rem;
}
.gi {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s, box-shadow 0.2s;
}
.gi:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.gi-icon {
  width: 36px;
  height: 36px;
  background: var(--teal-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 0.8rem;
  color: var(--teal);
}
.gi h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 0.3rem;
}
.gi p {
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.65;
  margin: 0;
}

.str {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.st {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.st::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 50%;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), #0d9488);
  border-radius: 2px;
}
.st-n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--teal);
  color: #fff;
  border-radius: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.75rem;
  margin-bottom: 0.8rem;
}
.st h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 0.4rem;
}
.st p {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.65;
  margin: 0;
}

.qt {
  background: linear-gradient(135deg, var(--bg-card), var(--bg2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  position: relative;
}
.qt-top {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.qt-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal-mid);
}
.qt-dot:nth-child(2) { background: var(--teal); }
.qt-dot:nth-child(3) { background: var(--blue); }
.qt p {
  font-style: italic;
  color: var(--text2);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 0.8rem;
  padding-left: 0.5rem;
  border-left: 3px solid var(--teal);
}
.qt cite {
  font-style: normal;
  font-size: 0.82rem;
  color: var(--teal);
  font-weight: 600;
  display: block;
  padding-left: 0.5rem;
}

/* ─── FOOTER ─── */
.ft {
  padding: 2.5rem 2rem 2rem;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}
.ft-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.ft-brand {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--text);
}
.ft-brand::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 3px;
}
.ft-brand span { color: var(--teal); }
.ft-links { display: flex; gap: 1.8rem; flex-wrap: wrap; }
.ft-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color 0.2s;
}
.ft-links a:hover { color: var(--teal); }
.ft-copy {
  max-width: 1100px;
  margin: 1.5rem auto 0;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.78rem;
}

/* ─── PARTNERS ─── */
.ph { padding: 3rem 2rem 0; max-width: 740px; margin: 0 auto; }
.ph h1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
}
.ph h1 span { background: linear-gradient(135deg, var(--teal), #0d9488); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.ph p { color: var(--text-muted); font-size: 0.88rem; margin-top: 0.2rem; }

.pc { display: flex; gap: 0.8rem; flex-wrap: wrap; align-items: center; padding: 1rem 2rem; max-width: 740px; margin: 0 auto; }
.ps { position: relative; flex: 1; min-width: 150px; max-width: 220px; }
.ps input {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.55rem 0.7rem 0.55rem 1.8rem;
  font-size: 0.8rem;
  font-family: inherit;
  color: var(--text);
  outline: none;
}
.ps input:focus { border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-light); }
.ps input::placeholder { color: var(--text-muted); }
.psi { position: absolute; left: 0.6rem; top: 50%; transform: translateY(-50%); font-size: 0.6rem; color: var(--text-muted); pointer-events: none; }
.pt { display: flex; gap: 0.3rem; flex-wrap: wrap; }
.pt button {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.35rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}
.pt button:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-light); }
.pt button.on { background: var(--teal); border-color: var(--teal); color: #fff; font-weight: 600; }

.pw { max-width: 740px; margin: 0 auto; padding: 0 2rem 4rem; }
.pco { font-size: 0.72rem; color: var(--text-muted); padding: 0.5rem 0; border-bottom: 1px solid var(--border); margin-bottom: 1rem; }
.pco strong { color: var(--teal); }
.lg { margin-bottom: 1.5rem; }
.ll {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--teal);
  background: var(--teal-light);
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}
.pg { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 0.4rem; }
.pcrd {
  padding: 0.45rem 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pcrd:hover { border-color: var(--teal); box-shadow: var(--shadow-card); }
.pi {
  width: 22px; height: 22px;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--teal);
  flex-shrink: 0;
  border-radius: 6px;
}
.pnm { font-size: 0.76rem; color: var(--text2); line-height: 1.3; }
.nr { text-align: center; padding: 2rem; color: var(--text-muted); display: none; }
.nr.sh { display: block; }

/* ─── LEGAL ─── */
.lw { max-width: 720px; margin: 0 auto; padding: 0 2rem; }
.lh { padding: 3rem 0 0; }
.lh h1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}
.lh h1 span { color: var(--teal); }
.lh p { color: var(--text-muted); font-size: 0.78rem; }
.lb { padding: 1.5rem 0 4rem; }
.lb h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 1.5rem 0 0.4rem;
  color: var(--teal);
}
.lb p { color: var(--text2); font-size: 0.87rem; line-height: 1.8; margin-bottom: 0.5rem; }
.lb ul { color: var(--text2); font-size: 0.87rem; line-height: 1.8; margin: 0 0 0.5rem 1.3rem; }
.lb ul li { margin-bottom: 0.15rem; }

/* ─── MOBILE ─── */
@media (max-width: 720px) {
  .hdr-nav a:not(.hdr-cta) { display: none; }
  .hdr { padding: 0 1.2rem; }
  .hero { padding: 2.5rem 1.2rem 2rem; }
  .stats-inner { gap: 1.5rem; }
  .wr { padding: 3rem 1.2rem; }
  .grid-2 { grid-template-columns: 1fr; }
  .str { flex-direction: column; }
  .ft-inner { flex-direction: column; text-align: center; }
  .ft-links { justify-content: center; }
  .ph { padding-left: 1.2rem; padding-right: 1.2rem; }
  .pc { flex-direction: column; align-items: stretch; padding-left: 1.2rem; padding-right: 1.2rem; }
  .ps { max-width: none; }
  .pw { padding-left: 1.2rem; padding-right: 1.2rem; }
  .lw { padding: 0 1.2rem; }
}