/* ==============================
   VARIABLES
   ============================== */
:root {
  --bg:           #FFFFFF;
  --bg-alt:       #F8FAFC;
  --bg-dark:      #0F172A;
  --accent:       #16A34A;
  --accent-hover: #15803D;
  --accent-light: #DCFCE7;
  --accent-mid:   #4ADE80;
  --text:         #0F172A;
  --text-muted:   #64748B;
  --text-subtle:  #94A3B8;
  --border:       #E2E8F0;
  --border-strong:#CBD5E1;

  --shadow-sm:  0 1px 2px 0 rgba(0,0,0,.05);
  --shadow:     0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -1px rgba(0,0,0,.05);
  --shadow-lg:  0 10px 15px -3px rgba(0,0,0,.08), 0 4px 6px -2px rgba(0,0,0,.04);
  --shadow-xl:  0 20px 25px -5px rgba(0,0,0,.08), 0 10px 10px -5px rgba(0,0,0,.03);

  --radius-sm:  8px;
  --radius:     14px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-full:9999px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

/* ==============================
   RESET + BASE
   ============================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--bg-alt);
}
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 4px; }

body {
  font-family: -apple-system, "SF Pro Text", BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: -apple-system, "SF Pro Display", BlinkMacSystemFont, sans-serif;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

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

/* ==============================
   HEADER
   ============================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img { height: 56px; width: auto; }
.logo-img { height: 56px; width: auto; }


.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* ==============================
   BUTTONS
   ============================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 22px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
  border: 1.5px solid transparent;
  font-family: inherit;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-lg { padding: 15px 32px; font-size: 16px; }

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  box-shadow: 0 4px 14px rgba(22,163,74,.35);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--bg);
  color: var(--text);
  border-color: var(--border-strong);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  transform: translateY(-1px);
}

.btn-white {
  background: #fff;
  color: var(--accent);
  border-color: #fff;
}
.btn-white:hover {
  background: var(--accent-light);
  box-shadow: 0 4px 14px rgba(0,0,0,.1);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  border: none;
  padding-left: 0;
  padding-right: 0;
  font-size: 14px;
  font-weight: 600;
}
.btn-ghost::after { content: ' →'; }
.btn-ghost:hover { gap: 10px; }

/* ==============================
   BURGER & DRAWER
   ============================== */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100dvh;
  width: 300px;
  background: var(--bg);
  border-left: 1px solid var(--border);
  z-index: 99;
  padding: 96px 36px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
  box-shadow: -20px 0 60px rgba(0,0,0,0.08);
}

.nav-drawer.open { transform: translateX(0); }
.nav-drawer a { color: var(--text-muted); font-size: 20px; font-weight: 500; transition: color 0.2s; }
.nav-drawer a:hover { color: var(--text); }

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.4);
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(4px);
}

.overlay.active { opacity: 1; pointer-events: auto; }

/* ==============================
   HERO — HOMEPAGE
   ============================== */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 100px 48px 80px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(220,252,231,0.6) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content { display: flex; flex-direction: column; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  color: var(--accent-hover);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
  width: fit-content;
  opacity: 0;
  animation: fadeUp 0.5s var(--ease) forwards 0.1s;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: blink 2s ease infinite;
}

@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0.3; } }

.hero h1 {
  font-size: clamp(48px, 5.5vw, 80px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.6s var(--ease) forwards 0.2s;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
  opacity: 0;
  animation: fadeUp 0.6s var(--ease) forwards 0.35s;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.6s var(--ease) forwards 0.5s;
}

.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.6s var(--ease) forwards 0.65s;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.trust-item svg {
  width: 15px;
  height: 15px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* Hero visual */
.hero-visual {
  position: relative;
  opacity: 0;
  animation: fadeScale 0.8s var(--ease) forwards 0.3s;
}

@keyframes fadeScale {
  from { opacity: 0; transform: scale(0.97) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.hero-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.hero-float {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  min-width: 180px;
}

.hero-float-icon {
  width: 42px;
  height: 42px;
  background: #dcfce7;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-float-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-float strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: #1A4731;
  line-height: 1.1;
}

.hero-float span {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: #6B7280;
  margin-top: 3px;
}

.hero-float-2 {
  position: absolute;
  top: -16px;
  right: -16px;
  background: #16a34a;
  color: #fff;
  border-radius: 14px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
}

.hero-float-2 svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.hero-float-2 strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
}

.hero-float-2 span {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  margin-top: 3px;
}

/* ==============================
   STATS BAR
   ============================== */
.stats-bar {
  background: #1A4731;
  padding: 56px 48px;
}

.stats-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr;
  gap: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 48px;
  text-align: center;
}

.stat-divider { background: rgba(255,255,255,0.1); }

.stat-number {
  font-size: 56px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.04em;
  line-height: 1;
  font-family: -apple-system, "SF Pro Display", BlinkMacSystemFont, sans-serif;
}

.stat-label {
  font-size: 13px;
  color: #BBF7D0;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

/* ==============================
   SECTION BASE
   ============================== */
.section { padding: 112px 48px; }
.section-alt { background: var(--bg-alt); }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; max-width: 600px; margin-left: auto; margin-right: auto; margin-bottom: 56px; }

.section-tag {
  display: inline-block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  color: var(--text);
}

.section-desc {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
}

/* ==============================
   SERVICE CARDS
   ============================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.card-img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.card:hover .card-img { transform: scale(1.04); }

.card-img-wrap {
  overflow: hidden;
}

.card-body {
  padding: 28px 28px 32px;
}

.card-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--text);
}

.card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 20px;
}

/* ==============================
   ABOUT BENTO
   ============================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-img-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}

.bento-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform 0.4s var(--ease), box-shadow 0.4s ease;
}

.bento-img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

.bento-img.tall {
  grid-row: span 2;
  aspect-ratio: auto;
  height: 100%;
}

.bento-stat {
  background: var(--accent);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 4px;
}

.bento-stat strong {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  font-family: -apple-system, "SF Pro Display", BlinkMacSystemFont, sans-serif;
}

.bento-stat span {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

.about-content {}

.about-content .section-tag { margin-bottom: 12px; }

.about-content h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.about-content > p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}

.check-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.check-item-icon {
  width: 22px;
  height: 22px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.check-item-icon svg {
  width: 11px;
  height: 11px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.check-item-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}

.check-item-text strong { font-weight: 600; }
.check-item-text span { color: var(--text-muted); display: block; font-size: 14px; }

/* ==============================
   VALUES
   ============================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.value-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s var(--ease);
}

.value-item:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.value-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

/* ==============================
   TESTIMONIALS
   ============================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s var(--ease);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.quote-mark {
  position: absolute;
  top: 14px; right: 24px;
  font-size: 80px;
  line-height: 1;
  color: var(--accent-light);
  font-family: Georgia, serif;
  pointer-events: none;
  user-select: none;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  width: 15px;
  height: 15px;
  fill: #F59E0B;
  stroke: none;
}

.testimonial-text {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent-light);
  border: 2px solid var(--accent-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  color: var(--accent-hover);
  flex-shrink: 0;
}

.testimonial-name { font-weight: 700; font-size: 14px; color: var(--text); }
.testimonial-role { color: var(--text-subtle); font-size: 12px; margin-top: 1px; }

/* ==============================
   CTA BANNER — Dark Green
   ============================== */
.cta-section { padding: 0 48px 112px; }

.cta-banner {
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(135deg, #14532D 0%, #166534 40%, #15803D 100%);
  border-radius: var(--radius-xl);
  padding: 96px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner::after {
  content: '"';
  position: absolute;
  bottom: -40px;
  right: 60px;
  font-size: 320px;
  font-family: Georgia, serif;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.cta-banner h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 14px;
}

.cta-banner p {
  color: rgba(255,255,255,0.75);
  font-size: 18px;
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==============================
   FOOTER
   ============================== */
.footer {
  background: var(--bg-dark);
  padding: 80px 48px 40px;
}

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}

.footer-brand p {
  color: rgba(255,255,255,0.45);
  font-size: 14px;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 12px; }

.footer-col a {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy { color: rgba(255,255,255,0.3); font-size: 13px; }

/* ==============================
   HERO SECONDARY — Inner pages
   ============================== */
.hero-secondary {
  padding: 140px 48px 80px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.hero-secondary::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(220,252,231,0.5) 0%, transparent 65%);
  pointer-events: none;
}

.hero-secondary-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-secondary h1 {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 16px;
}

.hero-secondary p {
  font-size: 19px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ==============================
   SERVICES DETAIL — Full page
   ============================== */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.service-detail:last-child { border-bottom: none; }
.service-detail.reverse .service-detail-content { order: 2; }
.service-detail.reverse .service-detail-img    { order: 1; }

.service-detail-content h2 {
  font-size: clamp(26px, 2.5vw, 36px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.service-detail-content > p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 28px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}

.service-features li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.service-detail-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  transition: box-shadow 0.4s ease;
}

.service-detail-img:hover { box-shadow: 0 32px 64px -12px rgba(0,0,0,0.18); }

/* ==============================
   ABOUT PAGE
   ============================== */
.about-lead {
  font-size: 21px;
  color: var(--text-muted);
  max-width: 700px;
  line-height: 1.7;
  margin-bottom: 64px;
}

.args-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}

.arg-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s var(--ease);
}

.arg-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.arg-number {
  font-size: 44px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 10px;
  font-family: -apple-system, "SF Pro Display", BlinkMacSystemFont, sans-serif;
}

.arg-title { font-size: 15px; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.arg-desc  { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

.engagement-block {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.engagement-block h2 {
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}

.engagement-block > div > p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 28px;
}

.engagement-points { display: flex; flex-direction: column; gap: 18px; }

.engagement-point { display: flex; gap: 14px; align-items: flex-start; }

.engagement-point-icon {
  width: 32px;
  height: 32px;
  background: var(--accent-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.engagement-point-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.engagement-point-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.engagement-point-text span   { font-size: 13px; color: var(--text-muted); }

/* ==============================
   CONTACT PAGE
   ============================== */
.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 80px;
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }

label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

input, textarea, select {
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  outline: none;
  width: 100%;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(22,163,74,.1);
  background: var(--bg);
}

input::placeholder, textarea::placeholder { color: var(--text-subtle); }
textarea { resize: vertical; min-height: 140px; }

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.form-note { font-size: 12px; color: var(--text-subtle); }

.contact-aside { display: flex; flex-direction: column; gap: 32px; }

.contact-info-block { display: flex; flex-direction: column; gap: 22px; }

.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-light);
  border: 1px solid rgba(22,163,74,.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info-label {
  font-size: 11px;
  color: var(--text-subtle);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3px;
  font-weight: 600;
}

.contact-info-value { font-size: 15px; font-weight: 600; color: var(--text); }
.contact-info-value a { transition: color 0.2s; }
.contact-info-value a:hover { color: var(--accent); }

.response-badge {
  display: flex;
  gap: 14px;
  background: var(--accent-light);
  border: 1px solid rgba(22,163,74,.2);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  align-items: center;
}

.response-badge svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.75;
  flex-shrink: 0;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.response-badge p { font-size: 14px; color: var(--text-muted); line-height: 1.55; }
.response-badge strong { color: var(--accent-hover); }

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  background: var(--accent-light);
  border: 1px solid rgba(22,163,74,.25);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: var(--accent-hover);
  font-size: 14px;
  font-weight: 600;
}

.form-success.visible { display: flex; }

.form-success svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ==============================
   CONTACT IMAGE
   ============================== */
.contact-aside .team-img-wrap {
  border-radius: 16px !important;
  overflow: hidden !important;
  display: block;
  background: white;
}

.contact-aside .team-img-wrap img {
  border-radius: 16px !important;
  display: block;
  width: 100%;
  object-fit: contain;
  object-position: center;
}

/* ==============================
   LEGAL PAGES
   ============================== */
.legal-content { max-width: 760px; }

.legal-content h2 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 48px 0 14px;
  color: var(--text);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: var(--text-muted); font-size: 15px; margin-bottom: 14px; line-height: 1.75; }
.legal-content ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.legal-content li { color: var(--text-muted); font-size: 15px; margin-bottom: 8px; line-height: 1.7; }
.legal-content a { color: var(--accent); text-decoration: underline; text-decoration-color: rgba(22,163,74,.4); }

/* ==============================
   SCROLL ANIMATIONS
   ============================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s var(--ease);
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1200px) {
  .args-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 48px; }
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero { min-height: auto; padding: 100px 40px 64px; }
  .hero-visual { max-width: 560px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-bento { max-width: 560px; }
  .service-detail,
  .service-detail.reverse { grid-template-columns: 1fr; gap: 40px; }
  .service-detail.reverse .service-detail-content { order: unset; }
  .service-detail.reverse .service-detail-img     { order: unset; }
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .engagement-block { grid-template-columns: 1fr; gap: 40px; padding: 48px; }
  .cta-banner { padding: 64px 48px; }
}

@media (max-width: 768px) {
  .header { padding: 0 24px; }
  .nav-links, .header-cta { display: none; }
  .burger { display: flex; }

  .hero { padding: 90px 24px 60px; }
  .hero h1 { letter-spacing: -0.025em; }

  .stats-bar { padding: 40px 24px; }
  .stats-bar-inner { grid-template-columns: 1fr 1fr; gap: 0; }
  .stat-divider { display: none; }
  .stat-item { padding: 24px 12px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }

  .section { padding: 72px 24px; }
  .cta-section { padding: 0 24px 72px; }

  .cards-grid { grid-template-columns: 1fr; }

  .testimonials-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 16px;
    -webkit-overflow-scrolling: touch;
  }
  .testimonial-card { min-width: 290px; scroll-snap-align: start; flex-shrink: 0; }

  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .args-grid { grid-template-columns: 1fr; }
  .about-img-bento { grid-template-columns: 1fr 1fr; }
  .bento-img.tall { grid-row: span 1; aspect-ratio: 1; }

  .cta-banner { padding: 48px 28px; border-radius: var(--radius-lg); }
  .footer { padding: 60px 24px 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-secondary { padding: 110px 24px 56px; }
  .form-row { grid-template-columns: 1fr; }
  .engagement-block { padding: 36px 24px; }
  .hero-float { bottom: -16px; left: -12px; }
  .hero-float-2 { top: -12px; right: -12px; }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==============================
   HERO GÉO
   ============================== */
.hero-geo {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  margin-top: -28px;
  margin-bottom: 32px;
  letter-spacing: 0.3px;
  opacity: 0;
  animation: fadeUp 0.6s var(--ease) forwards 0.45s;
}

/* ==============================
   HEADER BUTTONS
   ============================== */
.header-btns {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-recall {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-recall:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

.recall-icon {
  display: none;
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.recall-text { display: inline; }

/* ==============================
   MODAL ÊTRE RAPPELÉ
   ============================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.6);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  background: var(--bg);
  border-radius: var(--radius-xl);
  padding: 40px;
  width: 100%;
  max-width: 440px;
  position: relative;
  box-shadow: var(--shadow-xl);
  transform: scale(0.95) translateY(8px);
  transition: transform 0.3s var(--ease);
}

.modal-overlay.open .modal {
  transform: scale(1) translateY(0);
}

.modal h3 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--text);
}

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

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.modal-close:hover { background: var(--border); }

.modal-close svg {
  width: 14px;
  height: 14px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.modal-form { display: flex; flex-direction: column; gap: 16px; }

.modal-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: var(--accent-light);
  border: 1px solid rgba(22,163,74,.25);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--accent-hover);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.modal-success.visible { display: flex; }

.modal-success svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ==============================
   FAQ ACCORDION
   ============================== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  font-family: inherit;
  text-align: left;
  gap: 20px;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--accent); }

.faq-icon {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease);
}

.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding-bottom 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 22px;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
}

/* ==============================
   VALUES — DESCRIPTIONS
   ============================== */
.value-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  text-align: center;
  margin-top: -4px;
}

/* ==============================
   RESPONSIVE AJOUTS
   ============================== */
@media (max-width: 768px) {
  .recall-text { display: none; }
  .recall-icon { display: block; }

  .modal { padding: 28px 20px; }
  .modal h3 { font-size: 20px; }

  .faq-question { font-size: 14px; }
}
