:root {
  --primary: #1a1a2e;
  --accent: #e94560;
  --accent2: #0f3460;
  --light: #f8f9fa;
  --muted: #6c757d;
  --white: #ffffff;
  --border: #e0e0e0;
  --font: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --radius: 8px;
  --shadow: 0 2px 16px rgba(0,0,0,0.08);
}

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

body {
  font-family: var(--font);
  color: var(--primary);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

/* ── NAV ── */
nav {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 8px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: background 0.15s, color 0.15s;
}
.nav-links a:hover, .nav-links a.active {
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
}
.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); margin: 5px 0; transition: 0.3s;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent2) 100%);
  color: var(--white);
  padding: 96px 24px 80px;
  text-align: center;
}
.hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; margin-bottom: 20px; }
.hero p { font-size: 1.2rem; opacity: 0.85; max-width: 600px; margin: 0 auto 36px; }
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  border: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); text-decoration: none; }
.btn-primary { background: var(--accent); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); margin-left: 12px; }

/* ── SECTIONS ── */
section { padding: 72px 24px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  text-transform: uppercase; letter-spacing: 2px;
  font-size: 0.78rem; font-weight: 700; color: var(--accent);
  margin-bottom: 12px;
}
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: 16px; }
.lead { font-size: 1.1rem; color: var(--muted); max-width: 680px; margin-bottom: 48px; }

.bg-light { background: var(--light); }

/* ── CARDS ── */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.card-icon { font-size: 2.4rem; margin-bottom: 16px; }
.card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.95rem; }

/* ── TEAM ── */
.team { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; }
.member { text-align: center; }
.member-avatar {
  width: 100px; height: 100px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--white); font-weight: 800;
}
.member h3 { font-size: 1.05rem; font-weight: 700; }
.member p { color: var(--muted); font-size: 0.875rem; }

/* ── FAQ ── */
.faq-list { max-width: 800px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 20px 0; font-size: 1rem; font-weight: 600;
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; color: var(--primary);
}
.faq-q::after { content: '+'; font-size: 1.4rem; color: var(--accent); transition: transform 0.2s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 20px; color: var(--muted); font-size: 0.95rem; line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* ── CONTACT FORM ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.form-group { margin-bottom: 20px; }
label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 6px; }
input, textarea, select {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--border); border-radius: var(--radius);
  font-family: var(--font); font-size: 0.95rem;
  transition: border-color 0.15s;
  background: var(--white);
}
input:focus, textarea:focus, select:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(233,69,96,0.12);
}
textarea { resize: vertical; min-height: 140px; }
.form-note { font-size: 0.8rem; color: var(--muted); margin-top: 6px; }

/* ── POLICY / DATA SAFETY ── */
.prose { max-width: 820px; }
.prose h2 { font-size: 1.5rem; margin: 40px 0 12px; }
.prose h3 { font-size: 1.15rem; margin: 28px 0 8px; font-weight: 700; }
.prose p, .prose li { color: #3a3a4a; font-size: 0.97rem; margin-bottom: 12px; line-height: 1.75; }
.prose ul, .prose ol { padding-left: 24px; }
.prose ul li, .prose ol li { margin-bottom: 8px; }
.prose table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.prose th { background: var(--primary); color: var(--white); padding: 12px 16px; text-align: left; font-size: 0.9rem; }
.prose td { padding: 12px 16px; border-bottom: 1px solid var(--border); font-size: 0.92rem; vertical-align: top; }
.prose tr:hover td { background: var(--light); }
.badge {
  display: inline-block; padding: 3px 10px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 700; margin-right: 4px;
}
.badge-yes { background: #d4edda; color: #155724; }
.badge-no { background: #f8d7da; color: #721c24; }
.badge-optional { background: #fff3cd; color: #856404; }

/* ── PAGE HEADER ── */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent2) 100%);
  color: var(--white); padding: 64px 24px 56px; text-align: center;
}
.page-header h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; }
.page-header p { opacity: 0.8; margin-top: 12px; font-size: 1.05rem; }

/* ── FOOTER ── */
footer {
  background: var(--primary); color: rgba(255,255,255,0.7);
  padding: 48px 24px 24px;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 36px; margin-bottom: 36px;
}
.footer-brand .nav-logo { display: block; margin-bottom: 12px; font-size: 1.2rem; }
.footer-brand p { font-size: 0.875rem; }
.footer-col h4 { color: var(--white); font-size: 0.9rem; font-weight: 700; margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,0.65); font-size: 0.875rem; }
.footer-col a:hover { color: var(--white); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px; text-align: center; font-size: 0.82rem;
}

/* ── ALERT / NOTICE ── */
.alert {
  padding: 16px 20px; border-radius: var(--radius);
  margin-bottom: 20px; font-size: 0.95rem;
}
.alert-info { background: #e7f3ff; color: #0c5999; border-left: 4px solid #0c5999; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute;
    top: 64px; left: 0; right: 0; background: var(--primary); padding: 12px 24px 20px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero { padding: 64px 24px 56px; }
  .btn-outline { margin-left: 0; margin-top: 12px; }
}
