/* ============================================
   MEMISA — Styles Globaux
   Campagne "Des Médicaments sûrs pour tous !"
   ============================================ */

/* --- Variables CSS --- */
:root {
  --blue-dark:   #006699;
  --blue-mid:    #336699;
  --yellow:      #cccc00;
  --red-dark:    #993333;
  --red-light:   #ff6666;
  --white:       #ffffff;
  --grey-light:  #f5f5f5;
  --grey-border: #dddddd;
  --text-dark:   #1a1a1a;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Dax', 'Trebuchet MS', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--white);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

/* --- Utilitaires --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center {
  text-align: center;
}

/* --- Logo Placeholder --- */
.logo-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.logo-placeholder img {
  height: 40px;
  width: auto;
  display: block;
}

/* --- Image Placeholder --- */
.image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #cccccc;
  color: #666666;
  font-size: 14px;
  font-weight: 600;
  width: 100%;
  min-height: 200px;
}

/* ============================================
   NAVIGATION COMMUNE
   ============================================ */
.main-nav {
  background: var(--blue-dark);
  padding: 0 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.main-nav .nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.main-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav .nav-links a {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

.main-nav .nav-links a:hover {
  border-bottom-color: var(--white);
}

.main-nav .nav-links a.active {
  color: var(--yellow);
  border-bottom-color: var(--yellow);
}

/* Hamburger mobile */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: 600px;
  background: #cccccc;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  max-width: 700px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--white);
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   BOUTONS
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--blue-dark);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  padding: 14px 32px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}

.btn-primary:hover {
  background: #005588;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--blue-dark);
  font-size: 16px;
  font-weight: 700;
  padding: 14px 32px;
  border: 2px solid var(--blue-dark);
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.btn-outline:hover {
  background: var(--blue-dark);
  color: var(--white);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  padding: 14px 32px;
  border: 2px solid var(--white);
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--blue-dark);
}

.btn-full {
  width: 100%;
}

.btn-yellow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 700;
  padding: 14px 32px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-yellow:hover {
  background: #b3b300;
}

/* ============================================
   SECTION — Chiffres
   ============================================ */
.section-stats {
  background: var(--blue-dark);
  padding: 60px 20px;
}

.stats-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item .stat-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--yellow);
  margin-bottom: 8px;
}

.stat-item .stat-label {
  font-size: 16px;
  color: var(--white);
}

/* ============================================
   SECTION — Pourquoi agir
   ============================================ */
.section-why {
  padding: 80px 20px;
}

.why-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.why-text h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 20px;
}

.why-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.why-text a {
  color: var(--blue-dark);
  font-weight: 600;
  text-decoration: underline;
}

/* ============================================
   SECTION — Formules de soutien
   ============================================ */
.section-formulas {
  padding: 80px 20px;
  background: var(--grey-light);
}

.section-formulas h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 48px;
}

.formulas-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.formula-card {
  background: var(--white);
  border: 2px solid var(--blue-dark);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.formula-card:hover,
.formula-card.selected {
  background: var(--blue-dark);
  color: var(--white);
}

.formula-card .formula-amount {
  font-size: 28px;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 12px;
}

.formula-card:hover .formula-amount,
.formula-card.selected .formula-amount {
  color: var(--white);
}

.formula-card .formula-desc {
  font-size: 13px;
}

.formulas-cta {
  text-align: center;
}

/* ============================================
   SECTION — Timeline / Étapes
   ============================================ */
.section-timeline {
  padding: 80px 20px;
}

.section-timeline h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 48px;
}

.timeline-grid {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}

.timeline-grid::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 60px;
  right: 60px;
  height: 3px;
  background: var(--grey-border);
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  flex: 1;
}

.timeline-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--blue-dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.timeline-step h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 4px;
}

.timeline-step p {
  font-size: 13px;
  color: #777;
}

/* ============================================
   SECTION — Témoignages
   ============================================ */
.section-testimonials {
  padding: 80px 20px;
  background: var(--grey-light);
}

.section-testimonials h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 48px;
}

.testimonials-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
}

.testimonial-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #cccccc;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #999;
  font-size: 12px;
}

.testimonial-card blockquote {
  font-size: 15px;
  font-style: italic;
  color: #555;
  margin-bottom: 16px;
  line-height: 1.6;
}

.testimonial-card .testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-dark);
}

/* ============================================
   SECTION — Newsletter
   ============================================ */
.section-newsletter {
  padding: 60px 20px;
  background: var(--blue-dark);
  text-align: center;
  color: var(--white);
}

.section-newsletter h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}

.section-newsletter p {
  font-size: 14px;
  margin-bottom: 24px;
  opacity: 0.85;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 240px;
  padding: 12px 16px;
  border: none;
  border-radius: 30px;
  font-size: 15px;
}

.newsletter-form button {
  padding: 12px 28px;
  background: var(--yellow);
  color: var(--text-dark);
  font-weight: 700;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 15px;
  transition: background 0.2s;
}

.newsletter-form button:hover {
  background: #b3b300;
}

.newsletter-rgpd {
  font-size: 12px;
  opacity: 0.7;
  max-width: 500px;
  margin: 0 auto;
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 40px 20px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-left .logo-placeholder {
  width: 80px;
  height: 30px;
  font-size: 11px;
}

.footer-left span {
  font-size: 13px;
  opacity: 0.7;
}

.footer-center {
  display: flex;
  gap: 20px;
}

.footer-center a {
  font-size: 13px;
  color: var(--white);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.footer-center a:hover {
  opacity: 1;
}

.footer-right {
  display: flex;
  gap: 16px;
}

.footer-social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--white);
  transition: background 0.2s;
}

.footer-social:hover {
  background: rgba(255,255,255,0.3);
}

/* ============================================
   DONATION PAGE
   ============================================ */
.donation-layout {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: calc(100vh - 64px);
}

.donation-image {
  position: relative;
  background: #cccccc;
  display: flex;
  align-items: flex-end;
}

.donation-image-overlay {
  width: 100%;
  padding: 40px 32px;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  color: var(--white);
}

.donation-image-overlay .copyright {
  font-size: 11px;
  opacity: 0.6;
  margin-bottom: 8px;
}

.donation-image-overlay p {
  font-size: 15px;
  line-height: 1.5;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.3);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-arrow.left { left: 16px; }
.slider-arrow.right { right: 16px; }

.donation-content {
  padding: 40px 32px;
  border-left: 1px solid var(--grey-border);
  overflow-y: auto;
}

.badge-success {
  display: inline-block;
  background: #28a745;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.donation-objective {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.donation-amount {
  font-size: 42px;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 12px;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: var(--grey-border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
}

.progress-fill {
  height: 100%;
  background: var(--blue-dark);
  border-radius: 4px;
  transition: width 0.5s;
}

.donation-meta {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #555;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 8px;
}

.countdown-label {
  text-align: center;
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.countdown-box {
  background: var(--grey-light);
  border-radius: 8px;
  padding: 12px;
  text-align: center;
}

.countdown-box .countdown-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--blue-dark);
}

.countdown-box .countdown-unit {
  font-size: 12px;
  color: #999;
  text-transform: uppercase;
  margin-top: 4px;
}

.donation-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.link-more {
  display: block;
  text-align: center;
  color: var(--blue-dark);
  font-size: 14px;
  text-decoration: underline;
}

/* --- Section En savoir plus --- */
.section-info {
  padding: 80px 20px;
  background: var(--grey-light);
}

.section-info h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 8px;
  text-align: center;
}

.section-info .info-subtitle {
  font-size: 18px;
  color: var(--blue-dark);
  text-align: center;
  margin-bottom: 24px;
}

.section-info > .container > p {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 16px;
  line-height: 1.7;
}

.impact-grid {
  max-width: 800px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.impact-item {
  background: var(--white);
  border-radius: 12px;
  padding: 24px 16px;
}

.impact-item .impact-icon {
  font-size: 32px;
  margin-bottom: 8px;
}

.impact-item .impact-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--blue-dark);
}

.impact-item .impact-label {
  font-size: 13px;
  color: #777;
}

.campaign-ended-note {
  text-align: center;
  padding: 24px;
  background: var(--white);
  border-radius: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.campaign-ended-note p {
  margin-bottom: 16px;
  font-size: 15px;
}

/* ============================================
   MODALES
   ============================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: var(--white);
  max-width: 600px;
  width: 90%;
  border-radius: 16px;
  padding: 32px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #999;
}

.modal-close:hover {
  color: var(--text-dark);
}

.modal-box h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 6px;
}

.modal-box .modal-subtitle {
  font-size: 14px;
  color: #777;
  margin-bottom: 24px;
}

/* Grille formules dans modale */
.modal-formulas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.modal-formula-card {
  background: var(--white);
  border: 2px solid var(--blue-dark);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.modal-formula-card:hover,
.modal-formula-card.selected {
  background: var(--blue-dark);
  color: var(--white);
}

.modal-formula-card .formula-amount {
  font-size: 28px;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 8px;
}

.modal-formula-card:hover .formula-amount,
.modal-formula-card.selected .formula-amount {
  color: var(--white);
}

.modal-formula-card .formula-desc {
  font-size: 13px;
}

.modal-free-amount {
  margin-bottom: 24px;
}

.modal-free-amount label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.modal-free-amount input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--blue-dark);
  border-radius: 8px;
  font-size: 16px;
}

/* Modale Follow */
.modal-steps-list {
  margin: 16px 0 24px;
}

.modal-steps-list li {
  font-size: 14px;
  padding: 6px 0;
}

.modal-follow-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.modal-follow-form input[type="email"] {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--grey-border);
  border-radius: 8px;
  font-size: 15px;
  margin-bottom: 16px;
}

.modal-follow-form .checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 13px;
  line-height: 1.5;
}

.modal-follow-form .checkbox-group input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
}

.modal-confirm-msg {
  display: none;
  background: #d4edda;
  color: #155724;
  padding: 16px;
  border-radius: 8px;
  text-align: center;
  font-size: 14px;
  margin-top: 16px;
}

.modal-confirm-msg.visible {
  display: block;
}

/* ============================================
   DASHBOARD
   ============================================ */
.dashboard-layout {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.dashboard-charts h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 24px;
}

.chart-container {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}

.chart-container h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 16px;
}

.dashboard-form-panel {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 12px;
  padding: 24px;
  height: fit-content;
  position: sticky;
  top: 80px;
}

.dashboard-form-panel h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 24px;
}

.dashboard-form-panel .form-group {
  margin-bottom: 20px;
}

.dashboard-form-panel .form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.dashboard-form-panel .form-group input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--grey-border);
  border-radius: 8px;
  font-size: 15px;
}

.dashboard-form-panel .btn-save {
  width: 100%;
  padding: 14px;
  background: var(--blue-dark);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}

.dashboard-form-panel .btn-save:hover {
  background: #005588;
}

.save-msg {
  display: none;
  color: #28a745;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  margin-top: 12px;
}

.save-msg.visible {
  display: block;
}

/* ============================================
   CAMPAGNES ADS
   ============================================ */
.ads-page {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.ads-page h1 {
  font-size: 32px;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 8px;
}

.ads-page .ads-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 48px;
}

.ads-section {
  margin-bottom: 48px;
}

.ads-section h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 24px;
}

.ads-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.ad-placeholder {
  background: var(--grey-light);
  border: 2px dashed var(--grey-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #888;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  flex-shrink: 0;
}

.ads-note {
  font-size: 13px;
  color: #888;
  padding: 8px 0;
}

/* ============================================
   BANNER PREVIEW
   ============================================ */
.bp-nav {
  background: var(--white);
  padding: 0 20px;
  border-bottom: 1px solid var(--grey-border);
}

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

.bp-nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.bp-nav-links a {
  font-size: 15px;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.2s;
}

.bp-nav-links a:hover {
  color: var(--blue-dark);
}

.bp-hero {
  position: relative;
  width: 100%;
  height: 500px;
  background: #cccccc;
  overflow: hidden;
}

.bp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,60,100,0.8) 0%, transparent 70%);
}

.bp-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bp-hero-content .bp-surtitle {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
}

.bp-hero-content h1 {
  font-size: 44px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.bp-hero-content p {
  font-size: 17px;
  color: var(--white);
  max-width: 500px;
  margin-bottom: 28px;
  opacity: 0.9;
}

.bp-integration-zone {
  max-width: 1200px;
  margin: 40px auto;
  padding: 32px;
  border: 3px dashed var(--blue-dark);
  border-radius: 12px;
  text-align: center;
  color: var(--blue-dark);
}

.bp-integration-zone p {
  font-size: 15px;
  margin: 4px 0;
}

.bp-integration-zone .bp-arrow {
  font-size: 28px;
  margin-bottom: 8px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
  .formulas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .donation-layout {
    grid-template-columns: 1fr;
  }

  .donation-image {
    min-height: 300px;
  }

  .dashboard-layout {
    grid-template-columns: 1fr;
  }

  .timeline-grid {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .timeline-grid::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 450px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .formulas-grid {
    grid-template-columns: 1fr;
  }

  .impact-grid {
    grid-template-columns: 1fr;
  }

  .modal-formulas-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .nav-links {
    display: none !important;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--blue-dark);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
  }

  .nav-links.open {
    display: flex !important;
  }

  .nav-toggle {
    display: flex;
  }

  .donation-amount {
    font-size: 32px;
  }

  .countdown-box .countdown-value {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 380px;
  }

  .hero-content h1 {
    font-size: 26px;
  }

  .donation-content {
    padding: 24px 16px;
  }

  .bp-hero-content h1 {
    font-size: 28px;
  }
}
