/* ═══════════════════ GGN – Style ═══════════════════ */

:root {
  --green:       #22c55e;
  --green-dark:  #16a34a;
  --green-light: #f0fdf4;
  --green-mid:   #dcfce7;
  --blue:        #1e3a5f;
  --blue-mid:    #2d5282;
  --blue-light:  #eff6ff;
  --white:       #ffffff;
  --bg:          #f8fafc;
  --text:        #1e293b;
  --text-soft:   #475569;
  --text-muted:  #94a3b8;
  --border:      #e2e8f0;
  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --shadow:      0 4px 20px rgba(0,0,0,.07);
  --shadow-lg:   0 12px 48px rgba(0,0,0,.12);
  --trans:       .22s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 2rem; border-radius: 50px; font-weight: 600; font-size: .95rem;
  transition: all var(--trans); white-space: nowrap;
}
.btn-primary {
  background: var(--green); color: #fff;
  box-shadow: 0 4px 18px rgba(34,197,94,.3);
}
.btn-primary:hover {
  background: var(--green-dark); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(34,197,94,.4);
}
.btn-ghost {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.5);
}
.btn-ghost:hover { background: rgba(255,255,255,.15); border-color: #fff; }
.btn-full { width: 100%; }

/* ── Section header ── */
.section-header { text-align: center; max-width: 660px; margin: 0 auto 3.5rem; }
.section-tag {
  display: inline-block; background: var(--green-mid); color: var(--green-dark);
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
  padding: .3rem 1rem; border-radius: 50px; margin-bottom: 1rem;
}
.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800;
  color: var(--blue); line-height: 1.2; margin-bottom: .85rem;
}
.section-header p { color: var(--text-soft); font-size: 1rem; }

/* ═══════════════════ HEADER / NAV ═══════════════════ */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--trans);
  backdrop-filter: blur(12px);
}
#header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); border-bottom-color: transparent; }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 2rem;
}

.logo { display: flex; align-items: center; gap: .75rem; }
.logo-img { height: 44px; width: auto; object-fit: contain; }
.logo-fallback { display: flex; flex-direction: column; }
.logo-ggn { font-size: 1.4rem; font-weight: 800; color: var(--green); line-height: 1; }
.logo-sub { font-size: .58rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); }

nav { display: flex; align-items: center; }
.nav-links { display: flex; align-items: center; gap: .2rem; }
.nav-a {
  display: flex; align-items: center; gap: .3rem;
  padding: .5rem 1rem; border-radius: 50px; font-size: .88rem; font-weight: 500;
  color: var(--text-soft); transition: all var(--trans);
}
.nav-a svg { transition: transform var(--trans); flex-shrink: 0; }
.nav-a:hover { color: var(--blue); background: var(--blue-light); }
.nav-cta {
  background: var(--green); color: #fff !important;
  padding: .55rem 1.4rem; margin-left: .5rem;
  box-shadow: 0 3px 12px rgba(34,197,94,.3);
}
.nav-cta:hover { background: var(--green-dark) !important; color: #fff !important; }

/* Dropdown */
.has-drop { position: relative; }
.has-drop:hover .nav-a svg { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: .5rem; min-width: 280px; border: 1px solid var(--border);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: all .18s ease; z-index: 999;
}
.has-drop:hover .dropdown {
  opacity: 1; visibility: visible; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.drop-item {
  display: flex; align-items: center; gap: .85rem;
  padding: .7rem .85rem; border-radius: var(--radius);
  transition: background var(--trans); color: var(--text);
}
.drop-item:hover { background: var(--bg); }
.drop-ico {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--bg); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.drop-item > span:last-child { display: flex; flex-direction: column; gap: .1rem; }
.drop-item strong { font-size: .86rem; font-weight: 600; color: var(--blue); }
.drop-item em { font-size: .75rem; font-style: normal; color: var(--text-muted); }
.drop-footer {
  border-top: 1px solid var(--border); margin-top: .4rem;
  padding: .65rem .85rem 0; font-size: .82rem; font-weight: 700; color: var(--green);
}
.drop-footer a:hover { color: var(--green-dark); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--blue); border-radius: 2px; transition: all var(--trans); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none; flex-direction: column;
  background: #fff; border-top: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem; gap: .25rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: .7rem 1rem; border-radius: var(--radius);
  font-size: .9rem; font-weight: 500; color: var(--text-soft);
  transition: all var(--trans);
}
.mobile-nav a:hover { background: var(--bg); color: var(--blue); }
.mob-cta {
  background: var(--green) !important; color: #fff !important;
  text-align: center; font-weight: 700 !important;
  border-radius: 50px !important; margin-top: .5rem;
}

/* ═══════════════════ HERO ═══════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 72px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(22,40,80,.82) 0%, rgba(22,40,80,.55) 60%, rgba(22,40,80,.3) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 5rem 1.5rem 4rem;
  max-width: 760px;
}
.hero-badge-top {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(34,197,94,.18); border: 1px solid rgba(34,197,94,.4);
  color: #86efac; font-size: .82rem; font-weight: 600;
  padding: .4rem 1rem; border-radius: 50px; margin-bottom: 1.5rem;
}
.hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 800;
  color: #fff; line-height: 1.1; margin-bottom: 1.5rem;
}
.hero-highlight { color: var(--green); }
.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,.8);
  line-height: 1.75; margin-bottom: 2.5rem; max-width: 580px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-cards {
  display: flex; gap: 1rem; flex-wrap: wrap;
}
.hcard {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px); border-radius: var(--radius);
  padding: .85rem 1.25rem; display: flex; align-items: center; gap: .85rem;
  color: #fff;
}
.hcard div { display: flex; flex-direction: column; gap: .1rem; }
.hcard strong { font-size: .95rem; font-weight: 700; }
.hcard span { font-size: .75rem; color: rgba(255,255,255,.7); }

/* ═══════════════════ AIDES HERO (inside hero-cards) ═══════════════════ */
.hcard-aides {
  display: flex; align-items: center; gap: .5rem;
  flex-wrap: wrap; padding: .6rem 1rem;
}
.hero-aide-logo {
  height: 30px; width: auto; object-fit: contain;
  background: #fff; border-radius: 6px;
  padding: 2px 5px;
}
.hero-aide-badge {
  background: rgba(255,255,255,.18); color: #fff;
  font-size: .65rem; font-weight: 700;
  padding: .22rem .55rem; border-radius: 50px;
  border: 1px solid rgba(255,255,255,.3);
  white-space: nowrap;
}

/* ═══════════════════ BANDEAU FINANCEMENT ═══════════════════ */
.financement-banner {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border-top: 2px solid #bbf7d0;
  border-bottom: 2px solid #bbf7d0;
  padding: 1.4rem 0;
}
.financement-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}
.financement-text {
  display: flex; align-items: center; gap: .85rem;
  flex: 1; min-width: 260px;
}
.financement-text p {
  font-size: .92rem; color: #166534; line-height: 1.5;
}
.financement-text strong { color: #14532d; }
.financement-logos {
  display: flex; align-items: center; gap: .75rem;
  flex-wrap: wrap;
}
.fin-label {
  font-size: .78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: #16a34a; white-space: nowrap;
}
.fin-logo {
  height: 36px; width: auto; object-fit: contain;
  background: #fff; border-radius: 8px;
  padding: 4px 8px; border: 1px solid #bbf7d0;
}
.fin-badge {
  background: #16a34a; color: #fff;
  font-size: .72rem; font-weight: 700;
  padding: .3rem .75rem; border-radius: 50px;
  white-space: nowrap;
}

/* ═══════════════════ CERTIFS ═══════════════════ */
.certifs-band {
  background: var(--bg); border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.certifs-row {
  display: flex; align-items: center; justify-content: center;
  gap: 2rem; flex-wrap: wrap;
}
.certif-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .85rem; color: var(--text-soft);
}
.certif-item strong { color: var(--blue); }

/* ═══════════════════ STATS ═══════════════════ */
.stats-section { background: var(--blue); padding: 4rem 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2rem; text-align: center;
}
.stat-item {}
.stat-num {
  display: inline; font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800; color: var(--green); line-height: 1;
}
.stat-suffix {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800; color: var(--green);
}
.stat-item p { font-size: .82rem; color: rgba(255,255,255,.6); margin-top: .5rem; }

/* ═══════════════════ SERVICES ═══════════════════ */
.services { padding: 5rem 0; }
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
}
.service-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform var(--trans), box-shadow var(--trans);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.sc-img-wrap { position: relative; height: 200px; overflow: hidden; }
.sc-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.service-card:hover .sc-img-wrap img { transform: scale(1.05); }
.sc-tag {
  position: absolute; top: .85rem; right: .85rem;
  background: var(--green); color: #fff;
  font-size: .7rem; font-weight: 700;
  padding: .25rem .7rem; border-radius: 50px;
}
.sc-body { padding: 1.75rem; }
.sc-icon {
  width: 52px; height: 52px; background: rgba(245,158,11,.1);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.sc-body h3 { font-size: 1.15rem; font-weight: 700; color: var(--blue); margin-bottom: .6rem; }
.sc-body > p { font-size: .88rem; color: var(--text-soft); line-height: 1.7; margin-bottom: 1.25rem; }
.sc-list { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.5rem; }
.sc-list li {
  display: flex; align-items: center; gap: .6rem;
  font-size: .82rem; color: var(--text-soft);
}
.sc-btn {
  display: inline-block; background: var(--green-light); color: var(--green-dark);
  font-size: .85rem; font-weight: 700; padding: .65rem 1.4rem;
  border-radius: 50px; transition: all var(--trans);
  border: 1px solid var(--green-mid);
}
.sc-btn:hover { background: var(--green); color: #fff; }

/* ═══════════════════ PROCESS ═══════════════════ */
.process { padding: 5rem 0; background: var(--bg); }
.process-steps {
  display: flex; align-items: flex-start; gap: 0;
  justify-content: center; flex-wrap: wrap;
}
.step {
  flex: 1; min-width: 180px; max-width: 240px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff; font-size: 1.1rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(34,197,94,.35); margin-bottom: 1rem; flex-shrink: 0;
}
.step-body h4 { font-size: .95rem; font-weight: 700; color: var(--blue); margin-bottom: .4rem; }
.step-body p { font-size: .82rem; color: var(--text-soft); line-height: 1.65; }
.step-arrow {
  display: flex; align-items: center; padding: 0 .5rem;
  padding-top: 14px; flex-shrink: 0;
}

/* ═══════════════════ REALISATIONS ═══════════════════ */
.realisations { padding: 5rem 0; }
.real-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.real-card {
  border-radius: var(--radius-lg); overflow: hidden;
  position: relative; aspect-ratio: 4/3;
  box-shadow: var(--shadow); transition: transform var(--trans), box-shadow var(--trans);
}
.real-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.real-card img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform .4s ease;
}
.real-card:hover img { transform: scale(1.04); }
.real-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2rem 1.25rem .9rem;
  background: linear-gradient(to top, rgba(22,40,80,.8) 0%, transparent 100%);
  color: #fff;
}
.real-tag {
  display: inline-block; background: var(--green); color: #fff;
  font-size: .68rem; font-weight: 700; padding: .2rem .65rem;
  border-radius: 50px; margin-bottom: .5rem;
}
.real-overlay p { font-size: .82rem; font-weight: 500; color: rgba(255,255,255,.9); }

/* ═══════════════════ ABOUT ═══════════════════ */
.about { padding: 5rem 0; background: var(--bg); }
.about-inner {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 5rem; align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-wrap img {
  width: 100%; height: 480px; object-fit: cover;
  border-radius: var(--radius-xl); box-shadow: var(--shadow-lg);
}
.about-float {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: #fff; border-radius: var(--radius); padding: .85rem 1.25rem;
  display: flex; align-items: center; gap: .75rem;
  box-shadow: var(--shadow-lg);
}
.about-float div { display: flex; flex-direction: column; }
.about-float strong { font-size: 1.1rem; font-weight: 800; color: var(--blue); line-height: 1; }
.about-float span { font-size: .73rem; color: var(--text-muted); margin-top: .1rem; }
.about-text .section-tag { margin-bottom: .75rem; }
.about-text h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.3rem); font-weight: 800;
  color: var(--blue); line-height: 1.2; margin-bottom: 1.25rem;
}
.about-text > p { color: var(--text-soft); line-height: 1.8; margin-bottom: 1rem; }
.about-list { display: flex; flex-direction: column; gap: .65rem; margin: 1.5rem 0 2rem; }
.about-list li {
  display: flex; align-items: center; gap: .7rem;
  font-size: .9rem; color: var(--text-soft);
}

/* ═══════════════════ TEMOIGNAGES ═══════════════════ */
.temoignages { padding: 5rem 0; }
.temo-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.temo-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: box-shadow var(--trans), transform var(--trans);
}
.temo-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.temo-stars { display: flex; gap: .2rem; margin-bottom: 1rem; }
.temo-card blockquote {
  font-size: .9rem; color: var(--text-soft); line-height: 1.75;
  margin-bottom: 1.5rem; font-style: italic;
}
.temo-author { display: flex; align-items: center; gap: .85rem; }
.temo-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--green); color: #fff;
  font-size: .8rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.temo-author strong { font-size: .88rem; font-weight: 700; color: var(--blue); display: block; }
.temo-author span { font-size: .75rem; color: var(--text-muted); }

/* ═══════════════════ CONTACT ═══════════════════ */
.contact { padding: 5rem 0; background: var(--bg); }
.contact-inner {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 4rem; align-items: start;
}
.contact-info .section-tag { margin-bottom: .75rem; }
.contact-info h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.3rem); font-weight: 800;
  color: var(--blue); line-height: 1.2; margin-bottom: .75rem;
}
.contact-info > p { color: var(--text-soft); margin-bottom: 2rem; }
.cinfo-list { display: flex; flex-direction: column; gap: 1.25rem; }
.cinfo-item { display: flex; align-items: center; gap: 1rem; }
.cinfo-ico {
  width: 46px; height: 46px; background: var(--green-light);
  border: 1px solid var(--green-mid);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cinfo-item strong { display: block; font-size: .78rem; color: var(--text-muted); font-weight: 600; margin-bottom: .15rem; }
.cinfo-item a, .cinfo-item span { font-size: .92rem; font-weight: 600; color: var(--blue); }
.cinfo-item a:hover { color: var(--green); }

.contact-form-wrap {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact-form { display: flex; flex-direction: column; gap: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: .8rem 1rem; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-family: inherit;
  font-size: .9rem; color: var(--text); background: #fff;
  transition: border-color var(--trans), box-shadow var(--trans); outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(34,197,94,.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-notice {
  display: flex; align-items: center; gap: .5rem; margin-top: .75rem;
  font-size: .75rem; color: var(--text-muted);
}

/* ═══════════════════ FOOTER ═══════════════════ */
.footer { background: var(--blue); color: rgba(255,255,255,.6); padding-top: 4rem; }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 3rem; padding-bottom: 3rem;
}
.footer-logo { height: 70px; width: auto; object-fit: contain; margin-bottom: .85rem; border-radius: 10px; }
.footer-brand p { font-size: .85rem; line-height: 1.7; margin-bottom: 1.25rem; color: rgba(255,255,255,.5); }
.footer-badges { display: flex; gap: .5rem; flex-wrap: wrap; }
.footer-badges span {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.7); font-size: .7rem; font-weight: 700;
  padding: .25rem .7rem; border-radius: 50px;
}
.footer-links h5 {
  font-size: .78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: #fff; margin-bottom: 1.25rem;
}
.footer-links ul li { margin-bottom: .6rem; }
.footer-links a { font-size: .85rem; color: rgba(255,255,255,.5); transition: color var(--trans); }
.footer-links a:hover { color: var(--green); }
.footer-contact h5 {
  font-size: .78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: #fff; margin-bottom: 1.25rem;
}
.footer-contact a { display: block; font-size: .85rem; color: rgba(255,255,255,.5); margin-bottom: .6rem; transition: color var(--trans); }
.footer-contact a:hover { color: var(--green); }
.footer-contact p { font-size: .85rem; color: rgba(255,255,255,.4); margin-top: .5rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .75rem;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.3); }

/* ═══════════════════ ANIMATIONS ═══════════════════ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════ RESPONSIVE ═══════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrap img { height: 360px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 2.5rem; }
  .real-grid { grid-template-columns: repeat(2,1fr); }
  .temo-grid { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .process-steps { gap: .5rem; }
}

@media (max-width: 768px) {
  nav { display: none; }
  .hamburger { display: flex; }

  .hero-content h1 { font-size: clamp(2rem, 7vw, 2.8rem); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-cards { flex-direction: column; }

  .financement-inner { flex-direction: column; align-items: flex-start; }
  .financement-logos { flex-wrap: wrap; }

  .certifs-row { gap: 1.25rem; }

  .services-grid { grid-template-columns: 1fr; }
  .real-grid { grid-template-columns: 1fr; }
  .temo-grid { grid-template-columns: 1fr; }

  .process-steps { flex-direction: column; align-items: center; }
  .step { max-width: 100%; text-align: center; }
  .step-arrow { transform: rotate(90deg); padding: .25rem 0; }

  .about-inner { grid-template-columns: 1fr; }
  .about-float { bottom: 1rem; right: 1rem; }

  .contact-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .stats-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 480px) {
  .hero-content { padding: 3rem 1.5rem 3rem; }
  .financement-banner { padding: 1rem 0; }
  .certifs-row { justify-content: flex-start; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .section-header { margin-bottom: 2.5rem; }
}
/* Bouton "En savoir plus" service cards */
.sc-btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--green-dark);
  font-size: .85rem;
  font-weight: 700;
  padding: .65rem 1.4rem;
  border-radius: 50px;
  border: 1px solid var(--green-mid);
  transition: all var(--trans);
  margin-left: .5rem;
  text-decoration: none;
  white-space: nowrap;
}
.sc-btn-outline:hover {
  background: var(--green-light);
  color: var(--green-dark);
  text-decoration: none;
}
/* Images cards cliquables */
.sc-img-wrap[data-href] {
  cursor: pointer;
  transition: opacity .2s;
}
.sc-img-wrap[data-href]:hover {
  opacity: .92;
}