/* ===========================
   TA MAISON CASH — style.css
   =========================== */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --white:         #FFFFFF;
    --off-white:     #F7F6F3;
    --charcoal:      #111111;
    --dark:          #1A1A1A;
    --gray:          #6B6B6B;
    --muted:         #9CA3AF;
    --border:        #E8E7E4;
    --yellow:        #FFD700;
    --yellow-h:      #E6C200;
    --yellow-dim:    rgba(255, 215, 0, 0.12);
    --yellow-border: rgba(255, 215, 0, 0.35);
    --font-display:  "Bebas Neue", sans-serif;
    --font-body:     "Inter", sans-serif;
    --max-w:         1240px;
    --gutter:        clamp(24px, 4vw, 60px);
    --ease:          cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-bounce:   cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body { background: var(--white); color: var(--charcoal); font-family: var(--font-body); line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: var(--font-body); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }

h1 { font-size: clamp(46px, 6vw, 96px); font-weight: 800; line-height: 1.0; letter-spacing: -0.035em; color: var(--white); }
h1 em { font-style: italic; color: var(--yellow); font-weight: 800; }
h2 { font-size: clamp(32px, 4vw, 56px); font-weight: 700; line-height: 1.08; letter-spacing: -0.025em; color: var(--charcoal); }
h3 { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 8px; color: var(--charcoal); }
h4 { font-size: 15px; font-weight: 600; letter-spacing: -0.005em; margin-bottom: 6px; color: var(--charcoal); }
.section-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--yellow-h); margin-bottom: 16px; }
.section-tag::before { content: ""; display: block; width: 18px; height: 2px; background: var(--yellow); flex-shrink: 0; }
.section-header { margin-bottom: 60px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-tag { justify-content: center; }

/* Buttons */
.btn-primary { display: inline-flex; align-items: center; gap: 10px; background: var(--yellow); color: #050505; padding: 14px 26px; border-radius: 6px; font-size: 13px; font-weight: 700; letter-spacing: 0.02em; transition: background 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s; }
.btn-primary:hover { background: var(--yellow-h); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,215,0,0.3); }
.btn-primary .arrow { transition: transform 0.2s var(--ease); }
.btn-primary:hover .arrow { transform: translateX(5px); }
.btn-large { padding: 17px 34px; font-size: 15px; }
.btn-ghost-light { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: rgba(255,255,255,0.75); padding: 14px 24px; border-radius: 6px; font-size: 14px; font-weight: 600; border: 1px solid rgba(255,255,255,0.2); transition: border-color 0.2s, color 0.2s; }
.btn-ghost-light:hover { border-color: rgba(255,255,255,0.45); color: var(--white); }

/* ===========================
   KEYFRAME ANIMATIONS
   =========================== */
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-10px); }
}
@keyframes ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@keyframes lineGrow {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
}
@keyframes badgePop {
    0%   { opacity: 0; transform: scale(0.4); }
    70%  { transform: scale(1.15); }
    100% { opacity: 1; transform: scale(1); }
}
@keyframes fabIn {
    from { opacity: 0; transform: translateY(16px) scale(0.9); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.5); }
    50%       { box-shadow: 0 0 0 10px rgba(255, 215, 0, 0); }
}

/* Reveal */
.reveal-item { opacity: 0; transform: translateY(28px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.reveal-item.visible { opacity: 1; transform: translateY(0); }

/* ===========================
   NAVIGATION
   =========================== */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 22px 0; background: rgba(0,0,0,0.55); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); transition: padding 0.4s var(--ease), background 0.4s, border-color 0.4s, box-shadow 0.4s; border-bottom: 1px solid rgba(255,255,255,0.06); }
.nav.scrolled { background: rgba(255,255,255,0.97); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); padding: 14px 0; border-bottom-color: var(--border); box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.nav-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); display: flex; align-items: center; gap: 36px; }
.nav-logo .logo-yellow { height: 26px; width: auto; display: block; }
.nav-logo .logo-dark   { height: 26px; width: auto; display: none; }
.nav.scrolled .nav-logo .logo-yellow { display: none; }
.nav.scrolled .nav-logo .logo-dark   { display: block; }
.nav-links { display: flex; list-style: none; gap: 28px; margin-left: auto; }
.nav-links a { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.8); transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav.scrolled .nav-links a { color: var(--gray); }
.nav.scrolled .nav-links a:hover { color: var(--charcoal); }
.nav-cta { font-size: 12px; font-weight: 700; color: #050505; background: var(--yellow); padding: 9px 20px; border-radius: 4px; white-space: nowrap; transition: background 0.2s, transform 0.15s; }
.nav-cta:hover { background: var(--yellow-h); transform: translateY(-1px); }
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; padding: 6px; margin-left: auto; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--white); transition: background 0.35s; }
.nav.scrolled .nav-toggle span { background: var(--charcoal); }

/* ===========================
   HERO
   =========================== */
.hero { display: grid; grid-template-columns: 1.15fr 0.85fr; min-height: 100vh; }

.hero-left { position: relative; overflow: hidden; display: flex; align-items: center; padding: 130px var(--gutter) 80px; background: var(--charcoal); }
.hero-photo { position: absolute; inset: 0; width: 100%; height: 110%; object-fit: cover; object-position: center; will-change: transform; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(10,10,10,0.82) 0%, rgba(10,10,10,0.45) 100%); }
.hero-bg-word { position: absolute; bottom: -30px; left: -16px; font-family: var(--font-display); font-size: clamp(110px, 20vw, 310px); color: transparent; -webkit-text-stroke: 1px rgba(255,215,0,0.09); white-space: nowrap; pointer-events: none; user-select: none; z-index: 1; will-change: transform; }

.hero-content { position: relative; z-index: 2; max-width: 580px; }
.hero-eyebrow { display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.42); margin-bottom: 28px;
    animation: fadeSlideUp 0.7s var(--ease) 0.15s both; }
.hero-content h1 { margin-bottom: 22px;
    animation: fadeSlideUp 0.85s var(--ease) 0.30s both; }
.hero-sub { font-size: 17px; color: rgba(255,255,255,0.62); line-height: 1.75; max-width: 440px; margin-bottom: 40px;
    animation: fadeSlideUp 0.7s var(--ease) 0.50s both; }
.hero-chips { display: flex; gap: 10px; flex-wrap: wrap;
    animation: fadeSlideUp 0.7s var(--ease) 0.65s both; }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; background: rgba(255,215,0,0.10); border: 1px solid rgba(255,215,0,0.28); border-radius: 40px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.88); transition: background 0.2s, border-color 0.2s; }
.chip:hover { background: rgba(255,215,0,0.17); border-color: rgba(255,215,0,0.5); }
.chip-check { color: var(--yellow); font-weight: 900; font-size: 11px; }

.hero-scroll-hint { position: absolute; bottom: 32px; left: var(--gutter); z-index: 3; display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,0.3); font-size: 9px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
    animation: fadeIn 1s var(--ease) 1.2s both; }
.scroll-line { width: 44px; height: 1px; background: rgba(255,255,255,0.2); }

/* Hero right / form */
.hero-right { background: var(--off-white); display: flex; align-items: center; justify-content: center; padding: 100px 52px 80px; }
.hero-form { width: 100%; max-width: 400px; background: var(--white); border-radius: 18px; padding: 40px 36px; box-shadow: 0 12px 48px rgba(0,0,0,0.12); border: 1px solid var(--border);
    animation: fadeSlideUp 0.85s var(--ease) 0.40s both, float 7s ease-in-out 1.3s infinite; }
.form-header { margin-bottom: 28px; }
.form-tag { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--yellow-h); margin-bottom: 10px; }
.form-title { font-size: 23px; font-weight: 700; letter-spacing: -0.02em; color: var(--charcoal); margin-bottom: 8px; }
.form-sub { font-size: 13px; color: var(--gray); line-height: 1.65; }
.form-fields { display: flex; flex-direction: column; gap: 14px; margin-bottom: 18px; }
.field-group { display: flex; flex-direction: column; gap: 6px; }
.field-group label { font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.field-group input { background: var(--off-white); border: 1.5px solid var(--border); border-radius: 8px; padding: 13px 14px; font-size: 14px; color: var(--charcoal); font-family: var(--font-body); transition: border-color 0.2s, box-shadow 0.2s; outline: none; width: 100%; }
.field-group input::placeholder { color: #C8C8C4; }
.field-group input:focus { border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(255,215,0,0.12); }
.btn-submit { width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px; background: var(--yellow); color: #050505; padding: 15px 24px; border-radius: 8px; font-size: 14px; font-weight: 700; border: none; transition: background 0.2s, transform 0.15s, box-shadow 0.2s; margin-bottom: 16px; }
.btn-submit:hover { background: var(--yellow-h); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,215,0,0.3); }
.btn-submit .arrow { transition: transform 0.2s var(--ease); }
.btn-submit:hover .arrow { transform: translateX(5px); }
.btn-submit:disabled { opacity: 0.75; cursor: default; transform: none; box-shadow: none; }
.form-trust { display: flex; align-items: center; gap: 8px; justify-content: center; font-size: 12px; color: var(--muted); }
.trust-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--yellow); flex-shrink: 0; }

/* ===========================
   TICKER STRIP
   =========================== */
.ticker { overflow: hidden; background: var(--yellow); padding: 13px 0; border-top: 2px solid var(--yellow-h); }
.ticker-track { display: flex; gap: 48px; white-space: nowrap; animation: ticker 22s linear infinite; }
.ticker-track span { font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--charcoal); }
.ticker-track .sep { color: rgba(0,0,0,0.3); font-size: 14px; }

/* ===========================
   HOW IT WORKS
   =========================== */
.steps { padding: 110px 0; background: var(--white); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 52px; position: relative; }
.steps-grid::before { content: ""; position: absolute; top: 23px; left: 88px; right: 88px; height: 1px; background: var(--border); transform-origin: left center; transform: scaleX(0); transition: transform 1.1s var(--ease) 0.3s; z-index: 0; }
.steps-grid.line-animate::before { transform: scaleX(1); }
.step { }
.step-badge { width: 48px; height: 48px; border-radius: 50%; background: var(--yellow); color: var(--charcoal); display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 800; margin-bottom: 28px; position: relative; z-index: 1; flex-shrink: 0; opacity: 0; transform: scale(0.5); transition: opacity 0.4s var(--ease-bounce), transform 0.4s var(--ease-bounce); }
.reveal-item.visible .step-badge { opacity: 1; transform: scale(1); }
.step h3 { font-size: 16px; margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--gray); line-height: 1.75; }

/* ===========================
   SITUATIONS
   =========================== */
.situations { padding: 110px 0; background: var(--off-white); }
.situations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.situation-card { background: var(--white); border-radius: 14px; padding: 32px 28px; border: 1.5px solid var(--border); transition: border-color 0.25s, transform 0.25s var(--ease), box-shadow 0.25s; cursor: default; }
.situation-card:hover { border-color: var(--yellow); transform: translateY(-5px); box-shadow: 0 12px 36px rgba(0,0,0,0.08); }
.situation-last { grid-column: 2 / 3; }
.situation-icon { display: block; font-size: 22px; color: var(--yellow-h); margin-bottom: 16px; transition: transform 0.3s var(--ease-bounce); }
.situation-card:hover .situation-icon { transform: scale(1.2); }
.situation-card h3 { font-size: 16px; }
.situation-card p { font-size: 13px; color: var(--gray); line-height: 1.8; }

/* ===========================
   PHOTO BREAK — full-bleed image
   =========================== */
.photo-break { position: relative; height: 420px; overflow: hidden; }
.photo-break-img { position: absolute; inset: 0; width: 100%; height: 130%; object-fit: cover; object-position: center; will-change: transform; }
.photo-break-overlay { position: absolute; inset: 0; background: rgba(10,10,10,0.62); }
.photo-break-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 0 var(--gutter); gap: 28px; }
.photo-break-quote { font-size: clamp(18px, 2.8vw, 28px); font-weight: 600; color: var(--white); line-height: 1.55; max-width: 800px; letter-spacing: -0.015em; }
.photo-break-quote::before { content: "\201C"; color: var(--yellow); font-size: 1.4em; line-height: 0; vertical-align: -0.3em; margin-right: 4px; }
.photo-break-quote::after  { content: "\201D"; color: var(--yellow); font-size: 1.4em; line-height: 0; vertical-align: -0.3em; margin-left: 4px; }

/* ===========================
   WHY US
   =========================== */
.avantages { padding: 110px 0; background: var(--white); }
.avantages-inner { display: grid; grid-template-columns: 1fr 1.15fr; gap: 80px; align-items: start; }
.avantages-left { position: sticky; top: 100px; }
.avantages-left h2 { margin-bottom: 16px; }
.avantages-sub { font-size: 15px; color: var(--gray); line-height: 1.8; margin-bottom: 36px; }
.avantage-item { display: flex; gap: 20px; align-items: flex-start; padding: 26px 0; border-bottom: 1px solid var(--border); transition: background 0.2s; }
.avantage-item:first-child { border-top: 1px solid var(--border); }
.av-check { width: 36px; height: 36px; border-radius: 50%; background: var(--yellow); color: var(--charcoal); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 900; flex-shrink: 0; margin-top: 2px; transition: transform 0.25s var(--ease-bounce); }
.avantage-item:hover .av-check { transform: scale(1.15); }
.av-body h4 { color: var(--charcoal); }
.av-body p { font-size: 13px; color: var(--gray); line-height: 1.75; }

/* ===========================
   COMPARISON
   =========================== */
.comparison { padding: 110px 0; background: var(--off-white); }
.comparison-table-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 16px; box-shadow: 0 4px 28px rgba(0,0,0,0.07); border: 1.5px solid var(--border); }
.comparison-table { min-width: 560px; background: var(--white); }
.comparison-header { display: grid; grid-template-columns: 1fr 1fr 1fr; border-bottom: 1.5px solid var(--border); }
.comp-col { padding: 22px 26px; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.col-tmc { background: var(--yellow); border-top: 4px solid var(--yellow-h); padding-top: 18px; }
.tmc-badge { font-size: 12px; font-weight: 800; color: var(--charcoal); }
.comparison-row { display: grid; grid-template-columns: 1fr 1fr 1fr; border-top: 1px solid var(--border); transition: background 0.15s; }
.comparison-row:hover { background: rgba(0,0,0,0.012); }
.comp-label, .comp-tmc, .comp-trad { padding: 18px 26px; font-size: 13px; display: flex; align-items: center; gap: 9px; }
.comp-label { color: var(--gray); font-weight: 500; }
.comp-tmc { background: rgba(255,215,0,0.10); border-left: 1px solid rgba(255,215,0,0.3); border-right: 1px solid rgba(255,215,0,0.3); color: var(--charcoal); font-weight: 600; }
.comp-trad { color: #BBBBBB; }
.check { color: var(--charcoal); font-size: 13px; font-weight: 900; flex-shrink: 0; }
.cross { color: #D0D0D0; font-size: 13px; flex-shrink: 0; }

/* ===========================
   TESTIMONIALS
   =========================== */
.temoignages { padding: 110px 0; background: var(--white); }
.temoignages-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.temoignage-card { background: var(--off-white); border: 1.5px solid var(--border); border-radius: 16px; padding: 36px 30px; transition: border-color 0.25s, transform 0.3s var(--ease), box-shadow 0.3s; }
.temoignage-card:hover { border-color: var(--yellow); transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.07); }
.stars { color: var(--yellow); font-size: 14px; letter-spacing: 3px; margin-bottom: 16px; }
.temoignage-text { font-size: 14px; color: var(--gray); line-height: 1.85; margin-bottom: 24px; font-style: italic; }
.temoignage-author { display: flex; align-items: center; gap: 13px; }
.author-initials { width: 42px; height: 42px; border-radius: 50%; background: var(--yellow-dim); border: 2px solid var(--yellow-border); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; color: var(--charcoal); flex-shrink: 0; }
.temoignage-author strong { display: block; font-size: 14px; font-weight: 700; color: var(--charcoal); }
.temoignage-author span { font-size: 12px; color: var(--muted); }

/* ===========================
   PARTNERS
   =========================== */
.partenaires { padding: 60px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--off-white); }
.partenaires-label { text-align: center; font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 32px; }
.partenaires-row { display: flex; align-items: center; justify-content: center; gap: 52px; flex-wrap: wrap; }
.partenaire-name { font-size: 13px; font-weight: 700; letter-spacing: 0.07em; color: #C8C8C4; text-transform: uppercase; transition: color 0.2s; }
.partenaire-name:hover { color: var(--gray); }

/* ===========================
   FAQ
   =========================== */
.faq { padding: 110px 0; background: var(--off-white); }
.faq-list { border: 1.5px solid var(--border); border-radius: 16px; overflow: hidden; background: var(--white); }
.faq-item { border-top: 1px solid var(--border); }
.faq-item:first-child { border-top: none; }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 22px 28px; background: var(--white); color: var(--charcoal); border: none; font-size: 15px; font-weight: 600; text-align: left; letter-spacing: -0.01em; transition: background 0.2s; }
.faq-question:hover { background: var(--off-white); }
.faq-question[aria-expanded="true"] { background: var(--off-white); }
.faq-icon { font-size: 22px; color: var(--yellow-h); flex-shrink: 0; transition: transform 0.3s var(--ease); line-height: 1; }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer { overflow: hidden; max-height: 0; background: var(--off-white); transition: max-height 0.42s var(--ease); }
.faq-answer.open { max-height: 300px; }
.faq-answer p { padding: 4px 28px 26px; font-size: 14px; color: var(--gray); line-height: 1.85; }

/* ===========================
   STATS SECTION — dark, countup
   =========================== */
.stats-section { padding: 90px 0; background: var(--charcoal); }
.stats-grid { display: flex; align-items: center; justify-content: space-around; gap: 24px; }
.stat-item { display: flex; flex-direction: column; align-items: center; text-align: center; flex: 1; }
.stat-val { display: flex; align-items: baseline; gap: 2px; }
.stat-count, .stat-prefix { font-family: var(--font-display); font-size: clamp(52px, 7vw, 88px); color: var(--yellow); line-height: 1; }
.stat-suffix { font-family: var(--font-display); font-size: clamp(36px, 5vw, 60px); color: var(--yellow); line-height: 1; }
.stat-lbl { font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-top: 10px; }
.stat-div { width: 1px; height: 64px; background: rgba(255,255,255,0.10); flex-shrink: 0; }

/* ===========================
   FINAL CTA
   =========================== */
.cta-final { padding: 110px 0; background: var(--dark); overflow: hidden; }
.cta-final h2 { color: var(--white); }
.cta-final-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center; }
.cta-text-block h2 { margin-bottom: 16px; }
.cta-text-block p { font-size: 16px; color: rgba(255,255,255,0.55); line-height: 1.8; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.cta-image-block { position: relative; border-radius: 16px; overflow: hidden; }
.cta-img { width: 100%; height: 380px; object-fit: cover; object-position: center; border-radius: 16px; filter: brightness(0.85); transition: filter 0.4s; }
.cta-image-block:hover .cta-img { filter: brightness(0.95); }
.cta-img-badge { position: absolute; bottom: 20px; left: 20px; background: var(--yellow); color: var(--charcoal); border-radius: 10px; padding: 14px 20px; display: flex; flex-direction: column; gap: 2px; box-shadow: 0 6px 24px rgba(0,0,0,0.25); animation: pulse 2.5s ease-in-out infinite; }
.badge-num { font-family: var(--font-display); font-size: 36px; line-height: 1; color: var(--charcoal); }
.badge-lbl { font-size: 11px; font-weight: 700; letter-spacing: 0.04em; color: rgba(0,0,0,0.6); text-transform: uppercase; }

/* ===========================
   FOOTER
   =========================== */
.footer { padding: 80px 0 40px; background: var(--charcoal); border-top: 1px solid rgba(255,255,255,0.06); }
.footer h4 { color: var(--white); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1.2fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.09); }
.footer-brand img { height: 24px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.85; max-width: 290px; margin-bottom: 18px; }
.footer-phone { font-size: 18px; font-weight: 700; color: var(--yellow); transition: opacity 0.2s; }
.footer-phone:hover { opacity: 0.75; }
.footer-nav h4, .footer-contact-info h4 { font-size: 10px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px; }
.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-nav a { font-size: 14px; color: rgba(255,255,255,0.42); transition: color 0.2s; }
.footer-nav a:hover { color: var(--white); }
.footer-contact-info { display: flex; flex-direction: column; gap: 6px; }
.footer-contact-info p { font-size: 14px; color: rgba(255,255,255,0.42); line-height: 1.6; margin-bottom: 4px; }
.footer-contact-info a { font-size: 14px; color: var(--yellow); transition: opacity 0.2s; }
.footer-contact-info a:hover { opacity: 0.7; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 30px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.25); }

/* ===========================
   FAB — floating call button
   =========================== */
.fab { position: fixed; bottom: 28px; right: 28px; z-index: 90; display: flex; align-items: center; gap: 10px; background: var(--yellow); color: var(--charcoal); padding: 14px 22px; border-radius: 50px; font-size: 14px; font-weight: 700; box-shadow: 0 6px 24px rgba(255,215,0,0.45); transition: transform 0.25s var(--ease-bounce), box-shadow 0.25s; animation: fabIn 0.5s var(--ease) 1.8s both; }
.fab:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 12px 32px rgba(255,215,0,0.5); }
.fab svg { flex-shrink: 0; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-left { min-height: 65vh; padding: 140px var(--gutter) 64px; }
    .hero-right { padding: 60px var(--gutter); justify-content: flex-start; }
    .hero-form { max-width: 480px; animation: fadeSlideUp 0.85s var(--ease) 0.4s both; /* remove float on mobile */ }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid::before { display: none; }
    .avantages-inner { grid-template-columns: 1fr; gap: 52px; }
    .avantages-left { position: static; }
    .cta-final-inner { grid-template-columns: 1fr; gap: 52px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    :root { --gutter: 24px; }
    .nav-links, .nav-cta { display: none; }
    .nav-toggle { display: flex; }
    .nav-links.open { display: flex !important; flex-direction: column; position: fixed; top: 54px; left: 0; right: 0; background: rgba(255,255,255,0.98); backdrop-filter: blur(16px); padding: 28px var(--gutter); gap: 20px; border-bottom: 1px solid var(--border); z-index: 99; }
    .nav-links.open a { font-size: 16px; color: var(--charcoal); }
    .hero-left { min-height: 55vh; }
    .steps-grid { grid-template-columns: 1fr; gap: 28px; }
    .situations-grid { grid-template-columns: 1fr; }
    .situation-last { grid-column: auto; }
    .temoignages-grid { grid-template-columns: 1fr; }
    .stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
    .stat-div { display: none; }
    .photo-break { height: 320px; }
    .footer-top { grid-template-columns: 1fr; gap: 36px; }
    .footer-brand { grid-column: auto; }
    .cta-actions { flex-direction: column; align-items: flex-start; }
    .fab span { display: none; }
    .fab { padding: 14px; border-radius: 50%; }
}

@media (max-width: 480px) {
    .hero-form { padding: 28px 20px; }
    .chip { font-size: 11px; padding: 7px 13px; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-item { align-items: flex-start; text-align: left; }
}
