/* ============================================
   AfyaCall — Daktari Kiganjani
   State-of-the-Art Mobile-First Website
   ============================================ */

/* --- Reset & Variables --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark: #1B4332;
  --green-mid: #2D6A4F;
  --green-brand: #1B4D4D;
  --lime: #95C11F;
  --lime-light: #d4ed6e;
  --lime-bg: #f4fae3;
  --teal: #0d9488;
  --teal-light: #ccfbf1;
  --gold: #d97706;
  --gold-light: #fef3c7;
  --purple: #7c3aed;
  --purple-light: #ede9fe;
  --slate: #1e293b;
  --slate2: #334155;
  --slate3: #64748b;
  --white: #ffffff;
  --off: #f8fafc;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.04);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.08), 0 4px 8px rgba(0,0,0,.04);
  --shadow-xl: 0 20px 50px rgba(0,0,0,.12);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--off);
  color: var(--slate);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* --- Utility --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad { padding: 80px 0; }
.section-pad-lg { padding: 100px 0; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--lime);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.chip::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--lime);
  border-radius: 2px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--slate);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 16px;
  color: var(--slate3);
  max-width: 560px;
  line-height: 1.7;
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar-logo img {
  height: 40px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate2);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--lime);
  transition: width var(--transition);
  border-radius: 2px;
}
.nav-links a:hover { color: var(--green-dark); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-dark);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition);
}
.nav-cta:hover { background: var(--green-mid); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.nav-cta::after { display: none !important; }

/* Mobile menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--slate);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  padding: 100px 32px 40px;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
  display: block;
  padding: 16px 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--slate);
  border-bottom: 1px solid var(--border);
}
.mobile-menu .nav-cta {
  margin-top: 24px;
  text-align: center;
  justify-content: center;
  padding: 14px 24px;
  border-bottom: none;
  font-size: 16px;
  color: var(--white) !important;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(155deg, #0a1f1a 0%, #122a22 40%, #0d1f18 100%);
  overflow: hidden;
  padding-top: 72px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(149,193,31,.08) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(13,148,136,.06) 0%, transparent 40%),
    radial-gradient(circle at 90% 90%, rgba(149,193,31,.05) 0%, transparent 30%);
  pointer-events: none;
}
/* Animated grid */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(149,193,31,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(149,193,31,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(149,193,31,.1);
  border: 1px solid rgba(149,193,31,.2);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 12px;
  font-weight: 600;
  color: var(--lime);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge .pulse {
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.7); }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 8px;
}
.hero h1 em {
  color: var(--lime);
  font-style: normal;
}
.hero-tagline {
  font-size: 16px;
  color: rgba(255,255,255,.45);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-tagline strong { color: rgba(255,255,255,.8); font-weight: 600; }
.hero-desc {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,.7);
  max-width: 580px;
  margin-bottom: 40px;
}
.hero-desc b { color: var(--white); font-weight: 600; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--lime);
  color: var(--green-dark);
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(149,193,31,.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(149,193,31,.4);
  background: var(--lime-light);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  transition: all var(--transition);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.14);
  transform: translateY(-2px);
}

/* Hero floating shapes */
.hero-visual {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  z-index: 1;
}
.float-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(149,193,31,.12);
  animation: float 6s ease-in-out infinite;
}
.float-circle:nth-child(1) { width: 400px; height: 400px; top: 50px; left: 50px; animation-delay: 0s; }
.float-circle:nth-child(2) { width: 300px; height: 300px; top: 100px; left: 100px; animation-delay: 1s; border-color: rgba(13,148,136,.1); }
.float-circle:nth-child(3) { width: 180px; height: 180px; top: 160px; left: 160px; animation-delay: 2s; background: rgba(149,193,31,.04); }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

/* --- Stats Bar --- */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
  position: relative;
  z-index: 3;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.stat-item {
  padding: 28px 16px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--lime-bg); }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 900;
  color: var(--green-dark);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-number sup {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
}
.stat-label {
  font-size: 11px;
  color: var(--slate3);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.4;
}

/* --- Services Section --- */
.services { background: var(--white); }
.services-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.services-header .section-subtitle { margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--card-accent, var(--lime));
  border-radius: var(--radius) var(--radius) 0 0;
  transition: height var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { height: 6px; }
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 24px; height: 24px; }
.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px;
  color: var(--slate3);
  line-height: 1.7;
  margin-bottom: 16px;
}
.service-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 8px;
  letter-spacing: .02em;
}

/* --- How It Works --- */
.how-section { background: var(--off); }
.how-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}
.how-header .section-subtitle { margin: 0 auto; }
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.how-steps::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: linear-gradient(to right, var(--lime), var(--teal));
  border-radius: 2px;
}
.how-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.how-step-num {
  width: 64px;
  height: 64px;
  background: var(--white);
  border: 3px solid var(--lime);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 22px;
  font-weight: 800;
  color: var(--green-dark);
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}
.how-step:hover .how-step-num {
  background: var(--lime);
  color: var(--white);
  transform: scale(1.1);
}
.how-step-code {
  display: inline-block;
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 14px;
  font-weight: 700;
  color: var(--green-dark);
  background: var(--lime-bg);
  border: 1px solid rgba(149,193,31,.2);
  padding: 4px 14px;
  border-radius: 8px;
  margin-bottom: 10px;
  letter-spacing: .04em;
}
.how-step h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 8px;
}
.how-step p {
  font-size: 14px;
  color: var(--slate3);
  line-height: 1.6;
}

/* --- Pricing --- */
.pricing { background: var(--white); }
.pricing-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}
.pricing-header .section-subtitle { margin: 0 auto; }
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-card {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  transition: all var(--transition);
}
.pricing-card.featured {
  background: linear-gradient(145deg, var(--green-dark) 0%, #0a2e20 100%);
  border-color: transparent;
  color: var(--white);
  transform: scale(1.03);
  box-shadow: var(--shadow-xl);
}
.pricing-card:not(.featured):hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.pricing-card .popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lime);
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.pricing-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.pricing-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.pricing-card .price-desc {
  font-size: 14px;
  opacity: .7;
  margin-bottom: 20px;
  line-height: 1.6;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 4px;
}
.price-period {
  font-size: 13px;
  opacity: .6;
  margin-bottom: 24px;
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
}
.pricing-features li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
.pricing-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 24px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  transition: all var(--transition);
}
.pricing-btn-primary {
  background: var(--lime);
  color: var(--green-dark);
}
.pricing-btn-primary:hover { background: var(--lime-light); transform: translateY(-2px); }
.pricing-btn-outline {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--slate);
}
.pricing-btn-outline:hover { border-color: var(--lime); color: var(--green-dark); transform: translateY(-2px); }
.featured .pricing-btn-outline {
  border-color: rgba(255,255,255,.2);
  color: var(--white);
}
.featured .pricing-btn-outline:hover { border-color: var(--lime); color: var(--lime); }

/* --- Get Services / Book Consultation --- */
.book-section {
  background: linear-gradient(155deg, #0a1f1a 0%, #122a22 100%);
  position: relative;
  overflow: hidden;
}
.book-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(149,193,31,.06) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(13,148,136,.05) 0%, transparent 30%);
  pointer-events: none;
}
.book-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.book-info h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.book-info h2 em { color: var(--lime); font-style: normal; }
.book-info p {
  font-size: 16px;
  color: rgba(255,255,255,.65);
  line-height: 1.8;
  margin-bottom: 32px;
}
.book-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.book-feature {
  display: flex;
  align-items: center;
  gap: 14px;
}
.book-feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(149,193,31,.1);
  border: 1px solid rgba(149,193,31,.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.book-feature-icon svg { width: 20px; height: 20px; color: var(--lime); }
.book-feature span {
  font-size: 15px;
  color: rgba(255,255,255,.85);
  font-weight: 500;
}

/* Booking Form */
.book-form-wrap {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-xl);
}
.book-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 24px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--slate2);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: var(--font);
  color: var(--slate);
  background: var(--off);
  transition: all var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(149,193,31,.15);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-submit {
  width: 100%;
  background: var(--green-dark);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  transition: all var(--transition);
  margin-top: 8px;
}
.form-submit:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--slate3);
  margin-top: 12px;
}

/* --- About Section --- */
.about { background: var(--off); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-content .section-title { margin-bottom: 20px; }
.about-content p {
  font-size: 15px;
  color: var(--slate2);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-content p b { color: var(--slate); }
.about-quote {
  background: linear-gradient(135deg, var(--lime-bg) 0%, #e8f5cc 100%);
  border: 1px solid rgba(149,193,31,.2);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-top: 28px;
  position: relative;
}
.about-quote::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 80px;
  color: rgba(149,193,31,.2);
  position: absolute;
  top: -10px;
  left: 16px;
  line-height: 1;
}
.about-quote blockquote {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  color: var(--green-dark);
  line-height: 1.6;
  position: relative;
}
.about-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
}
.about-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-card h4 svg { width: 18px; height: 18px; color: var(--lime); flex-shrink: 0; }
.info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.info-row:last-child { border-bottom: none; }
.info-row .info-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--slate3);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.info-row .info-value {
  font-size: 14px;
  color: var(--slate);
  font-weight: 500;
}

/* Objectives */
.obj-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.obj-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--lime-bg);
  border: 1px solid rgba(149,193,31,.15);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
}
.obj-dot {
  width: 22px;
  height: 22px;
  background: rgba(149,193,31,.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.obj-dot svg { width: 12px; height: 12px; }
.obj-txt { font-size: 13px; color: var(--slate2); line-height: 1.5; }
.obj-txt b { color: var(--slate); }

/* --- Timeline --- */
.timeline-section { background: var(--white); }
.timeline-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}
.timeline-header .section-subtitle { margin: 0 auto; }
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--lime), var(--teal), var(--green-dark));
  border-radius: 3px;
}
.tl-item {
  position: relative;
  padding-bottom: 36px;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute;
  left: -29px;
  top: 4px;
  width: 16px;
  height: 16px;
  background: var(--white);
  border: 3px solid var(--lime);
  border-radius: 50%;
  z-index: 1;
}
.tl-item.highlight .tl-dot {
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(149,193,31,.2);
}
.tl-year {
  font-size: 12px;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.tl-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 4px;
}
.tl-desc {
  font-size: 14px;
  color: var(--slate3);
  line-height: 1.7;
}

/* --- Team Section --- */
.team-section { background: var(--off); }
.team-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}
.team-header .section-subtitle { margin: 0 auto; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.team-avatar {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--lime-bg), rgba(149,193,31,.2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 22px;
  font-weight: 800;
  color: var(--green-dark);
}
.team-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 4px;
}
.team-card .team-role {
  font-size: 12px;
  color: var(--lime);
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: .02em;
}
.team-card .team-bio {
  font-size: 13px;
  color: var(--slate3);
  line-height: 1.6;
}

/* --- Partners --- */
.partners-section { background: var(--white); }
.partners-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}
.partners-header .section-subtitle { margin: 0 auto; }
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.partner-card {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
}
.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.partner-logo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 10px;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
}
.partner-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 4px;
}
.partner-card .partner-role-text {
  font-size: 12px;
  color: var(--lime);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.partner-card p {
  font-size: 14px;
  color: var(--slate3);
  line-height: 1.7;
}

/* --- Impact --- */
.impact-section {
  background: linear-gradient(155deg, #0a1f1a 0%, #122a22 100%);
  position: relative;
  overflow: hidden;
}
.impact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(149,193,31,.04) 0%, transparent 50%);
  pointer-events: none;
}
.impact-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
  position: relative;
  z-index: 1;
}
.impact-header .chip { color: var(--lime); }
.impact-header .chip::before { background: var(--lime); }
.impact-header .section-title { color: var(--white); }
.impact-header .section-subtitle { color: rgba(255,255,255,.6); margin: 0 auto; }
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}
.impact-card {
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  transition: all var(--transition);
}
.impact-card:hover { transform: translateY(-4px); }
.impact-card.green { background: rgba(149,193,31,.08); border: 1px solid rgba(149,193,31,.15); }
.impact-card.teal { background: rgba(13,148,136,.08); border: 1px solid rgba(13,148,136,.15); }
.impact-card.gold { background: rgba(217,119,6,.08); border: 1px solid rgba(217,119,6,.15); }
.impact-number {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}
.impact-card.green .impact-number { color: var(--lime); }
.impact-card.teal .impact-number { color: var(--teal); }
.impact-card.gold .impact-number { color: var(--gold); }
.impact-label {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  line-height: 1.5;
}
.reach-bars {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 800px;
  margin: 0 auto;
}
.reach-row .reach-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 13px;
}
.reach-row .reach-meta span:first-child { color: rgba(255,255,255,.7); }
.reach-row .reach-meta span:last-child { color: var(--lime); font-weight: 600; }
.reach-bar {
  height: 10px;
  background: rgba(255,255,255,.08);
  border-radius: 10px;
  overflow: hidden;
}
.reach-fill {
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to right, var(--lime), var(--teal));
  transition: width 1.5s ease-out;
  width: 0;
}
.reach-fill.gold-fill {
  background: linear-gradient(to right, var(--gold), #fbbf24);
}

/* --- Contact / CTA Section --- */
.contact-section { background: var(--off); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 16px;
}
.contact-info > p {
  font-size: 16px;
  color: var(--slate3);
  line-height: 1.7;
  margin-bottom: 32px;
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.contact-method:hover {
  border-color: var(--lime);
  box-shadow: var(--shadow-sm);
}
.contact-method-icon {
  width: 44px;
  height: 44px;
  background: var(--lime-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-method-icon svg { width: 20px; height: 20px; color: var(--green-dark); }
.contact-method .cm-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--slate3);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.contact-method .cm-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--slate);
}
.social-links {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
}
.social-link:hover svg { color: var(--white); }
.social-link svg { width: 20px; height: 20px; color: var(--slate3); transition: color var(--transition); }

/* Contact form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}
.contact-form-wrap h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 24px;
}

/* --- Footer --- */
.footer {
  background: var(--slate);
  padding: 56px 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand img {
  height: 36px;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  max-width: 300px;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,.5);
  padding: 5px 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--lime); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,.35);
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--lime); }

/* --- Web Chat Widget --- */
.chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
}
.chat-toggle {
  width: 60px;
  height: 60px;
  background: var(--green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(27,67,50,.4);
  transition: all var(--transition);
  position: relative;
}
.chat-toggle:hover { transform: scale(1.08); background: var(--green-mid); }
.chat-toggle svg { width: 26px; height: 26px; color: var(--white); transition: all var(--transition); }
.chat-toggle .chat-close { display: none; }
.chat-toggle.active .chat-open { display: none; }
.chat-toggle.active .chat-close { display: block; }
.chat-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 18px;
  height: 18px;
  background: var(--lime);
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
}

.chat-window {
  position: absolute;
  bottom: 76px;
  right: 0;
  width: 380px;
  max-height: 520px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  display: none;
  flex-direction: column;
  overflow: hidden;
  animation: chatSlideUp .3s ease-out;
}
.chat-window.active { display: flex; }
@keyframes chatSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.chat-header {
  background: var(--green-dark);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.chat-header-avatar {
  width: 42px;
  height: 42px;
  background: rgba(149,193,31,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chat-header-avatar svg { width: 22px; height: 22px; color: var(--lime); }
.chat-header-info h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}
.chat-header-info p {
  font-size: 12px;
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  gap: 6px;
}
.chat-header-info .online-dot {
  width: 7px;
  height: 7px;
  background: var(--lime);
  border-radius: 50%;
  display: inline-block;
}
.chat-body {
  flex: 1;
  padding: 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 280px;
  background: var(--off);
}
.chat-msg {
  display: flex;
  gap: 10px;
  align-items: flex-end;
}
.chat-msg.bot { align-self: flex-start; }
.chat-msg.user { align-self: flex-end; flex-direction: row-reverse; }
.chat-bubble {
  max-width: 260px;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.6;
}
.chat-msg.bot .chat-bubble {
  background: var(--white);
  color: var(--slate);
  border-bottom-left-radius: 4px;
  box-shadow: var(--shadow-sm);
}
.chat-msg.user .chat-bubble {
  background: var(--green-dark);
  color: var(--white);
  border-bottom-right-radius: 4px;
}
.chat-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 24px 12px;
  background: var(--off);
}
.chat-quick-btn {
  font-size: 13px;
  font-weight: 600;
  color: var(--green-dark);
  background: var(--lime-bg);
  border: 1px solid rgba(149,193,31,.25);
  padding: 7px 14px;
  border-radius: 100px;
  transition: all var(--transition);
  white-space: nowrap;
}
.chat-quick-btn:hover {
  background: rgba(149,193,31,.2);
  border-color: var(--lime);
}
.chat-input-area {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
}
.chat-input {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 18px;
  font-size: 14px;
  font-family: var(--font);
  outline: none;
  transition: border-color var(--transition);
  background: var(--off);
}
.chat-input:focus { border-color: var(--lime); background: var(--white); }
.chat-send {
  width: 40px;
  height: 40px;
  background: var(--green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
}
.chat-send:hover { background: var(--green-mid); transform: scale(1.05); }
.chat-send svg { width: 18px; height: 18px; color: var(--white); }

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease-out, transform .6s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero-visual { display: none; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section-pad { padding: 60px 0; }
  .section-pad-lg { padding: 72px 0; }

  .hamburger { display: flex; }
  .nav-links { display: none; }

  .hero { min-height: auto; padding: 120px 0 72px; }
  .hero-content { max-width: 100%; }
  .hero-actions { flex-direction: column; }
  .hero-actions a, .hero-actions button { width: 100%; justify-content: center; }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .stat-item:nth-child(4),
  .stat-item:nth-child(5) {
    border-top: 1px solid var(--border);
  }
  .stat-item:nth-child(3) { border-right: none; }

  .services-grid { grid-template-columns: 1fr; }
  .how-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .how-steps::before { display: none; }
  .pricing-cards { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }

  .book-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .obj-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .impact-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .form-row { grid-template-columns: 1fr; }

  .chat-window {
    width: calc(100vw - 32px);
    right: -8px;
    max-height: calc(100vh - 120px);
  }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(3) { border-right: 1px solid var(--border); }
  .stat-item:nth-child(2),
  .stat-item:nth-child(4) { border-right: none; }
  .stat-item:nth-child(5) { grid-column: span 2; }

  .hero h1 { font-size: 36px; }
  .book-form-wrap { padding: 28px 20px; }
  .contact-form-wrap { padding: 28px 20px; }
}

/* --- Print --- */
@media print {
  .navbar, .chat-widget, .hero-visual { display: none; }
  .hero { min-height: auto; padding: 40px 0; }
  body { background: white; }
}
