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

:root {
  --green: #16A34A;
  --green-light: #22C55E;
  --green-pale: #F0FDF4;
  --navy: #0F172A;
  --navy-mid: #1E293B;
  --slate: #64748B;
  --slate-light: #94A3B8;
  --border: #E2E8F0;
  --white: #FFFFFF;
  --off-white: #F8FAFC;
  --font-head: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(15,23,42,0.08);
  --shadow-lg: 0 12px 48px rgba(15,23,42,0.14);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}

.nav-logo {
  text-decoration: none;
  display: flex; align-items: center;
  height: 52px;
}
.nav-logo span.g { color: var(--green); }
.nav-logo span.m { color: var(--navy); }
.nav-logo span.c { color: var(--green); }

.nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--slate);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--navy); }

.nav-cta {
  display: flex; align-items: center; gap: 12px;
}
.btn-nav {
  background: var(--green);
  color: white;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: var(--font-head);
  transition: background 0.2s, transform 0.15s;
}
.btn-nav:hover { background: #15803D; transform: translateY(-1px); }

.nav-login {
  color: var(--navy);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green);
  color: white;
  padding: 15px 32px;
  border-radius: 10px;
  text-decoration: none;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: #15803D; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(22,163,74,0.3); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--navy);
  padding: 14px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--border);
  transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--green); color: var(--green); transform: translateY(-1px); }

.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: white;
  color: var(--navy);
  padding: 15px 32px;
  border-radius: 10px;
  text-decoration: none;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

/* ── LAYOUT ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 5%; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* ── TAGS ── */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-pale);
  color: var(--green);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-head);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* ── HEADINGS ── */
.h1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.1;
  color: var(--navy);
}
.h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.2;
  color: var(--navy);
}
.h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--navy);
}
.text-green { color: var(--green); }
.text-slate { color: var(--slate); }
.lead { font-size: 1.15rem; color: var(--slate); line-height: 1.8; max-width: 600px; }

/* ── CARDS ── */
.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: var(--slate-light);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.footer-logo .g, .footer-logo .c { color: var(--green-light); }
.footer-logo .m { color: white; }
.footer-tagline { font-size: 0.9rem; color: var(--slate-light); margin-bottom: 20px; line-height: 1.6; }
.footer-col h4 {
  font-family: var(--font-head);
  font-weight: 700;
  color: white;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: var(--slate-light);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--green-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: 0.85rem; }
.hipaa-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(22,163,74,0.15);
  border: 1px solid rgba(22,163,74,0.3);
  color: var(--green-light);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-head);
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.5); }
.wa-float svg { width: 28px; height: 28px; fill: white; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 140px 0 80px;
  text-align: center;
}
.page-hero .h1 { color: white; }
.page-hero .lead { color: var(--slate-light); margin: 20px auto 0; }

/* ── POLICY CONTENT ── */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 5%;
}
.policy-content h2 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin: 40px 0 12px;
}
.policy-content h2:first-child { margin-top: 0; }
.policy-content p { margin-bottom: 16px; color: var(--slate); font-size: 0.95rem; line-height: 1.8; }
.policy-content ul { margin: 12px 0 16px 24px; }
.policy-content ul li { color: var(--slate); font-size: 0.95rem; line-height: 1.8; margin-bottom: 8px; }
.policy-content a { color: var(--green); }

/* ── MOBILE NAV ── */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }

@media (max-width: 768px) {
  .nav-links, .nav-login { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
