*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --teal: #0a9396;
  --teal-dark: #007882;
  --teal-light: #94d2bd;
  --navy: #0d1b2a;
  --navy2: #1b2a3b;
  --white: #ffffff;
  --off-white: #f0f7f8;
  --text: #1a2b35;
  --text-muted: #5c7a85;
  --accent: #ee9b00;
  --radius: 14px;
  --shadow: 0 4px 30px rgba(10,147,150,0.12);
}
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }
h1,h2,h3,h4,h5 { font-family: 'Sora', sans-serif; line-height: 1.2; }
/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 70px;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(10,147,150,0.1);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav-logo { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.3rem; color: var(--navy); text-decoration: none; }
.nav-logo img { height: 38px; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { text-decoration: none; color: var(--text); font-weight: 500; font-size: 0.92rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--teal); }
.nav-lang img { height: 22px; border-radius: 3px; vertical-align: middle; }
.btn-nav {
  background: var(--teal); color: #fff !important; padding: 0.5rem 1.2rem;
  border-radius: 8px; font-weight: 600; font-size: 0.88rem;
  text-decoration: none; transition: background 0.2s, transform 0.2s;
}
.btn-nav:hover { background: var(--teal-dark) !important; transform: translateY(-1px); }
/* HERO */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 60%, #0a4a50 100%);
  padding: 100px 5% 60px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(10,147,150,0.18) 0%, transparent 70%);
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; max-width: 1200px; margin: 0 auto; position: relative; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(10,147,150,0.2); border: 1px solid rgba(10,147,150,0.4);
  color: var(--teal-light); padding: 0.4rem 1rem; border-radius: 50px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.05em; margin-bottom: 1.4rem;
}
.hero h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); color: #fff; margin-bottom: 1.2rem; font-weight: 800; }
.hero h1 em { color: var(--teal-light); font-style: normal; }
.hero p { font-size: 1.1rem; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 2rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--teal); color: #fff; padding: 0.85rem 1.8rem;
  border-radius: 10px; font-weight: 700; font-size: 0.95rem;
  text-decoration: none; transition: all 0.2s; border: 2px solid var(--teal);
  cursor: pointer; font-family: 'DM Sans', sans-serif;
}
.btn-primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(10,147,150,0.35); }
.btn-outline {
  background: transparent; color: #fff; padding: 0.85rem 1.8rem;
  border-radius: 10px; font-weight: 600; font-size: 0.95rem;
  text-decoration: none; border: 2px solid rgba(255,255,255,0.35); transition: all 0.2s;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.hero-visual img { width: 100%; border-radius: 20px; box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
/* STATS */
.stats { background: var(--off-white); padding: 4rem 5%; border-bottom: 1px solid rgba(10,147,150,0.1); }
.stats-label { text-align: center; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; color: var(--teal); text-transform: uppercase; margin-bottom: 0.6rem; }
.stats-title { text-align: center; font-size: clamp(1.4rem,2.5vw,1.9rem); font-weight: 800; color: var(--navy); margin-bottom: 2.5rem; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; max-width: 900px; margin: 0 auto; }
.stat-card { text-align: center; }
.stat-num { font-family: 'Sora', sans-serif; font-size: 2.2rem; font-weight: 800; color: var(--teal-dark); }
.stat-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.4; margin-top: 0.4rem; }
.stat-note { text-align: center; margin-top: 2rem; font-size: 0.82rem; color: var(--text-muted); }
.stat-note strong { color: var(--teal-dark); }
/* SPECIALTIES */
.specialties { background: var(--white); padding: 1.5rem 5%; border-bottom: 1px solid rgba(10,147,150,0.08); overflow: hidden; }
.spec-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; color: var(--text-muted); text-transform: uppercase; text-align: center; margin-bottom: 1rem; }
.spec-track { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; }
.spec-tag { background: var(--off-white); color: var(--text-muted); padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.82rem; font-weight: 600; white-space: nowrap; }
/* SECTION BASE */
section { padding: 5rem 5%; }
.section-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; color: var(--teal); text-transform: uppercase; margin-bottom: 1rem; }
.section-title { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; color: var(--navy); margin-bottom: 1.2rem; }
.section-sub { font-size: 1.05rem; color: var(--text-muted); max-width: 560px; line-height: 1.7; }
.max-w { max-width: 1200px; margin: 0 auto; }
/* CHALLENGES */
.challenges { background: var(--off-white); }
.challenges-header { text-align: center; margin-bottom: 3rem; }
.challenges-header .section-sub { margin: 0 auto; }
.challenges-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.ch-card {
  background: var(--white); border-radius: var(--radius); padding: 1.8rem;
  box-shadow: var(--shadow); border-top: 3px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
}
.ch-card:hover { border-color: var(--teal); transform: translateY(-3px); }
.ch-icon { font-size: 1.8rem; margin-bottom: 0.8rem; }
.ch-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.ch-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }
/* SERVICES */
.services { background: var(--white); }
.services-header { text-align: center; margin-bottom: 0.8rem; }
.services-header .section-sub { margin: 0 auto 3rem; }
.services-cta-top { text-align: center; margin-bottom: 3rem; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.svc-card {
  background: var(--off-white); border-radius: var(--radius); padding: 2rem;
  border: 1px solid rgba(10,147,150,0.1); transition: all 0.2s;
}
.svc-card:hover { background: var(--white); box-shadow: var(--shadow); transform: translateY(-3px); }
.svc-icon { font-size: 1.8rem; margin-bottom: 1rem; }
.svc-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.6rem; }
.svc-card > p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.2rem; }
.svc-bullets { list-style: none; margin-bottom: 1.2rem; }
.svc-bullets li { font-size: 0.85rem; color: var(--text-muted); padding: 0.2rem 0 0.2rem 1.2rem; position: relative; }
.svc-bullets li::before { content: '•'; color: var(--teal); position: absolute; left: 0; }
.svc-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.svc-badge { background: rgba(10,147,150,0.1); color: var(--teal-dark); padding: 0.25rem 0.7rem; border-radius: 50px; font-size: 0.75rem; font-weight: 700; }
/* PROCESS */
.process { background: var(--off-white); }
.process-header { text-align: center; margin-bottom: 1rem; }
.process-sub { text-align: center; color: var(--text-muted); margin-bottom: 3rem; font-size: 0.95rem; }
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; }
.step-card { text-align: center; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--teal); color: #fff;
  font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.step-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.step-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }
.process-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; max-width: 800px; margin: 3rem auto 0; padding-top: 2rem; border-top: 1px solid rgba(10,147,150,0.15); }
/* WHY */
.why { background: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.why-left { }
.why-points { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2.5rem; }
.why-point { background: var(--off-white); border-radius: var(--radius); padding: 1.5rem; }
.why-point .wp-icon { font-size: 1.5rem; margin-bottom: 0.7rem; }
.why-point h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }
.why-point p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.55; }
.testimonial {
  background: var(--navy); border-radius: var(--radius); padding: 2rem;
  color: #fff; margin-bottom: 1.5rem;
}
.stars { color: var(--accent); font-size: 1rem; margin-bottom: 0.8rem; }
.testimonial blockquote { font-size: 0.95rem; line-height: 1.7; color: rgba(255,255,255,0.85); margin-bottom: 1.2rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.8rem; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--teal); display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif; font-weight: 800; font-size: 0.9rem; color: #fff; flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 0.9rem; }
.author-title { font-size: 0.8rem; color: rgba(255,255,255,0.55); }
.hipaa-badge {
  background: var(--off-white); border-radius: var(--radius); padding: 1.2rem 1.5rem;
  display: flex; align-items: center; gap: 1rem;
}
.hipaa-badge .hb-icon { font-size: 1.5rem; }
.hipaa-badge p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; }
.hipaa-badge strong { color: var(--navy); }
/* FAQ */
.faq { background: var(--off-white); }
.faq-header { text-align: center; margin-bottom: 3rem; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { background: var(--white); border-radius: var(--radius); margin-bottom: 0.8rem; overflow: hidden; }
.faq-q {
  width: 100%; padding: 1.3rem 1.5rem; text-align: left;
  background: none; border: none; cursor: pointer;
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--navy);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-q .faq-chevron { font-size: 1rem; color: var(--teal); transition: transform 0.2s; flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 1.5rem 1.3rem; font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }
/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, var(--teal-dark), var(--navy));
  padding: 5rem 5%; text-align: center; color: #fff;
}
.cta-banner .section-label { color: var(--teal-light); }
.cta-banner h2 { font-size: clamp(1.8rem,3vw,2.6rem); color: #fff; font-weight: 800; margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.7); font-size: 1rem; margin-bottom: 2rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-primary { font-size: 1.05rem; padding: 1rem 2.2rem; margin-bottom: 1rem; display: inline-block; }
.cta-banner .email-link { display: block; color: rgba(255,255,255,0.55); font-size: 0.88rem; text-decoration: none; margin-top: 0.6rem; }
.cta-banner .email-link:hover { color: var(--teal-light); }
.cta-note { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-top: 1rem; }
/* FOOTER */
footer { background: var(--navy); border-top: 1px solid rgba(255,255,255,0.06); padding: 4rem 5% 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand img { height: 36px; margin-bottom: 1.2rem; filter: brightness(0) invert(1); }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.2rem; }
.footer-contact { margin-bottom: 1.2rem; }
.footer-contact a { color: var(--teal-light); text-decoration: none; font-size: 0.9rem; display: block; margin-bottom: 0.4rem; }
.footer-social { display: flex; gap: 0.8rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; color: #fff;
  text-decoration: none; font-size: 0.8rem; font-weight: 700; transition: background 0.2s;
}
.footer-social a:hover { background: var(--teal); }
.footer-col h5 { font-family: 'Sora', sans-serif; font-size: 0.85rem; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.footer-col a { display: block; color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.9rem; margin-bottom: 0.6rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--teal-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.82rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); font-size: 0.82rem; text-decoration: none; }
.footer-bottom-links a:hover { color: var(--teal-light); }
/* MODAL */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(13,27,42,0.75); backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: 1.5rem;
}
.modal-overlay.open { display: flex; animation: fadeOverlay 0.25s ease; }
@keyframes fadeOverlay { from { opacity: 0; } to { opacity: 1; } }
.modal-card {
  background: var(--white); border-radius: 24px;
  max-width: 480px; width: 100%; padding: 3rem 2.5rem;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  position: relative; animation: slideUp 0.3s ease;
}
@keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.modal-close {
  position: absolute; top: 1.2rem; right: 1.4rem;
  background: none; border: none; cursor: pointer;
  color: var(--text-muted); font-size: 1.5rem; line-height: 1; transition: color 0.2s;
}
.modal-close:hover { color: var(--navy); }
.modal-logo { height: 32px; margin-bottom: 1.8rem; display: block; }
.modal-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(10,147,150,0.1); color: var(--teal-dark);
  padding: 0.3rem 0.8rem; border-radius: 50px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em; margin-bottom: 1rem;
}
.modal-card h2 { font-size: 1.6rem; font-weight: 800; color: var(--navy); margin-bottom: 0.6rem; line-height: 1.25; }
.modal-card h2 em { color: var(--teal); font-style: normal; }
.modal-card p.sub { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 2rem; line-height: 1.6; }
.modal-field { margin-bottom: 1.1rem; }
.modal-field label { display: block; font-size: 0.82rem; font-weight: 700; color: var(--navy); margin-bottom: 0.45rem; }
.modal-field input {
  width: 100%; padding: 0.85rem 1rem; border-radius: 10px;
  border: 2px solid #e2edf0; font-size: 0.95rem; font-family: 'DM Sans', sans-serif;
  color: var(--text); transition: border-color 0.2s, box-shadow 0.2s;
  outline: none; background: #f8fcfd;
}
.modal-field input:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(10,147,150,0.12); background: #fff; }
.modal-field input::placeholder { color: #a0b8bf; }
.modal-submit {
  width: 100%; padding: 1rem; background: var(--teal); color: #fff;
  border: none; border-radius: 12px; font-size: 1rem; font-weight: 700;
  font-family: 'Sora', sans-serif; cursor: pointer; margin-top: 0.5rem;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.modal-submit:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(10,147,150,0.3); }
.modal-privacy { text-align: center; font-size: 0.78rem; color: var(--text-muted); margin-top: 1rem; }
.modal-success { display: none; text-align: center; padding: 1rem 0; }
.modal-success .success-icon { width: 64px; height: 64px; background: rgba(10,147,150,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem; font-size: 1.8rem; }
.modal-success h3 { font-size: 1.4rem; color: var(--navy); margin-bottom: 0.6rem; }
.modal-success p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.6; }
/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid, .why-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .stats-grid, .process-stats { grid-template-columns: repeat(2,1fr); }
  .challenges-grid, .services-grid, .process-steps, .why-points { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.animate { animation: fadeUp 0.6s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
