/* ========================================
   DPC – About Page — VERSION CORRIGÉE RESPONSIVE
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* === CEINTURE DE SÉCURITÉ ANTI-DÉBORDEMENT === */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

*, *::before, *::after { box-sizing: border-box; }

:root {
  --primary:         #0A2818;
  --primary-light:   #155A30;
  --primary-hero:    #0A2818;
  --primary-value:   #1A4028;
  --footer-bg:       #052B13;
  --footer-grad:     linear-gradient(135deg, #071A0E 0%, #0D3A1F 100%);
  --accent:          #009E49;
  --accent-hover:    #006B32;
  --cream-bg:        #F5FAF7;
  --white:           #ffffff;
  --text-dark:       #061410;
  --text-gray:       #4A5D52;
  --font:            'Inter', sans-serif;
  --radius-pill:     100px;
  --radius-card:     24px;
  --radius-section:  60px;
  --transition:      all 0.3s ease;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--cream-bg);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; object-fit: cover; }

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent-yellow, #FECB00); color: var(--primary, #0A2818);
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  padding: 12px 20px 12px 24px; border-radius: var(--radius-pill); border: none; cursor: pointer;
  transition: var(--transition);
}
.btn-primary:hover { background: var(--accent-yellow-hover, #C9A200); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(254,203,0,0.35); }
.btn-primary .arrow-circle {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%; background: var(--primary); color: var(--white); font-size: 16px;
}
.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 10px;
  border: 2px solid #c0c8d8; color: var(--primary); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; padding: 14px 28px;
  border-radius: var(--radius-pill); background: transparent; cursor: pointer; transition: var(--transition);
}
.btn-outline-dark:hover { border-color: var(--primary); }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 10px;
  border: 2px solid rgba(255,255,255,0.4); color: var(--white); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; padding: 14px 28px;
  border-radius: var(--radius-pill); background: transparent; cursor: pointer; transition: var(--transition);
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

/* ---- Navbar ---- */
.header { position: absolute; top: 0; left: 0; right: 0; z-index: 100; padding: 30px 40px; }
.navbar {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--white); border-radius: var(--radius-pill);
  padding: 12px 12px 12px 32px; max-width: 1200px; margin: 0 auto;
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}
.logo { font-size: 18px; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; color: var(--primary); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 13px; font-weight: 700; text-transform: uppercase; color: var(--text-dark); letter-spacing: 0.5px; }
.nav-links a:hover { color: var(--accent); }
.nav-right { display: flex; align-items: center; gap: 20px; }

/* ====================================================
   HERO
   ==================================================== */
.about-hero-wrapper {
  position: relative;
  padding: 0;
  min-height: 640px;
  overflow: hidden;                /* ← AJOUT : contient .hero-bg-shape absolu */
}

.hero-bg-shape {
  position: absolute;
  top: 0; left: 0;
  width: 57%; height: 80%;
  background: var(--primary-hero);
  border-bottom-right-radius: 80px;
  z-index: 0;
}

.about-hero-grid {
  position: relative; z-index: 1;
  max-width: 1280px; margin: 0 auto;
  padding: 0 60px 0;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: start;
}

.hero-col-left { display: flex; flex-direction: column; gap: 48px; }

.hero-col-left h1 {
  font-size: clamp(48px, 5.5vw, 72px); font-weight: 900; text-transform: uppercase;
  color: var(--white); line-height: 1.05; letter-spacing: -2px; max-width: 540px; padding-top: 20px;
}

.hero-img-left {
  width: 100%; aspect-ratio: 4/3; border-radius: 40px; overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}
.hero-img-left img { width: 100%; height: 100%; }

.hero-col-right { display: flex; flex-direction: column; gap: 28px; padding-top: 60px; padding-bottom: 80px; }

.hero-img-right {
  width: 100%; aspect-ratio: 16/10; border-radius: 40px; overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}
.hero-img-right img { width: 100%; height: 100%; object-fit: cover; }

.hero-text-block {
  background: var(--white);
  border-radius: 40px;
  padding: 40px 44px;
  box-shadow: 0 8px 40px rgba(10,40,24,.07);
  position: relative;
  z-index: 2;
}
.hero-text-block::before {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  border-radius: 4px;
  background: var(--accent);
  margin-bottom: 20px;
}
.hero-text-block p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 0;
}

/* ====================================================
   GREENER WORLD → RÉSEAU D'EXCELLENCE
   ==================================================== */
.greener-world-section {
  max-width: 1280px; margin: 0 auto; padding: 90px 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  overflow: hidden;                /* ← AJOUT */
}

.gw-content h2 {
  font-size: clamp(40px, 4.5vw, 64px); font-weight: 900; text-transform: uppercase;
  color: var(--primary); line-height: 1.05; margin-bottom: 28px; letter-spacing: -1.5px;
}
.gw-content p { color: var(--text-gray); font-size: 17px; line-height: 1.75; margin-bottom: 40px; max-width: 460px; }

.gw-img { width: 100%; aspect-ratio: 3/4; border-radius: 48px; overflow: hidden; }
.gw-img img { width: 100%; height: 100%; }

/* ====================================================
   VALUES
   ==================================================== */
.values-section {
  background: var(--primary-hero);
  padding: 80px 60px 70px; margin: 0 20px;
  border-radius: var(--radius-section); text-align: center;
  overflow: hidden;                /* ← AJOUT */
}

.values-section h2 {
  font-size: clamp(36px, 4.5vw, 58px); font-weight: 900; text-transform: uppercase;
  color: var(--cream-bg); line-height: 1.1; margin-bottom: 32px; letter-spacing: -1px;
  max-width: 700px; margin-left: auto; margin-right: auto;
}

.values-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  max-width: 1100px; margin: 0 auto 60px;
}

.value-card {
  background: var(--primary-value); border-radius: 40px; padding: 64px 48px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  transition: transform 0.3s ease;
}
.value-card:hover { transform: translateY(-6px); }

.value-icon-wrap {
  width: 80px; height: 80px; background: var(--accent); border-radius: 22px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 28px;
}
.value-icon-wrap svg { width: 44px; height: 44px; fill: var(--white); stroke: var(--white); }

.value-card h3 {
  font-size: 20px; font-weight: 900; color: var(--white); text-transform: uppercase;
  margin-bottom: 14px; letter-spacing: 0.5px;
}
.value-card p { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.65; }

/* ====================================================
   OFFICES
   ==================================================== */
.offices-section {
  padding: 50px 40px;
  max-width: 1280px;
  margin: 0 auto;
  overflow: hidden;                /* ← AJOUT */
}
.offices-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 10px; }
.offices-header h2 {
  font-size: clamp(40px, 4.5vw, 60px); font-weight: 900; text-transform: uppercase;
  color: var(--primary); line-height: 1.05; letter-spacing: -1.5px;
}
.offices-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.office-card {
  background: var(--white); border-radius: 40px; overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.05);
}
.office-img { height: 280px; width: 100%; }
.office-img img { width: 100%; height: 100%; object-fit: cover; }
.office-info { padding: 36px; text-align: center; }
.office-info h3 { font-size: 22px; font-weight: 900; color: var(--primary); text-transform: uppercase; margin-bottom: 12px; }
.office-info p { font-size: 15px; color: var(--text-gray); margin-bottom: 28px; }
.contact-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: var(--primary); text-transform: uppercase;
  border-bottom: 2px solid var(--primary); padding-bottom: 4px; transition: var(--transition);
}
.contact-btn:hover { color: var(--accent); border-color: var(--accent); }

/* ====================================================
   TEAM
   ==================================================== */
.team-section {
  padding: 0 40px 60px;
  max-width: 1280px;
  margin: 0 auto;
  overflow: hidden;                /* ← AJOUT */
}
.team-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 10px; }
.team-header h2 {
  font-size: clamp(40px, 4.5vw, 60px); font-weight: 900; text-transform: uppercase;
  color: var(--primary); line-height: 1.05; letter-spacing: -1.5px;
}
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.team-card {
  background: var(--white); border-radius: 32px; padding: 44px 20px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.04); transition: transform 0.3s ease;
}
.team-card:hover { transform: translateY(-6px); }
.team-avatar { width: 110px; height: 110px; border-radius: 50%; overflow: hidden; margin-bottom: 24px; }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-size: 20px; font-weight: 900; text-transform: uppercase; color: var(--primary); margin-bottom: 6px; }
.team-title { font-size: 13px; font-weight: 700; color: var(--accent); margin-bottom: 24px; }
.team-socials { display: flex; align-items: center; gap: 16px; }
.team-socials a { color: var(--text-dark); transition: color 0.2s ease; }
.team-socials a:hover { color: var(--accent); }
.team-socials svg { width: 18px; height: 18px; fill: currentColor; }

/* ====================================================
   PARTNERS – animated dual-row marquee
   ==================================================== */
.partners-section {
  background: var(--primary-hero); border-radius: var(--radius-section);
  margin: 0 20px; padding: 70px 0 56px; text-align: center; overflow: hidden;
}
.partners-inner { max-width: 900px; margin: 0 auto 56px; padding: 0 40px; }
.partners-inner h2 {
  font-size: clamp(36px, 4vw, 52px); font-weight: 900; text-transform: uppercase;
  color: var(--white); letter-spacing: -1px; margin-bottom: 20px;
}
.partners-inner p { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.7; max-width: 560px; margin: 0 auto; }

.marquee-wrapper { margin-bottom: 56px; }
.marquee-row { display: flex; width: max-content; gap: 0; animation: marquee-scroll 24s linear infinite; }
.marquee-row.reverse { animation-direction: reverse; animation-duration: 20s; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.partner-item {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 0 36px; font-size: 18px; font-weight: 800;
  text-transform: uppercase; color: rgba(255,255,255,0.85); letter-spacing: 0.5px; white-space: nowrap;
}
.partner-item svg { width: 18px; height: 18px; fill: none; stroke: rgba(255,255,255,0.6); stroke-width: 2; }

/* ====================================================
   INSTAGRAM
   ==================================================== */
.instagram-section {
  padding: 56px 40px;
  text-align: center;
  overflow: hidden;                /* ← AJOUT */
}
.instagram-section h2 {
  font-size: clamp(32px, 4vw, 48px); font-weight: 900; text-transform: uppercase;
  color: var(--primary); margin-bottom: 36px;
}
.instagram-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; grid-template-rows: 1fr 1fr;
  gap: 16px; max-width: 1100px; margin: 0 auto 50px; height: 520px;
}
.insta-img { border-radius: 20px; overflow: hidden; }
.insta-img img { width: 100%; height: 100%; object-fit: cover; }
.insta-img:first-child { grid-row: 1 / 3; }
.insta-placeholder { width: 100%; height: 100%; }
.insta-placeholder.forest { background: linear-gradient(135deg, #0A2818, #155A30 40%, #009E49 70%, #0A2818); }
.insta-placeholder.elk    { background: linear-gradient(135deg, #2E4A6C, #4A8BC6 50%, #009E49); }
.insta-placeholder.moss   { background: linear-gradient(135deg, #041F0D, #155A30 50%, #4A8BC6); }
.insta-placeholder.lake   { background: linear-gradient(135deg, #3A6B9C, #6A9BD6 40%, #D4C8A4); }
.insta-placeholder.owl    { background: linear-gradient(135deg, #2E5A8C, #4A8BC6 50%, #009E49); }

/* ====================================================
   CTA BANNER + FOOTER
   ==================================================== */
.cta-banner {
  background: var(--footer-grad);
  border-radius: var(--radius-section) var(--radius-section) 0 0;
  padding: 72px 60px;
  margin-top: 40px;
  overflow: hidden;                /* ← AJOUT */
}
.cta-content {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto;
}
.cta-content h2 {
  font-size: clamp(36px, 4vw, 52px); font-weight: 900; text-transform: uppercase;
  color: var(--white); line-height: 1.15; max-width: 520px;
}
.cta-buttons { display: flex; align-items: center; gap: 16px; }

.footer {
  background: var(--footer-grad);
  padding: 60px 40px 40px;
  color: var(--white);
  overflow: hidden;                /* ← AJOUT */
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1.6fr 1fr 1fr; gap: 40px;
  max-width: 1200px; margin: 0 auto 40px;
}
.footer-brand .footer-logo { font-size: 18px; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 30px; max-width: 280px; }
.newsletter-form {
  display: flex; align-items: center; background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.2); border-radius: var(--radius-pill);
  padding: 8px 8px 8px 24px; max-width: 340px;
}
.newsletter-form input { flex: 1; background: transparent; border: none; color: var(--white); font-family: var(--font); font-size: 14px; outline: none; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-btn {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); border: none; cursor: pointer; transition: var(--transition); flex-shrink: 0;
}
.newsletter-btn:hover { background: var(--accent-hover); }
.newsletter-btn svg { width: 18px; height: 18px; fill: none; stroke: var(--white); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.footer-nav h4, .footer-social h4 { font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 24px; }
.footer-nav ul { display: flex; flex-direction: column; gap: 14px; }
.footer-nav ul li a { font-size: 13px; font-weight: 600; text-transform: uppercase; color: rgba(255,255,255,0.65); transition: var(--transition); }
.footer-nav ul li a:hover { color: var(--white); }
.footer-nav-links { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 30px; }
.footer-nav-links li a { font-size: 13px; font-weight: 600; text-transform: uppercase; color: rgba(255,255,255,0.65); transition: var(--transition); }
.footer-nav-links li a:hover { color: var(--white); }
.social-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; max-width: 120px; }
.social-icon { display: flex; align-items: center; justify-content: center; width: 52px; height: 52px; background: rgba(212,168,67,0.25); border-radius: 14px; cursor: pointer; transition: var(--transition); }
.social-icon:hover { background: var(--accent); transform: translateY(-2px); }
.social-icon svg { width: 20px; height: 20px; fill: var(--white); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom p { font-size: 13px; font-weight: 700; text-transform: uppercase; color: rgba(255,255,255,0.5); }

/* ====================================================
   PARTENAIRES — grille statique
   ==================================================== */
.partners-logos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 900px;
  margin: 32px auto 0;
}
.partners-logos-grid .partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 16px;
  min-width: 140px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.partners-logos-grid .partner-item img {
  width: 80px;
  height: 60px;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}
.partners-logos-grid .partner-name {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.75);
  text-align: center;
}
.partners-logos-grid .partner-item:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-3px);
}
.partners-logos-grid .partner-item:hover img { opacity: 1; }
.partners-logos-grid .partner-item:hover .partner-name { color: var(--white); }

/* ====================================================
   SECTION RÉSEAUX SOCIAUX
   ==================================================== */
.social-section {
  padding: 60px 40px;
  text-align: center;
  background: var(--cream-bg);
  overflow: hidden;                /* ← AJOUT */
}
.social-section h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 12px;
}
.social-section p {
  font-size: 16px;
  color: var(--text-gray);
  margin-bottom: 36px;
}
.social-buttons-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.btn-social {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-facebook { background: #1877F2; color: #ffffff; }
.btn-facebook svg { fill: #ffffff; }
.btn-facebook:hover { background: #0d65d9; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(24,119,242,0.3); }
.btn-linkedin { background: #0A66C2; color: #ffffff; }
.btn-linkedin svg { stroke: #ffffff; }
.btn-linkedin:hover { background: #084f96; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(10,102,194,0.3); }

/* ====================================================
   RESPONSIVE — TOUS LES 100vw REMPLACÉS PAR 100%
   ==================================================== */
@media (max-width: 1024px) {
  .header { padding: 20px 20px; width: 100%; box-sizing: border-box; }
  .navbar { padding: 12px 16px; width: 100%; box-sizing: border-box; flex-wrap: wrap; }
  .about-hero-grid { grid-template-columns: 1fr; padding: 130px 40px 0; }
  .hero-bg-shape { width: 100%; }
  .hero-img-right { display: none; }
  .greener-world-section { grid-template-columns: 1fr; padding: 80px 40px; }
  .values-grid { grid-template-columns: 1fr; }
  .offices-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .header {
    position: fixed;
    top: 0; left: 0; right: 0;
    padding: 8px 8px;
    width: 100%;                       /* ← 100vw → 100% */
    box-sizing: border-box;
    z-index: 100;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
  }
  .navbar {
    padding: 8px 12px;
    width: calc(100% - 16px);          /* ← 100vw → 100% */
    max-width: none;
    box-sizing: border-box;
    flex-wrap: nowrap;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 8px;
    margin: 0;
    justify-content: space-between;
  }
  .logo { font-size: 16px; flex-shrink: 0; min-width: auto; }
  .logo img { max-height: 32px; width: auto; }

  .about-hero-grid { padding: 100px 20px 0; }
  .hero-col-left h1 { font-size: 36px; letter-spacing: -1px; }
  .hero-col-left { gap: 30px; }
  .hero-img-left { border-radius: 24px; }
  .hero-text-block { padding: 28px 24px; border-radius: 28px; }
  .hero-text-block p { font-size: 15px; }
  .hero-buttons { flex-direction: column; width: 100%; }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline-dark { width: 100%; justify-content: center; }
  .greener-world-section { padding: 60px 20px; gap: 40px; }
  .gw-content h2 { font-size: 32px; }
  .gw-img { border-radius: 30px; aspect-ratio: 16/10; }
  .values-section { padding: 60px 20px; margin: 0 8px; border-radius: 30px; }
  .values-section h2 { font-size: 32px; margin-bottom: 40px; }
  .value-card { padding: 40px 28px; border-radius: 24px; }
  .offices-section { padding: 60px 20px; }
  .offices-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .offices-header h2 { font-size: 32px; }
  .offices-grid { grid-template-columns: 1fr; gap: 24px; }
  .office-card { border-radius: 24px; }
  .office-img { height: 220px; }
  .team-section { padding: 0 20px 60px; }
  .team-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .team-header h2 { font-size: 32px; }
  .team-grid { grid-template-columns: 1fr; gap: 20px; }
  .team-card { border-radius: 24px; padding: 32px 20px; }
  .partners-section { margin: 0 8px; padding: 60px 0 50px; border-radius: 30px; }
  .partners-inner h2 { font-size: 28px; }
  .instagram-section { padding: 40px 20px; }
  .instagram-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; height: auto; gap: 12px; }
  .insta-img:first-child { grid-row: auto; }
  .insta-img { height: 180px; border-radius: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-banner { padding: 60px 20px; }
  .cta-content { flex-direction: column; gap: 24px; text-align: center; }
}

@media (max-width: 480px) {
  .header {
    position: fixed;
    top: 0; left: 0; right: 0;
    padding: 6px 6px;
    width: 100%;
    box-sizing: border-box;
    z-index: 100;
  }
  .navbar {
    padding: 6px 8px;
    width: calc(100% - 12px);
    max-width: none;
    box-sizing: border-box;
    border-radius: 6px;
    margin: 0;
    gap: 8px;
  }
  .logo { font-size: 14px; flex-shrink: 0; min-width: auto; }
  .logo img { max-height: 28px; width: auto; }

  .hero-col-left h1 { font-size: 28px; }
  .gw-content h2, .values-section h2, .offices-header h2, .team-header h2 { font-size: 26px; }
  .value-card { padding: 32px 20px; }
  .values-section, .partners-section { margin: 0; border-radius: 20px; }
  .instagram-grid { grid-template-columns: 1fr; }
  .insta-img { height: 200px; }
}