:root {
  --blue-900: #0d3d73;
  --blue-700: #145a9e;
  --blue-500: #1c74c4;
  --orange-500: #f0752c;
  --orange-600: #d9591a;
  --gray-50: #f7f8fa;
  --gray-100: #eef1f5;
  --gray-300: #d7dde5;
  --gray-600: #5a6472;
  --gray-900: #1a1f27;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(13, 61, 115, 0.1);
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
}

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

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

ul { list-style: none; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; color: var(--blue-900); line-height: 1.25; }

h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }
h4 { font-size: 1.05rem; margin-bottom: 6px; }

p { color: var(--gray-600); margin-bottom: 14px; }

.tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-600);
  background: rgba(240,117,44, 0.1);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.lead {
  font-size: 1.1rem;
  max-width: 700px;
  margin-bottom: 32px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--orange-500);
  color: var(--white);
}
.btn-primary:hover { background: var(--orange-600); transform: translateY(-2px); }
.btn-ghost {
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); }
.btn-full { width: 100%; text-align: center; border: none; }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(13,61,115,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--blue-900);
}
.logo img { width: 34px; height: 34px; object-fit: contain; }
.logo strong { color: var(--orange-500); }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gray-900);
  position: relative;
}
.nav a:not(.nav-cta):hover { color: var(--orange-500); }
.nav-cta {
  background: var(--blue-900);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 8px;
}
.nav-cta:hover { background: var(--orange-500); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.burger span { width: 24px; height: 2px; background: var(--blue-900); border-radius: 2px; }

/* Hero */
.hero {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  padding: 56px 0;
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(13,61,115,0.92) 0%, rgba(13,61,115,0.75) 45%, rgba(240,117,44,0.35) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 720px; }
.hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffd7bd;
  margin-bottom: 18px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom: 18px;
}
.hero-sub { color: rgba(255,255,255,0.88); font-size: 1.05rem; max-width: 560px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 8px; }

/* Trust bar */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 3;
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue-900);
  flex: 1 1 220px;
}
.trust-item svg { width: 24px; height: 24px; color: var(--orange-500); flex-shrink: 0; }

/* Sections */
.section { padding: 90px 0; }
.section-alt { background: var(--gray-50); }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.grid-2.align-center { align-items: center; }

.photo-showcase {
  margin: 44px auto 0;
  max-width: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--gray-900);
}
.photo-showcase img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}
.photo-showcase figcaption {
  padding: 12px 18px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
  background: var(--gray-900);
}

.video-showcase {
  margin: 28px 0 0;
  max-width: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--gray-900);
}
.video-showcase video {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  background: var(--gray-900);
}
.video-showcase figcaption {
  padding: 12px 18px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  background: var(--gray-900);
}

@media (max-width: 620px) {
  .video-showcase { max-width: 100%; }
  .video-showcase video { height: 240px; }
}

.cause-cards { display: grid; gap: 18px; }
.cause-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.cause-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(240,117,44, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--orange-500);
}
.cause-icon svg { width: 24px; height: 24px; }
.cause-card p { margin-bottom: 0; font-size: 0.95rem; }

.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  color: var(--gray-900);
  line-height: 1.5;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 16px;
  height: 16px;
  background-color: var(--orange-500);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.check-list.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 30px;
}

.stat-card {
  background: var(--blue-900);
  color: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--orange-500);
  line-height: 1;
  margin-bottom: 14px;
}
.stat-card p { color: rgba(255,255,255,0.85); margin-bottom: 0; }

.when-block { margin-top: 60px; }
.when-block h3 { margin-bottom: 22px; }

.when-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.when-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.when-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(240,117,44, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--orange-500);
}
.when-icon svg { width: 24px; height: 24px; }
.when-card h4 { margin-bottom: 6px; }
.when-card p { margin-bottom: 0; font-size: 0.92rem; }

/* Process steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 40px;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 78px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--gray-300) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 26px 18px;
  box-shadow: var(--shadow);
}
.process-number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue-900);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.process-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(240,117,44, 0.1);
  color: var(--orange-500);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.process-icon svg { width: 26px; height: 26px; }
.process-step h3 { font-size: 1.05rem; }
.process-step p { font-size: 0.9rem; margin-bottom: 0; }

.reason {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}
.reason-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(240,117,44, 0.1);
  color: var(--orange-500);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.reason-icon svg { width: 16px; height: 16px; }
.reason h4 { margin-bottom: 4px; }
.reason p { margin-bottom: 0; }

.zone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--blue-900);
  margin-top: 20px;
}
.zone svg { width: 20px; height: 20px; color: var(--orange-500); flex-shrink: 0; }

.societe-media img,
.societe-media video {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 380px;
  object-fit: cover;
  background: var(--gray-900);
}

/* CTA banner */
.cta-banner {
  background: linear-gradient(120deg, var(--blue-900), var(--blue-700));
  padding: 60px 0;
}
.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.cta-banner h2 { color: var(--white); margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.8); margin-bottom: 0; }

.contact-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-300);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.contact-list li strong { min-width: 110px; color: var(--blue-900); }
.contact-list a:hover { color: var(--orange-500); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue-900);
}
.contact-form input,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 14px;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  background: var(--gray-50);
  color: var(--gray-900);
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--orange-500);
  background: var(--white);
}
.form-note { font-size: 0.85rem; margin: 0; }

/* Footer */
.site-footer { background: var(--blue-900); color: rgba(255,255,255,0.75); padding: 26px 0; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: var(--blue-900);
  box-shadow: 0 -10px 30px rgba(13,61,115,0.25);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  margin: 0;
  max-width: 640px;
}
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.btn-ghost-dark {
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
  background: transparent;
}
.btn-ghost-dark:hover { background: rgba(255,255,255,0.1); }

/* Responsive */
@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; }
  .check-list.three-col { grid-template-columns: 1fr; }
  .when-cards { grid-template-columns: 1fr; }
  .nav { position: fixed; top: 76px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 20px 24px; gap: 18px; box-shadow: var(--shadow); transform: translateY(-150%); transition: transform 0.25s ease; }
  .nav.open { transform: translateY(0); }
  .burger { display: flex; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .trust-bar-inner { justify-content: center; text-align: center; }
  .cta-banner-inner { justify-content: center; text-align: center; }
}

@media (max-width: 560px) {
  .section { padding: 60px 0; }
  .hero { min-height: 440px; padding: 56px 0 30px; }
  .process-steps { grid-template-columns: 1fr; }
}
