/* ===== SUKOZEN — Feuille de style ===== */
:root {
  --orange: #E8983A;
  --orange-dark: #d27f1f;
  --orange-light: rgba(232,152,58,.12);
  --green: #4E9B2E;
  --green-dark: #3c7a22;
  --green-light: rgba(78,155,46,.12);
  --cream: #F7F3E8;
  --cream-dark: #EDE9DA;
  --ink: #1e1e1e;
  --ink-soft: #5a5a5a;
  --white: #ffffff;
  --dark: #1a2117;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 20px 50px rgba(0, 0, 0, .10);
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, .07);
  --shadow-hover: 0 24px 60px rgba(0, 0, 0, .15);
  --max: 1180px;
  --transition: .25s cubic-bezier(.4,0,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; overflow-x: hidden; }

body {
  font-family: 'Nunito Sans', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.logo { font-family: 'Baloo 2', system-ui, sans-serif; line-height: 1.15; }
h1, h2, h3 { font-family: 'Montserrat', system-ui, sans-serif; line-height: 1.15; text-transform: uppercase; font-weight: 800; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 28px; }

a { text-decoration: none; color: inherit; }
a:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 4px; }

/* ===== SKIP LINK (accessibilité) ===== */
.skip-link {
  position: absolute; top: -50px; left: 16px; background: var(--orange); color: #fff;
  padding: 8px 16px; border-radius: 8px; font-weight: 700; z-index: 999; transition: top .2s;
}
.skip-link:focus { top: 16px; }

/* ===== LOGO ===== */
.logo { font-size: 1.6rem; font-weight: 800; letter-spacing: -.5px; display: inline-flex; align-items: center; }
.logo-suko { color: var(--orange); }
.logo-zen { color: var(--green); }
.logo-img { height: 26px; width: auto; display: block; }
.footer-brand .logo-img { height: 30px; }
@media (max-width: 480px) { .logo-img { height: 23px; } }

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 243, 232, .95);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,.07);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.10); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 24px; }
.nav { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.nav a {
  font-family: 'Unbounded', system-ui, sans-serif; font-weight: 700; color: var(--ink); font-size: .78rem;
  padding: 7px 11px; border-radius: 8px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap; text-transform: uppercase;
}
.nav a:hover { color: var(--orange); background: var(--orange-light); }
.nav a.active { color: var(--orange); }
.nav-cta {
  background: var(--green); color: #fff !important;
  padding: 9px 18px; border-radius: 999px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 12px rgba(78,155,46,.3);
}
.nav-cta:hover { color: var(--orange) !important; background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(78,155,46,.35); }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; border-radius: 8px; }
.burger:hover { background: var(--orange-light); }
.burger span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 3px; transition: var(--transition); display: block; }
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 800; font-family: 'Baloo 2', sans-serif;
  padding: 13px 26px; border-radius: 999px; cursor: pointer; border: 0;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  font-size: .98rem; letter-spacing: .01em; text-decoration: none;
}
.btn:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 8px 24px rgba(232,152,58,.4); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-3px); box-shadow: 0 14px 32px rgba(232,152,58,.45); }
.btn-primary:active { transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border: 2px solid rgba(0,0,0,.18); }
.btn-ghost:hover { border-color: var(--green); color: var(--green); background: var(--green-light); }
.btn-lg { padding: 15px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn-loading { opacity: .7; pointer-events: none; }
.btn-loading::after { content: '…'; }

/* ===== HERO ===== */
.hero { position: relative; overflow: hidden; padding: 72px 0 88px; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at 78% 15%, rgba(78,155,46,.15), transparent 48%),
    radial-gradient(ellipse at 12% 85%, rgba(232,152,58,.18), transparent 48%);
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center;
}
.badge {
  display: inline-flex; align-items: center; gap: 6px; background: #fff; color: var(--green-dark);
  font-weight: 700; font-size: .88rem; padding: 7px 16px; border-radius: 999px;
  box-shadow: var(--shadow-sm); margin-bottom: 24px; border: 1px solid rgba(78,155,46,.15);
}
.hero h1 { font-size: clamp(1.7rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 20px; letter-spacing: -.02em; }
.hero h1 .hl { color: var(--orange); }
.lead { font-size: 1.12rem; color: var(--ink-soft); max-width: 520px; margin-bottom: 32px; line-height: 1.7; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-stats { display: flex; gap: 32px; }
.hero-stats div { position: relative; }
.hero-stats div:not(:last-child)::after {
  content: ''; position: absolute; right: -16px; top: 50%; transform: translateY(-50%);
  width: 1px; height: 32px; background: rgba(0,0,0,.12);
}
.hero-stats strong { display: block; font-family: 'Baloo 2'; font-size: 1.7rem; color: var(--green); line-height: 1; margin-bottom: 4px; }
.hero-stats span { color: var(--ink-soft); font-size: .85rem; font-weight: 600; }

/* photo réelle de la machine */
.machine-photo {
  width: auto; max-width: 100%; max-height: 500px; height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,.25));
  border-radius: 16px;
  transition: transform var(--transition);
}
.hero-visual:hover .machine-photo { transform: translateY(-6px); }

/* ===== HERO MACHINE VISUAL ===== */
.hero-visual { display: flex; justify-content: center; }
.machine {
  width: 320px; background: linear-gradient(180deg, #20271c, #11150f);
  border-radius: 26px; padding: 18px; box-shadow: var(--shadow);
  border: 3px solid #2c3525;
}
.machine-top {
  text-align: center; color: #fff; font-family: 'Baloo 2'; font-weight: 800;
  letter-spacing: 2px; padding: 6px 0 14px; font-size: 1.3rem;
}
.machine-top { color: var(--orange); }
.machine-screen {
  position: relative; background: #f3efe2; border-radius: 14px; padding: 16px;
  overflow: hidden; border: 4px solid #3a4530;
}
.screen-glow {
  position: absolute; inset: 0; background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,.5) 50%, transparent 60%);
  animation: sweep 4s linear infinite;
}
@keyframes sweep { 0% { transform: translateX(-120%); } 100% { transform: translateX(120%); } }
.shelves { display: flex; flex-direction: column; gap: 12px; position: relative; }
.shelf {
  display: flex; justify-content: space-around; background: #fff;
  border-radius: 8px; padding: 10px 6px; font-size: 1.9rem;
  box-shadow: inset 0 -3px 0 rgba(0,0,0,.06);
}
.machine-tray {
  margin-top: 14px; background: var(--green); color: #fff; text-align: center;
  font-weight: 700; padding: 12px; border-radius: 12px; font-size: .9rem;
}

/* ===== MARQUEE ===== */
.marquee { background: var(--green); overflow: hidden; padding: 14px 0; }
.marquee-track {
  display: flex; gap: 26px; white-space: nowrap; width: max-content;
  animation: scroll 28s linear infinite;
  color: #fff; font-family: 'Baloo 2'; font-weight: 700; letter-spacing: 1px;
}
.marquee-track span { font-size: 1.05rem; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-alt { background: #fff; }
.section-head { max-width: 680px; margin: 0 auto 52px; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--orange); font-weight: 800; text-transform: uppercase;
  letter-spacing: 2.5px; font-size: .76rem; margin-bottom: 14px;
}
.eyebrow::before, .eyebrow::after {
  content: ''; width: 20px; height: 2px; background: currentColor; border-radius: 2px; opacity: .5;
}
.section-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 14px; letter-spacing: -.02em; }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; line-height: 1.7; }
.section-head.light h2 { color: #fff; }
.section-head.light p { color: rgba(255,255,255,.75); }
.section-head.light .eyebrow { color: var(--orange); }

/* ===== CARDS / GRIDS ===== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card {
  background: #fff; border-radius: var(--radius); padding: 32px 26px;
  box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(0,0,0,.05);
}
.section-alt .card { background: var(--cream); }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.card-ico {
  width: 58px; height: 58px; border-radius: 14px; background: var(--green-light);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin-bottom: 18px;
}
.card h3 { font-size: 1.2rem; margin-bottom: 8px; letter-spacing: -.01em; }
.card p { color: var(--ink-soft); font-size: .97rem; line-height: 1.6; }

/* ===== PRODUCTS ===== */
.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.product {
  position: relative; background: #fff; border-radius: var(--radius); padding: 28px 24px 26px;
  text-align: center; box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(0,0,0,.05);
  display: flex; flex-direction: column; align-items: center;
}
.product:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.product-img-wrap {
  width: 140px; height: 140px; border-radius: 14px;
  background: var(--cream); display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; overflow: hidden; transition: background var(--transition);
}
.product:hover .product-img-wrap { background: var(--cream-dark); }
.product-emoji {
  font-size: 3.6rem; display: inline-block; transition: transform var(--transition);
}
.product:hover .product-emoji { transform: scale(1.15) rotate(-5deg); }
.product-image {
  width: 130px; height: 130px; object-fit: contain;
  transition: transform var(--transition);
}
.product:hover .product-image { transform: scale(1.08); }
.product h3 { font-size: 1.18rem; margin-bottom: 6px; letter-spacing: -.01em; }
.product p { color: var(--ink-soft); font-size: .92rem; line-height: 1.5; }
.tag {
  position: absolute; top: 14px; right: 14px; background: var(--orange); color: #fff;
  font-size: .68rem; font-weight: 800; padding: 4px 10px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: .05em;
  box-shadow: 0 4px 10px rgba(232,152,58,.4);
}

/* ===== STEPS ===== */
.steps { display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; }
.step {
  flex: 1; min-width: 220px; max-width: 300px; background: #fff; border-radius: var(--radius);
  padding: 34px 26px; text-align: center; box-shadow: var(--shadow-sm);
}
.step-num {
  width: 54px; height: 54px; margin: 0 auto 16px; border-radius: 50%;
  background: var(--green); color: #fff; font-family: 'Baloo 2'; font-weight: 800;
  font-size: 1.5rem; display: grid; place-items: center;
}
.step h3 { font-size: 1.3rem; margin-bottom: 8px; }
.step p { color: var(--ink-soft); }
.step-arrow { font-size: 2rem; color: var(--orange); font-weight: 800; }

/* ===== DARK SECTION ===== */
.section-dark { background: var(--dark); }
.feature {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius); padding: 28px 22px; text-align: center; color: #fff;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}
.feature:hover { transform: translateY(-6px); background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); }
.feature-icon {
  width: 56px; height: 56px; border-radius: 14px; margin: 0 auto 14px;
  background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
}
.feature span { font-size: 2rem; display: block; margin-bottom: 12px; }
.feature h3 { font-size: 1.1rem; margin-bottom: 6px; color: var(--orange); letter-spacing: -.01em; }
.feature p { color: rgba(255,255,255,.65); font-size: .9rem; line-height: 1.55; }

/* ===== CTA BAND ===== */
.cta-band { background: linear-gradient(120deg, var(--orange), var(--orange-dark)); }
.cta-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.cta-inner h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.3rem); max-width: 640px; }
.cta-inner p { color: rgba(255,255,255,.9); margin-top: 10px; max-width: 600px; }
.cta-band .btn-primary { background: #fff; color: var(--orange-dark); box-shadow: 0 10px 24px rgba(0,0,0,.18); }
.cta-band .btn-primary:hover { background: var(--dark); color: #fff; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact-text h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin: 10px 0 14px; }
.contact-text p { color: var(--ink-soft); font-size: 1.08rem; }
.contact-list { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.contact-list a { font-weight: 700; color: var(--green-dark); }
.contact-list a:hover { color: var(--orange); }
.contact-form {
  background: #fff; padding: 34px; border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; margin-bottom: 6px; font-size: .95rem; }
.field input, .field textarea {
  width: 100%; padding: 12px 14px; border: 2px solid #e7e1d2; border-radius: 12px;
  font-family: inherit; font-size: 1rem; background: var(--cream); transition: border .2s;
}
.field input:focus, .field textarea:focus { outline: 0; border-color: var(--green); }
.form-note { color: var(--green-dark); font-weight: 700; margin-top: 14px; text-align: center; }

/* ===== FOOTER ===== */
.site-footer { background: var(--dark); color: #fff; padding-top: 56px; }
.footer-inner {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px;
  padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .logo { font-size: 1.8rem; }
.footer-brand p { color: rgba(255,255,255,.55); margin-top: 10px; font-size: .95rem; line-height: 1.6; max-width: 260px; }
.footer-col h4 { font-family: 'Baloo 2'; font-size: 1rem; color: rgba(255,255,255,.9); margin-bottom: 16px; letter-spacing: .02em; }
.footer-col ul, .footer-contact { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255,255,255,.6); font-size: .93rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--orange); }
.footer-contact li { color: rgba(255,255,255,.6); font-size: .93rem; display: flex; align-items: center; gap: 8px; }
.footer-contact a { color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-contact a:hover { color: var(--orange); }
.footer-bottom { padding: 22px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: rgba(255,255,255,.4); font-size: .88rem; }
.footer-badge {
  display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1); border-radius: 999px; padding: 5px 12px;
  color: rgba(255,255,255,.5); font-size: .8rem; font-weight: 600;
}

/* ===== NAV ACTIVE ===== */
.nav a.active { color: var(--orange); }

/* ===== PAGE FRANCHISE ===== */
.container-narrow { max-width: 820px; }

.hero-franchise .hero-bg {
  background:
    radial-gradient(circle at 20% 20%, rgba(78,155,46,.20), transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(232,152,58,.22), transparent 45%);
}

/* carte visuelle hero */
.franchise-card-visual {
  width: 320px; background: linear-gradient(160deg, var(--green), var(--green-dark));
  color: #fff; border-radius: 26px; padding: 32px 30px; box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.fcv-tag {
  display: inline-block; background: var(--orange); color: #fff; font-weight: 800;
  font-family: 'Baloo 2'; letter-spacing: 1px; padding: 6px 14px; border-radius: 999px;
  font-size: .8rem; margin-bottom: 18px;
}
.fcv-amount { font-family: 'Nunito Sans'; font-size: 1rem; opacity: .9; line-height: 1.3; }
.fcv-amount strong { font-family: 'Baloo 2'; font-size: 2.6rem; display: inline-block; margin-top: 4px; }
.franchise-card-visual ul { list-style: none; margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.franchise-card-visual li { font-weight: 700; font-size: 1rem; }

/* features sur fond clair */
.feature-light {
  background: var(--cream); border: 1px solid rgba(0,0,0,.05); color: var(--ink);
}
.feature-light:hover { background: #fff; }
.feature-light h3 { color: var(--green-dark); }
.feature-light p { color: var(--ink-soft); }

/* timeline */
.timeline {
  max-width: 760px; margin: 0 auto; position: relative;
  display: flex; flex-direction: column; gap: 26px;
}
.timeline::before {
  content: ''; position: absolute; left: 26px; top: 10px; bottom: 10px; width: 3px;
  background: linear-gradient(var(--orange), var(--green)); border-radius: 3px;
}
.tl-item { display: flex; gap: 22px; align-items: flex-start; position: relative; }
.tl-num {
  flex: 0 0 54px; width: 54px; height: 54px; border-radius: 50%;
  background: var(--orange); color: #fff; font-family: 'Baloo 2'; font-weight: 800;
  font-size: 1.4rem; display: grid; place-items: center; z-index: 1;
  box-shadow: 0 6px 16px rgba(232,152,58,.4);
}
.tl-content {
  background: #fff; border-radius: var(--radius); padding: 20px 24px;
  box-shadow: var(--shadow-sm); flex: 1;
}
.tl-content h3 { font-size: 1.2rem; margin-bottom: 4px; }
.tl-content p { color: var(--ink-soft); }

/* chiffres */
.numbers { text-align: center; }
.num-box {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 30px 18px;
}
.num-box strong {
  display: block; font-family: 'Baloo 2'; font-size: 2.2rem; color: var(--orange); margin-bottom: 6px;
}
.num-box span { color: rgba(255,255,255,.78); font-weight: 600; }
.disclaimer { text-align: center; color: rgba(255,255,255,.55); font-size: .85rem; margin-top: 26px; }

/* hero simple (franchise) */
.hero-simple {
  padding: 80px 0; background: linear-gradient(135deg, rgba(78,155,46,.1), rgba(232,152,58,.1));
}
.hero-simple-inner { text-align: center; }
.hero-simple h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 800; color: var(--dark);
}

/* bloc concept (franchise) */
.concept-block { text-align: center; }
.concept-block h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin: 10px 0 18px; }
.concept-block p {
  color: var(--ink-soft); font-size: 1.12rem; max-width: 720px; margin: 0 auto 14px;
}
.concept-block strong { color: var(--green-dark); }

/* chiffres clés (kpi) */
.kpi-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.kpi {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 28px 18px; text-align: center;
  transition: transform .25s, background .25s;
}
.kpi:hover { transform: translateY(-5px); background: rgba(255,255,255,.09); }
.kpi strong {
  display: block; font-family: 'Baloo 2'; font-size: 1.5rem; color: var(--orange);
  margin-bottom: 8px; line-height: 1.1;
}
.kpi span { color: rgba(255,255,255,.78); font-weight: 600; font-size: .92rem; }
.disclaimer-dark { color: var(--ink-soft); }

/* kpi strip (chiffres clés compact) */
.kpi-strip {
  display: flex; flex-wrap: wrap;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  overflow: hidden;
  margin-bottom: 24px;
}
.kpi-strip-item {
  flex: 1; min-width: 160px;
  padding: 28px 22px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
  transition: background var(--transition);
}
.kpi-strip-item:last-child { border-right: none; }
.kpi-strip-item:hover { background: rgba(255,255,255,.07); }
.kpi-strip-item strong {
  display: block; font-family: 'Baloo 2'; font-size: 1.45rem;
  color: var(--orange); line-height: 1.1; margin-bottom: 6px;
}
.kpi-strip-item span {
  color: rgba(255,255,255,.7); font-size: .82rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
}

/* faq */
.faq { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: #fff; border-radius: 14px; padding: 4px 22px; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.05);
}
.faq-item summary {
  cursor: pointer; font-family: 'Baloo 2'; font-weight: 700; font-size: 1.1rem;
  padding: 18px 0; list-style: none; position: relative; padding-right: 30px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; position: absolute; right: 0; top: 14px; font-size: 1.6rem;
  color: var(--orange); transition: transform .25s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--ink-soft); padding: 0 0 18px; }

/* ligne de formulaire */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ===== PROSE (texte partenaire) ===== */
.prose .section-head { text-align: left; margin-bottom: 30px; }
.prose p { color: var(--ink-soft); font-size: 1.06rem; margin-bottom: 16px; }
.prose .lead-text {
  font-size: 1.2rem; color: var(--ink); font-weight: 700;
  border-left: 4px solid var(--orange); padding-left: 18px; margin-bottom: 22px;
}
.prose-h {
  font-size: 1.5rem; color: var(--green-dark); margin: 34px 0 12px;
  padding-top: 22px; border-top: 1px solid rgba(0,0,0,.08);
}
.prose-list {
  list-style: none; margin: 4px 0 18px; display: grid;
  grid-template-columns: 1fr 1fr; gap: 10px 26px;
}
.prose-list li {
  position: relative; padding-left: 28px; color: var(--ink); font-weight: 600;
}
.prose-list li::before {
  content: '🥢'; position: absolute; left: 0; top: 0; font-size: .95rem;
}
.prose-cta {
  margin-top: 40px; background: linear-gradient(160deg, var(--green), var(--green-dark));
  color: #fff; border-radius: var(--radius); padding: 38px 34px; text-align: center;
}
.prose-cta h3 { font-size: 1.6rem; margin-bottom: 12px; }
.prose-cta p { color: rgba(255,255,255,.9); max-width: 620px; margin: 0 auto 14px; }
.prose-cta .btn-primary { margin-top: 14px; background: var(--orange); color: #fff; }
.prose-cta .btn-primary:hover { background: #fff; color: var(--green-dark); }

/* ===== NEWSLETTER ===== */
.newsletter-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.newsletter-text h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 12px; }
.newsletter-text p { color: rgba(255,255,255,.8); font-size: 1.05rem; }
.newsletter-form { display: flex; flex-direction: column; gap: 14px; }
.form-group {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.form-group input {
  flex: 1; min-width: 240px; padding: 14px 18px; border: 0; border-radius: 999px;
  font-size: 1rem; background: #fff; font-family: inherit;
}
.form-group input:focus { outline: 0; box-shadow: 0 0 0 3px rgba(232,152,58,.3); }
.form-group .btn { flex: 0 0 auto; padding: 14px 32px; }
.form-note { color: rgba(255,255,255,.9); font-weight: 700; font-size: .95rem; }

@media (max-width: 768px) {
  .newsletter-inner { grid-template-columns: 1fr; }
  .form-group { flex-direction: column; }
  .form-group input { width: 100%; }
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 90;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--orange); color: #fff; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(232,152,58,.45);
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
  opacity: 0; transform: translateY(10px) scale(.9); pointer-events: none;
  font-size: 1.1rem;
}
.scroll-top.visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.scroll-top:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 10px 28px rgba(232,152,58,.5); }

/* ===== ANIMATIONS D'ENTRÉE ===== */
.fade-in { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.fade-in.in { opacity: 1; transform: none; }
.fade-in-delay-1 { transition-delay: .1s; }
.fade-in-delay-2 { transition-delay: .18s; }
.fade-in-delay-3 { transition-delay: .26s; }
.fade-in-delay-4 { transition-delay: .34s; }

/* ===== STEP AMÉLIORATION ===== */
.step {
  flex: 1; min-width: 200px; max-width: 280px; background: #fff; border-radius: var(--radius);
  padding: 30px 22px; text-align: center; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.05);
}
.step-num {
  width: 50px; height: 50px; margin: 0 auto 14px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff; font-family: 'Baloo 2'; font-weight: 800;
  font-size: 1.4rem; display: grid; place-items: center;
  box-shadow: 0 6px 16px rgba(78,155,46,.35);
}

/* ===== FRANCHISE — HOVER ANIMATIONS ===== */

/* 1. Hero card : flottement continu */
@keyframes sukoFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  40%       { transform: translateY(-10px) rotate(.6deg); }
  70%       { transform: translateY(-6px) rotate(-.3deg); }
}
.franchise-card-visual { animation: sukoFloat 5.5s ease-in-out infinite; }

/* 2. Cards "Pourquoi nous rejoindre" : barre orange en haut + icône */
.card {
  /* barre orange inset en haut, invisible par défaut */
  box-shadow: var(--shadow-sm), inset 0 3px 0 transparent;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-hover), inset 0 3px 0 var(--orange);
}
.card-ico {
  transition: background var(--transition), transform .35s cubic-bezier(.34,1.56,.64,1);
}
.card:hover .card-ico {
  background: var(--orange-light);
  transform: scale(1.14) rotate(-7deg);
}

/* 3. Features claires (pack + implantation) : trait latéral vert→orange + emoji pop */
.feature-light {
  position: relative; overflow: hidden;
  transition: background var(--transition), transform var(--transition);
}
.feature-light::before {
  content: ''; position: absolute;
  left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--orange) 0%, var(--green) 100%);
  transform: scaleY(0); transform-origin: top;
  border-radius: 0 3px 3px 0;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.feature-light:hover::before { transform: scaleY(1); }
.feature-light:hover { transform: translateY(-5px); }
.feature-light > span:first-child {
  display: inline-block;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}
.feature-light:hover > span:first-child { transform: scale(1.28) rotate(-5deg); }

/* 4. Timeline : numéro vire au vert, contenu glisse + bordure orange */
.tl-num {
  transition: background var(--transition), transform .35s cubic-bezier(.34,1.56,.64,1),
              box-shadow var(--transition);
}
.tl-item:hover .tl-num {
  background: var(--green);
  box-shadow: 0 8px 22px rgba(78,155,46,.45);
  transform: scale(1.18);
}
.tl-content {
  transition: transform var(--transition), box-shadow var(--transition);
  border-left: 3px solid transparent;
}
.tl-item:hover .tl-content {
  transform: translateX(6px);
  border-left-color: var(--orange);
}

/* 5. KPI strip : chiffre blanc lumineux au survol */
.kpi-strip-item strong {
  transition: color var(--transition), text-shadow var(--transition);
}
.kpi-strip-item:hover strong {
  color: #fff;
  text-shadow: 0 0 18px rgba(232,152,58,.55);
}

/* 6. FAQ : couleur au survol + bordure orange quand ouvert */
.faq-item {
  transition: box-shadow var(--transition);
  box-shadow: var(--shadow-sm), inset 3px 0 0 transparent;
}
.faq-item[open] {
  box-shadow: var(--shadow-sm), inset 3px 0 0 var(--orange);
}
.faq-item summary {
  transition: color var(--transition);
}
.faq-item summary:hover { color: var(--orange); }


/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-text { display: flex; flex-direction: column; align-items: center; }
  .hero-actions, .hero-stats { justify-content: center; }
  .hero-stats div:not(:last-child)::after { display: none; }
  .grid-3, .grid-4, .products { grid-template-columns: repeat(2, 1fr); }
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .kpi-strip-item { min-width: 140px; padding: 22px 14px; }
  .contact-grid { grid-template-columns: 1fr; }
  .step-arrow { transform: rotate(90deg); }
  .machine-photo { max-height: 380px; }
  /* Menu burger dès la tablette (évite que les liens débordent) */
  .nav {
    position: fixed; top: 68px; right: 0; width: 75%; max-width: 320px; height: calc(100vh - 68px);
    background: var(--cream); flex-direction: column; align-items: flex-start;
    padding: 32px 28px; gap: 4px; transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    box-shadow: -12px 0 40px rgba(0,0,0,.12);
  }
  .nav.open { transform: translateX(0); }
  .nav a { font-size: 1.1rem; padding: 12px 14px; width: 100%; }
  .burger { display: flex; }
}
@media (max-width: 640px) {
  .grid-3, .grid-4, .products { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .prose-list { grid-template-columns: 1fr; }
  .kpi-grid { grid-template-columns: 1fr 1fr; }
  .kpi-strip-item { min-width: 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .kpi-strip-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.08); }
  .kpi-strip-item:nth-last-child(-n+2) { border-bottom: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 60px 0; }
  .scroll-top { bottom: 16px; right: 16px; width: 42px; height: 42px; }
  .machine-photo { max-height: 300px; }
  /* Mobile UX improvements */
  .btn { min-height: 48px; padding: 14px 24px; font-size: 1rem; }
  .hero-actions { gap: 12px; flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .field input, .field textarea { min-height: 48px; padding: 14px 16px; font-size: 16px; }
  .faq-item summary { padding: 20px 0; font-size: 1rem; }
  .contact-form { padding: 24px; }
  .cta-inner h2 { font-size: 1.6rem; }
}
