/* ================= GLOBAL SETTINGS ================= */
:root {
  --bg-main: #e4eef8; 
  --navy: #0f172a;
  --slate-text: #334155;
  --muted: #64748b;
  --orange-primary: #f97316;
  --white: #ffffff;
  --border: #e2e8f0;
  --accent-blue: #3b82f6;
}

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

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-main);
  color: var(--slate-text);
  line-height: 1.6;
  padding-top: 80px;
  overflow-x: hidden;
}

/* ================= HEADER / NAVBAR ================= */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo { font-size: 28px; font-weight: 800; color: var(--navy); text-decoration: none; }
.logo span { color: var(--orange-primary); }

header nav { display: flex; align-items: center; gap: 32px; }
header nav a {
  text-decoration: none;
  color: var(--slate-text);
  font-weight: 600;
  font-size: 15px;
  transition: 0.3s;
}
header nav a:hover { color: var(--orange-primary); }

header nav button {
  background: linear-gradient(135deg, #fb923c, #f97316);
  color: white; border: none; padding: 12px 28px;
  border-radius: 50px; font-weight: 700; cursor: pointer;
}

/* ================= LIGHT HERO SECTION ================= */
.light-hero {
  position: relative;
  padding: 80px 24px 140px;
  background: #ffffff;
  overflow: hidden;
}

.light-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 5;
}

.light-text h1 {
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 24px;
}

.light-text h1 span { color: var(--orange-primary); }

.light-text p {
  font-size: 19px;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 40px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.cta-primary {
  background: var(--navy);
  color: white;
  padding: 18px 32px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

.cta-secondary {
  background: #f1f5f9;
  color: var(--navy);
  padding: 18px 32px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

.light-image img {
  width: 100%;
  border-radius: 40px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* Floating Blobs */
.blob {
  position: absolute;
  width: 500px; height: 500px;
  filter: blur(80px);
  opacity: 0.15;
  z-index: 1;
  border-radius: 50%;
}
.blob-blue-1 { background: #3b82f6; top: -100px; right: -100px; }
.blob-blue-2 { background: #f97316; bottom: -100px; left: -100px; }

/* Waves */
.wave-wrapper {
  position: absolute;
  bottom: -2px; left: 0; width: 100%;
  line-height: 0;
}

/* ================= DARK SECTION ================= */
.dark-section {
  background: #020617;
  color: white;
  padding: 100px 24px;
  position: relative;
}

.dark-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.dark-image img { width: 100%; border-radius: 30px; }

.dark-text h2 { color: white; text-align: left; margin-bottom: 20px; }

.dark-text p { font-size: 18px; color: #94a3b8; margin-bottom: 30px; }

.cta {
  background: var(--orange-primary);
  color: white; border: none; padding: 16px 32px;
  border-radius: 12px; font-weight: 700; cursor: pointer;
}

/* ================= APPROACH SECTION ================= */
.approach-section { padding: 100px 20px; background: #ffffff; }

.approach-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.approach-header h2 span { color: var(--orange-primary); }

.approach-container {
  max-width: 1100px; margin: auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
}

.approach-track {
  background: #f8fafc; padding: 40px;
  border-radius: 30px; border: 1px solid var(--border);
}

.track-title {
  font-size: 20px; font-weight: 800; color: var(--navy);
  margin-bottom: 30px; text-align: center;
  background: white; padding: 10px; border-radius: 12px;
}

.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: ""; position: absolute; left: 14px; top: 0; bottom: 0;
  width: 2px; border-left: 2px dashed #cbd5e1;
}

.step { position: relative; margin-bottom: 40px; }
.step-number {
  position: absolute; left: -40px;
  width: 32px; height: 32px;
  background: var(--navy); color: white;
  border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; border: 4px solid #f8fafc;
}

.approach-track:last-child .step-number { background: var(--orange-primary); }

/* ================= COMMUNITY SECTION ================= */
.community-section { padding: 100px 20px; background: var(--bg-main); }

.bulletin-container {
  max-width: 1200px; margin: auto;
  display: grid; grid-template-columns: 1.2fr 0.8fr;
  gap: 60px; align-items: center;
}

.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.photo-pin {
  background: white; padding: 12px 12px 30px 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-radius: 4px;
}

.photo-pin img { width: 100%; height: 180px; object-fit: cover; }

.p1 { transform: rotate(-3deg); }
.p2 { transform: rotate(2deg); margin-top: 20px; }
.p3 { transform: rotate(1.5deg); }
.p4 { transform: rotate(-2deg); margin-top: -10px; }

.test-card {
  background: var(--white); padding: 40px;
  border-radius: 30px; position: relative;
  border-bottom: 5px solid var(--orange-primary);
}

.test-stats {
  display: flex; justify-content: space-between;
  background: var(--navy); padding: 25px;
  border-radius: 24px; color: white; margin-top: 25px;
}

.stat-item { text-align: center; }
.stat-item strong { display: block; font-size: 24px; color: var(--orange-primary); }

/* ================= FOOTER ================= */
.site-footer { background: #020617; color: #cbd5f5; padding: 60px 0 0; }
.footer-container {
  max-width: 1200px; margin: auto; padding: 0 24px 40px;
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px;
}
.footer-brand h3 { color: white; margin-bottom: 15px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: #cbd5f5; text-decoration: none; font-size: 14px; }
.footer-bottom {
  text-align: center; padding: 20px; border-top: 1px solid #1e293b;
  font-size: 13px; color: #64748b;
}

/* ================= FLOATING ICONS ================= */
.floating-icons {
  position: absolute; width: 100%; height: 100%;
  top: 0; left: 0; pointer-events: none;
}
.floating-icons span {
  position: absolute; font-size: 24px; opacity: 0.5;
  animation: float 6s infinite ease-in-out;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .light-grid, .dark-grid, .approach-container, .bulletin-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .light-text p, .dark-text p { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .dark-image { order: 2; }
}