/* ========================================
   MAI EXPERTISES - LP GENERALISTE V3
   Style inspire Plombier Direct / service local
   ======================================== */

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

:root {
  --primary: #D9EE6F;
  --primary-hover: #c8dd5e;
  --primary-dark: #a8b94d;
  --dark: #0A0A0A;
  --dark-light: #1a1a1a;
  --text: #0A0A0A;
  --text-light: #868783;
  --bg: #FFFFFF;
  --bg-alt: #F7F7F5;
  --border: #E5E5E3;
  --white: #FFFFFF;
  --success: #4CAF50;
  --error: #E53935;
  --red-light: #FEF2F2;
  --green-light: #F0FDF4;
  --font-h: 'Playfair Display SC', serif;
  --font-b: 'Montserrat', sans-serif;
  --font-c: 'Inter', sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --max-w: 1200px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--font-b); font-weight: 300; font-size: 1rem; line-height: 1.7; color: var(--text); background: var(--bg); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
h1, h2, h3 { font-family: var(--font-h); line-height: 1.2; color: var(--text); }
h1 { font-size: 2rem; font-weight: 700; }
h2 { font-size: 1.5rem; font-weight: 700; }
h3 { font-size: 1.125rem; font-weight: 600; }
p { color: var(--text-light); }

.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.overtitle { font-family: var(--font-c); font-size: 0.65rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--primary-dark); margin-bottom: 0.5rem; }

/* --- BUTTONS --- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--font-c); font-weight: 500; font-size: 0.875rem; border: none; border-radius: 50px; cursor: pointer; transition: 0.3s ease; text-decoration: none; white-space: nowrap; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn--primary { background: var(--primary); color: var(--dark); height: 52px; padding: 0 2rem; }
.btn--primary:hover { background: var(--primary-hover); transform: translateY(-1px); }
.btn--dark { background: var(--dark); color: var(--white); height: 52px; padding: 0 2rem; }
.btn--dark:hover { background: var(--dark-light); }
.btn--outline { background: transparent; color: var(--dark); border: 2px solid var(--dark); height: 48px; padding: 0 1.5rem; }
.btn--outline:hover { background: var(--dark); color: var(--white); }
.btn--pill { background: var(--white); color: var(--dark); height: 40px; padding: 0 1.5rem; border-radius: 50px; font-size: 0.75rem; }
.btn--pill:hover { background: var(--primary); }
.btn--full { width: 100%; }

/* --- BANDEAU --- */
.bandeau { background: var(--dark); color: var(--white); padding: 10px 0; font-family: var(--font-c); font-size: 0.75rem; position: fixed; top: 0; left: 0; right: 0; z-index: 101; }
.bandeau-spacer { visibility: hidden; }
.bandeau .container { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.bandeau__left { display: none; align-items: center; gap: 1.5rem; }
.bandeau__sep { width: 1px; height: 24px; background: rgba(255,255,255,0.2); }
.bandeau__text { color: var(--white); }
.bandeau__right { display: flex; align-items: center; gap: 1rem; }
.bandeau__google-review { display: none; align-items: center; gap: 8px; text-decoration: none; color: inherit; }
.bandeau__glogo { flex-shrink: 0; }
.bandeau__ginfo { display: flex; flex-direction: column; line-height: 1.2; }
.bandeau__gtext { color: var(--white); font-size: 0.7rem; font-weight: 500; }
.bandeau__gstars { color: #F4B400; font-size: 0.85rem; letter-spacing: 2px; }
.bandeau__status { display: flex; align-items: center; gap: 8px; color: var(--primary); font-size: 0.75rem; white-space: nowrap; }
.bandeau__avatar { width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; border: 2px solid var(--success); animation: border-glow 2.5s ease-in-out infinite; }
.bandeau__avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center top; border-radius: 50%; }
@keyframes border-glow { 0%,100%{ border-color: var(--success); box-shadow: 0 0 2px rgba(76,175,80,0.2); } 50%{ border-color: #8aff9a; box-shadow: 0 0 12px rgba(76,175,80,0.6); } }

/* --- HEADER --- */
.header { background: rgba(255,255,255,0.97); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); padding: 1rem 0; position: sticky; top: 0; z-index: 100; }
.header .container { display: flex; align-items: center; justify-content: space-between; }
.header__logo img { height: 65px; width: auto; }
.header__nav { display: none; align-items: center; gap: 2.5rem; }
.header__link { font-family: var(--font-c); font-size: 0.9rem; font-weight: 500; color: var(--text); text-decoration: none; transition: 0.3s ease; white-space: nowrap; }
.header__link:hover { color: var(--primary-dark); }
.header__cta { display: inline-flex; font-size: 0.8rem; height: 38px; padding: 0 0.75rem; }

/* --- HERO --- */
.hero { background: var(--dark); padding: 3rem 0 0; position: relative; overflow: hidden; }
.hero__video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero__overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.75); z-index: 1; }
.hero .container { display: flex; flex-direction: column; gap: 2rem; padding-bottom: 3rem; position: relative; z-index: 2; }
.hero__content { color: var(--white); }
.hero__content h1 { color: var(--white); margin-bottom: 1.25rem; max-width: 650px; font-size: 2rem; }
.hero__brand-badge { display: inline-flex; align-items: center; gap: 8px; color: var(--white); font-family: var(--font-c); font-size: 0.85rem; font-weight: 600; margin-bottom: 1.25rem; }
.hero__brand-badge svg { color: var(--primary); flex-shrink: 0; }
.hero__content p { color: rgba(255,255,255,0.7); font-size: 1rem; margin-bottom: 1.25rem; }
.hero__checks { display: flex; flex-wrap: wrap; gap: 0.25rem 1rem; margin-bottom: 1.25rem; }
.hero__check { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: var(--white); font-weight: 400; white-space: nowrap; }
.hero__check svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; }
.hero__bottom-row { display: flex; align-items: center; gap: 0.75rem 1rem; flex-wrap: wrap; }
.hero__social-note { color: var(--primary); font-weight: 500; font-size: 0.8rem; white-space: nowrap; }
.hero__google-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.15); padding: 8px 16px; border-radius: 50px; border: 1px solid rgba(255,255,255,0.2); }
.hero__google-badge svg { flex-shrink: 0; }
.hero__google-score { color: var(--white); font-family: var(--font-c); font-size: 0.9rem; font-weight: 700; }
.hero__google-stars { color: #F4B400; font-size: 0.7rem; letter-spacing: 1px; }
.hero__google-label { color: var(--white); font-family: var(--font-c); font-size: 0.75rem; }

/* Hero form */
.hero__form { background: var(--white); border-radius: var(--radius-lg); padding: 2rem 1.5rem; }
.hero__form-badge { display: inline-block; background: var(--primary); color: var(--dark); font-family: var(--font-c); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; padding: 5px 14px; border-radius: 50px; margin-bottom: 0.75rem; text-align: center; width: auto; margin-left: auto; margin-right: auto; }
.hero__form { text-align: center; }
.hero__form .form__group { text-align: left; }
.hero__form .form__submit { text-align: left; }
.hero__form-title { font-family: var(--font-h); font-size: 1.25rem; font-weight: 700; text-align: center; margin-bottom: 0.25rem; color: var(--text); }
.hero__form-sub { text-align: center; font-size: 0.8rem; color: var(--text-light); margin-bottom: 1.25rem; }


/* --- WAVE SEPARATOR --- */
.wave-separator { position: relative; overflow: hidden; line-height: 0; }
.wave-separator svg { display: block; width: 100%; height: 60px; }
.wave-separator--dark svg { fill: var(--dark); }
.wave-separator--white svg { fill: var(--bg); }
.wave-separator--alt svg { fill: var(--bg-alt); }

/* --- SECTION --- */
.section { padding: 5rem 0; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--dark); color: var(--white); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark p { color: rgba(255,255,255,0.7); }
.section--dark .overtitle { color: var(--primary); }
.section__header { text-align: center; margin-bottom: 3rem; }
.section__header h2 { margin-bottom: 0.75rem; }
.section__header p { max-width: 550px; margin: 0 auto; }
.section__cta { text-align: center; margin-top: 2.5rem; }

/* --- SPLIT SECTION (image + texte alternés) --- */
.split { display: flex; flex-direction: column; gap: 2rem; align-items: center; }
.split__img { width: 100%; }
.split__img-placeholder { background: var(--bg-alt); border-radius: var(--radius-lg); height: 300px; display: flex; align-items: center; justify-content: center; color: var(--text-light); font-family: var(--font-c); font-size: 0.875rem; border: 1px solid var(--border); }
.split__img-real { width: 100%; height: 350px; object-fit: cover; object-position: center 30%; border-radius: var(--radius-lg); border: 2px solid var(--primary); box-shadow: var(--shadow); }
.split__video-wrapper { position: relative; width: 100%; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--primary); cursor: pointer; }
.split__video { width: 100%; max-height: 450px; object-fit: cover; display: block; }
.split__video-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 72px; height: 72px; background: rgba(0,0,0,0.5); border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: 0.3s ease; }
.split__video-play:hover { background: rgba(0,0,0,0.7); transform: translate(-50%, -50%) scale(1.1); }
.split__video-play.hidden { display: none; }
.split__content { width: 100%; }
.split__content .overtitle { margin-bottom: 0.5rem; }
.split__content h2 { margin-bottom: 1rem; }
.split__content p { margin-bottom: 1rem; }
.split__bullets { display: flex; flex-direction: column; gap: 10px; margin: 1.5rem 0; }
.split__bullet { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; color: var(--text); font-weight: 400; }
.split__bullet svg { width: 20px; height: 20px; min-width: 20px; color: var(--primary-dark); margin-top: 2px; }
.cta-final .split__bullets { align-items: center; }
.cta-final .split__bullet { justify-content: center; }

/* --- GRID --- */
.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr 1fr; }

/* --- CARD --- */
.card { background: var(--white); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow); transition: 0.3s ease; position: relative; overflow: hidden; border: 1px solid transparent; }
.card__bg-icon { position: absolute; bottom: -20px; right: -20px; width: 90px; height: 90px; pointer-events: none; z-index: 0; transform: rotate(-15deg); }
.card__bg-icon--straight { transform: rotate(0deg); bottom: -10px; right: -10px; width: 80px; height: 80px; }
.card__bg-icon svg { width: 100%; height: 100%; stroke: #F7FCE2; stroke-width: 1.5; }
.card__icon, .card__title, .card__text { position: relative; z-index: 1; }
.card:hover { transform: translateY(-3px); border: 1px solid #F7FCE2; }
.card--link { cursor: pointer; }
.card__icon { width: 48px; height: 48px; background: rgba(217, 238, 111, 0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.card__icon svg { width: 22px; height: 22px; stroke: var(--text); stroke-width: 1.5; }
.card__title { font-family: var(--font-h); font-size: 1.05rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--text); }
.card__text { font-size: 0.875rem; color: var(--text-light); line-height: 1.6; }

/* --- TIMELINE --- */
.timeline { max-width: 700px; margin: 0 auto; position: relative; padding-left: 28px; }
.timeline::before { content: ''; position: absolute; left: 55px; top: 0; bottom: 0; width: 3px; background: var(--border); border-radius: 2px; }
.timeline__progress { position: absolute; left: 55px; top: 0; width: 3px; height: 0; background: var(--primary); border-radius: 2px; transition: height 0.1s linear; z-index: 1; }
.timeline__item { display: flex; gap: 1.5rem; margin-bottom: 2rem; position: relative; }
.timeline__item:last-child { margin-bottom: 0; }
.timeline__flag { width: 56px; height: 56px; min-width: 56px; background: var(--primary); color: var(--dark); font-family: var(--font-h); font-size: 1.25rem; font-weight: 700; display: flex; align-items: center; justify-content: center; border-radius: 12px; position: relative; z-index: 2; }
.timeline__content { background: var(--white); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow); flex: 1; }
.timeline__icon { width: 40px; height: 40px; background: rgba(217, 238, 111, 0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 0.75rem; color: var(--dark); }
.timeline__content h3 { margin-bottom: 0.5rem; }
.timeline__content p { font-size: 0.875rem; }

/* --- BEFORE/AFTER --- */
.ba__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.ba__item { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
/* --- VIDEO MODAL --- */
.video-modal { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 200; align-items: center; justify-content: center; }
.video-modal--open { display: flex; }
.video-modal__overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.85); }
.video-modal__content { position: relative; z-index: 1; width: 90%; max-width: 500px; }
.video-modal__video { width: 100%; border-radius: var(--radius-lg); }
.video-modal__close { position: absolute; top: -40px; right: 0; background: none; border: none; cursor: pointer; color: var(--white); opacity: 0.7; transition: 0.3s; }
.video-modal__close:hover { opacity: 1; }

.ba__img--video { cursor: pointer; }
.ba__play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 60px; height: 60px; background: rgba(0,0,0,0.5); border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 1; transition: 0.3s; }
.ba__img--video:hover .ba__play-btn { background: rgba(0,0,0,0.7); transform: translate(-50%, -50%) scale(1.1); }

/* --- CAROUSEL --- */
.ba__carousel { position: relative; overflow: hidden; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.ba__carousel-track { display: flex; transition: transform 0.4s ease; }
.ba__carousel-slide { min-width: 100%; }
.ba__carousel-dots { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 2; }
.ba__carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: 0.3s ease; }
.ba__carousel-dot--active { background: var(--white); }

.ba__img { height: 220px; overflow: hidden; position: relative; }
.ba__img .ba__tag { position: absolute; top: 12px; left: 12px; z-index: 1; }
.ba__photo { width: 100%; height: 100%; object-fit: cover; }
.ba__tags { position: absolute; top: 12px; left: 12px; display: flex; gap: 6px; }
.ba__tag { font-family: var(--font-c); font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; padding: 4px 10px; border-radius: 4px; }
.ba__tag--before { background: #FCA5A5; color: #7F1D1D; }
.ba__tag--after { background: #86EFAC; color: #14532D; }
.ba__body { padding: 1.25rem; background: var(--white); }
.ba__body h3 { margin-bottom: 1rem; font-size: 1rem; }
.ba__table { width: 100%; border-collapse: separate; border-spacing: 0 6px; }
.ba__table tr { border-radius: 6px; }
.ba__table td { padding: 8px 10px; font-size: 0.8rem; vertical-align: top; }
.ba__table td:first-child { font-family: var(--font-c); font-weight: 600; color: var(--text); width: 80px; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.5px; border-radius: 6px 0 0 6px; }
.ba__table td:last-child { color: var(--text-light); border-radius: 0 6px 6px 0; }
.ba__table tr.ba__row--problem td { background: #FEF2F2; }
.ba__table tr.ba__row--problem td:first-child { color: #991B1B; }
.ba__table tr.ba__row--risk td { background: #FFFBEB; }
.ba__table tr.ba__row--risk td:first-child { color: #92400E; }
.ba__table tr.ba__row--solution td { background: #F0FDF4; }
.ba__table tr.ba__row--solution td:first-child { color: #065F46; }
.ba__item { position: relative; }
.ba__item::after { content: ''; position: absolute; bottom: 12px; right: 12px; width: 32px; height: 32px; background: #065F46 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 10v12'/%3E%3Cpath d='M15 5.88 14 10h5.83a2 2 0 0 1 1.92 2.56l-2.33 8A2 2 0 0 1 17.5 22H4a2 2 0 0 1-2-2v-8a2 2 0 0 1 2-2h2.76a2 2 0 0 0 1.79-1.11L12 2h0a3.13 3.13 0 0 1 3 3.88Z'/%3E%3C/svg%3E") center/16px no-repeat; border-radius: 50%; z-index: 1; }

/* --- ZONE --- */
.zone__cities { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 1.5rem; }
.zone__city { background: var(--white); border: 1px solid var(--border); border-radius: 50px; padding: 8px 20px; font-family: var(--font-c); font-size: 0.875rem; color: var(--text); display: flex; align-items: center; gap: 6px; transition: 0.3s ease; }
.zone__city svg { width: 14px; height: 14px; color: var(--text-light); }
.zone__city:hover { background: var(--primary); border-color: var(--primary); }

/* --- REVIEWS MARQUEE --- */
.reviews-marquee { overflow: hidden; width: 100%; mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent); }
.reviews-track { display: flex; gap: 1rem; width: max-content; }
.reviews-track--left { animation: scroll-left 60s linear infinite; will-change: transform; }
.reviews-track--right { animation: scroll-right 30s linear infinite; }
@keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes scroll-right { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }
.reviews-marquee:hover .reviews-track { animation-play-state: paused; }

.review-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.25rem; min-width: 260px; max-width: 300px; flex-shrink: 0; display: flex; flex-direction: column; justify-content: space-between; position: relative; }
.review-card__stars { color: #F4B400; font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 0.75rem; }
.review-card__text { font-size: 0.85rem; color: var(--text); line-height: 1.6; font-style: italic; flex: 1; margin-bottom: 1.25rem; }
.review-card__footer { display: flex; align-items: center; gap: 10px; }
.review-card__avatar { width: 40px; height: 40px; min-width: 40px; background: var(--bg-alt); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; font-weight: 500; color: var(--white); font-family: var(--font-c); overflow: hidden; }
.review-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-card__name { font-weight: 600; font-size: 0.85rem; color: var(--text); font-family: var(--font-c); }
.review-card__cause { font-size: 0.7rem; color: var(--text-light); font-family: var(--font-c); }
.review-card__photos { display: flex; gap: 6px; margin-bottom: 1rem; }
.review-card__photos img { width: 50%; height: 80px; object-fit: cover; border-radius: 8px; }
.reviews__ctas { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 2.5rem; flex-wrap: wrap; }
.reviews__ctas .btn { border-radius: 50px; }

/* --- URGENCY --- */
.urgency__grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.urgency__item { display: flex; gap: 1rem; align-items: flex-start; padding: 1.5rem; background: rgba(255,255,255,0.05); border-radius: var(--radius-lg); }
.urgency__icon { width: 24px; height: 24px; min-width: 24px; color: var(--primary); margin-top: 2px; }
.urgency__item p { font-size: 0.875rem; }

/* --- FAQ --- */
.faq__list { max-width: 800px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__question { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 0; background: none; border: none; cursor: pointer; font-family: var(--font-b); font-weight: 500; font-size: 1rem; color: var(--text); text-align: left; gap: 1rem; }
.faq__icon { font-size: 1.25rem; transition: transform 0.3s ease; min-width: 24px; text-align: center; }
.faq__item--open .faq__icon { transform: rotate(45deg); }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq__item--open .faq__answer { max-height: 500px; }
.faq__answer p { padding-bottom: 1.25rem; font-size: 0.875rem; line-height: 1.7; }

/* --- CTA FINAL --- */
.cta-final { padding: 5rem 0; background: var(--dark); position: relative; }
.cta-final__inner { display: flex; flex-direction: column; gap: 2rem; align-items: center; }
.cta-final__text { text-align: center; }
.cta-final__text h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-final__text p { color: rgba(255,255,255,0.7); max-width: 450px; }
.cta-final__form { background: var(--white); border-radius: var(--radius-lg); padding: 2rem 1.5rem; width: 100%; max-width: 450px; }
.cta-final__form-title { font-family: var(--font-h); font-size: 1.25rem; font-weight: 700; text-align: center; margin-bottom: 1.25rem; color: var(--text); }

/* --- FORM --- */
.form__row { display: flex; gap: 0.75rem; }
.form__row .form__group { flex: 1; }
.form__group { margin-bottom: 0.75rem; }
.form__label { display: flex; align-items: center; gap: 6px; font-weight: 500; font-size: 0.875rem; margin-bottom: 6px; color: var(--text); }
.form__label svg { width: 16px; height: 16px; color: var(--text-light); }
.form__input, .form__select, .form__textarea { width: 100%; height: 48px; padding: 0 1rem; font-family: var(--font-b); font-size: 1rem; font-weight: 300; color: var(--text); background: var(--bg-alt); border: 1.5px solid transparent; border-radius: var(--radius); transition: 0.3s ease; -webkit-appearance: none; appearance: none; }
.form__textarea { height: auto; padding: 0.75rem 1rem; resize: vertical; }
.form__input:focus, .form__select:focus { outline: none; border-color: var(--primary); background: var(--white); }
.form__input::placeholder { color: var(--text-light); }
.form__submit { margin-top: 1rem; }
.form__trust { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 10px; font-size: 0.75rem; color: var(--text-light); }
.form__trust svg { width: 14px; height: 14px; color: var(--success); }
.form__success { display: none; text-align: center; padding: 2rem; }
.form__success--visible { display: block; }
.form__success-icon { width: 56px; height: 56px; background: var(--success); border-radius: 50%; margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center; color: var(--white); }
.form__success-title { font-family: var(--font-h); font-size: 1.25rem; margin-bottom: 0.25rem; color: var(--text); }

/* --- FOOTER --- */
.footer { background: var(--dark); color: rgba(255,255,255,0.5); padding: 2rem 0; font-size: 0.875rem; }
.footer .container { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.footer a { color: rgba(255,255,255,0.5); }
.footer a:hover { color: var(--primary); }
.footer__brand { font-weight: 500; color: var(--white); }

/* --- ANIMATIONS --- */
.animate { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate--visible { opacity: 1; transform: translateY(0); }
.animate--d1 { transition-delay: 0.1s; }
.animate--d2 { transition-delay: 0.2s; }
.animate--d3 { transition-delay: 0.3s; }

/* --- WHATSAPP BUBBLE --- */
.wa-bubble { display: none; position: fixed; bottom: 2rem; right: 2rem; z-index: 98; background: var(--white); border: 2px solid #25D366; border-radius: 1.5rem 1.5rem 0.2rem 1.5rem; padding: 0.5rem 1rem 0.5rem 0.5rem; box-shadow: 0 4px 20px rgba(37,211,102,0.25), 0 2px 8px rgba(0,0,0,0.1); text-decoration: none; align-items: center; gap: 0.6rem; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.wa-bubble:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(37,211,102,0.35), 0 4px 12px rgba(0,0,0,0.12); }
.wa-bubble__avatar { width: 38px; height: 38px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.wa-bubble__avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.wa-bubble__content { display: flex; flex-direction: column; gap: 1px; }
.wa-bubble__text { font-family: var(--font-c); font-size: 0.8rem; font-weight: 600; color: var(--dark); line-height: 1.2; }
.wa-bubble__sub { display: flex; align-items: center; gap: 4px; font-family: var(--font-c); font-size: 0.65rem; color: #25D366; font-weight: 500; }
.wa-bubble__sub svg { flex-shrink: 0; }

/* --- MOBILE CTA --- */
.mobile-cta { display: flex; position: fixed; bottom: 0; left: 0; right: 0; background: rgba(255,255,255,0.97); backdrop-filter: blur(10px); border-top: 1px solid var(--border); padding: 10px 1rem; z-index: 99; gap: 10px; }
.mobile-cta .btn { flex: 1; font-size: 0.7rem; height: 46px; border-radius: 50px; padding: 0 0.5rem; }

/* ===== TABLET ===== */
@media (min-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  .grid--2 { grid-template-columns: 1fr 1fr; }
  .grid--3 { grid-template-columns: 1fr 1fr 1fr; }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
  .split { flex-direction: row; gap: 3rem; }
  .split--reverse { flex-direction: row-reverse; }
  .split__img, .split__content { width: 50%; flex: 0 0 50%; }
  .ba__grid { grid-template-columns: 1fr 1fr 1fr; }
  .urgency__grid { grid-template-columns: 1fr 1fr 1fr; }
  .hero__images { grid-template-columns: 1fr 1fr 1fr; }
  .hero__img { height: 160px; }
  .hero__content h1 { font-size: 2.5rem; }
  .hero__checks { flex-wrap: nowrap; }
  .header__cta { display: inline-flex; font-size: 0.875rem; height: 48px; padding: 0 1.5rem; }
  .mobile-cta { display: none; }
  .wa-bubble { display: flex; }
  .bandeau__left { display: flex; }
  .bandeau__google-review { display: flex; }
  .bandeau .container { justify-content: space-between; }
  .cta-final__inner { flex-direction: row; }
  .cta-final .split__bullets { align-items: flex-start; }
  .cta-final .split__bullet { justify-content: flex-start; }
  .cta-final__text { text-align: left; flex: 1; }
}

/* ===== DESKTOP ===== */
@media (min-width: 1024px) {
  h1 { font-size: 3.25rem; }
  h2 { font-size: 2.5rem; }
  .section { padding: 6rem 0; }
  .hero { padding: 4rem 0 0; }
  .hero .container { flex-direction: row; align-items: center; }
  .hero__content { flex: 0 0 55%; }
  .hero__content h1 { font-size: 4rem; }
  .hero__form { flex: 0 0 42%; }
  .header__nav { display: flex; }
  .split__img-placeholder { height: 400px; }
  .split__img-real { height: 450px; }
}
