/* ═══════════════════════════════════════════════════════════
   BAKX GARDEN — CSS Phase 1
   Palette : vert forêt #2c5f2e | beige terre #e8dcc8 | charbon #1a1a1a
   Style : Glassmorphism léger + naturel moderne
════════════════════════════════════════════════════════════ */

/* ─── Variables ─────────────────────────────────────────── */
:root {
  --green-forest: #2c5f2e;
  --green-mid:    #4a8b4c;
  --green-light:  #7ab87c;
  --beige:        #e8dcc8;
  --beige-dark:   #c9b99a;
  --charcoal:     #1a1a1a;
  --charcoal-mid: #2d2d2d;
  --accent:       #6ab04c;
  --accent-hover: #5a9a3e;
  --text-dark:    #1e1e1e;
  --text-muted:   #6c757d;
  --glass-bg:     rgba(255,255,255,0.08);
  --glass-border: rgba(255,255,255,0.15);
  --shadow-card:  0 8px 32px rgba(0,0,0,0.12);
  --radius-card:  1rem;
  --radius-btn:   0.6rem;
  --transition:   0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ─── Reset / Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: #f8f5ef;
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ─── Typography ────────────────────────────────────────── */
.hero-title,
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal);
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0.5rem auto 0;
}

.text-accent { color: var(--accent) !important; }
.text-muted-light { color: rgba(255,255,255,0.6) !important; }
.opacity-85 { opacity: 0.85; }
.bg-beige { background-color: #f5f0e8; }

/* ─── Buttons ────────────────────────────────────────────── */
.btn-accent {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-btn);
  font-weight: 600;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-accent:hover,
.btn-accent:focus {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(106,176,76,0.35);
}

.btn-outline-accent {
  color: var(--accent);
  border: 2px solid var(--accent);
  background: transparent;
  border-radius: var(--radius-btn);
  font-weight: 600;
  transition: all var(--transition);
}

.btn-outline-accent:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

/* ─── Navbar ─────────────────────────────────────────────── */
#mainNav {
  background: rgba(26,26,26,0.0);
  backdrop-filter: blur(0px);
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
  padding: 1rem 0;
}

#mainNav.scrolled {
  background: rgba(26,26,26,0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  padding: 0.5rem 0;
}

.navbar-brand { font-size: 1.3rem; color: #fff !important; }
.nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color var(--transition);
}
.nav-link:hover { color: var(--accent) !important; }

/* ─── Hero ───────────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  background:
    url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=80') center/cover no-repeat;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,26,26,0.80) 0%,
    rgba(44,95,46,0.55) 60%,
    rgba(26,26,26,0.40) 100%
  );
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
}

.badge-custom {
  display: inline-block;
  background: rgba(106,176,76,0.2);
  border: 1px solid rgba(106,176,76,0.4);
  color: var(--accent);
  padding: 0.35rem 1rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

/* Trust badges */
.trust-badges { gap: 2rem; }

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  font-weight: 500;
}

/* Scroll indicator */
.scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  text-decoration: none;
  z-index: 1;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ─── Stats Band ────────────────────────────────────────── */
.stats-band {
  background: var(--charcoal-mid);
  border-top: 3px solid var(--accent);
}

.stat-item { color: #fff; }

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.stat-item p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.25rem;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ─── Section Padding ────────────────────────────────────── */
.section-padding { padding: 6rem 0; }

/* ─── Product Cards ─────────────────────────────────────── */
.product-card {
  background: #fff;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.16);
}

.product-img-wrap { position: relative; }

.product-img-placeholder {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,0.6);
}

.product-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-body {
  padding: 1.25rem;
}

.product-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}

.product-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.product-actions {
  display: flex;
  gap: 0.5rem;
}

/* ─── Calculator ─────────────────────────────────────────── */
.calculator-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  border-left: 4px solid var(--accent);
}

.calculator-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--charcoal);
}

.calc-result {
  background: rgba(106,176,76,0.1);
  border: 1px solid rgba(106,176,76,0.3);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-weight: 500;
}

/* ─── Services Section ─────────────────────────────────── */
.bg-dark-section {
  background: var(--charcoal);
}

.service-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-card);
  padding: 2rem;
  height: 100%;
  transition: transform var(--transition), border-color var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(106,176,76,0.4);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(106,176,76,0.15);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
  transition: background var(--transition);
}

.service-card:hover .service-icon {
  background: rgba(106,176,76,0.25);
}

.service-card h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.service-link {
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap var(--transition);
}

.service-link:hover {
  gap: 0.6rem;
  color: var(--green-light);
}

/* ─── Process Strip ─────────────────────────────────────── */
.process-strip {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-card);
  padding: 2rem;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.step-num {
  width: 44px;
  height: 44px;
  background: var(--glass-bg);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
}

.process-step.active .step-num {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.process-step p {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  margin: 0;
  font-weight: 500;
  text-align: center;
}

/* ─── Testimonials ──────────────────────────────────────── */
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  height: 100%;
  transition: transform var(--transition);
  border-top: 3px solid transparent;
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.testimonial-card.featured {
  border-top-color: var(--accent);
  box-shadow: 0 12px 40px rgba(106,176,76,0.15);
}

.testimonial-card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--green-forest), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ─── Story Section ─────────────────────────────────────── */
.bg-story {
  position: relative;
  background:
    url('https://images.unsplash.com/photo-1416879595882-3373a0480b5b?w=1400&q=80') center/cover no-repeat;
  background-attachment: fixed;
}

.story-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,26,26,0.88) 0%,
    rgba(44,95,46,0.70) 100%
  );
}

.story-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.story-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  text-align: center;
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
  min-width: 110px;
}

/* Glassmorphism card */
.story-card-glass {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 1.25rem;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.story-card-glass blockquote {
  font-size: 1rem;
  line-height: 1.75;
  font-style: italic;
  margin: 0;
}

.border-accent-light {
  border-color: rgba(106,176,76,0.3) !important;
}

/* ─── Contact Section ─────────────────────────────────────── */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: #fff;
  border-radius: 0.75rem;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow var(--transition), transform var(--transition);
}

.contact-item:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transform: translateX(4px);
  color: inherit;
}

.contact-item i {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.contact-item strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}

.contact-item span {
  font-size: 0.92rem;
  color: var(--charcoal);
  font-weight: 500;
}

.urgency-box {
  background: rgba(255,193,7,0.1);
  border: 1px solid rgba(255,193,7,0.3);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  font-size: 0.88rem;
  color: #666;
}

/* ─── Form Card ─────────────────────────────────────────── */
.form-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 2.5rem;
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

.form-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--charcoal);
}

.form-control,
.form-select {
  border: 1.5px solid #e0ddd5;
  border-radius: 0.6rem;
  padding: 0.65rem 1rem;
  font-size: 0.92rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  background-color: #faf8f4;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(106,176,76,0.15);
  background-color: #fff;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #444;
  margin-bottom: 0.4rem;
}

/* ─── Map Section ────────────────────────────────────────── */
.map-section {
  height: 300px;
  background: #e8e8e8;
}

.map-placeholder {
  height: 100%;
  background: linear-gradient(135deg, #e8e8e8, #d4d4d4);
}

/* ─── Footer ─────────────────────────────────────────────── */
.footer-dark {
  background: var(--charcoal);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-links a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--accent); }

.social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all var(--transition);
}

.social-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════
   CONVERSION COMPONENTS — Phase 2
════════════════════════════════════════════════════════════ */

/* ─── Hero promesse renforcée ────────────────────────────── */
.hero-promise-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.hero-promise-list li {
  color: rgba(255,255,255,0.92);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 500;
}
.hero-promise-list i {
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Urgence saisonnière (top hero) */
.hero-urgency {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,193,7,0.15);
  border: 1px solid rgba(255,193,7,0.4);
  color: #ffc107;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 1rem;
  backdrop-filter: blur(8px);
}
.hero-urgency .pulse-dot {
  width: 8px;
  height: 8px;
  background: #ffc107;
  border-radius: 50%;
  animation: pulse-warn 1.6s ease-in-out infinite;
}
@keyframes pulse-warn {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}

/* ─── Trust Strip (sous hero) ────────────────────────────── */
.trust-strip {
  background: #fff;
  border-bottom: 1px solid #ece7dd;
  padding: 1.5rem 0;
}
.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: center;
}
.trust-cell {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.5rem;
}
.trust-cell-icon {
  width: 48px;
  height: 48px;
  background: rgba(106,176,76,0.12);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent);
  flex-shrink: 0;
}
.trust-cell strong {
  display: block;
  font-size: 0.92rem;
  color: var(--charcoal);
  font-weight: 700;
  line-height: 1.2;
}
.trust-cell small {
  display: block;
  color: var(--text-muted);
  font-size: 0.78rem;
  margin-top: 0.1rem;
}
.google-rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #fff;
  border: 1px solid #e3dfd5;
  padding: 0.3rem 0.7rem;
  border-radius: 2rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #444;
  margin-top: 0.25rem;
}
.google-rating-pill .stars-mini { color: #ffc107; letter-spacing: -0.05em; }

/* ─── Lead Magnet Strip ──────────────────────────────────── */
.lead-magnet-strip {
  background: linear-gradient(135deg, #fff 0%, #f5f0e6 100%);
  border: 2px solid var(--accent);
  border-radius: var(--radius-card);
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 8px 28px rgba(106,176,76,0.12);
  position: relative;
  overflow: hidden;
}
.lead-magnet-strip::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(106,176,76,0.12), transparent 70%);
  border-radius: 50%;
}
.lead-magnet-icon {
  width: 64px;
  height: 64px;
  background: var(--accent);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  flex-shrink: 0;
}
.lead-magnet-strip h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0 0 0.25rem 0;
}
.lead-magnet-strip p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* ─── Mid-page CTA strip (soft) ──────────────────────────── */
.cta-strip-soft {
  background: linear-gradient(90deg, #f5f0e6, #fff, #f5f0e6);
  border-top: 1px solid #ece7dd;
  border-bottom: 1px solid #ece7dd;
  padding: 2.25rem 0;
  text-align: center;
}
.cta-strip-soft h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  color: var(--charcoal);
  margin: 0 0 0.5rem 0;
  font-weight: 700;
}
.cta-strip-soft p {
  color: var(--text-muted);
  margin: 0 0 1.25rem 0;
  font-size: 0.95rem;
}

/* ─── Project Teaser (Portfolio preview) ─────────────────── */
.project-teaser-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  cursor: pointer;
  height: 320px;
  background: #2c2c2c;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition);
}
.project-teaser-card:hover {
  transform: translateY(-6px);
}
.project-teaser-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.project-teaser-card:hover .project-teaser-bg {
  transform: scale(1.05);
}
.project-teaser-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.project-teaser-info {
  color: #fff;
  width: 100%;
}
.project-teaser-info .badge-tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.6rem;
  border-radius: 1rem;
  margin-bottom: 0.5rem;
}
.project-teaser-info h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.25rem 0;
}
.project-teaser-info small {
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
}
.project-teaser-locked {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.78);
  backdrop-filter: blur(2px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.project-teaser-card:hover .project-teaser-locked {
  opacity: 1;
}
.project-teaser-locked i { font-size: 2rem; color: var(--accent); margin-bottom: 0.5rem; }

/* ─── Sticky CTA Mobile (bottom) ─────────────────────────── */
.sticky-cta-mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  background: rgba(26,26,26,0.96);
  backdrop-filter: blur(16px);
  border-top: 2px solid var(--accent);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
  padding: 0.6rem 0.75rem;
  display: none;
}
.sticky-cta-mobile .cta-row {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
}
.sticky-cta-mobile .btn {
  flex: 1;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.65rem 0.5rem;
  border-radius: 0.5rem;
}
.sticky-cta-mobile .btn-call {
  background: #fff;
  color: var(--charcoal);
  border: none;
}
.sticky-cta-mobile .btn-call:hover { background: #f0ebe0; color: var(--charcoal); }

@media (max-width: 768px) {
  .sticky-cta-mobile { display: block; }
  body { padding-bottom: 70px; }
}

/* ─── Floating phone (desktop) ───────────────────────────── */
.floating-phone {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1030;
  width: 60px;
  height: 60px;
  background: var(--accent);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 8px 24px rgba(106,176,76,0.4);
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: pulse-phone 2.5s ease-in-out infinite;
}
.floating-phone:hover {
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(106,176,76,0.6);
  animation: none;
}
@keyframes pulse-phone {
  0%, 100% { box-shadow: 0 8px 24px rgba(106,176,76,0.4), 0 0 0 0 rgba(106,176,76,0.4); }
  70%      { box-shadow: 0 8px 24px rgba(106,176,76,0.4), 0 0 0 18px rgba(106,176,76,0); }
}
@media (max-width: 768px) {
  .floating-phone { display: none; }
}

/* ─── Big stars rating bar ───────────────────────────────── */
.stars-big i {
  font-size: 1.4rem;
  margin: 0 0.05rem;
}

/* ─── Product card reinforcements (homepage) ─────────────── */
.product-card .product-suited {
  background: rgba(106,176,76,0.08);
  border-left: 3px solid var(--accent);
  padding: 0.6rem 0.85rem;
  border-radius: 0.4rem;
  font-size: 0.82rem;
  color: #4a4a4a;
  margin-bottom: 0.85rem;
}
.product-card .product-suited strong { color: var(--charcoal); }
.product-card .price-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  font-weight: 500;
}
.product-card .price-hint .from {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
}

/* ═══════════════════════════════════════════════════════════
   BLOC 3 — PREUVE EN CHIFFRES + USP + CARROUSEL AVIS
════════════════════════════════════════════════════════════ */

/* Big counters */
.big-counter-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem 1.25rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border-top: 3px solid var(--accent);
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}
.big-counter-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.big-counter-card i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.big-counter-num {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--charcoal);
  line-height: 1;
}
.big-counter-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0.5rem 0 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* USP banner */
.usp-banner {
  background: linear-gradient(135deg, var(--green-forest), var(--green-mid));
  border-radius: 1.25rem;
  padding: 2.5rem 2rem;
  text-align: center;
  color: #fff;
  box-shadow: 0 12px 40px rgba(44,95,46,0.25);
  position: relative;
  overflow: hidden;
}
.usp-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(106,176,76,0.4), transparent 70%);
  border-radius: 50%;
}
.usp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.35rem 0.95rem;
  border-radius: 2rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  backdrop-filter: blur(8px);
}
.usp-badge i { color: #ffd84d; }
.usp-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  font-style: italic;
  position: relative;
  z-index: 1;
}

/* Carrousel d'avis */
.reviews-carousel {
  padding: 0 3rem;
  position: relative;
}
.reviews-carousel .carousel-item {
  padding: 1rem 0 4rem;
  min-height: 260px;
}
.reviews-carousel .testimonial-card {
  margin: 0 auto;
  text-align: center;
}
.reviews-carousel .testi-author {
  justify-content: center;
}
.reviews-carousel .carousel-control-prev,
.reviews-carousel .carousel-control-next {
  width: 3rem;
  background: rgba(106,176,76,0.15);
  border-radius: 50%;
  height: 3rem;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 0.5rem;
  opacity: 1;
  transition: background var(--transition);
}
.reviews-carousel .carousel-control-prev:hover,
.reviews-carousel .carousel-control-next:hover {
  background: var(--accent);
}
.reviews-carousel .carousel-control-prev-icon,
.reviews-carousel .carousel-control-next-icon {
  filter: invert(35%) sepia(80%) saturate(450%) hue-rotate(70deg);
  width: 1.2rem; height: 1.2rem;
}
.reviews-carousel .carousel-control-prev:hover .carousel-control-prev-icon,
.reviews-carousel .carousel-control-next:hover .carousel-control-next-icon {
  filter: invert(100%);
}
.reviews-carousel .carousel-indicators {
  bottom: 0;
  margin-bottom: 0.5rem;
}
.reviews-carousel .carousel-indicators button {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--text-muted);
  border: 0;
  margin: 0 0.25rem;
  opacity: 0.4;
  transition: opacity var(--transition), background var(--transition);
}
.reviews-carousel .carousel-indicators button.active {
  opacity: 1;
  background: var(--accent);
}
@media (max-width: 768px) {
  .reviews-carousel { padding: 0 1rem; }
  .reviews-carousel .carousel-control-prev,
  .reviews-carousel .carousel-control-next { display: none; }
}


/* ═══════════════════════════════════════════════════════════
   WIDGETS DE CONVERSION (Bloc 2)
════════════════════════════════════════════════════════════ */

/* ─── Bannière urgence top de page ───────────────────────── */
.urgency-banner {
  position: relative;
  background: linear-gradient(90deg, #ffc107, #ff9800);
  color: #1a1a1a;
  padding: 0.6rem 0;
  font-size: 0.92rem;
  font-weight: 500;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  z-index: 1050;
}
.urgency-banner .container { gap: 0.75rem; flex-wrap: wrap; }
.urgency-banner i.bi-megaphone-fill { font-size: 1.1rem; flex-shrink: 0; }
.urgency-banner strong { font-weight: 700; }
.urgency-banner .urgency-msg { opacity: 0.85; }
.urgency-banner .urgency-code { background: rgba(0,0,0,0.12); padding: 0.15rem 0.55rem; border-radius: 0.4rem; font-size: 0.85rem; }
.urgency-banner .urgency-code code { color: inherit; font-weight: 700; }
.urgency-banner .urgency-close {
  background: transparent; border: none; color: inherit;
  font-size: 1.5rem; line-height: 1; padding: 0 0.4rem; opacity: 0.7;
}
.urgency-banner .urgency-close:hover { opacity: 1; }
@media (max-width: 768px) {
  .urgency-banner { font-size: 0.82rem; }
  .urgency-banner .container { padding: 0 0.75rem; }
}

/* ─── Sticky calc (widget flottant gauche) ───────────────── */
.sticky-calc {
  position: fixed;
  left: 1rem;
  bottom: 1.5rem;
  z-index: 1029;
}
.sticky-calc-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 2rem;
  padding: 0.7rem 1.2rem;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 6px 20px rgba(106,176,76,0.45);
  cursor: pointer;
  transition: transform var(--transition), background var(--transition);
}
.sticky-calc-toggle:hover { background: var(--accent-hover); transform: translateY(-2px); }
.sticky-calc-toggle i { font-size: 1.1rem; }

.sticky-calc-panel {
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 320px;
  background: #fff;
  border-radius: 0.85rem;
  padding: 1.1rem 1.1rem 1.25rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  border: 1px solid #ece7dd;
}
.sticky-calc-panel[hidden] { display: none; }
.sticky-calc-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 0.5rem;
}
.sticky-calc-head strong { color: var(--charcoal); font-size: 0.95rem; }
.sticky-calc-close {
  background: transparent; border: none; font-size: 1.4rem; line-height: 1;
  color: var(--text-muted); cursor: pointer; padding: 0 0.25rem;
}
.sticky-calc-close:hover { color: var(--charcoal); }
.sticky-calc-intro {
  font-size: 0.82rem; color: var(--text-muted); margin: 0 0 0.75rem 0;
}
.sticky-calc-result {
  margin-top: 0.75rem;
  padding: 0.6rem 0.85rem;
  background: rgba(106,176,76,0.1);
  border: 1px solid rgba(106,176,76,0.3);
  border-radius: 0.4rem;
  font-size: 0.88rem;
  color: var(--charcoal);
  font-weight: 500;
}
.sticky-calc-result[hidden] { display: none; }

@media (max-width: 768px) {
  .sticky-calc { left: 0.75rem; bottom: 80px; }
  .sticky-calc-panel { width: calc(100vw - 1.5rem); max-width: 320px; }
  .sticky-calc-toggle span { display: none; }
  .sticky-calc-toggle { padding: 0.7rem; border-radius: 50%; width: 50px; height: 50px; justify-content: center; }
}

/* ─── Popup exit-intent ──────────────────────────────────── */
.exit-popup {
  position: fixed;
  inset: 0;
  z-index: 1080;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: fadeIn 0.25s ease;
}
.exit-popup[hidden] { display: none; }
.exit-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,0.7);
  backdrop-filter: blur(4px);
}
.exit-modal {
  position: relative;
  background: #fff;
  border-radius: 1rem;
  padding: 2.5rem 2rem 1.75rem;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
  animation: popUp 0.35s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}
.exit-modal i.bi-envelope-paper-heart { font-size: 2.5rem; }
.exit-modal h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin: 0.75rem 0 0.5rem;
  color: var(--charcoal);
}
.exit-modal p { color: var(--text-muted); font-size: 0.95rem; }
.exit-modal form { margin-top: 1rem; }
.exit-close {
  position: absolute;
  top: 0.5rem;
  right: 0.6rem;
  background: transparent; border: none;
  font-size: 1.8rem; line-height: 1;
  color: var(--text-muted); cursor: pointer;
  padding: 0.25rem 0.6rem;
}
.exit-close:hover { color: var(--charcoal); }
.exit-no-thanks {
  margin-top: 0.75rem;
  background: transparent; border: none;
  color: var(--text-muted); font-size: 0.85rem; cursor: pointer;
  text-decoration: underline;
}
.exit-feedback {
  margin-top: 0.85rem;
  padding: 0.6rem 0.85rem;
  border-radius: 0.4rem;
  font-size: 0.88rem;
  font-weight: 500;
}
.exit-feedback[hidden] { display: none; }
.exit-feedback.success { background: rgba(106,176,76,0.15); color: #2c5f2e; border: 1px solid rgba(106,176,76,0.4); }
.exit-feedback.error   { background: rgba(220,53,69,0.1); color: #dc3545; border: 1px solid rgba(220,53,69,0.4); }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes popUp {
  from { opacity: 0; transform: scale(0.85) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* ═══════════════════════════════════════════════════════════
   PHASE 4.8 — MICRO-INTERACTIONS
════════════════════════════════════════════════════════════ */

/* Boutons : feedback presse + ripple subtil */
.btn-accent, .btn-outline-accent, .btn-light, .btn-outline-light {
  position: relative;
  overflow: hidden;
}
.btn-accent:active, .btn-outline-accent:active, .btn-light:active, .btn-outline-light:active {
  transform: translateY(1px) !important;
}

/* Loading state pour les boutons (ajout via JS : .btn-loading) */
.btn.btn-loading {
  pointer-events: none;
  opacity: 0.85;
}
.btn.btn-loading::after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 0.6rem;
  vertical-align: middle;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: btnSpin 0.7s linear infinite;
}
@keyframes btnSpin { to { transform: rotate(360deg); } }

/* Inputs : highlight subtil sur focus */
.form-control, .form-select {
  transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}

/* Cartes produits : zoom subtil du gradient au hover */
.product-card .product-img-placeholder {
  transition: transform 0.5s ease;
}
.product-card:hover .product-img-placeholder {
  transform: scale(1.04);
}

/* Liens nav : underline animé */
.navbar .nav-link {
  position: relative;
}
.navbar .nav-link:not(.lang-switch):not(.btn)::after {
  content: '';
  position: absolute;
  left: 50%; right: 50%;
  bottom: 4px;
  height: 2px;
  background: var(--accent);
  transition: left 0.25s ease, right 0.25s ease;
}
.navbar .nav-link:not(.lang-switch):not(.btn):hover::after,
.navbar .nav-link.active:not(.lang-switch):not(.btn)::after {
  left: 0.85rem; right: 0.85rem;
}

/* Confirmations animées (alertes) */
.alert.fade.show {
  animation: alertSlideIn 0.35s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}
@keyframes alertSlideIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hiérarchie visuelle : CTA principal renforcé */
.btn-accent.btn-lg, .btn.btn-accent {
  box-shadow: 0 4px 14px rgba(106,176,76,0.25);
}
.btn-accent.btn-lg:hover {
  box-shadow: 0 8px 24px rgba(106,176,76,0.4);
}

/* Smooth-reveal pour images blog */
.blog-content img {
  transition: opacity 0.4s ease;
}

/* SEO FAQ accordion */
.seo-faq .accordion-item {
  border: 1px solid #ece7dd;
  border-radius: 0.5rem !important;
  margin-bottom: 0.6rem;
  overflow: hidden;
}
.seo-faq .accordion-button {
  font-weight: 600;
  color: var(--charcoal);
  padding: 1rem 1.25rem;
}
.seo-faq .accordion-button:not(.collapsed) {
  background: rgba(106,176,76,0.08);
  color: var(--accent);
  box-shadow: none;
}
.seo-faq .accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(106,176,76,0.15);
}
.seo-faq .accordion-body {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ─── Lang switcher (FR ↔ EN) ────────────────────────────── */
.lang-switch {
  display: inline-flex !important;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 1rem;
  padding: 0.2rem 0.7rem !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em;
  transition: background var(--transition), border-color var(--transition);
}
.lang-switch:hover {
  background: rgba(106,176,76,0.15);
  border-color: var(--accent);
}
.lang-switch i { font-size: 0.85rem; }

/* ─── AOS Init (évite flash) ─────────────────────────────── */
[data-aos] { opacity: 0; }
[data-aos].aos-animate { opacity: 1; }

/* ─── Responsive tweaks ──────────────────────────────────── */
@media (max-width: 768px) {
  .section-padding { padding: 4rem 0; }
  .hero-title { font-size: 2rem; }
  .story-card-glass { padding: 1.5rem; }
  .form-card { padding: 1.5rem; }
  .trust-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .lead-magnet-strip { flex-direction: column; text-align: center; padding: 1.5rem; }
  .lead-magnet-icon { margin: 0 auto; }
  .cta-strip-soft h3 { font-size: 1.25rem; }
  .project-teaser-card { height: 260px; }
}
