/*
Theme Name: Hello Child
Template: hello-elementor
Version: 1.0
*/

:root {
  --green-light: #8FBC8F;
  --green-soft: #A8D5A2;
  --green-pale: #C5E6C0;
  --green-mint: #E8F5E6;
  --green-dark: #5A8F5A;
  --white: #FFFFFF;
  --off-white: #FAFCFA;
  --gray-light: #F5F7F5;
  --gray: #6B7B6B;
  --gray-dark: #3A4A3A;
  --text: #2D3B2D;
  --shadow: rgba(90, 143, 90, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.7;
  padding-top: var(--header-h, 120px);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

p {
  line-height: 1.7;
}

h1, h2, h3 {
  line-height: 1.25;
  letter-spacing: -0.3px;
}

a,
button {
  transition: all 0.25s ease;
}

:target {
  scroll-margin-top: calc(var(--header-h, 120px) + 12px);
}

section {
  padding-top: 80px;
  padding-bottom: 80px;
  overflow: hidden;
}

section + section {
  padding-top: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

body.page .entry-title,
body.page h1 {
  margin-top: 40px;
}

/* ==============================
   HEADER
   ============================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(255,255,255,0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.site-header .site-nav {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 14px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-header .logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  line-height: 0;
}

.site-header .logo.logo-image img {
  height: 120px !important;
  width: auto !important;
  max-height: none !important;
  display: block !important;
  object-fit: contain;
}

.nav-links {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-light);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--green-dark);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
}

.nav-cta {
  padding: 12px 30px;
  background: var(--green-light);
  color: var(--white) !important;
  border-radius: 30px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--green-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(143,188,143,0.4);
}

.nav-partner,
.nav-partner:visited,
.nav-partner:hover,
.nav-partner:active {
  padding: 10px 20px;
  border: 2px solid var(--green-light);
  border-radius: 30px;
  color: var(--green-dark) !important;
  text-decoration: none !important;
  transition: all 0.3s ease;
}

.nav-partner:hover {
  background: var(--green-mint) !important;
  border-color: var(--green-dark);
}

.logout-btn {
  margin-left: 10px;
  opacity: 0.85;
}

.mobile-menu {
  display: none;
  font-size: 1.5rem;
  color: var(--green-dark);
  cursor: pointer;
  background: transparent;
  border: 0;
}

@media (max-width: 1200px) {
  .site-header .site-nav {
    padding: 12px 24px;
    gap: 12px;
  }

  .nav-links {
    gap: 14px;
  }

  .site-header .logo.logo-image img {
    height: 120px !important;
    width: auto !important;
  }

  .nav-buttons .nav-partner {
    max-width: 260px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-buttons .logout-btn {
    padding: 10px 16px;
  }
}

@media (max-width: 768px) {
  .site-header .site-nav {
    flex-wrap: wrap;
    padding: 14px 20px;
    gap: 12px;
  }

  .site-header .logo.logo-image img {
    height: 64px !important;
    width: auto !important;
    max-width: 180px;
  }

  .mobile-menu {
    display: block;
    margin-left: auto;
    z-index: 10002;
  }

  .nav-links,
  .nav-buttons {
    display: none;
  }

  .site-header .site-nav.is-open .nav-links {
    display: flex !important;
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-top: 10px;
    padding: 14px;
    background: rgba(255,255,255,0.98);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  }

  .site-header .site-nav.is-open .nav-buttons {
    display: flex !important;
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-top: 10px;
  }

  .site-header .nav-links li {
    list-style: none;
  }

  .site-header .nav-links a,
  .site-header .nav-buttons a {
    width: 100%;
    justify-content: center;
  }
}

/* ==============================
   LOADER
   ============================== */
.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .4s ease, visibility .4s ease;
}

body.is-loaded .loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body.is-loaded .loader {
  display: none !important;
}

/* ==============================
   HERO
   ============================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--white) 0%, var(--green-mint) 100%);
}

.hero-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%238FBC8F' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-blob {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: linear-gradient(135deg, var(--green-pale) 0%, var(--green-mint) 100%);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: blob 20s ease-in-out infinite;
  opacity: 0.6;
}

@keyframes blob {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  padding-top: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: var(--white);
  border-radius: 30px;
  font-size: 0.85rem;
  color: var(--green-dark);
  margin-bottom: 30px;
  box-shadow: 0 5px 20px var(--shadow);
  animation: fadeInUp 0.8s ease forwards;
}

.hero-badge i {
  color: var(--green-light);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.8rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 25px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.2s;
}

.hero-title span {
  color: var(--green-light);
}

.hero-description {
  font-size: 1.15rem;
  color: var(--gray);
  margin-bottom: 40px;
  max-width: 500px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.4s;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.6s;
}

.btn-primary {
  padding: 18px 40px;
  background: var(--green-light);
  color: var(--white);
  border: none;
  border-radius: 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(143, 188, 143, 0.4);
}

.btn-secondary {
  padding: 18px 40px;
  background: transparent;
  color: var(--text);
  border: 2px solid var(--green-pale);
  border-radius: 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-secondary:hover {
  border-color: var(--green-light);
  background: var(--green-mint);
}

.hero-stats {
  display: flex;
  gap: 50px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.8s;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--green-dark);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--gray);
}

.hero-visual {
  position: relative;
  padding-top: 80px;
  opacity: 0;
  animation: fadeInRight 1s ease forwards;
  animation-delay: 0.5s;
}

.hero-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px var(--shadow);
}

.hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.hero-card {
  position: absolute;
  background: var(--white);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 20px 50px var(--shadow);
  animation: float 6s ease-in-out infinite;
}

.hero-card-1 {
  bottom: -30px;
  left: -40px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.hero-card-1 .icon {
  width: 50px;
  height: 50px;
  background: var(--green-mint);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card-1 .icon i {
  color: var(--green-dark);
  font-size: 1.3rem;
}

.hero-card-1 .info h4 {
  font-size: 1rem;
  margin-bottom: 3px;
}

.hero-card-1 .info span {
  font-size: 0.8rem;
  color: var(--gray);
}

.hero-card-2 {
  top: 50px;
  right: -30px;
  animation-delay: 2s;
}

.hero-card-2 .stars {
  display: flex;
  gap: 3px;
  margin-bottom: 8px;
}

.hero-card-2 .stars i {
  color: #FFD700;
  font-size: 0.9rem;
}

.hero-card-2 p {
  font-size: 0.85rem;
  color: var(--gray);
}

.hero-card-2 strong {
  color: var(--text);
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ==============================
   SECTIONS
   ============================== */
.services {
  padding: 120px 80px;
  background: var(--white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}

.section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--green-mint);
  color: var(--green-dark);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  border-radius: 25px;
  padding: 50px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid var(--green-mint);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px var(--shadow);
  border-color: var(--green-light);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--green-light), var(--green-pale));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--green-mint);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: var(--green-light);
}

.service-icon i {
  font-size: 2rem;
  color: var(--green-dark);
  transition: color 0.3s ease;
}

.service-card:hover .service-icon i {
  color: var(--white);
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: 20px;
}

.service-card p {
  color: var(--gray);
  margin-bottom: 25px;
  line-height: 1.8;
}

.service-features {
  list-style: none;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 0.95rem;
  color: var(--text);
}

.service-features li i {
  color: var(--green-light);
  margin-top: 4px;
}

/* Process */
.process {
  padding: 120px 80px;
  background: linear-gradient(180deg, var(--green-mint) 0%, var(--white) 100%);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50px;
  right: -15px;
  width: calc(100% - 100px);
  height: 2px;
  background: linear-gradient(90deg, var(--green-light), var(--green-pale));
  z-index: 0;
}

.step-number {
  width: 100px;
  height: 100px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--green-light);
  box-shadow: 0 15px 40px var(--shadow);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.process-step:hover .step-number {
  background: var(--green-light);
  color: var(--white);
  transform: scale(1.1);
}

.process-step h4 {
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--gray);
}

/* AMO */
.amo {
  padding: 120px 80px;
  background: var(--white);
}

.amo-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.amo-image {
  position: relative;
}

.amo-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 25px;
  box-shadow: 0 30px 60px var(--shadow);
}

.amo-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--green-pale);
  border-radius: 25px;
  z-index: -1;
}

.amo-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--green-light);
  color: var(--white);
  padding: 20px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(143, 188, 143, 0.4);
}

.amo-badge .number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 600;
}

.amo-badge .text {
  font-size: 0.85rem;
}

.amo-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: var(--text);
  margin-bottom: 25px;
}

.amo-content > p {
  color: var(--gray);
  margin-bottom: 35px;
  font-size: 1.05rem;
}

.amo-list {
  list-style: none;
  margin-bottom: 40px;
}

.amo-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  padding: 20px;
  background: var(--gray-light);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.amo-list li:hover {
  background: var(--green-mint);
  transform: translateX(10px);
}

.amo-list li .icon {
  width: 45px;
  height: 45px;
  background: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.amo-list li .icon i {
  color: var(--green-dark);
  font-size: 1.1rem;
}

.amo-list li h4 {
  font-size: 1rem;
  margin-bottom: 5px;
  color: var(--text);
}

.amo-list li p {
  font-size: 0.9rem;
  color: var(--gray);
}

/* Certifications */
.certifications {
  padding: 100px 80px;
  background: var(--gray-light);
}

.cert-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.cert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cert-icon {
  width: 100px;
  height: 100px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px var(--shadow);
  transition: all 0.3s ease;
}

.cert-item:hover .cert-icon {
  transform: scale(1.1);
  background: var(--green-mint);
}

.cert-icon i {
  font-size: 2.5rem;
  color: var(--green-dark);
}

.cert-item h4 {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 5px;
}

.cert-item p {
  font-size: 0.85rem;
  color: var(--gray);
}

/* Aides */
.aides {
  padding: 120px 80px;
  background: var(--white);
}

.aides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.aide-card {
  background: linear-gradient(145deg, var(--white), var(--gray-light));
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  border: 1px solid var(--green-mint);
  transition: all 0.4s ease;
}

.aide-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px var(--shadow);
}

.aide-card .icon {
  width: 80px;
  height: 80px;
  background: var(--green-mint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.aide-card .icon i {
  font-size: 2rem;
  color: var(--green-dark);
}

.aide-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 15px;
}

.aide-card p {
  font-size: 0.95rem;
  color: var(--gray);
}

/* Coverage */
.coverage {
  padding: 120px 80px;
  background: linear-gradient(180deg, var(--green-mint) 0%, var(--white) 100%);
}

.coverage-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.coverage-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: var(--text);
  margin-bottom: 25px;
}

.coverage-info p {
  color: var(--gray);
  margin-bottom: 30px;
  font-size: 1.05rem;
}

.coverage-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.coverage-stat {
  background: var(--white);
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px var(--shadow);
}

.coverage-stat .number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--green-dark);
  margin-bottom: 5px;
}

.coverage-stat .label {
  font-size: 0.9rem;
  color: var(--gray);
}

/* Partners */
.partners {
  padding: 120px 80px;
  background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
}

.partners-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.partners-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: var(--text);
  margin-bottom: 25px;
}

.partners-info > p {
  color: var(--gray);
  margin-bottom: 40px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.partner-benefits {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 5px 20px var(--shadow);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px var(--shadow);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: var(--green-mint);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon i {
  color: var(--green-dark);
  font-size: 1.2rem;
}

.benefit-item h4 {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 5px;
}

.benefit-item p {
  font-size: 0.9rem;
  color: var(--gray);
}

.partner-login {
  display: flex;
  justify-content: center;
}

.login-box {
  background: var(--white);
  padding: 50px;
  border-radius: 25px;
  box-shadow: 0 20px 60px var(--shadow);
  width: 100%;
  max-width: 420px;
}

.login-header {
  text-align: center;
  margin-bottom: 35px;
}

.login-icon {
  width: 80px;
  height: 80px;
  background: var(--green-mint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.login-icon i {
  font-size: 2rem;
  color: var(--green-dark);
}

.login-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--text);
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  font-size: 0.85rem;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: var(--gray);
}

.remember-me input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--green-light);
}

.forgot-password {
  color: var(--green-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.forgot-password:hover {
  color: var(--green-light);
}

.login-btn {
  width: 100%;
  padding: 18px 40px;
  background: var(--green-light);
  color: var(--white);
  border: none;
  border-radius: 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.login-btn:hover {
  background: var(--green-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(143, 188, 143, 0.4);
}

.login-divider {
  text-align: center;
  margin: 30px 0;
  position: relative;
}

.login-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--green-mint);
}

.login-divider span {
  background: var(--white);
  padding: 0 20px;
  color: var(--gray);
  font-size: 0.9rem;
  position: relative;
}

.register-btn {
  width: 100%;
  padding: 18px 40px;
  background: transparent;
  color: var(--green-dark);
  border: 2px solid var(--green-light);
  border-radius: 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
}

.register-btn:hover {
  background: var(--green-mint);
  border-color: var(--green-dark);
}

/* ==============================
   CONTACT
   ============================== */
.contact {
  padding: 60px 0 100px 0;
  background: var(--white);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  padding: 0 40px;
}

.contact-form {
  max-width: 420px;
  margin-left: 0;
  background: var(--gray-light);
  padding: 36px;
  border-radius: 25px;
}

.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: var(--text);
  margin-bottom: 25px;
}

.contact-info > p {
  color: var(--gray);
  margin-bottom: 40px;
  font-size: 1.05rem;
}

.contact-details {
  list-style: none;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.contact-details li .icon {
  width: 55px;
  height: 55px;
  background: var(--green-mint);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-details li .icon i {
  color: var(--green-dark);
  font-size: 1.2rem;
}

.contact-details li .text h4 {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 5px;
}

.contact-details li .text p {
  font-size: 0.95rem;
  color: var(--gray);
}

.contact-details li .text a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details li .text a:hover {
  color: var(--green-dark);
}

.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--text);
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid var(--green-mint);
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green-light);
  box-shadow: 0 0 0 4px rgba(143, 188, 143, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.submit-btn {
  width: 100%;
  padding: 18px 40px;
  background: var(--green-light);
  color: var(--white);
  border: none;
  border-radius: 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.submit-btn:hover {
  background: var(--green-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(143, 188, 143, 0.4);
}

/* ==============================
   FLUENT FORMS
   ============================== */
.contact-form .fluentform {
  width: 100%;
}

.contact-form .fluentform .ff-el-form-control,
.contact-form .fluentform select,
.contact-form .fluentform textarea {
  width: 100%;
}

.contact-form .ff-el-group {
  margin-bottom: 18px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border-radius: 12px;
  border: 1px solid #d9e6da;
  padding: 12px;
}

.contact-form .ff-btn-submit {
  width: 100%;
  padding: 18px 40px;
  background: var(--green-light) !important;
  color: var(--white) !important;
  border: none;
  border-radius: 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-form .ff-btn-submit:hover {
  background: var(--green-dark) !important;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(143,188,143,0.4);
}

/* ==============================
   FOOTER
   ============================== */
footer {
  background: var(--gray-dark);
  color: var(--white);
  padding: 80px;
  position: relative;
  z-index: 1;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 20px;
  display: block;
}

.footer-brand p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer-links h4 {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: var(--green-light);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--green-light);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--green-light);
  transform: translateY(-3px);
}

/* ==============================
   SCROLL ANIMATIONS
   ============================== */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==============================
   PRESENTATION
   ============================== */
.presentation .section {
  padding: 110px 80px;
  background: var(--white);
}

.presentation .section-header {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
}

.presentation p {
  margin: 0 0 16px;
}

.presentation .intro-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}

.presentation .highlight-box {
  margin-top: 24px;
  padding: 22px;
  background: var(--gray-light);
  border-radius: 16px;
  border: 1px solid var(--green-mint);
}

.presentation .highlight-box h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.presentation .france-map-container {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 50px var(--shadow);
}

.presentation .france-map-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.presentation .map-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.95);
  padding: 10px 14px;
  border-radius: 999px;
  box-shadow: 0 10px 30px var(--shadow);
}

.presentation-hero .hero-description {
  max-width: 560px;
}

/* Modern presentation */
.presentation {
  --container: 1200px;
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;

  --text: #0f172a;
  --muted: #475569;
  --line: rgba(15,23,42,.10);

  --card: rgba(255,255,255,.70);
  --card-solid: #ffffff;

  --shadow: 0 10px 30px rgba(2,6,23,.08);
  --shadow-soft: 0 8px 20px rgba(2,6,23,.06);

  --brand: #e11d48;
  --brand-2: #fb7185;

  color: var(--text);
}

.presentation a {
  text-decoration: none;
}

.presentation img {
  max-width: 100%;
  height: auto;
  display: block;
}

.presentation .section {
  padding: 72px 18px;
}

.presentation .section > * {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

.presentation-hero {
  position: relative;
  padding: 96px 18px 56px;
  overflow: hidden;
}

.presentation-hero .hero-container {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 44px;
  align-items: center;
}

.presentation-hero .hero-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 420px at 15% 5%, rgba(225,29,72,.10), transparent 55%),
    radial-gradient(800px 420px at 85% 20%, rgba(251,113,133,.10), transparent 55%),
    radial-gradient(600px 360px at 70% 85%, rgba(225,29,72,.08), transparent 60%);
  pointer-events: none;
}

.presentation-hero .hero-blob {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  right: -220px;
  top: -220px;
  background: radial-gradient(circle at 30% 30%, rgba(225,29,72,.20), rgba(251,113,133,.08), transparent 65%);
  filter: blur(10px);
  pointer-events: none;
}

.presentation-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(225,29,72,.08);
  border: 1px solid rgba(225,29,72,.18);
  color: #9f1239;
  font-weight: 600;
  font-size: 14px;
}

.presentation-hero .hero-title {
  margin: 18px 0 10px;
  font-size: clamp(34px, 3.6vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.presentation-hero .hero-title span {
  color: var(--brand);
}

.presentation-hero .hero-description {
  margin: 0;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.6;
  max-width: 52ch;
}

.presentation-hero .hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.presentation-hero .btn-primary,
.presentation-hero .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.presentation-hero .btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 22px rgba(225,29,72,.25);
}

.presentation-hero .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(225,29,72,.30);
}

.presentation-hero .btn-secondary {
  background: rgba(255,255,255,.75);
  border: 1px solid var(--line);
  color: var(--text);
  box-shadow: var(--shadow-soft);
}

.presentation-hero .btn-secondary:hover {
  transform: translateY(-1px);
}

.presentation-hero .hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 28px;
}

.presentation-hero .stat-item {
  background: rgba(255,255,255,0.9);
  border-radius: 26px;
  padding: 28px 18px;
  text-align: center;
  border: 1px solid rgba(15,23,42,.06);
  box-shadow:
    0 10px 30px rgba(15,23,42,.06),
    inset 0 1px 0 rgba(255,255,255,.6);
  transition: all .25s ease;
}

.presentation-hero .stat-item:hover {
  transform: translateY(-4px);
  box-shadow:
    0 16px 38px rgba(15,23,42,.10),
    inset 0 1px 0 rgba(255,255,255,.6);
}

.presentation-hero .stat-number {
  font-size: 34px;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.presentation-hero .stat-label {
  font-size: 14px;
  color: #6b7a74;
  font-weight: 500;
}

.presentation-hero .hero-image {
  background: rgba(255,255,255,.65);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 12px;
  box-shadow: var(--shadow);
}

.presentation-hero .hero-image img {
  border-radius: calc(var(--radius-xl) - 10px);
  width: 100%;
  height: auto;
}

.presentation .section-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.presentation .section-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(225,29,72,.08);
  border: 1px solid rgba(225,29,72,.18);
  color: #9f1239;
  flex: 0 0 auto;
}

.presentation .section-title {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.02em;
}

.presentation .section-title span {
  color: var(--brand);
}

.presentation .intro-content {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  align-items: start;
}

.presentation .intro-text p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 12px;
}

.presentation .highlight-box {
  margin-top: 18px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.70);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.presentation .highlight-box h4 {
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

.presentation .highlight-box p {
  margin: 0;
}

.presentation .france-map-container {
  position: relative;
  background: rgba(255,255,255,.65);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 12px;
  box-shadow: var(--shadow);
}

.presentation .france-map-img {
  border-radius: calc(var(--radius-xl) - 10px);
}

.presentation .map-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(15,23,42,.85);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
}

.presentation .services-grid,
.presentation .advantages-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.presentation .service-card {
  grid-column: span 6;
  background: rgba(255,255,255,.75);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 18px;
  box-shadow: var(--shadow-soft);
  transition: transform .15s ease, box-shadow .15s ease;
}

.presentation .service-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.presentation .service-card h3 {
  margin: 12px 0 8px;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.presentation .service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.presentation .service-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.80);
}

.presentation .methodology-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.presentation .step {
  background: rgba(255,255,255,.75);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.presentation .step-number {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(225,29,72,.10);
  border: 1px solid rgba(225,29,72,.18);
  color: #9f1239;
  font-weight: 800;
}

.presentation .step h4 {
  margin: 10px 0 6px;
}

.presentation .step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.presentation .methodology-message {
  margin-top: 16px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.75);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.presentation .methodology-message-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(225,29,72,.08);
  border: 1px solid rgba(225,29,72,.18);
}

.presentation .advantage-card {
  grid-column: span 4;
  border-radius: var(--radius-xl);
  padding: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  background: rgba(255,255,255,.75);
}

.presentation .advantage-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(15,23,42,.06);
  border: 1px solid var(--line);
  margin-bottom: 10px;
}

.presentation .advantage-card h3 {
  margin: 6px 0 8px;
  font-size: 18px;
}

.presentation .advantage-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

/* Presentation overrides */
.presentation {
  --brand: #2f6b4f;
  --brand-2: #8bbf9e;
  --page-bg: #f3f8f5;
  --card: rgba(255,255,255,.82);
  --line: rgba(15,23,42,.08);
  --shadow: 0 18px 40px rgba(2,6,23,.08);
  --shadow-soft: 0 12px 26px rgba(2,6,23,.06);
}

body.page-template-template-presentation,
body.page-template-presentation {
  background: var(--page-bg);
}

.presentation-hero {
  background: var(--page-bg);
  padding-bottom: 26px;
}

.presentation-hero .hero-container {
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(15,23,42,.06);
  border-radius: 34px;
  padding: 40px 34px;
  box-shadow: var(--shadow);
}

.presentation-hero .hero-pattern {
  background:
    radial-gradient(900px 420px at 15% 5%, rgba(47,107,79,.12), transparent 55%),
    radial-gradient(800px 420px at 85% 20%, rgba(139,191,158,.14), transparent 55%),
    radial-gradient(600px 360px at 70% 85%, rgba(47,107,79,.10), transparent 60%);
}

.presentation-hero .hero-badge {
  background: rgba(47,107,79,.10);
  border: 1px solid rgba(47,107,79,.18);
  color: var(--brand);
}

.presentation-hero .btn-primary {
  background: var(--brand);
  box-shadow: 0 14px 28px rgba(47,107,79,.25);
}

.presentation-hero .btn-primary:hover {
  box-shadow: 0 18px 34px rgba(47,107,79,.30);
}

.presentation-hero .stat-item {
  border-radius: 22px;
  padding: 18px 18px;
  background: var(--card);
  box-shadow: var(--shadow-soft);
}

.presentation .section {
  padding: 34px 18px;
}

.presentation .section > * {
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(15,23,42,.06);
  border-radius: 34px;
  box-shadow: var(--shadow-soft);
  padding: 34px 28px;
}

.presentation .services-grid,
.presentation .advantages-grid,
.presentation .methodology-steps {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* ==============================
   ESPACE PARTENAIRE
   ============================== */
.partner-hub a,
.partner-hub a:hover,
.partner-actions a,
.partner-card a {
  text-decoration: none !important;
  color: inherit !important;
}

.partner-dashboard {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 40px auto;
}

.partner-card {
  display: block;
  background: #f5f7f6;
  padding: 25px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.05);
  text-decoration: none !important;
  color: inherit !important;
  transition: all .25s ease;
}

.partner-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.partner-card h3 {
  margin-bottom: 6px;
  color: var(--green-dark);
}

.partner-card p {
  margin: 0;
  color: #6a6a6a;
}

.partner-depots {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 20px 30px;
  overflow-x: auto;
}

.partner-depots-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.partner-depots-table th,
.partner-depots-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  text-align: left;
  white-space: nowrap;
}

.partner-depots-table th {
  background: #f5f7f6;
  color: var(--green-dark);
}

/* ==============================
   RESPONSIVE GLOBAL
   ============================== */
@media (max-width: 1200px) {
  .contact {
    padding: 60px 32px;
  }

  .contact-container {
    grid-template-columns: 1fr 380px;
  }

  .contact-form {
    max-width: 380px;
    padding: 30px;
    justify-self: end;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    order: 1;
  }

  .hero-visual {
    order: 2;
  }

  .hero-description {
    max-width: 100%;
  }

  .hero-buttons,
  .hero-stats {
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-step:nth-child(2)::after {
    display: none;
  }

  .amo-container,
  .coverage-content,
  .contact-container,
  .partners-container {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .presentation .intro-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .presentation-hero .hero-container {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .presentation .service-card,
  .presentation .advantage-card {
    grid-column: span 12;
  }

  .presentation .methodology-steps {
    grid-template-columns: 1fr 1fr;
  }

  .presentation-hero .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 92px;
  }

  section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .hero {
    padding-top: 100px;
  }

  .hero-container,
  .services,
  .process,
  .amo,
  .certifications,
  .aides,
  .coverage,
  .partners,
  .contact {
    padding: 80px 30px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .process-grid,
  .aides-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .process-step::after {
    display: none;
  }

  footer {
    padding: 50px 30px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .presentation .section {
    padding: 80px 30px;
  }

  .presentation .france-map-img {
    height: 360px;
  }

  .partner-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .presentation-hero .hero-stats,
  .presentation .methodology-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .presentation-hero {
    padding-top: 78px;
  }
}
/* ==============================
   TEMPLATE ESPACE PARTENAIRE
   ============================== */

.partner-area{
  padding: 40px 20px 80px;
  background: #f7f9f8;
  min-height: 70vh;
}

.partner-container{
  max-width: 1100px;
  margin: 0 auto;
}

.partner-container > h1:first-child,
.partner-container > .entry-title:first-child{
  margin-bottom: 20px;
}

.partner-container > * + *{
  margin-top: 20px;
}

.partner-area .wp-block-group,
.partner-area .partner-content-card,
.partner-area .entry-content{
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
}

.partner-area .entry-content > *:first-child{
  margin-top: 0;
}

.partner-area .entry-content > *:last-child{
  margin-bottom: 0;
}

@media (max-width: 768px){
  .partner-area{
    padding: 24px 16px 56px;
  }

  .partner-area .wp-block-group,
  .partner-area .partner-content-card,
  .partner-area .entry-content{
    padding: 22px;
    border-radius: 18px;
  }
}