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

:root {
  --navy: #0d1b2a;
  --navy-light: #162437;
  --green: #10b981;
  --green-dark: #059669;
  --text: #1e293b;
  --text-muted: #64748b;
  --bg-light: #f0fdf9;
  --white: #fff;
  --border: #e2e8f0;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
}

/* ── HEADER ─────────────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img { height: 48px; width: auto; }
.logo-text {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.02em;
}
.logo-text span { color: var(--green); }

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

nav a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.875rem;
  border-radius: 6px;
  transition: all 0.2s;
}

nav a:hover, nav a.active { color: var(--white); background: rgba(255,255,255,0.08); }

.btn-nav {
  background: var(--green) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 8px !important;
}
.btn-nav:hover { background: var(--green-dark) !important; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: 0.3s;
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/1920/24887744/BINARYpj3k3bbvjhpie37VyG2-ppcuW54NunayjFED7vNqyA-mXDww5p1SkI5c-HGxdccTg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,0.6) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.35);
  color: var(--green);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  max-width: 680px;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero h1 em { color: var(--green); font-style: normal; }

.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.875rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(16,185,129,0.4); }
.btn-secondary { background: rgba(255,255,255,0.1); color: var(--white); border: 1.5px solid rgba(255,255,255,0.25); }
.btn-secondary:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.5); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy-light); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--green-dark); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }

/* ── STATS BAR ───────────────────────────────────────────── */
.stats-bar { background: var(--navy-light); border-top: 1px solid rgba(255,255,255,0.05); }
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-number { font-size: 2.75rem; font-weight: 800; color: var(--green); letter-spacing: -0.03em; }
.stat-label { color: rgba(255,255,255,0.55); font-size: 0.875rem; margin-top: 0.25rem; }

/* ── SECTIONS ────────────────────────────────────────────── */
.section { padding: 5.5rem 2rem; }
.section-light { background: var(--bg-light); }
.section-dark { background: var(--navy); }
.container { max-width: 1200px; margin: 0 auto; }

.section-label {
  display: inline-block;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.section-dark .section-title { color: var(--white); }
.section-subtitle { font-size: 1.05rem; color: var(--text-muted); max-width: 580px; line-height: 1.75; }
.section-dark .section-subtitle { color: rgba(255,255,255,0.6); }

/* ── CARDS ───────────────────────────────────────────────── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

.card-icon {
  width: 52px;
  height: 52px;
  background: var(--bg-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.card-icon svg { width: 26px; height: 26px; stroke: var(--green); }

.card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.625rem; }
.card p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.65; }

/* ── PARTNER HIGHLIGHT ───────────────────────────────────── */
.partner-highlight {
  display: flex;
  align-items: center;
  gap: 3rem;
  background: var(--white);
  border-radius: 20px;
  padding: 3rem;
  margin-top: 3rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.partner-logo-box {
  background: var(--navy);
  border-radius: 16px;
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  gap: 0.25rem;
}
.partner-logo-box svg { width: 36px; height: 36px; stroke: var(--green); }
.partner-logo-box span { color: var(--white); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.05em; }
.partner-info h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 0.75rem; }
.partner-info p { color: var(--text-muted); line-height: 1.7; }

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.partner-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}
.partner-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.partner-card svg { width: 40px; height: 40px; stroke: var(--green); margin-bottom: 1rem; }
.partner-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.partner-card p { font-size: 0.875rem; color: var(--text-muted); }

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 2rem;
}
.stars { color: var(--green); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial p { color: rgba(255,255,255,0.75); font-size: 0.95rem; line-height: 1.7; font-style: italic; margin-bottom: 1.25rem; }
.testimonial-author { color: var(--green); font-weight: 600; font-size: 0.875rem; }

/* ── CTA SECTION ─────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #059669, #10b981);
  text-align: center;
  padding: 6rem 2rem;
}
.cta-section h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; color: var(--white); margin-bottom: 1rem; letter-spacing: -0.02em; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 2.5rem; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ── PAGE HERO ───────────────────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 5.5rem 2rem 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(16,185,129,0.08) 0%, transparent 70%);
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--white); margin-bottom: 1rem; letter-spacing: -0.02em; position: relative; }
.page-hero p { color: rgba(255,255,255,0.6); font-size: 1.05rem; max-width: 480px; margin: 0 auto; position: relative; }
.breadcrumb { display: flex; justify-content: center; gap: 0.5rem; margin-bottom: 1.5rem; font-size: 0.825rem; position: relative; }
.breadcrumb a { color: var(--green); text-decoration: none; }
.breadcrumb span { color: rgba(255,255,255,0.35); }
.breadcrumb-current { color: rgba(255,255,255,0.55); }

/* ── CONTACT ─────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; margin-top: 3rem; }

.contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.75rem; }
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; stroke: var(--green); }
.contact-item strong { display: block; font-weight: 600; margin-bottom: 0.2rem; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); }
.contact-item a, .contact-item span { color: var(--text); text-decoration: none; font-size: 0.975rem; }
.contact-item a:hover { color: var(--green); }

.contact-form-box { background: var(--bg-light); border-radius: 18px; padding: 2.5rem; }
.contact-form-box h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.25rem; }
.contact-form-box .sub { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.75rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.4rem; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(16,185,129,0.12);
}
.form-group textarea { height: 130px; resize: vertical; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list { margin-top: 3rem; max-width: 820px; }
.faq-item { border: 1.5px solid var(--border); border-radius: 12px; margin-bottom: 0.75rem; overflow: hidden; transition: border-color 0.2s; }
.faq-item.open { border-color: var(--green); }
.faq-btn {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background 0.2s;
}
.faq-btn:hover { background: var(--bg-light); }
.faq-btn svg { width: 20px; height: 20px; stroke: var(--green); flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-btn svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer p { padding: 0 1.5rem 1.375rem; color: var(--text-muted); line-height: 1.75; font-size: 0.975rem; }
.faq-item.open .faq-answer { max-height: 400px; }

/* ── FOOTER ──────────────────────────────────────────────── */
footer { background: #080f18; padding: 4rem 2rem 2rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 0.875rem; line-height: 1.7; max-width: 280px; margin-top: 1rem; }
.footer-col h4 { color: var(--white); font-weight: 600; font-size: 0.825rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.625rem; }
.footer-col a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--green); }
.footer-col .contact-line { display: flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.45); font-size: 0.875rem; margin-bottom: 0.625rem; }
.footer-col .contact-line svg { width: 14px; height: 14px; stroke: var(--green); flex-shrink: 0; }
.footer-col .contact-line a { color: rgba(255,255,255,0.45); text-decoration: none; }
.footer-col .contact-line a:hover { color: var(--green); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-bottom a { color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--green); }
.footer-links { display: flex; gap: 1.5rem; }

/* ── LOGO TEXT FOOTER ────────────────────────────────────── */
.logo-footer { display: flex; align-items: center; gap: 0.625rem; }
.logo-footer img { height: 36px; }
.logo-footer-text { color: var(--white); font-size: 1rem; font-weight: 700; }
.logo-footer-text span { color: var(--green); }

/* ── ABOUT SECTION ───────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img { border-radius: 20px; overflow: hidden; position: relative; }
.about-img img { width: 100%; height: 400px; object-fit: cover; border-radius: 20px; }
.about-img-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.about-img-placeholder svg { width: 80px; height: 80px; stroke: var(--green); opacity: 0.6; }
.about-img-placeholder span { color: rgba(255,255,255,0.4); font-size: 0.9rem; }
.checklist { list-style: none; margin-top: 1.5rem; }
.checklist li { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.875rem; font-size: 0.975rem; }
.checklist li::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background: var(--green);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

/* ── MOBILE ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .partner-highlight { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  nav ul {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--navy-light);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  nav ul.open { display: flex; }
  nav ul li { width: 100%; }
  nav a { display: block; padding: 0.75rem 1rem; }
  .menu-toggle { display: flex; }
  .stats-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .hero-btns { flex-direction: column; }
  .hero h1 { font-size: 2rem; }
}
