/* HERO */
  .hero {
    min-height: 100vh;
    background:
      linear-gradient(
        to right,
        rgba(10, 30, 18, 0.93) 0%,
        rgba(10, 30, 18, 0.75) 55%,
        rgba(10, 30, 18, 0.40) 100%
      ),
      url('https://images.unsplash.com/photo-1542601906990-b4d3fb778b09?w=1800&q=80&fit=crop') center center / cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 5vw 80px;
    position: relative;
    overflow: hidden;
  }

  .hero-stamp {
    position: absolute;
    bottom: -40px;
    right: -20px;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(80px, 14vw, 200px);
    color: rgba(58, 184, 106, 0.07);
    line-height: 1;
    letter-spacing: -0.02em;
    user-select: none;
    pointer-events: none;
    white-space: nowrap;
  }

  .hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green-accent);
    margin-bottom: 28px;
  }

  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(2.4rem, 5.5vw, 5rem);
    color: white;
    line-height: 1.1;
    max-width: 820px;
    margin-bottom: 28px;
  }

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

  .hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: rgba(255,255,255,0.6);
    font-weight: 300;
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 52px;
  }

  .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  .btn-primary {
    display: inline-block;
    background: var(--green-accent);
    color: white;
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    border-radius: 2px;
    transition: background 0.2s;
  }

  .btn-primary:hover { background: #2fa05a; }

  .btn-ghost {
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.8);
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    border-radius: 2px;
    transition: border-color 0.2s, color 0.2s;
  }

  .btn-ghost:hover {
    border-color: var(--green-accent);
    color: var(--green-accent);
  }

  .hero-stats {
    margin-top: 80px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 40px;
  }

  .stat-item {}

  .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    line-height: 1;
  }

  .stat-number span {
    color: var(--green-accent);
  }

  .stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 6px;
  }

  /* SECTIONS COMMUNES */
  section { padding: 100px 5vw; }

  .section-eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green-accent);
    margin-bottom: 18px;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.2;
    max-width: 680px;
    margin-bottom: 20px;
  }

  .section-title.light { color: white; }

  .section-lead {
    font-size: 1.05rem;
    color: var(--steel);
    line-height: 1.75;
    max-width: 600px;
    margin-bottom: 60px;
    font-weight: 300;
  }

  .section-lead.light { color: rgba(255,255,255,0.65); }

  .about-image-stack {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 8px;
    margin-bottom: 0;
  }

  .about-img-main {
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    aspect-ratio: 4/3;
  }

  .about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
  }

  .about-img-main:hover img { transform: scale(1.03); }

  .about-img-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(10,30,18,0.85) 0%, transparent 100%);
    padding: 20px 18px 16px;
  }

  .about-img-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.75);
    font-style: italic;
    letter-spacing: 0.04em;
  }

  .about-img-secondary {
    border-radius: 2px;
    overflow: hidden;
    aspect-ratio: 3/4;
  }

  .about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
  }

  .about-img-secondary:hover img { transform: scale(1.03); }

  /* QUI SOMMES NOUS - NOUVELLE VERSION */
  .about {
    background: white;
    padding: 100px 5vw;
  }

  .about-inner {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
  }

  .team-intro {
    max-width: 700px;
    margin-bottom: 72px;
  }

  /* BLOC FONDATEUR */
  .founder-block {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 64px;
    align-items: start;
    margin-bottom: 72px;
  }

  .founder-photo-wrap {
    position: relative;
  }

  .founder-photo {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 2px;
    filter: grayscale(15%);
  }

  .founder-id {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: var(--green-deep);
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .founder-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.03em;
  }

  .founder-title {
    font-size: 0.75rem;
    color: var(--green-accent);
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .founder-content {
    padding-top: 8px;
  }

  .founder-quote-block {
    position: relative;
    margin-bottom: 44px;
    padding-left: 32px;
    border-left: 3px solid var(--green-accent);
  }

  .founder-quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: var(--green-accent);
    opacity: 0.25;
    line-height: 0.6;
    margin-bottom: 12px;
    user-select: none;
  }

  .founder-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.18rem;
    line-height: 1.75;
    color: var(--charcoal);
  }

  .founder-pillars {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .founder-pillar {
    display: flex;
    gap: 20px;
    align-items: flex-start;
  }

  .pillar-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green-accent);
    flex-shrink: 0;
    margin-top: 6px;
  }

  .pillar-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--charcoal);
    margin-bottom: 5px;
  }

  .pillar-desc {
    font-size: 0.88rem;
    color: var(--steel);
    line-height: 1.7;
    font-weight: 300;
  }

  /* BANDE ESPRIT ÉQUIPE */
  .team-spirit-band {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--border);
  }

  .spirit-item {
    background: var(--green-deep);
    padding: 36px 28px;
    transition: background 0.2s;
  }

  .spirit-item:hover { background: var(--green-mid); }

  .spirit-icon {
    width: 44px;
    height: 44px;
    background: rgba(58,184,106,0.15);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }

  .spirit-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--green-accent);
  }

  .spirit-title {
    font-family: 'Playfair Display', serif;
    font-size: 0.98rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    line-height: 1.3;
  }

  .spirit-desc {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    font-weight: 300;
  }

  @media (max-width: 900px) {
    .founder-block { grid-template-columns: 1fr; gap: 36px; }
    .founder-photo { aspect-ratio: 4/3; object-position: center 20%; }
    .team-spirit-band { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 600px) {
    .team-spirit-band { grid-template-columns: 1fr; }
  }

  /* ANCIENNE ABOUT - supprimée */
  .about-grid, .about-left, .about-right,
  .about-image-stack, .about-img-main, .about-img-secondary,
  .about-img-overlay, .about-portrait, .values-row, .value-card { display: revert; }

  /* PROBLÈME / SOLUTION */
  .problem {
    background:
      linear-gradient(to right, rgba(10,30,18,0.97) 0%, rgba(10,30,18,0.92) 50%, rgba(10,30,18,0.80) 100%),
      url('https://images.unsplash.com/photo-1550989460-0adf9ea622e2?w=1600&q=80&fit=crop') center center / cover no-repeat;
    position: relative;
    overflow: hidden;
  }

  .problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .problem-visual {
    position: relative;
  }

  .law-badge {
    background: rgba(58,184,106,0.08);
    border: 1px solid rgba(58,184,106,0.18);
    border-radius: 2px;
    padding: 32px 36px;
    margin-bottom: 20px;
  }

  .law-badge h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: white;
    font-weight: 700;
    margin-bottom: 12px;
  }

  .law-badge p {
    font-size: 0.87rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.75;
    font-weight: 300;
  }

  .reassure-box {
    background: rgba(58, 184, 106, 0.1);
    border-left: 3px solid var(--green-accent);
    padding: 24px 28px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
  }

  .reassure-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: rgba(58,184,106,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
  }

  .reassure-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--green-accent);
  }

  .reassure-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
    margin-bottom: 6px;
  }

  .reassure-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    font-weight: 300;
  }

  /* MACHINES */
  .machines {
    background: var(--cream);
  }

  .machines-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 20px;
  }

  .machines-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2px;
    background: var(--border);
  }

  .machine-card {
    background: white;
    padding: 0;
    transition: transform 0.2s;
  }

  .machine-card:hover { transform: translateY(-3px); }

  .machine-top {
    background: var(--green-deep);
    padding: 40px 32px 32px;
    position: relative;
  }

  .machine-ref {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green-accent);
    margin-bottom: 12px;
  }

  .machine-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
  }

  .machine-capacity {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    font-weight: 300;
  }

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

  .machine-features {
    list-style: none;
    margin-bottom: 24px;
  }

  .machine-features li {
    font-size: 0.85rem;
    color: var(--steel);
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 300;
  }

  .machine-features li:last-child { border-bottom: none; }

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

  .machine-cta {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--green-deep);
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--green-accent);
    padding-bottom: 2px;
    transition: color 0.2s;
  }

  .machine-cta:hover { color: var(--green-accent); }

  /* PROCÉDÉ */
  .process {
    background: white;
  }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
    margin-top: 60px;
  }

  .process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: var(--green-accent);
    opacity: 0.3;
  }

  .process-step {
    text-align: center;
    padding: 0 16px;
    position: relative;
  }

  .step-dot {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--green-deep);
    border: 2px solid var(--green-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
  }

  .step-dot svg {
    width: 22px;
    height: 22px;
    fill: var(--green-accent);
  }

  .step-title {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 8px;
  }

  .step-desc {
    font-size: 0.8rem;
    color: var(--steel);
    line-height: 1.6;
    font-weight: 300;
  }

  .process-visual {
    margin-top: 60px;
  }

  .process-img-wrap {
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    max-height: 420px;
  }

  .process-img-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center 40%;
    display: block;
    filter: brightness(0.75) saturate(1.1);
  }

  .process-img-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(10,30,18,0.9) 0%, transparent 100%);
    padding: 40px 36px 28px;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .process-img-caption strong {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: white;
  }

  .process-img-caption span {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    font-style: italic;
  }

  /* BÉNÉFICES */
  .benefits {
    background: var(--green-deep);
    position: relative;
  }

  .benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: rgba(255,255,255,0.06);
    margin-top: 60px;
  }

  .benefit-item {
    padding: 44px 40px;
    background: var(--green-deep);
    border: 1px solid rgba(255,255,255,0.05);
  }

  .benefit-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--green-accent);
    line-height: 1;
    margin-bottom: 12px;
  }

  .benefit-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: white;
    margin-bottom: 10px;
  }

  .benefit-desc {
    font-size: 0.87rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    font-weight: 300;
  }

  /* ROI SECTION */
  .roi-section {
    background: var(--cream);
    padding: 100px 5vw;
  }

  .roi-eyebrow {
    max-width: 760px;
    margin-bottom: 60px;
  }

  .roi-eyebrow strong {
    color: var(--green-deep);
    font-weight: 600;
  }

  .roi-layout {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    gap: 0;
    background: white;
    border: 1px solid var(--border);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 3px;
  }

  .roi-col { padding: 44px 40px 40px; }

  .roi-col-header { margin-bottom: 32px; }

  .roi-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
  }

  .roi-badge--red { background: rgba(229,62,62,0.1); color: #c53030; }
  .roi-badge--green { background: rgba(58,184,106,0.12); color: #276749; }

  .roi-col-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--charcoal);
  }

  .roi-lines { display: flex; flex-direction: column; gap: 0; }

  .roi-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    gap: 16px;
  }

  .roi-line:last-child { border-bottom: none; }

  .roi-line--total {
    padding-top: 20px;
    margin-top: 6px;
  }

  .roi-line--total .roi-line-label { font-weight: 600; color: var(--charcoal); }
  .roi-line--total .roi-line-value { font-size: 1.05rem; font-weight: 700; }

  .roi-line-label {
    font-size: 0.87rem;
    color: var(--steel);
    font-weight: 300;
    line-height: 1.4;
  }

  .roi-line-value {
    font-size: 0.92rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .roi-line-value.neg { color: #c53030; }
  .roi-line-value.pos { color: #276749; }

  .roi-before { border-right: 1px solid var(--border); }
  .roi-after { border-left: 1px solid var(--border); }

  .roi-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-deep);
  }

  .roi-arrow-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: white;
    text-align: center;
  }

  .roi-arrow-inner svg { width: 28px; height: 28px; fill: var(--green-accent); }

  .roi-arrow-inner span {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    line-height: 1.4;
  }

  .roi-result {
    background: var(--green-deep);
    padding: 40px 48px;
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    border-radius: 0 0 2px 2px;
  }

  .roi-result-left, .roi-result-center, .roi-result-right {
    flex: 1;
    padding: 0 40px;
  }

  .roi-result-left { padding-left: 0; }

  .roi-result-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 8px;
  }

  .roi-result-amount {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--green-accent);
    line-height: 1;
    margin-bottom: 6px;
  }

  .roi-result-sub {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    font-weight: 300;
  }

  .roi-divider {
    width: 1px;
    height: 70px;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
  }

  .roi-cta {
    display: inline-block;
    background: var(--green-accent);
    color: white;
    padding: 16px 28px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    border-radius: 2px;
    transition: background 0.2s;
    white-space: nowrap;
    margin-left: auto;
    flex-shrink: 0;
  }

  .roi-cta:hover { background: #2fa05a; }

  .roi-disclaimer {
    font-size: 0.75rem;
    color: var(--light-steel);
    font-style: italic;
    margin-top: 20px;
    line-height: 1.6;
  }

  /* SECTEURS */
  .sectors {
    background: var(--cream);
  }

  .sectors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border);
    margin-top: 60px;
  }

  .sector-card {
    background: white;
    padding: 36px 32px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: background 0.2s;
  }

  .sector-card:hover { background: var(--green-deep); }
  .sector-card:hover .sector-name { color: white; }
  .sector-card:hover .sector-desc { color: rgba(255,255,255,0.5); }

  .sector-icon-box {
    width: 48px;
    height: 48px;
    background: var(--green-deep);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .sector-card:hover .sector-icon-box { background: rgba(58,184,106,0.2); }

  .sector-icon-box svg {
    width: 22px;
    height: 22px;
    fill: var(--green-accent);
  }

  .sector-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 6px;
    transition: color 0.2s;
  }

  .sector-desc {
    font-size: 0.83rem;
    color: var(--steel);
    line-height: 1.6;
    font-weight: 300;
    transition: color 0.2s;
  }

  /* SECTEURS */
  .contact {
    background: white;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

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

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--charcoal);
  }

  input, select, textarea {
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    border: 1px solid var(--border);
    padding: 14px 16px;
    border-radius: 2px;
    color: var(--charcoal);
    background: var(--cream);
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
  }

  input:focus, select:focus, textarea:focus {
    border-color: var(--green-accent);
    background: white;
  }

  textarea { height: 140px; resize: vertical; }

  .form-submit {
    background: var(--green-deep);
    color: white;
    border: none;
    padding: 16px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    cursor: pointer;
    border-radius: 2px;
    align-self: flex-start;
    transition: background 0.2s;
    text-transform: uppercase;
  }

  .form-submit:hover { background: var(--green-accent); }

  .contact-info {
    padding-top: 10px;
  }

  .contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 16px;
  }

  .contact-info p {
    font-size: 0.93rem;
    color: var(--steel);
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 40px;
  }

  .contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
  }

  .contact-detail-icon {
    width: 40px;
    height: 40px;
    background: var(--green-deep);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .contact-detail-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--green-accent);
  }

  .contact-detail-text {
    font-size: 0.9rem;
    color: var(--steel);
    line-height: 1.6;
    font-weight: 300;
  }

  .contact-detail-text strong {
    display: block;
    font-weight: 600;
    color: var(--charcoal);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 2px;
  }

/* --- HERO : boucle recyclage SVG animée --- */
  .hero-deco-recycling {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(320px, 40vw, 580px);
    height: clamp(320px, 40vw, 580px);
    opacity: 0.06;
    pointer-events: none;
    animation: spin-slow 40s linear infinite;
  }

  @keyframes spin-slow {
    from { transform: translateY(-50%) rotate(0deg); }
    to   { transform: translateY(-50%) rotate(360deg); }
  }

  .hero-deco-dots {
    position: absolute;
    left: 3vw;
    bottom: 120px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
    opacity: 0.18;
  }

  .hero-deco-dots-row {
    display: flex;
    gap: 10px;
  }

  .hero-deco-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--green-accent);
  }

  /* --- BENEFITS : orbes flottantes --- */
  .benefits-deco {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
  }

  .orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(58,184,106,0.18) 0%, transparent 70%);
    animation: orb-float 8s ease-in-out infinite;
  }

  .orb-1 {
    width: 400px; height: 400px;
    top: -100px; right: -80px;
    animation-delay: 0s;
  }

  .orb-2 {
    width: 280px; height: 280px;
    bottom: -60px; left: 10%;
    animation-delay: -3s;
    background: radial-gradient(circle, rgba(58,184,106,0.12) 0%, transparent 70%);
  }

  .orb-3 {
    width: 180px; height: 180px;
    top: 40%; left: 40%;
    animation-delay: -5s;
    background: radial-gradient(circle, rgba(58,184,106,0.08) 0%, transparent 70%);
  }

  @keyframes orb-float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50%       { transform: translateY(-30px) scale(1.05); }
  }

  /* --- ROI : ligne de flux ondulée --- */
  .roi-wave-deco {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    pointer-events: none;
    overflow: hidden;
    height: 80px;
  }

  .roi-section { position: relative; }

  /* --- SECTION PROCÉDÉ : grille de points --- */
  .process-deco-grid {
    position: absolute;
    top: 40px;
    right: 0;
    width: 200px;
    height: 200px;
    pointer-events: none;
    opacity: 0.07;
  }

  .process { position: relative; overflow: hidden; }

  /* --- FIL DE RECYCLAGE : section problem --- */
  .recycling-wire {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.07;
  }

  .recycling-wire path {
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    animation: draw-wire 6s ease forwards;
  }

  @keyframes draw-wire {
    to { stroke-dashoffset: 0; }
  }

  /* --- ABOUT : hexagones géométriques --- */
  .about-hex-deco {
    position: absolute;
    top: 0; right: 0;
    width: 300px;
    height: 300px;
    pointer-events: none;
    opacity: 0.04;
  }

  .about { position: relative; overflow: hidden; }

  /* --- CONTACT : feuilles coins --- */
  .contact-leaf-deco {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 280px;
    height: 280px;
    pointer-events: none;
    opacity: 0.04;
  }

  .contact { position: relative; overflow: hidden; }

  /* Ligne séparatrice décorative verte */
  .deco-divider {
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--green-accent), transparent);
    opacity: 0.4;
  }

  /* Particules animées sur le hero */
  .hero-particle {
    position: absolute;
    border-radius: 50%;
    background: var(--green-accent);
    pointer-events: none;
    animation: particle-rise linear infinite;
    opacity: 0;
  }

  @keyframes particle-rise {
    0%   { opacity: 0;    transform: translateY(0) scale(0.5); }
    10%  { opacity: 0.35; }
    90%  { opacity: 0.1;  }
    100% { opacity: 0;    transform: translateY(-120px) scale(1.2); }
  }

  @media (max-width: 900px) {
    .hero-deco-recycling { display: none; }
    .about-hex-deco { display: none; }
  }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    .about-grid, .problem-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .process-steps::before { display: none; }
    .sectors-grid { grid-template-columns: 1fr 1fr; }
    .values-row { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .machines-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .nav-burger { display: flex; }
    .form-row { grid-template-columns: 1fr; }

    .roi-layout { grid-template-columns: 1fr; }
    .roi-before { border-right: 0; }
    .roi-after { border-top: 1px solid var(--border); border-left: 0; }
    .roi-col { padding: 36px clamp(22px, 6vw, 36px); }
    .roi-line {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: start;
    }
    .roi-line-value { text-align: right; }
    .roi-arrow { min-height: 72px; padding: 14px 20px; }
    .roi-arrow-inner { flex-direction: row; gap: 14px; }
    .roi-arrow-inner svg { transform: rotate(90deg); }
    .roi-result { display: grid; grid-template-columns: 1fr; padding: 0; }
    .roi-result-left,
    .roi-result-center,
    .roi-result-right { padding: 28px clamp(24px, 7vw, 36px); }
    .roi-result-left { padding-left: clamp(24px, 7vw, 36px); }
    .roi-divider { width: 100%; height: 1px; }
    .roi-result-label { color: rgba(255,255,255,0.62); }
    .roi-result-sub { color: rgba(255,255,255,0.55); line-height: 1.55; }
    .roi-cta {
      width: auto;
      margin: 4px clamp(24px, 7vw, 36px) 30px;
      text-align: center;
      white-space: normal;
    }
  }

  @media (max-width: 600px) {
    .sectors-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .hero-stats { gap: 30px; }
  }

.hero-particle--1 { width: 5px; height: 5px; left: 15%; bottom: 10%; animation-duration: 7s; animation-delay: 0s; }
.hero-particle--2 { width: 3px; height: 3px; left: 22%; bottom: 5%; animation-duration: 9s; animation-delay: -2s; }
.hero-particle--3 { width: 6px; height: 6px; left: 8%; bottom: 15%; animation-duration: 6s; animation-delay: -4s; }
.hero-particle--4 { width: 4px; height: 4px; left: 35%; bottom: 8%; animation-duration: 8s; animation-delay: -1s; }
.hero-particle--5 { width: 3px; height: 3px; left: 45%; bottom: 12%; animation-duration: 10s; animation-delay: -3s; }
.roi-wave-svg { width: 100%; height: 80px; }
.footer-legal-links { margin-top: 6px; }