/* ================================================
   BÉATITUDE SERVICE — style.css
   Palette : Rouge #E63946 | Bleu #1D3557 | Jaune #FFB703
   Compatible WAMP local + IONOS production
   Site : beatitudeservice.fr
   ================================================ */

:root {
  --red:       #E63946;
  --red-dark:  #c1121f;
  --blue:      #1D3557;
  --blue-mid:  #457B9D;
  --yellow:    #FFB703;
  --white:     #FFFFFF;
  --off-white: #F8F7F4;
  --gray-100:  #F1F0EC;
  --gray-200:  #E0DDD5;
  --gray-500:  #9CA3AF;
  --gray-600:  #6B6860;
  --gray-900:  #1A1917;

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --shadow-sm:  0 2px 8px rgba(29,53,87,0.08);
  --shadow-md:  0 8px 32px rgba(29,53,87,0.14);
  --shadow-lg:  0 20px 60px rgba(29,53,87,0.20);
  --radius:     12px;
  --radius-lg:  20px;
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--gray-900); background: var(--white); line-height: 1.65; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; }
input, select, textarea { font-family: var(--font-body); }

/* ── UTILITAIRES ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.badge { display: inline-block; padding: 4px 12px; border-radius: 100px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.badge-red    { background: #fde8e9; color: #9b1c1c; }
.badge-blue   { background: #dbeafe; color: #1e3a5f; }
.badge-yellow { background: #fef3c7; color: #78350f; }
.badge-white  { background: rgba(255,255,255,0.2); color: white; }

.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--red); color: white; border: none;
  padding: 13px 28px; border-radius: 100px; font-weight: 600; font-size: 0.95rem;
  transition: background 0.25s var(--ease), transform 0.2s, box-shadow 0.25s; cursor: pointer;
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(230,57,70,0.38); }

.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: white; color: var(--blue); border: 2px solid var(--blue);
  padding: 11px 26px; border-radius: 100px; font-weight: 600; font-size: 0.95rem;
  transition: all 0.25s var(--ease); cursor: pointer;
}
.btn-secondary:hover { background: var(--blue); color: white; }

.btn-outline-sm { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.5); padding: 7px 18px; border-radius: 8px; font-weight: 600; font-size: 0.85rem; transition: all 0.2s; cursor: pointer; }
.btn-outline-sm:hover { background: rgba(255,255,255,0.15); }

.section-tag { display: inline-block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--red); margin-bottom: 10px; }
.section-head { text-align: center; margin-bottom: 56px; }
.section-head h2 { font-family: var(--font-display); font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 700; color: var(--blue); line-height: 1.15; margin-bottom: 14px; }
.section-head h2 em { font-style: italic; color: var(--red); }
.section-head p { color: var(--gray-600); font-size: 1rem; max-width: 540px; margin: 0 auto; line-height: 1.7; }

/* ── COOKIE BANNER ── */
#cookieBanner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; background: var(--blue); color: white; padding: 14px 24px; box-shadow: 0 -4px 20px rgba(0,0,0,0.25); animation: slideUp .4s var(--ease); }
.cookie-inner { max-width: 1160px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.cookie-inner a { color: var(--yellow); text-decoration: underline; }
.cookie-btns { display: flex; gap: 8px; flex-shrink: 0; }
.btn-yellow-sm { background: var(--yellow); color: var(--blue); border: none; padding: 7px 18px; border-radius: 8px; font-weight: 700; font-size: 0.85rem; cursor: pointer; transition: opacity 0.2s; }
.btn-yellow-sm:hover { opacity: 0.9; }

/* ── HEADER ── */
#mainHeader { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 14px 0; transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), padding 0.3s var(--ease); }
#mainHeader.scrolled { background: rgba(255,255,255,0.97); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); box-shadow: var(--shadow-sm); padding: 10px 0; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--blue); }
.logo-sub { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--red); font-weight: 700; }

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { font-size: 0.88rem; font-weight: 500; color: var(--blue); position: relative; padding-bottom: 2px; transition: color 0.2s; }
.main-nav a::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 2px; background: var(--red); transform: scaleX(0); transition: transform 0.25s var(--ease); }
.main-nav a:hover, .main-nav a.active { color: var(--red); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }

.header-cta { background: var(--red); color: white; padding: 9px 20px; border-radius: 100px; font-size: 0.85rem; font-weight: 600; transition: all 0.25s var(--ease); white-space: nowrap; }
.header-cta:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(230,57,70,0.4); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--blue); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── HERO ── */
.hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; padding: 110px 80px 60px; background: linear-gradient(135deg, #f7f6f3 0%, #ffffff 50%, #eef2ff 100%); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(230,57,70,0.08) 0%, transparent 70%); top: -100px; right: -100px; pointer-events: none; }
.hero::after  { content: ''; position: absolute; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(29,53,87,0.06) 0%, transparent 70%); bottom: -80px; left: -60px; pointer-events: none; }
.hero-content { position: relative; z-index: 1; }
.hero-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }
.hero-title { font-family: var(--font-display); font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 900; line-height: 1.08; color: var(--blue); margin-bottom: 20px; }
.hero-title .line { display: block; }
.hero-title .accent { color: var(--red); font-style: italic; }
.hero-sub { font-size: 1.05rem; color: var(--gray-600); max-width: 500px; line-height: 1.75; margin-bottom: 32px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-stats { display: flex; align-items: center; gap: 28px; }
.stat-num { font-family: var(--font-display); font-size: 2.1rem; font-weight: 900; color: var(--blue); display: block; }
.stat-label { font-size: 0.75rem; color: var(--gray-500); margin-top: 2px; }
.stat-sep { width: 1px; height: 40px; background: var(--gray-200); }

.hero-visual { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.hero-img-box { width: 100%; max-width: 440px; aspect-ratio: 4/3; border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-lg); }
.floating-card { display: flex; align-items: center; gap: 12px; background: white; padding: 12px 18px; border-radius: 14px; box-shadow: var(--shadow-md); min-width: 190px; }
.floating-card:first-child { align-self: flex-start; margin-left: -20px; }
.floating-card:last-child  { align-self: flex-end;   margin-right: -20px; }
.fc-icon { font-size: 1.5rem; }
.fc-text strong { display: block; font-size: 0.82rem; color: var(--blue); font-weight: 600; }
.fc-text span   { font-size: 0.72rem; color: var(--gray-500); }
.float-anim { animation: floatY 4s ease-in-out infinite; }
.float-anim.delay { animation-delay: 2s; }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.scroll-hint { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); text-align: center; z-index: 1; }
.scroll-hint span { font-size: 0.72rem; color: var(--gray-500); display: block; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.1em; }
.scroll-arrow { width: 28px; height: 28px; border: 2px solid var(--gray-200); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto; font-size: 0.75rem; color: var(--gray-500); animation: bounce 1.8s ease-in-out infinite; }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ── BARRE DE CONFIANCE ── */
.trust-bar { background: var(--blue); padding: 22px 0; }
.trust-bar .container { display: flex; align-items: center; justify-content: space-around; gap: 20px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 12px; color: white; }
.trust-icon { font-size: 1.8rem; }
.trust-text strong { display: block; font-size: 0.85rem; font-weight: 600; }
.trust-text span   { font-size: 0.78rem; opacity: 0.65; }
.tax-pill { background: var(--yellow); color: var(--blue); padding: 4px 12px; border-radius: 8px; font-family: var(--font-display); font-size: 1.5rem; font-weight: 900; line-height: 1.1; }

/* ── SERVICES ── */
.services-section { padding: 96px 0; background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { background: white; padding: 32px; border-radius: var(--radius-lg); border: 1px solid var(--gray-200); position: relative; overflow: hidden; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--red); }
.service-card[data-accent="blue"]::before   { background: var(--blue); }
.service-card[data-accent="yellow"]::before { background: var(--yellow); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-icon { font-size: 2.4rem; margin-bottom: 14px; }
.service-card h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--blue); margin-bottom: 10px; line-height: 1.3; }
.service-card p { font-size: 0.88rem; color: var(--gray-600); margin-bottom: 18px; line-height: 1.65; }
.service-link { font-size: 0.82rem; font-weight: 600; color: var(--red); }
.service-link:hover { text-decoration: underline; }

/* ── PARCOURS ── */
.steps-section { padding: 96px 0; background: white; }
.steps-grid { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.step { flex: 1; min-width: 200px; max-width: 260px; text-align: center; padding: 32px 20px; background: var(--off-white); border-radius: var(--radius-lg); border: 1px solid var(--gray-200); }
.step-num { font-family: var(--font-display); font-size: 3rem; font-weight: 900; color: var(--gray-200); line-height: 1; margin-bottom: 8px; }
.step-icon { font-size: 2rem; margin-bottom: 12px; }
.step h3 { font-family: var(--font-display); font-size: 1rem; color: var(--blue); margin-bottom: 8px; }
.step p  { font-size: 0.84rem; color: var(--gray-600); line-height: 1.6; }
.step-arrow { font-size: 1.5rem; color: var(--gray-200); flex-shrink: 0; }

/* ── AVIS ── */
.avis-section { padding: 96px 0; background: var(--off-white); }
.avis-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 36px; }
.avis-card { background: white; padding: 28px; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); }
.stars { color: var(--yellow); font-size: 1.05rem; margin-bottom: 12px; letter-spacing: 2px; }
.avis-card blockquote { font-style: italic; color: var(--gray-600); font-size: 0.9rem; line-height: 1.7; margin-bottom: 18px; }
.avis-author { display: flex; align-items: center; gap: 10px; }
.avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--blue); color: white; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; flex-shrink: 0; }
.avis-author strong { display: block; font-size: 0.85rem; color: var(--blue); }
.avis-author span   { font-size: 0.75rem; color: var(--gray-500); }
.avis-cta { text-align: center; }
.btn-ghost { background: transparent; color: var(--blue); border: 2px solid var(--blue); padding: 11px 26px; border-radius: 100px; font-weight: 600; font-size: 0.9rem; cursor: pointer; transition: all 0.25s var(--ease); }
.btn-ghost:hover { background: var(--blue); color: white; }

/* ── FAQ ── */
.faq-section { padding: 96px 0; background: white; }
.faq-list { max-width: 740px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-btn { width: 100%; background: none; border: none; text-align: left; padding: 20px 0; font-size: 0.95rem; font-weight: 600; color: var(--blue); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; transition: color 0.2s; }
.faq-btn:hover { color: var(--red); }
.faq-icon { font-size: 1.3rem; transition: transform 0.3s var(--ease); flex-shrink: 0; color: var(--red); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease), padding 0.3s; font-size: 0.9rem; color: var(--gray-600); line-height: 1.75; }
.faq-item.open .faq-body { max-height: 300px; padding-bottom: 20px; }

/* ── CONTACT ── */
.contact-section { padding: 96px 0; background: var(--off-white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-info-box h2 { font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 700; color: var(--blue); margin-bottom: 8px; }
.contact-info-box h2 em { color: var(--red); font-style: italic; }
.contact-items { margin: 28px 0; display: flex; flex-direction: column; gap: 18px; }
.ci { display: flex; gap: 14px; align-items: flex-start; }
.ci-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.ci-text strong { display: block; font-size: 0.85rem; font-weight: 600; color: var(--blue); margin-bottom: 2px; }
.ci-text p, .ci-text a { font-size: 0.9rem; color: var(--gray-600); line-height: 1.5; }
.ci-text a:hover { color: var(--red); }
.legal-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 20px; }
.chip { background: var(--gray-100); padding: 4px 10px; border-radius: 6px; font-size: 0.72rem; color: var(--gray-600); font-family: 'Courier New', monospace; }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }

/* ── PAGE INTÉRIEURE (blog, contact form…) ── */
.page-hero { padding: 130px 0 60px; background: linear-gradient(135deg, #f7f6f3 0%, #eef2ff 100%); text-align: center; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--blue); margin-bottom: 14px; }
.page-hero h1 em { color: var(--red); font-style: italic; }
.page-hero p { color: var(--gray-600); font-size: 1rem; max-width: 560px; margin: 0 auto; }

/* ── FORMULAIRES ── */
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-weight: 600; font-size: 0.82rem; color: var(--blue); margin-bottom: 5px; }
.form-group input,
.form-group select,
.form-group textarea { width: 100%; padding: 10px 13px; border: 1.5px solid var(--gray-200); border-radius: var(--radius); font-size: 0.92rem; color: var(--gray-900); background: white; transition: border-color 0.2s, box-shadow 0.2s; outline: none; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(29,53,87,0.08); }
.form-group textarea { resize: vertical; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B6860' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
.form-btn { width: 100%; margin-top: 4px; }
.form-box { background: white; padding: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); max-width: 560px; }
.star-row { display: flex; gap: 6px; cursor: pointer; }
.star-row span { font-size: 2rem; color: var(--gray-200); transition: color 0.15s; user-select: none; }
.star-row span.lit { color: var(--yellow); }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; padding: 60px 0; }
.blog-card { background: white; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); overflow: hidden; transition: transform 0.3s var(--ease), box-shadow 0.3s; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-card-body { padding: 24px; }
.blog-cat { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--red); margin-bottom: 8px; }
.blog-card h2 { font-family: var(--font-display); font-size: 1.05rem; color: var(--blue); margin-bottom: 10px; line-height: 1.4; }
.blog-card p  { font-size: 0.86rem; color: var(--gray-600); line-height: 1.65; margin-bottom: 16px; }
.blog-card a.read-more { font-size: 0.82rem; font-weight: 600; color: var(--red); }
.blog-date { font-size: 0.72rem; color: var(--gray-500); margin-bottom: 6px; }

/* ── RECRUTEMENT ── */
.recrutement-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; padding: 60px 0; align-items: start; }
.job-card { background: var(--off-white); border-radius: var(--radius-lg); padding: 28px; border: 1px solid var(--gray-200); margin-bottom: 18px; }
.job-card h3 { font-family: var(--font-display); color: var(--blue); margin-bottom: 8px; }
.job-card p  { font-size: 0.88rem; color: var(--gray-600); }

/* ── MODAL AVIS ── */
.modal-overlay { display: none; position: fixed; inset: 0; z-index: 5000; background: rgba(0,0,0,0.5); backdrop-filter: blur(4px); align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.open { display: flex; }
.modal-box { background: white; border-radius: var(--radius-lg); padding: 40px; max-width: 460px; width: 100%; max-height: 90vh; overflow-y: auto; box-shadow: var(--shadow-lg); position: relative; animation: scaleIn 0.3s var(--ease); }
@keyframes scaleIn { from { opacity:0; transform:scale(0.95); } to { opacity:1; transform:scale(1); } }
.modal-close { position: absolute; top: 14px; right: 16px; background: none; border: none; font-size: 1.2rem; color: var(--gray-500); cursor: pointer; }
.modal-box h3 { font-family: var(--font-display); font-size: 1.4rem; color: var(--blue); margin-bottom: 8px; }
.modal-box p  { font-size: 0.88rem; color: var(--gray-600); margin-bottom: 22px; }

/* ── CHATBOT ── */
#chatbot { position: fixed; bottom: 24px; right: 24px; z-index: 3000; }
#chatBtn { width: 58px; height: 58px; border-radius: 50%; background: var(--red); border: none; box-shadow: 0 4px 20px rgba(230,57,70,0.5); font-size: 1.5rem; color: white; cursor: pointer; position: relative; transition: transform 0.25s, box-shadow 0.25s; }
#chatBtn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(230,57,70,0.6); }
.chat-notif { position: absolute; top: -3px; right: -3px; width: 18px; height: 18px; background: var(--yellow); color: var(--blue); border-radius: 50%; border: 2px solid white; font-size: 0.62rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
#chatWindow { width: 340px; background: white; border-radius: 18px; box-shadow: var(--shadow-lg); margin-bottom: 12px; overflow: hidden; display: none; animation: slideUp 0.3s var(--ease); }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.chat-head { background: var(--blue); color: white; padding: 14px 16px; display: flex; align-items: center; gap: 10px; }
.chat-head-avatar { font-size: 1.4rem; }
.chat-head-info strong { display: block; font-size: 0.88rem; }
.chat-online { font-size: 0.7rem; color: #4ade80; }
.chat-close-btn { margin-left: auto; background: none; border: none; color: rgba(255,255,255,0.7); font-size: 1rem; cursor: pointer; padding: 0 4px; }
.chat-msgs { padding: 14px; min-height: 180px; max-height: 280px; overflow-y: auto; display: flex; flex-direction: column; gap: 10px; }
.chat-msg { padding: 9px 13px; border-radius: 12px; font-size: 0.84rem; max-width: 86%; line-height: 1.5; }
.chat-msg.bot  { background: var(--off-white); color: var(--gray-900); align-self: flex-start; border-bottom-left-radius: 4px; }
.chat-msg.user { background: var(--blue); color: white; align-self: flex-end; border-bottom-right-radius: 4px; }
.chat-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chat-chip { background: white; border: 1.5px solid var(--gray-200); color: var(--blue); padding: 5px 10px; border-radius: 100px; font-size: 0.74rem; cursor: pointer; transition: all 0.2s; }
.chat-chip:hover { border-color: var(--blue); background: var(--off-white); }
.chat-input-row { display: flex; border-top: 1px solid var(--gray-200); }
.chat-input-row input { flex: 1; border: none; padding: 12px 14px; font-size: 0.84rem; outline: none; }
.chat-input-row button { background: var(--red); color: white; border: none; padding: 12px 16px; font-size: 1.1rem; cursor: pointer; transition: background 0.2s; }
.chat-input-row button:hover { background: var(--red-dark); }

/* ── FOOTER ── */
footer { background: var(--blue); color: white; }
.footer-main { padding: 60px 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand p { font-size: 0.84rem; opacity: 0.65; margin: 14px 0; line-height: 1.65; }
.footer-col h4 { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 14px; font-weight: 700; }
.footer-col a { display: block; font-size: 0.84rem; color: rgba(255,255,255,0.75); padding: 3px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--yellow); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 18px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.footer-bottom span { font-size: 0.76rem; color: rgba(255,255,255,0.45); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── NOTIFICATIONS ── */
.notif { position: fixed; top: 90px; right: 24px; z-index: 8000; background: var(--blue); color: white; padding: 14px 20px; border-radius: 12px; box-shadow: var(--shadow-md); font-size: 0.88rem; display: none; animation: slideUp 0.3s var(--ease); }
.notif.show { display: block; }
.notif.success { background: #15803d; }
.notif.error   { background: var(--red); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding: 100px 32px 60px; gap: 40px; }
  .hero-content { display: flex; flex-direction: column; align-items: center; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .recrutement-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .main-nav { display: none; position: fixed; top: 64px; left: 0; right: 0; flex-direction: column; gap: 0; background: white; box-shadow: var(--shadow-md); z-index: 999; padding: 12px 0; }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 24px; font-size: 1rem; border-bottom: 1px solid var(--gray-100); }
  .main-nav a::after { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
  .avis-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .hero-stats { justify-content: center; }
  .trust-bar .container { flex-direction: column; gap: 14px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  #chatWindow { width: calc(100vw - 48px); }
}
@media (max-width: 480px) {
  .hero { padding: 90px 20px 50px; }
  .container { padding: 0 16px; }
  .modal-box { padding: 28px 20px; }
  .form-box { padding: 28px 20px; }
}
