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

:root {
  --primary: #0B3D6B;
  --primary-light: #1565a8;
  --accent: #00B4D8;
  --accent-hover: #0099bb;
  --accent-light: #e0f7fb;
  --text: #1a2e44;
  --text-muted: #5c7a99;
  --bg: #ffffff;
  --bg-alt: #f5f9fc;
  --border: #d4e3f0;
  --radius: 14px;
  --shadow: 0 4px 24px rgba(11,61,107,0.08);
  --shadow-hover: 0 10px 36px rgba(11,61,107,0.14);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Outfit', sans-serif; color: var(--text); background: var(--bg); line-height: 1.65; }

nav {
  position: sticky; top: 0; z-index: 200;
  background: white; border-bottom: 1px solid var(--border);
  padding: 0 6%; display: flex; align-items: center;
  justify-content: space-between; height: 72px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.nav-logo img { height: 38px; display: block; }
.nav-links { display: flex; gap: 0.25rem; list-style: none; align-items: center; }
.nav-links a {
  text-decoration: none; color: var(--text-muted); font-weight: 500;
  font-size: 0.93rem; padding: 0.45rem 0.9rem; border-radius: 8px; transition: all 0.18s;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); background: var(--accent-light); }

.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white; padding: 70px 6%; text-align: center;
}
.page-header h1 { font-size: 2.6rem; font-weight: 700; letter-spacing: -0.02em; }
.page-header p { opacity: 0.82; max-width: 560px; margin: 0.8rem auto 0; font-size: 1.1rem; }

.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white; padding: 90px 6% 70px; text-align: center; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-content { position: relative; max-width: 700px; margin: 0 auto; }
.hero-badge {
  display: inline-block; background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3); border-radius: 50px;
  padding: 0.35rem 1rem; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 1.2rem;
}
.hero h1 { font-size: 3.2rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 1rem; }
.hero p { font-size: 1.2rem; opacity: 0.85; margin-bottom: 2rem; }
.hero-img { width: 100%; max-width: 720px; border-radius: var(--radius); box-shadow: 0 20px 60px rgba(0,0,0,0.3); margin-top: 3rem; }

.acquisition-banner {
  background: linear-gradient(135deg, #fff8e1, #fff3cc);
  border: 1px solid #f0d060; border-left: 5px solid #f5a623;
  border-radius: var(--radius); padding: 2rem 2.5rem; margin: 3rem auto; max-width: 860px;
}
.acquisition-banner h2 { color: var(--primary); font-size: 1.5rem; margin-bottom: 0.6rem; }
.acquisition-banner p { color: var(--text); font-size: 0.97rem; line-height: 1.7; }
.acquisition-banner strong { color: var(--primary); }
.acquisition-banner .acq-date { margin-top: 0.8rem; font-weight: 700; color: #c05200; }

.section { padding: 80px 6%; }
.section-alt { background: var(--bg-alt); }
.container { max-width: 1100px; margin: 0 auto; }

.section-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 2.5px; color: var(--accent); font-weight: 700; margin-bottom: 0.6rem; display: block; }
.section-title { font-size: 2.1rem; font-weight: 700; color: var(--primary); letter-spacing: -0.02em; margin-bottom: 0.6rem; line-height: 1.25; }
.section-subtitle { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 3rem; max-width: 580px; }

.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.card { background: white; border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow); border: 1px solid var(--border); transition: all 0.22s; }
.card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.card-icon { font-size: 1.8rem; margin-bottom: 1rem; display: block; }
.card h3 { font-size: 1rem; color: var(--primary); margin-bottom: 0.5rem; font-weight: 600; }
.card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.6; }

.feature-split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.feature-split img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
.feature-split .feature-text h2 { font-size: 2rem; color: var(--primary); font-weight: 700; margin-bottom: 1rem; letter-spacing: -0.02em; }
.feature-split .feature-text p { color: var(--text-muted); line-height: 1.75; font-size: 1rem; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 1rem; }
.step { text-align: center; padding: 2rem 1.5rem; }
.step-number { width: 52px; height: 52px; background: linear-gradient(135deg, var(--accent), var(--primary-light)); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.2rem; margin: 0 auto 1.2rem; }
.step h3 { color: var(--primary); font-size: 1.05rem; margin-bottom: 0.4rem; }
.step p { color: var(--text-muted); font-size: 0.9rem; }

.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.4rem; }
.testimonial-card { background: white; border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow); border: 1px solid var(--border); border-top: 3px solid var(--accent); position: relative; }
.testimonial-card::before { content: '"'; font-family: 'DM Serif Display', serif; font-size: 4rem; color: var(--accent-light); position: absolute; top: 0.5rem; left: 1.2rem; line-height: 1; }
.testimonial-card blockquote { font-size: 0.98rem; color: var(--text); line-height: 1.7; margin-bottom: 1.2rem; padding-top: 1rem; }
.testimonial-meta { display: flex; align-items: center; gap: 0.8rem; }
.testimonial-meta img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border); }
.testimonial-author { font-weight: 600; color: var(--primary); font-size: 0.88rem; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.team-card { background: white; border-radius: var(--radius); padding: 2rem 1.5rem; text-align: center; box-shadow: var(--shadow); border: 1px solid var(--border); transition: all 0.22s; }
.team-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.team-card img { width: 110px; height: 110px; border-radius: 50%; object-fit: cover; border: 3px solid var(--accent-light); margin-bottom: 1rem; display: block; margin-left: auto; margin-right: auto; }
.team-card h3 { font-size: 1rem; color: var(--primary); font-weight: 700; margin-bottom: 0.2rem; }
.team-card .role { font-size: 0.82rem; color: var(--accent); font-weight: 600; margin-bottom: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px; }
.team-card .bio { font-size: 0.84rem; color: var(--text-muted); line-height: 1.6; }

.resource-section-label { font-size: 1.3rem; font-weight: 700; color: var(--primary); margin: 2.5rem 0 1.2rem; padding-bottom: 0.6rem; border-bottom: 2px solid var(--accent-light); }
.resource-card { display: grid; grid-template-columns: 130px 1fr; gap: 1.4rem; align-items: start; background: white; border-radius: var(--radius); padding: 1.4rem; box-shadow: var(--shadow); border: 1px solid var(--border); margin-bottom: 1rem; text-decoration: none; color: inherit; transition: all 0.2s; }
.resource-card:hover { box-shadow: var(--shadow-hover); border-color: var(--accent); }
.resource-thumb { width: 100%; height: 80px; object-fit: contain; border-radius: 8px; background: var(--bg-alt); padding: 4px; }
.resource-content h3 { color: var(--primary); font-size: 0.97rem; font-weight: 600; line-height: 1.4; margin-bottom: 0.4rem; }
.resource-content p { color: var(--text-muted); font-size: 0.86rem; line-height: 1.55; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.resource-content .read-more { display: inline-block; margin-top: 0.5rem; font-size: 0.83rem; font-weight: 600; color: var(--accent); text-decoration: none; }

.faq-category { margin-bottom: 2.5rem; }
.faq-category-title { font-size: 1.2rem; font-weight: 700; color: var(--primary); margin-bottom: 0.8rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--accent-light); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { font-weight: 600; color: var(--text); cursor: pointer; padding: 1.2rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-size: 0.97rem; transition: color 0.18s; list-style: none; user-select: none; }
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after { content: '+'; font-size: 1.4rem; color: var(--accent); flex-shrink: 0; transition: transform 0.2s; }
details[open] .faq-question { color: var(--primary); }
details[open] .faq-question::after { transform: rotate(45deg); }
.faq-answer { color: var(--text-muted); font-size: 0.95rem; line-height: 1.75; padding-bottom: 1.2rem; }
.faq-answer a { color: var(--accent); }

.navigator-links { display: flex; flex-direction: column; gap: 1rem; max-width: 460px; margin: 2rem auto 0; }
.nav-link-btn { display: flex; align-items: center; justify-content: space-between; padding: 1.3rem 1.8rem; background: white; border: 1.5px solid var(--border); border-radius: var(--radius); text-decoration: none; color: var(--text); font-weight: 600; font-size: 1rem; transition: all 0.2s; box-shadow: var(--shadow); }
.nav-link-btn:hover { border-color: var(--accent); color: var(--accent); transform: translateX(4px); }
.nav-link-btn::after { content: '→'; font-size: 1.1rem; }

.measure-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 3rem; }
.measure-feature { display: flex; gap: 1rem; align-items: flex-start; background: white; border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); border: 1px solid var(--border); }
.measure-feature-icon { width: 44px; height: 44px; background: var(--accent-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.measure-feature-text h4 { font-size: 0.95rem; color: var(--primary); font-weight: 700; margin-bottom: 0.3rem; }
.measure-feature-text p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

.session-box { background: var(--accent-light); border: 1px solid #b2e9f5; border-radius: var(--radius); padding: 2rem; margin: 2rem 0; }
.session-box h4 { font-size: 1.1rem; color: var(--primary); margin-bottom: 1rem; }
.session-item { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.5rem; font-size: 0.95rem; color: var(--text); }
.session-check { width: 22px; height: 22px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 0.7rem; flex-shrink: 0; }

.gofundme-box { background: linear-gradient(135deg, #fff8e1, #fff3cc); border: 1px solid #f0d060; border-radius: var(--radius); padding: 2rem; text-align: center; margin: 2rem 0; }
.gofundme-box h4 { color: var(--primary); font-size: 1.1rem; margin-bottom: 0.5rem; }
.gofundme-box p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1rem; }
.gofundme-box img { height: 40px; }

.btn { display: inline-block; padding: 0.8rem 2rem; border-radius: 50px; font-weight: 600; text-decoration: none; transition: all 0.2s; font-size: 0.95rem; cursor: pointer; border: none; }
.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,180,216,0.3); }
.btn-lg { padding: 1rem 2.4rem; font-size: 1.05rem; }

footer { background: var(--primary); color: white; padding: 3.5rem 6%; text-align: center; }
.footer-logo { margin-bottom: 2rem; }
.footer-logo img { height: 38px; }
.footer-nav { display: flex; justify-content: center; gap: 0.5rem; list-style: none; margin-bottom: 2rem; flex-wrap: wrap; }
.footer-nav a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.9rem; padding: 0.3rem 0.7rem; border-radius: 6px; transition: all 0.18s; }
.footer-nav a:hover { color: white; background: rgba(255,255,255,0.1); }
.footer-divider { width: 40px; height: 2px; background: var(--accent); margin: 0 auto 1.5rem; border-radius: 2px; }
.footer-copyright { font-size: 0.82rem; opacity: 0.5; }

@media (max-width: 900px) {
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .feature-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .measure-features { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .cards-4 { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.2rem; }
  .page-header h1 { font-size: 2rem; }
  .section-title { font-size: 1.7rem; }
  .resource-card { grid-template-columns: 1fr; }
  nav { height: auto; padding: 1rem 6%; flex-wrap: wrap; gap: 0.8rem; }
  .nav-links { gap: 0.1rem; flex-wrap: wrap; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}
