/* ===========================
   A2CN — Design System v2
   Palette : couleurs du logo (Sénégal)
   =========================== */

:root {
  /* Palette du logo A2CN */
  --green: #1a9a3e;
  --green-dark: #127a30;
  --green-soft: #e8f5ec;
  --yellow: #ffcd00;
  --red: #e8262a;
  --blue: #1e4da8;
  --blue-dark: #143a80;

  /* Neutres */
  --ink: #0f2d1f;
  --text: #1c2b22;
  --muted: #5a6b60;
  --line: #e0e8e2;
  --cream: #faf9f4;
  --paper: #ffffff;
  --white: #ffffff;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --max: 1240px;
  --radius: 6px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 3px rgba(15, 45, 31, 0.08);
  --shadow: 0 8px 24px rgba(15, 45, 31, 0.08);
  --shadow-lg: 0 24px 64px rgba(15, 45, 31, 0.15);
  --transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* TOPBAR */
.topbar {
  background: var(--green);
  color: rgba(255, 255, 255, 0.95);
  font-size: 13px;
  padding: 10px 0;
  position: relative;
}

.topbar::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green) 0%, var(--green) 33%, var(--yellow) 33%, var(--yellow) 66%, var(--red) 66%, var(--red) 100%);
}

.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.topbar-left { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar-left span { display: inline-flex; align-items: center; gap: 6px; }
.topbar-left svg { color: var(--yellow); }
.topbar-right { display: flex; gap: 10px; }
.topbar-right a {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transition: var(--transition);
  color: var(--white);
}
.topbar-right a:hover { background: var(--yellow); color: var(--ink); transform: translateY(-2px); }

/* HEADER STYLE ASN */
.header { background: var(--white); position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow-sm); }

.header-top { background: var(--white); padding: 16px 0; border-bottom: 1px solid var(--line); }
.header-top-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: flex; align-items: center; gap: 16px; }
.brand img { height: 70px; width: auto; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--ink); letter-spacing: 0.02em; text-transform: uppercase; }
.brand-tagline { font-size: 13px; color: var(--muted); font-weight: 500; margin-top: 2px; }

.header-search input { width: 240px; padding: 10px 14px; border: 1px solid var(--line); border-radius: var(--radius); font-family: inherit; font-size: 14px; background: var(--cream); }
.header-search input:focus { outline: none; border-color: var(--green); background: var(--white); }

.header-nav { background: var(--green); position: relative; }
.header-nav::before { content: ''; position: absolute; bottom: -3px; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--green) 0%, var(--green) 33%, var(--yellow) 33%, var(--yellow) 66%, var(--red) 66%, var(--red) 100%); }
.header-nav .container { display: flex; align-items: stretch; }

.logo { display: flex; align-items: center; gap: 12px; }
.logo img { height: 64px; width: auto; display: block; }

.nav { display: flex; align-items: stretch; margin: 0; }
.nav-item { position: relative; }

.nav-link { display: flex; align-items: center; gap: 6px; padding: 16px 22px; font-size: 14px; font-weight: 600; color: var(--white); text-transform: uppercase; letter-spacing: 0.05em; transition: var(--transition); white-space: nowrap; }
.nav-link:hover { background: var(--green-dark); color: var(--yellow); }
.nav-link.active { background: var(--green-dark); color: var(--yellow); }
.nav-link.active::before { display: none; }

.nav-link.has-dropdown::after { content: '▾'; font-size: 10px; margin-left: 4px; transition: transform 0.3s ease; }
.nav-item:hover .nav-link.has-dropdown::after { transform: rotate(180deg); }

.nav-dropdown { position: absolute; top: 100%; left: 0; background: var(--white); min-width: 260px; box-shadow: 0 12px 32px rgba(15, 45, 31, 0.18); border-radius: 0 0 var(--radius) var(--radius); padding: 8px 0; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: all 0.25s ease; z-index: 200; border-top: 3px solid var(--yellow); }
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a { display: block; padding: 12px 22px; font-size: 14px; color: var(--text); font-weight: 500; border-left: 3px solid transparent; transition: var(--transition); }
.nav-dropdown a:hover { background: var(--green-soft); color: var(--green-dark); border-left-color: var(--green); padding-left: 26px; }

.nav-cta-btn { margin-left: auto; padding: 16px 24px; background: var(--yellow); color: var(--ink); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; display: flex; align-items: center; gap: 8px; transition: var(--transition); white-space: nowrap; }
.nav-cta-btn:hover { background: var(--ink); color: var(--yellow); }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 14px; font-weight: 600;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-primary:hover {
  background: var(--green-dark); border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26, 154, 62, 0.35);
}
.btn-ghost { background: transparent; color: var(--green); border-color: var(--green); }
.btn-ghost:hover { background: var(--green); color: var(--white); }
.btn-accent { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.btn-accent:hover { background: var(--ink); color: var(--yellow); border-color: var(--ink); }
.btn-light { background: var(--white); color: var(--green); }
.btn-light:hover { background: var(--yellow); color: var(--ink); }
.btn-ghost-light { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.4); }
.btn-ghost-light:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--white); }
.btn-large { padding: 16px 32px; font-size: 15px; }

.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.menu-toggle span { width: 24px; height: 2px; background: var(--ink); transition: var(--transition); }

/* HERO */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--green-soft) 0%, var(--paper) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green) 0%, var(--green) 33%, var(--yellow) 33%, var(--yellow) 66%, var(--red) 66%, var(--red) 100%);
}

.hero-bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 205, 0, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(26, 154, 62, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--green);
  border-radius: 100px;
  font-size: 13px; font-weight: 500;
  color: var(--green);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.hero-tag .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  position: relative;
}

.hero-tag .dot::after {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0.3;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.5); opacity: 0; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 600;
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  color: var(--green);
  font-weight: 500;
  position: relative;
}

.hero-title em::after {
  content: '';
  position: absolute;
  bottom: 0.05em; left: 0; right: 0;
  height: 0.08em;
  background: var(--yellow);
  opacity: 0.6;
}

.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 40px; font-weight: 700;
  color: var(--green);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.4;
}

.hero-visual { position: relative; }

.hero-image-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(-1.5deg);
}

.hero-image-wrap::before {
  content: '';
  position: absolute; inset: -20px;
  border: 3px solid var(--yellow);
  border-radius: var(--radius-lg);
  z-index: -1;
  transform: rotate(3deg);
}

.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; }

.hero-badge {
  position: absolute;
  bottom: 24px; left: -24px;
  background: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
  transform: rotate(2deg);
  border: 2px solid var(--green);
}

.badge-icon {
  width: 40px; height: 40px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 18px;
}

.hero-badge strong { display: block; font-size: 14px; color: var(--ink); }
.hero-badge span { display: block; font-size: 12px; color: var(--muted); }

/* PARTNERS */
.partners-bar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 32px 0;
  border-bottom: 3px solid var(--yellow);
}

.partners-bar .container { display: flex; flex-direction: column; gap: 16px; align-items: center; text-align: center; }
.partners-label {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--yellow); font-weight: 600;
}
.partners-list {
  display: flex; gap: 24px; flex-wrap: wrap; justify-content: center;
  font-size: 15px; font-weight: 500;
}

/* SECTIONS */
.section { padding: 100px 0; }
.section-dark { background: var(--ink); color: var(--white); }
.section-cream { background: var(--cream); }
.section-green { background: var(--green-soft); }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  align-items: end;
}

.section-head-center { display: block; text-align: center; max-width: 720px; margin: 0 auto 60px; }

.eyebrow {
  display: inline-block;
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.18em;
  font-weight: 700; color: var(--green);
  margin-bottom: 16px;
}
.eyebrow-light { color: var(--yellow); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600; line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.section-title-light { color: var(--white); }
.section-title em { font-style: italic; color: var(--green); font-weight: 500; }
.section-title-light em { color: var(--yellow); }

.section-lead { font-size: 17px; color: var(--muted); line-height: 1.7; max-width: 520px; }
.section-lead-light { color: rgba(255, 255, 255, 0.75); font-size: 17px; line-height: 1.7; margin-bottom: 32px; }

/* SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.service-card {
  background: var(--white);
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--green), var(--yellow));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card-featured {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  border-color: var(--green);
}

.service-card-featured::before { transform: scaleX(1); background: var(--yellow); }
.service-card-featured h3 { color: var(--white); }
.service-card-featured p { color: rgba(255, 255, 255, 0.9); }
.service-card-featured .card-link { color: var(--yellow); }

.service-num {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 700;
  color: var(--green);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  display: inline-block;
  padding: 4px 12px;
  background: var(--green-soft);
  border-radius: 100px;
}

.service-card-featured .service-num { background: rgba(255, 255, 255, 0.2); color: var(--yellow); }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.service-card p { color: var(--muted); font-size: 15px; line-height: 1.6; margin-bottom: 24px; }

.card-link {
  font-size: 14px; font-weight: 600;
  color: var(--green);
  display: inline-flex; align-items: center; gap: 4px;
  transition: var(--transition);
}
.card-link:hover { gap: 10px; color: var(--green-dark); }

/* TRUST (dark) */
.trust-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.trust-list { display: grid; gap: 24px; }
.trust-item {
  display: flex; gap: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.trust-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--yellow);
  transform: translateX(8px);
}
.trust-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--yellow); color: var(--ink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 700;
  font-family: var(--font-display);
}
.trust-item h4 { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.trust-item p { color: rgba(255, 255, 255, 0.7); font-size: 14px; line-height: 1.5; }

/* STATS BAND */
.stats-band {
  background: var(--green);
  color: var(--white);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 205, 0, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(232, 38, 42, 0.15) 0%, transparent 50%);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; position: relative; z-index: 2; }
.stats-item { text-align: center; padding: 20px; border-right: 1px solid rgba(255, 255, 255, 0.15); }
.stats-item:last-child { border-right: none; }
.stats-num {
  font-family: var(--font-display);
  font-size: 56px; font-weight: 700;
  color: var(--yellow);
  line-height: 1; margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.stats-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.95);
  text-transform: uppercase; letter-spacing: 0.1em;
  font-weight: 500;
}

/* TESTIMONIALS */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial {
  background: var(--white);
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  position: relative;
  transition: var(--transition);
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--green);
}
.testimonial-featured {
  background: linear-gradient(135deg, var(--green-soft) 0%, var(--cream) 100%);
  border-color: var(--green);
  transform: translateY(-12px);
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 80px; line-height: 0.5;
  color: var(--green);
  margin-bottom: 16px;
  font-weight: 800;
}
.testimonial p { font-size: 15px; line-height: 1.7; color: var(--text); margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; padding-top: 20px; border-top: 1px solid var(--line); }
.testimonial-avatar {
  width: 44px; height: 44px;
  background: var(--green); color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
  font-family: var(--font-display);
}
.testimonial-author strong { display: block; font-size: 14px; color: var(--ink); font-weight: 600; }
.testimonial-author span { display: block; font-size: 12px; color: var(--muted); }

/* CTA */
.cta-section { padding: 60px 0 100px; }
.cta-box {
  position: relative;
  background: linear-gradient(135deg, var(--ink) 0%, var(--green-dark) 100%);
  color: var(--white);
  padding: 80px 60px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.cta-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 90% 10%, rgba(255, 205, 0, 0.25) 0%, transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(232, 38, 42, 0.15) 0%, transparent 40%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 2; max-width: 720px; }
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600; line-height: 1.1;
  color: var(--white);
  margin: 16px 0 16px;
  letter-spacing: -0.02em;
}
.cta-content p { font-size: 18px; color: rgba(255, 255, 255, 0.85); margin-bottom: 32px; line-height: 1.6; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* FOOTER */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 30px;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green) 0%, var(--green) 33%, var(--yellow) 33%, var(--yellow) 66%, var(--red) 66%, var(--red) 100%);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 60px; margin-bottom: 60px; }
.footer-brand .logo img {
  height: 80px;
  background: var(--white);
  padding: 12px;
  border-radius: var(--radius);
}
.footer-mission { font-size: 14px; line-height: 1.7; margin: 24px 0; max-width: 360px; color: rgba(255, 255, 255, 0.7); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  color: var(--white);
}
.footer-social a:hover { background: var(--yellow); color: var(--ink); transform: translateY(-3px); }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 32px; height: 2px;
  background: var(--yellow);
}
.footer-col ul { list-style: none; display: grid; gap: 12px; }
.footer-col a { font-size: 14px; color: rgba(255, 255, 255, 0.6); transition: var(--transition); }
.footer-col a:hover { color: var(--yellow); }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: rgba(255, 255, 255, 0.7); line-height: 1.5; }
.footer-contact svg { color: var(--yellow); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px; color: rgba(255, 255, 255, 0.5);
}

/* PAGE HEADER */
.page-header {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--ink) 100%);
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 205, 0, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(232, 38, 42, 0.1) 0%, transparent 50%);
}
.page-header::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green) 0%, var(--green) 33%, var(--yellow) 33%, var(--yellow) 66%, var(--red) 66%, var(--red) 100%);
}
.page-header-inner { position: relative; z-index: 2; text-align: center; max-width: 720px; margin: 0 auto; }
.breadcrumb { font-size: 13px; color: rgba(255, 255, 255, 0.7); margin-bottom: 16px; }
.breadcrumb a { color: var(--yellow); }
.page-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 600; line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.page-title em { font-style: italic; color: var(--yellow); font-weight: 500; }
.page-subtitle { font-size: 18px; color: rgba(255, 255, 255, 0.8); line-height: 1.6; }

/* ABOUT */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-intro-img { position: relative; }
.about-intro-img img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}
.about-intro-img::before {
  content: '';
  position: absolute; inset: -20px;
  border: 3px solid var(--yellow);
  border-radius: var(--radius-lg);
  z-index: -1;
  transform: rotate(2deg);
}
.about-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  color: var(--ink); font-weight: 600;
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.about-intro h2 em { font-style: italic; color: var(--green); font-weight: 500; }
.about-intro p { color: var(--muted); font-size: 16px; line-height: 1.8; margin-bottom: 16px; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.value-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  transition: var(--transition);
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--green);
}
.value-icon {
  width: 72px; height: 72px;
  background: var(--green-soft);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
  border: 2px solid var(--green);
}
.value-card h3 { font-family: var(--font-display); font-size: 20px; color: var(--ink); margin-bottom: 12px; }
.value-card p { font-size: 15px; color: var(--muted); line-height: 1.6; }

/* TEAM */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card { text-align: center; }
.team-photo {
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 48px; color: var(--yellow); font-weight: 700;
  margin-bottom: 16px;
  border: 3px solid var(--yellow);
  overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { font-family: var(--font-display); font-size: 18px; color: var(--ink); margin-bottom: 4px; }
.team-card p { font-size: 13px; color: var(--muted); }

/* GALLERY */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15, 45, 31, 0.8));
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-caption {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  color: var(--white);
  z-index: 2;
  font-size: 14px; font-weight: 500;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }
.gallery-tall { grid-row: span 2; aspect-ratio: 4/6.4; }

/* FORMATIONS */
.formation-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.formation-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.formation-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
}
.formation-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
  background: var(--green-soft);
}
.formation-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.formation-card:hover .formation-img img { transform: scale(1.05); }
.formation-body { padding: 28px; }
.formation-tag {
  display: inline-block;
  background: var(--green-soft);
  color: var(--green-dark);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.formation-card h3 {
  font-family: var(--font-display);
  font-size: 22px; color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.2;
}
.formation-card p { color: var(--muted); font-size: 15px; line-height: 1.6; margin-bottom: 20px; }
.formation-meta {
  display: flex; flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: var(--muted);
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.formation-meta span { display: flex; align-items: center; gap: 4px; }

/* WHY US */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 60px; }
.why-card {
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  position: relative;
  transition: var(--transition);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--green);
}
.why-num {
  font-family: var(--font-display);
  font-size: 48px; font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.3;
}
.why-card h3 { font-family: var(--font-display); font-size: 22px; color: var(--ink); margin-bottom: 12px; }
.why-card p { color: var(--muted); font-size: 15px; line-height: 1.6; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; }
.contact-info {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  padding: 48px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.contact-info::before {
  content: '';
  position: absolute; top: -50%; right: -50%;
  width: 100%; height: 100%;
  background: radial-gradient(circle, rgba(255, 205, 0, 0.2) 0%, transparent 70%);
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: 32px;
  margin-bottom: 16px;
  position: relative;
}
.contact-info > p { color: rgba(255, 255, 255, 0.9); margin-bottom: 40px; position: relative; line-height: 1.7; }
.contact-list { display: grid; gap: 24px; position: relative; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px;
  background: var(--yellow); color: var(--ink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item h4 {
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--yellow);
  margin-bottom: 4px;
}
.contact-item p { color: var(--white); font-size: 15px; line-height: 1.5; }
.contact-form {
  background: var(--white);
  padding: 48px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label {
  display: block;
  font-size: 13px; font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 15px;
  background: var(--paper);
  transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(26, 154, 62, 0.1);
}
.form-group textarea { min-height: 140px; resize: vertical; }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-content > * { animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) backwards; }
.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.4s; }
.hero-content > *:nth-child(5) { animation-delay: 0.5s; }
.hero-visual { animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s backwards; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .services-grid, .testimonials, .values-grid, .formation-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid, .about-intro, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .stats-item { border-right: none; }
  .stats-item:nth-child(odd) { border-right: 1px solid rgba(255, 255, 255, 0.15); }
}

@media (max-width: 768px) {
  .topbar-left { gap: 12px; font-size: 12px; }
  .topbar-left span:not(:first-child) { display: none; }
  .brand img { height: 48px; }
  .brand-name { font-size: 16px; }
  .brand-tagline { font-size: 10px; }
  .header-search { display: none; }
  .nav { display: none; }
  .menu-toggle { display: flex; margin-left: auto; padding: 14px 16px; }
  .menu-toggle span { background: var(--white); }
  .nav.is-open { display: flex; flex-direction: column; width: 100%; background: var(--green-dark); }
  .nav.is-open .nav-link { padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .nav.is-open .nav-dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: rgba(0,0,0,0.2); border-top: none; padding: 0; }
  .nav.is-open .nav-dropdown a { color: var(--white); padding: 12px 36px; font-size: 13px; }
  .nav.is-open .nav-cta-btn { margin-left: 0; width: 100%; justify-content: center; }
  .hero { padding: 48px 0 60px; }
  .section { padding: 60px 0; }
  .services-grid, .testimonials, .gallery-grid, .formation-grid, .values-grid, .why-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .gallery-tall { grid-row: auto; aspect-ratio: 4/3; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-box, .contact-info, .contact-form { padding: 36px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; gap: 16px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stats-item { border-right: none !important; border-bottom: 1px solid rgba(255, 255, 255, 0.15); padding-bottom: 20px; }
  .stats-item:last-child { border-bottom: none; }
  .testimonial-featured { transform: none; }
  .hero-badge { display: none; }
}
