
/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --mint:       #66ffcc;
  --mint-mid:   #4CBB94;
  --teal:       #51acab;
  --teal-dk:    #38868a;
  --white:      #fefefe;
  --off-white:  #f4fdf9;
  --light-bg:   #eafaf4;
  --dark:       #0d2a1e;
  --dark-mid:   #183d2b;
  --text:       #1a3028;
  --text-mid:   #3d6b57;
  --text-light: #6a9e87;
  --shadow-mint: 0 8px 32px rgba(76,187,148,.22);
  --shadow-card: 0 4px 24px rgba(13,42,30,.09);
  --r-sm: 12px; --r-md: 16px; --r-lg: 24px; --r-pill: 50px;
}

*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior: smooth; }
body { font-family:'Nunito Sans',sans-serif; background:var(--white); color:var(--text); overflow-x:hidden; }

h1,h2,h3,h4 { font-family:'Nunito',sans-serif; font-weight:800; line-height:1.1; }
.eyebrow {
  font-family:'Nunito',sans-serif;
  font-size:.72rem; font-weight:700;
  letter-spacing:.14em; text-transform:uppercase;
}

/* ── NAVBAR ─────────────────────────────────────────────── */
#nav {
  position:fixed; inset:0 0 auto 0; z-index:999;
  display:flex; align-items:center; justify-content:space-between;
  padding:.85rem 6%;
  background:rgba(254,254,254,.92);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(76,187,148,.1);
  transition:box-shadow .3s;
}
#nav.scrolled { box-shadow:0 2px 24px rgba(13,42,30,.07); }
.nav-logo { height:36px; width:auto; display:block; }
.nav-links { display:flex; align-items:center; gap:2rem; list-style:none; }
.nav-links a {
  font-family:'Nunito',sans-serif; font-weight:700; font-size:.88rem;
  color:var(--text-mid); text-decoration:none; transition:color .2s;
}
.nav-links a:hover { color:var(--mint-mid); }
.nav-actions { display:flex; align-items:center; gap:.7rem; }
.btn-ghost {
  font-family:'Nunito',sans-serif; font-weight:700; font-size:.85rem;
  padding:.5rem 1.2rem;
  border:1.5px solid var(--mint-mid); border-radius:var(--r-pill);
  color:var(--mint-mid); background:transparent;
  cursor:pointer; text-decoration:none; transition:all .2s;
}
.btn-ghost:hover { background:var(--mint-mid); color:#fff; }
.btn-solid {
  font-family:'Nunito',sans-serif; font-weight:800; font-size:.85rem;
  padding:.55rem 1.4rem;
  background:var(--mint-mid); border:none; border-radius:var(--r-pill);
  color:var(--white); cursor:pointer; text-decoration:none;
  box-shadow:var(--shadow-mint); transition:all .2s; white-space:nowrap;
}
.btn-solid:hover { background:var(--teal-dk); transform:translateY(-1px); box-shadow:0 12px 32px rgba(76,187,148,.35); }


/* ── SUBPAGE STYLES ────────────────────────────────────── */

/* PAGE HERO */
.page-hero {
  padding: 9rem 6% 4rem;
  background: linear-gradient(160deg, var(--off-white) 0%, var(--white) 100%);
  border-bottom: 1px solid rgba(76,187,148,0.12);
}
.page-hero .eyebrow {
  display: inline-block;
  font-family: Nunito, sans-serif; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mint-mid); margin-bottom: 1rem;
}
.page-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); color: var(--dark); margin-bottom: 1.2rem; }
.page-hero h1 em { font-style: normal; color: var(--teal); }
.page-hero p { font-size: 1.05rem; color: var(--text-mid); max-width: 580px; }

/* SECTION */
.section { padding: 5rem 6%; max-width: 1160px; margin: 0 auto; }
.section-sm { padding: 3rem 6%; max-width: 860px; margin: 0 auto; }
.section h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); color: var(--dark); margin-bottom: 0.5rem; }
.section h2 em { font-style: normal; color: var(--teal); }
.section .lead { font-size: 1rem; color: var(--text-mid); margin-bottom: 2.5rem; max-width: 600px; }
.divider { width: 48px; height: 3px; background: linear-gradient(90deg, var(--teal), var(--mint)); border-radius: 2px; margin: 1rem 0 2rem; }

/* CARDS */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.4rem; }
.card {
  background: var(--white); border: 1.5px solid rgba(76,187,148,0.15);
  border-radius: var(--r-md); padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-mint); border-color: rgba(76,187,148,0.4); }
.card .icon { font-size: 1.8rem; margin-bottom: 0.9rem; }
.card h3 { font-size: 1rem; font-weight: 800; color: var(--dark); margin-bottom: 0.4rem; }
.card p { font-size: 0.88rem; color: var(--text-mid); margin: 0; }

/* LEGAL CONTENT */
.legal-content { max-width: 820px; }
.legal-content h2 {
  font-size: 1rem; font-weight: 800; margin: 2.5rem 0 0.7rem;
  color: var(--dark); display: flex; align-items: center; gap: 0.6rem;
}
.legal-content h2::before {
  content: ''; display: inline-block; width: 4px; height: 1em;
  background: linear-gradient(180deg, var(--teal), var(--mint));
  border-radius: 2px; flex-shrink: 0;
}
.legal-content p { color: var(--text-mid); margin-bottom: 1rem; font-size: 0.93rem; }
.legal-content ul { margin: 0.5rem 0 1rem 1.5rem; }
.legal-content ul li { color: var(--text-mid); font-size: 0.93rem; margin-bottom: 0.4rem; }
.legal-content a { color: var(--teal-dk); }
.legal-box {
  margin-top: 2.5rem; padding: 1.8rem 2rem;
  background: var(--light-bg); border: 1.5px solid rgba(76,187,148,0.2);
  border-radius: var(--r-md);
}
.legal-box h3 { font-size: 0.95rem; font-weight: 800; color: var(--dark); margin-bottom: 0.4rem; }
.legal-box p { font-size: 0.88rem; color: var(--text-mid); margin: 0; }
.legal-box a { color: var(--teal-dk); font-weight: 600; text-decoration: none; }

/* NUMBERS / STATS */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1.2rem; margin: 2rem 0; }
.stat { background: var(--light-bg); border: 1.5px solid rgba(76,187,148,0.18); border-radius: var(--r-md); padding: 1.8rem 1rem; text-align: center; }
.stat .num { font-family: Nunito, sans-serif; font-size: 2.2rem; font-weight: 800; color: var(--teal-dk); }
.stat .label { font-size: 0.8rem; color: var(--text-light); margin-top: 0.2rem; }

/* TAGS */
.tag {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--light-bg); border: 1px solid rgba(76,187,148,0.25);
  color: var(--text-mid); font-size: 0.8rem; font-weight: 600;
  padding: 0.35rem 0.9rem; border-radius: var(--r-pill);
}

/* CTA BOX */
.cta-box {
  background: var(--dark); color: var(--white);
  border-radius: var(--r-lg); padding: 4rem;
  text-align: center; position: relative; overflow: hidden;
}
.cta-box::before { content: ''; position: absolute; top: -80px; right: -80px; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(102,255,204,0.07) 0%, transparent 70%); }
.cta-box h3 { font-size: 1.6rem; font-weight: 800; color: var(--white); margin-bottom: 0.8rem; }
.cta-box h3 span { color: var(--mint); }
.cta-box p { color: rgba(254,254,254,0.65); max-width: 480px; margin: 0 auto 2rem; }
.cta-box .btn-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(135deg, var(--teal), var(--mint-mid));
  color: var(--white); padding: 0.85rem 2.2rem; border-radius: var(--r-pill);
  font-weight: 700; font-size: 0.95rem; font-family: Nunito, sans-serif;
  text-decoration: none; box-shadow: var(--shadow-mint); transition: opacity 0.2s;
}
.cta-box .btn-cta:hover { opacity: 0.85; }
.cta-note { font-size: 0.78rem; color: rgba(254,254,254,0.3); margin-top: 0.8rem; }

/* FOOTER */

/* ── FOOTER ─────────────────────────────────────────────── */
footer { background:var(--dark); padding:3rem 6% 2rem; }
.footer-top {
  display:flex; justify-content:space-between; align-items:flex-start;
  gap:2rem; flex-wrap:wrap;
  margin-bottom:2rem; padding-bottom:2rem;
  border-bottom:1px solid rgba(255,255,255,.07);
}
.footer-logo { height:30px; width:auto; display:block; margin-bottom:.5rem; }
.footer-tagline { font-size:.8rem; color:rgba(255,255,255,.3); line-height:1.5; }
.footer-links { display:flex; gap:3rem; flex-wrap:wrap; }
.footer-col h5 {
  font-family:'Nunito',sans-serif; font-size:.72rem; font-weight:800;
  color:var(--mint); margin-bottom:.75rem;
  letter-spacing:.07em; text-transform:uppercase;
}
.footer-col ul { list-style:none; }
.footer-col li { margin-bottom:.35rem; font-size:.8rem; color:rgba(255,255,255,.4); }
.footer-col a { font-size:.8rem; color:rgba(255,255,255,.4); text-decoration:none; transition:color .2s; }
.footer-col a:hover { color:var(--mint); }
.footer-bottom {
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:1rem;
}
.footer-copy { font-size:.73rem; color:rgba(255,255,255,.22); }
.footer-reg {
  display:flex; align-items:center; gap:.45rem;
  font-size:.73rem; color:rgba(255,255,255,.28);
}
.footer-reg::before {
  content:''; width:6px; height:6px; border-radius:50%;
  background:var(--mint); opacity:.5;
}

/* ── LANG SWITCHER ─────────────────────────────────────── */
.lang-switcher {
  display:flex; align-items:center; gap:2px;
  margin-left:.5rem;
  background:var(--light-bg); border-radius:var(--r-pill);
  padding:2px; border:1px solid rgba(76,187,148,.15);
}
.lang-btn {
  font-family:'Nunito',sans-serif; font-weight:700; font-size:.68rem;
  padding:.25rem .55rem; border:none; border-radius:var(--r-pill);
  background:transparent; color:var(--text-light); cursor:pointer;
  transition:all .2s; letter-spacing:.03em;
}
.lang-btn:hover { color:var(--text); }
.lang-btn.active {
  background:var(--mint-mid); color:#fff;
  box-shadow:0 2px 8px rgba(76,187,148,.25);
}

/* ── HAMBURGER ──────────────────────────────────────────── */
.hamburger {
  display:none; background:none; border:none; cursor:pointer;
  flex-direction:column; gap:5px; padding:6px; z-index:1000;
}
.hamburger span {
  display:block; width:22px; height:2px; background:var(--text);
  border-radius:2px; transition:transform .3s, opacity .3s;
}
#nav.open .hamburger span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
#nav.open .hamburger span:nth-child(2) { opacity:0; }
#nav.open .hamburger span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }
#nav.open {
  flex-wrap:wrap;
}
#nav.open .nav-links {
  display:flex; flex-direction:column;
  flex-basis:100%; gap:1rem; padding:1rem 0 .5rem;
  border-top:1px solid rgba(76,187,148,.12);
}
#nav.open .nav-actions {
  display:flex; flex-basis:100%; gap:.6rem;
  padding:.5rem 0 .5rem;
}

/* ── SCROLL ANIMATION ───────────────────────────────────── */
.fade { opacity:0; transform:translateY(22px); transition:opacity .65s ease, transform .65s ease; }
.fade.in { opacity:1; transform:translateY(0); }

/* ── MOBILE ─────────────────────────────────────────────── */
@media (max-width:900px) {
  .hamburger { display:flex; }
  .nav-links { display:none; }
  .nav-actions { display:none; }
  .hero { grid-template-columns:1fr; padding-top:6.5rem; gap:2.5rem; }
  .hero-visual { order:-1; }
  .ui-wrap { width:290px; }
  .steps { grid-template-columns:1fr; }
  .steps::before { display:none; }
  .chip.tl { left:-16px; top:-14px; }
  .chip.br { right:-16px; bottom:-10px; }
}
@media (max-width:600px) {
  section { padding:4rem 5%; }
  .hero { padding:6rem 5% 4rem; }
  .nums-grid { grid-template-columns:1fr 1fr; }
  .footer-links { gap:2rem; }
}


/* ── SUBPAGE MOBILE ──────────────────────────────────── */

@media (max-width: 768px) {
  #nav { padding: 0.85rem 4%; }
  .hamburger { display:flex; }
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .page-hero { padding: 8rem 4% 3rem; }
  .section, .section-sm { padding-left: 4%; padding-right: 4%; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .cta-box { padding: 3rem 1.5rem; }
}