/* ==========================================================================
   amiGo. — Site de l'association de mobilité solidaire
   Charte graphique : teal / lime / gris / noir
   Fonts : Montserrat (titres), Poppins (nav/boutons), Lato (corps), Roboto (chiffres)
   ========================================================================== */

:root {
  /* Couleurs logo */
  --teal: #1A9CB0;
  --teal-dark: #0196B0;
  --teal-light: #E8F8FB;
  --lime: #A0D840;
  --lime-bright: #A9EB54;
  --lime-light: #F2FBDE;
  --gray-light: #B8B8B8;
  --gray-dark: #5A5A5A;
  --black: #1A1A1A;

  /* Neutres */
  --gray-900: #1A1A1A;
  --gray-700: #333333;
  --gray-600: #5A5A5A;
  --gray-500: #777777;
  --gray-400: #999999;
  --gray-300: #D1D5DB;
  --gray-200: #E5E5E5;
  --gray-100: #F3F4F6;
  --gray-50: #F9FAFB;
  --white: #FFFFFF;

  /* Aliases semantiques */
  --color-primary: var(--teal);
  --color-accent: var(--lime);
  --color-text: var(--gray-700);
  --color-text-light: var(--gray-600);
  --color-heading: var(--black);

  /* Layout */
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.1);
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --max-w: 1200px;

  /* Typographie */
  --font-heading: 'Montserrat', -apple-system, sans-serif;
  --font-ui: 'Poppins', -apple-system, sans-serif;
  --font-body: 'Lato', -apple-system, sans-serif;
  --font-data: 'Roboto', -apple-system, sans-serif;
}

/* Reset */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-dark); }
ul, ol { list-style: none; }
h1,h2,h3,h4 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-family: var(--font-ui); }

/* Utility */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.text-center { text-align: center; }
.text-teal { color: var(--teal); }
.bg-teal-light { background: var(--teal-light); }
.bg-gray-light { background: var(--gray-50); }

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo img { height: 44px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 2rem; }
.nav-menu a {
  font-family: var(--font-ui);
  font-size: .88rem;
  font-weight: 600;
  color: var(--gray-600);
  padding: .4rem 0;
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--teal);
  transition: width var(--transition);
}
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }
.nav-menu a:hover { color: var(--black); }
.btn-nav {
  background: var(--lime);
  color: var(--black) !important;
  padding: .6rem 1.4rem;
  border-radius: 50px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: .88rem;
  transition: background var(--transition), transform var(--transition);
}
.btn-nav:hover { background: var(--lime-bright); transform: translateY(-1px); color: var(--black) !important; }
.btn-nav::after { display: none; }

/* Mobile menu */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: .5rem; }
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--black);
  margin: 6px 0;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,6px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-6px); }

@media (max-width: 768px) {
  .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: #FFFFFF; }
  .nav-toggle { display: block; z-index: 1002; }
  .nav-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #FFFFFF;
    z-index: 1001;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    gap: 1.8rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
  }
  .nav-menu.open { opacity: 1; visibility: visible; }
  .nav-menu a { font-size: 1.2rem; }
}

/* ==========================================================================
   HERO / PARALLAX
   ========================================================================== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.45) 80%, rgba(0,2,26,.78) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 6rem 1.5rem 4rem;
}
.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.hero-content p {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  opacity: .92;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.hero-small { min-height: 50vh; }
.hero-small .hero-content { padding: 8rem 1.5rem 3rem; }

/* CTA buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: .95rem;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: var(--lime);
  color: var(--black);
}
.btn-primary:hover {
  background: var(--lime-bright);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(160,216,64,.35);
  color: var(--black);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
  color: var(--white);
}
.btn-green {
  background: var(--teal);
  color: var(--white);
}
.btn-green:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,156,176,.3);
  color: var(--white);
}
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   PARALLAX SECTIONS
   ========================================================================== */
.parallax-section {
  position: relative;
  padding: 0;
  overflow: hidden;
}
.parallax-bg {
  position: absolute;
  inset: -20% 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
  z-index: 0;
}
.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,26,26,.85), rgba(26,156,176,.55));
  z-index: 1;
}
.parallax-content {
  position: relative;
  z-index: 2;
  padding: 6rem 1.5rem;
  color: var(--white);
  text-align: center;
  max-width: var(--max-w);
  margin: 0 auto;
}
.parallax-content h2 { color: var(--white); margin-bottom: 1rem; }
.parallax-content p { opacity: .9; max-width: 700px; margin: 0 auto; font-size: 1.1rem; }

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.section { padding: 5rem 0; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { margin-bottom: .75rem; }
.section-header p { color: var(--gray-500); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.section-label {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--teal);
  margin-bottom: .75rem;
}

/* Cards */
.card-grid { display: grid; gap: 2rem; }
.card-grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.card-grid-2 { grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); }
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-img { overflow: hidden; aspect-ratio: 16/9; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 1.5rem; }
.card-body h3 { margin-bottom: .5rem; }
.card-body p { color: var(--gray-600); font-size: .95rem; }
.card-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-ui);
  font-size: .82rem;
  color: var(--gray-500);
  margin-bottom: .5rem;
}
.card-tag {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal);
  padding: .2rem .7rem;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
}

/* Press cards (CTA style with background image) */
.press-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  transition: transform var(--transition), box-shadow var(--transition);
}
.press-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.press-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .5s ease;
}
.press-card:hover .press-card-bg { transform: scale(1.05); }
.press-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(26,26,26,.92) 0%, rgba(26,26,26,.5) 50%, rgba(26,26,26,.2) 100%);
}
.press-card-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  color: var(--white);
}
.press-card-content h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: .5rem;
}
.press-card-content p {
  font-size: .88rem;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.press-card-tag {
  display: inline-block;
  background: var(--lime);
  color: var(--black);
  font-family: var(--font-ui);
  font-size: .68rem;
  font-weight: 700;
  padding: .25rem .8rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .75rem;
}
.press-card-link {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: .85rem;
  font-weight: 600;
  color: var(--lime);
  transition: color var(--transition);
}
.press-card:hover .press-card-link { color: var(--lime-bright); }
.press-card-logo {
  height: 36px;
  width: auto;
  margin-bottom: .75rem;
  filter: brightness(0) invert(1);
  opacity: .85;
}

/* Icon cards (features) */
.icon-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: transform var(--transition), box-shadow var(--transition);
}
.icon-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.icon-card .icon {
  width: 64px; height: 64px;
  background: var(--lime-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.8rem;
}
.icon-card h3 { margin-bottom: .5rem; font-size: 1.1rem; }
.icon-card p { color: var(--gray-600); font-size: .92rem; }

/* ==========================================================================
   PRICING
   ========================================================================== */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.pricing-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
  position: relative;
}
.pricing-card.featured {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: scale(1.03);
}
.pricing-card.featured::before {
  content: 'Populaire';
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--lime);
  color: var(--black);
  font-family: var(--font-ui);
  font-size: .72rem;
  font-weight: 700;
  padding: .3rem 1rem;
  border-radius: 50px;
}
.pricing-card h3 { font-size: 1.1rem; margin-bottom: .5rem; color: var(--gray-600); }
.pricing-amount {
  font-family: var(--font-data);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--lime);
}
.pricing-amount span { font-size: 1rem; font-weight: 500; color: var(--gray-500); }
.pricing-features { margin: 1.5rem 0; }
.pricing-features li {
  padding: .4rem 0;
  font-size: .9rem;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
}
.pricing-features li:last-child { border: none; }

/* ==========================================================================
   STEPS
   ========================================================================== */
.steps { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; counter-reset: step; }
.step {
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  text-align: center;
  counter-increment: step;
}
.step-number {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--black);
  color: var(--lime);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.step h3 { margin-bottom: .5rem; font-size: 1.05rem; }
.step p { color: var(--gray-600); font-size: .9rem; }

/* ==========================================================================
   FORM
   ========================================================================== */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: .88rem;
  margin-bottom: .4rem;
  color: var(--gray-700);
}
.form-control {
  width: 100%;
  padding: .75rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: border-color var(--transition);
  background: var(--white);
}
.form-control:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26,156,176,.12);
}
textarea.form-control { resize: vertical; min-height: 140px; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%235A5A5A'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   TWO COLUMNS
   ========================================================================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
@media (max-width: 768px) {
  .two-col, .two-col.reverse { grid-template-columns: 1fr; gap: 2rem; direction: ltr; }
}
.two-col img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }

/* ==========================================================================
   ARTICLE
   ========================================================================== */
.article-content { max-width: 780px; margin: 0 auto; }
.article-content h2 { margin-top: 2.5rem; margin-bottom: 1rem; font-size: 1.6rem; }
.article-content h3 { margin-top: 2rem; margin-bottom: .75rem; }
.article-content p { margin-bottom: 1.25rem; }
.article-content ul, .article-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}
.article-content li { margin-bottom: .5rem; list-style: disc; }
.article-content ol li { list-style: decimal; }
.article-content img { border-radius: var(--radius); margin: 2rem 0; }
.article-content blockquote {
  border-left: 4px solid var(--teal);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--teal-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--gray-600);
}

/* Related articles */
.related-articles { border-top: 1px solid var(--gray-200); padding-top: 3rem; margin-top: 3rem; }

/* ==========================================================================
   LEGAL
   ========================================================================== */
.legal-content { max-width: 780px; margin: 0 auto; }
.legal-content h2 { margin-top: 2.5rem; margin-bottom: 1rem; font-size: 1.4rem; color: var(--black); }
.legal-content h3 { margin-top: 1.5rem; margin-bottom: .5rem; font-size: 1.1rem; }
.legal-content p { margin-bottom: 1rem; }
.legal-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content li { list-style: disc; margin-bottom: .4rem; }

/* ==========================================================================
   VIDEO
   ========================================================================== */
.video-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.video-wrapper video { width: 100%; display: block; }

/* ==========================================================================
   STATS
   ========================================================================== */
.stats { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; padding: 2rem 0; }
.stat { text-align: center; }
.stat-number {
  font-family: var(--font-data);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--lime);
  display: block;
}
.stat-label { font-size: .9rem; color: var(--gray-500); }

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--black), var(--gray-dark));
  color: var(--white);
  padding: 4rem 1.5rem;
  text-align: center;
  border-radius: var(--radius-lg);
  margin: 3rem auto;
  max-width: var(--max-w);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 20%, rgba(160,216,64,.12), transparent 60%);
}
.cta-banner > * { position: relative; }
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { opacity: .85; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--black);
  color: var(--gray-light);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand p { color: var(--gray-dark); font-size: .9rem; margin-top: .75rem; line-height: 1.6; }
.footer-brand img { height: 36px; filter: brightness(0) invert(1); margin-bottom: .5rem; }
.site-footer h4 {
  font-family: var(--font-ui);
  color: var(--white);
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.footer-links li { margin-bottom: .5rem; }
.footer-links a { color: var(--gray-light); font-size: .88rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-social { display: flex; gap: .75rem; margin-top: .5rem; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-light);
  font-size: 1.1rem;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--teal); color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .82rem;
  color: var(--gray-dark);
}
.footer-partner { display: flex; align-items: center; gap: .5rem; }
.footer-partner img { height: 28px; }

/* ==========================================================================
   SCROLL ANIMATIONS
   ========================================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   WHATSAPP FLOAT
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  z-index: 999;
  transition: transform var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 28px; height: 28px; fill: var(--white); }

/* ==========================================================================
   BREADCRUMB
   ========================================================================== */
.breadcrumb {
  padding: .75rem 0;
  font-family: var(--font-ui);
  font-size: .82rem;
  color: var(--gray-500);
}
.breadcrumb a { color: var(--gray-500); }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb span { margin: 0 .4rem; }

/* ==========================================================================
   PARTNERS
   ========================================================================== */
.partners-section {
  padding: 3.5rem 0;
  text-align: center;
  border-top: 1px solid var(--gray-200);
}
.partners-label {
  font-family: var(--font-ui);
  font-size: .78rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1.5rem;
}
.partners-logos {
  display: flex;
  gap: 3rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.partners-logos img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .4;
  transition: all var(--transition);
}
.partners-logos img:hover {
  filter: grayscale(0);
  opacity: 1;
}
@media (max-width: 600px) {
  .partners-logos { gap: 2rem; }
  .partners-logos img { height: 36px; }
}

/* ==========================================================================
   HERO LOGO ANIMATION (homepage)
   ========================================================================== */
.hero-logo-anim {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 1rem;
  user-select: none;
}
.hero-logo-anim .hl {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(2.8rem, 8vw, 5rem);
  opacity: 0;
  transform: translateY(40px);
  animation: hlIn .55s cubic-bezier(.34,1.56,.64,1) forwards;
}
.hl-a { color: #1A9CB0; }
.hl-m { color: #B8B8B8; }
.hl-i { color: #FFFFFF; }
.hl-G { color: #A0D840; animation: hlIn .55s cubic-bezier(.34,1.56,.64,1) forwards, hlGlow 2.5s 2s ease-in-out infinite alternate !important; }
.hl-o { color: #FFFFFF; }
.hl-dot { color: #1A9CB0; }

.hl:nth-child(1) { animation-delay: .3s; }
.hl:nth-child(2) { animation-delay: .45s; }
.hl:nth-child(3) { animation-delay: .6s; }
.hl:nth-child(4) { animation-delay: .85s; }
.hl:nth-child(5) { animation-delay: 1s; }
.hl:nth-child(6) { animation-delay: 1.15s; }

@keyframes hlIn {
  0% { opacity: 0; transform: translateY(40px) scale(.7); filter: blur(6px); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
@keyframes hlGlow {
  from { text-shadow: 0 0 15px rgba(160,216,64,0); }
  to { text-shadow: 0 0 25px rgba(160,216,64,.4), 0 0 50px rgba(160,216,64,.12); }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 768px) {
  .hero { min-height: 70vh; }
  .hero-small { min-height: 40vh; }
  .section { padding: 3.5rem 0; }
  .parallax-content { padding: 4rem 1.5rem; }
  .stats { gap: 2rem; }
  .stat-number { font-size: 2rem; }
  .cta-banner { margin: 2rem 1rem; padding: 3rem 1.5rem; }
}
