/* ============================================================
   THEME "PRO BUILDER" — construction-garage-france.fr
   Bleu royal + orange brique chaleureux sur fond clair
   ============================================================ */

:root {
  --primary: #2563eb;
  --primary-dark: #1e40af;
  --primary-light: #dbeafe;
  --accent: #ea580c;
  --accent-light: #fed7aa;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --bg-card: #ffffff;
  --text: #0f172a;
  --text-mute: #475569;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(37,99,235,0.15);
  --radius: 10px;
  --radius-lg: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  margin: 0;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ============ HEADER ============ */
header {
  background: #fff;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
header nav { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
header .logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text); font-weight: 800; font-size: 1.15rem; }
header .logo-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-size: 1.3rem;
  box-shadow: 0 3px 10px rgba(37,99,235,0.25);
}
header .logo:hover { opacity: 0.85; }
header nav ul { list-style: none; display: flex; gap: 8px; margin: 0; padding: 0; }
header nav a { color: var(--text); text-decoration: none; padding: 8px 14px; border-radius: 6px; font-weight: 500; font-size: 0.95rem; transition: all 0.2s; }
header nav a:hover { background: var(--primary-light); color: var(--primary-dark); }

/* ============ HERO ============ */
.hero {
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
  color: #fff;
  padding: 70px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(234,88,12,0.25), transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(234,88,12,0.18), transparent 50%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero .badge-pill {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.15;
  margin: 0 0 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.hero h1 em { font-style: normal; color: #fed7aa; font-weight: 800; }
.hero h1 strong { color: #fed7aa; font-weight: 800; }
.hero h1 mark { background: var(--accent); color: #fff; padding: 2px 10px; border-radius: 6px; }
.hero .lead {
  font-size: 1.15rem;
  opacity: 0.92;
  max-width: 620px;
  margin: 0 0 30px;
  line-height: 1.55;
}

/* ============ BUTTONS ============ */
.btn-cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 13px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid var(--accent);
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(234,88,12,0.35);
}
.btn-cta:hover, .btn:hover {
  background: #c2410c;
  border-color: #c2410c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(234,88,12,0.5);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
  box-shadow: none;
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; box-shadow: none; }

/* ============ SECTIONS ============ */
section { padding: 70px 0; background: var(--bg); }
section.alt { background: var(--bg-alt); }
section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text);
  margin: 0 0 16px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
section h2 em { font-style: normal; color: var(--primary); font-weight: 800; }
section .section-intro {
  font-size: 1.05rem;
  color: var(--text-mute);
  max-width: 720px;
  margin: 0 0 36px;
  line-height: 1.6;
}

/* ============ CARDS ============ */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.card {
  background: var(--bg-card);
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.card .num {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding: 4px 10px;
  background: var(--primary-light);
  border-radius: 999px;
}
.card h3 { color: var(--text); font-size: 1.15rem; font-weight: 700; margin: 0 0 10px; line-height: 1.3; }
.card p { color: var(--text-mute); font-size: 0.95rem; margin: 0; line-height: 1.55; }

/* ============ SERVICE CARDS (avec images) ============ */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card img { width: 100%; height: 200px; object-fit: cover; display: block; background: #f1f5f9; }
.service-card > div { padding: 20px; }
.service-card h3 { color: var(--text); font-size: 1.08rem; font-weight: 700; margin: 0 0 8px; }
.service-card p { color: var(--text-mute); font-size: 0.92rem; margin: 0; line-height: 1.5; }

/* ============ GALLERY ============ */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.gallery-grid figure {
  margin: 0;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s;
}
.gallery-grid figure:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.gallery-grid figure img { width: 100%; height: 220px; object-fit: cover; display: block; background: #f1f5f9; }
.gallery-grid figcaption {
  padding: 12px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  background: #fff;
  border-top: 1px solid var(--border);
}

/* ============ HERO FORM WRAP ============ */
.hero-form-wrap { background: rgba(255,255,255,0.04); border-radius: 14px; padding: 0; margin-top: 32px; }
.vud-form-wrapper { background: #fff !important; }
/* Header du form (premier div avec gradient) : laisse le color:#fff inline gagner */
.vud-form-wrapper > div:first-child,
.vud-form-wrapper > div:first-child h2,
.vud-form-wrapper > div:first-child div { color: #fff !important; }
/* Contenu du form (étapes, labels) : couleur texte standard */
.vud-form-wrapper form { color: var(--text); }
.vud-form-wrapper form h3 { color: #111 !important; }
.vud-form-wrapper form label { color: #111 !important; }
.vud-form-wrapper form .vud-radio-label > div > div:first-child { color: #111 !important; }

/* ============ FOOTER ============ */
footer {
  background: #0f172a;
  color: rgba(255,255,255,0.75);
  padding: 50px 0 24px;
  margin-top: 60px;
  border-top: 4px solid var(--accent);
}
footer a { color: #fed7aa; text-decoration: none; }
footer a:hover { color: #fff; text-decoration: underline; }
footer h3, footer h4, footer strong { color: #fff; font-weight: 700; margin: 0 0 12px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; margin-bottom: 32px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; font-size: 0.88rem; opacity: 0.7; text-align: center; }

/* ============ HERO ACTIONS (CTA legacy fallback) ============ */
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .hero { padding: 50px 0 70px; }
  .hero h1 { font-size: 2rem; }
  section { padding: 50px 0; }
  header nav ul { display: none; }
  header nav { flex-wrap: nowrap; }
}

/* ============ MISC ============ */
img { max-width: 100%; height: auto; }
a { color: var(--primary); }
strong { color: var(--text); }
mark { background: var(--accent-light); color: var(--text); padding: 0 4px; }
::selection { background: var(--primary-light); color: var(--primary-dark); }

/* === THEME POLAIRE OVERRIDES === */
/* THEME POLAIRE — clim-reversible-pro.fr — cool ice blue + cyan */
:root {
  --primary: #0284c7;
  --primary-dark: #0c4a6e;
  --accent: #06b6d4;
  --accent-2: #38bdf8;
  --bg-soft: #f0f9ff;
  --text: #1e293b;
  --text-muted: #475569;
  --trust: #0ea5e9;
  --success: #10b981;
  --warning: #f59e0b;
  --white: #ffffff;
  --shadow-lg: 0 10px 40px rgba(2,132,199,0.15);
  --gradient-cta: linear-gradient(135deg,#0284c7,#06b6d4);
  --gradient-hero: linear-gradient(135deg,#0c4a6e,#0284c7);
}
*{box-sizing:border-box;}
body{font-family:system-ui,-apple-system,'Segoe UI',sans-serif;color:var(--text);margin:0;background:var(--white);line-height:1.55;}
a{color:var(--primary);text-decoration:none;}
a:hover{color:var(--primary-dark);text-decoration:underline;}
h1{color:var(--white);font-size:2rem;line-height:1.2;margin:0 0 .5rem;font-weight:700;}
h2{color:var(--primary-dark);font-size:1.5rem;margin:1.5rem 0 .75rem;}
h3{color:var(--primary);font-size:1.15rem;margin:1rem 0 .5rem;}
.container{max-width:1100px;margin:0 auto;padding:0 1rem;}
.btn-primary{background:var(--gradient-cta);color:#fff;border:0;padding:.85rem 1.5rem;border-radius:.5rem;font-weight:600;cursor:pointer;display:inline-block;min-height:44px;transition:transform .15s,box-shadow .15s;}
.btn-primary:hover{transform:translateY(-2px);box-shadow:var(--shadow-lg);}
.hero-small{background:var(--gradient-hero);color:#fff;padding:2.5rem 1rem;text-align:center;}
.hero-small .subtitle{color:var(--accent-2);font-size:1.05rem;margin-bottom:1rem;}
.api-block{border-left:4px solid var(--accent);background:var(--bg-soft);padding:1rem 1.25rem;margin:1.25rem 0;border-radius:0 .5rem .5rem 0;}
.trust-bar{color:var(--trust);font-weight:600;display:flex;gap:1rem;flex-wrap:wrap;justify-content:center;padding:1rem;background:var(--bg-soft);}
.trust-bar span{display:inline-flex;align-items:center;gap:.35rem;}
.ra-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:1rem;margin:1.5rem 0;}
.ra-card{background:#fff;border:1px solid #e2e8f0;border-radius:.5rem;padding:1rem;box-shadow:0 2px 8px rgba(2,132,199,0.05);transition:box-shadow .2s;}
.ra-card:hover{box-shadow:var(--shadow-lg);}
.ra-card .badge{background:var(--success);color:#fff;font-size:.75rem;padding:.2rem .5rem;border-radius:.25rem;}
.form-mock{background:#fff;border:2px solid var(--accent);border-radius:.75rem;padding:1.5rem;max-width:520px;margin:1.5rem auto;box-shadow:var(--shadow-lg);}
.form-mock input,.form-mock select{width:100%;padding:.75rem;border:1px solid #cbd5e1;border-radius:.4rem;margin-bottom:.75rem;font-size:1rem;min-height:44px;}
footer{background:var(--primary-dark);color:#cbd5e1;padding:2rem 1rem;text-align:center;margin-top:3rem;}
.logo-wrap{color:var(--white);display:inline-flex;align-items:center;gap:.5rem;}
@media(max-width:640px){h1{font-size:1.55rem;}.hero-small{padding:1.75rem .75rem;}}

/* H1 contrast fix — make H1 dark when NOT in hero section */
section:not(.hero):not(.hero-small) h1,
body > h1, .container > h1, main h1 {
  color: #0c4a6e !important;
}
section.hero h1, section.hero-small h1, .hero h1, .hero-small h1 {
  color: #ffffff !important;
}
/* Ville/dept/region/category page H1 specifically */
section.no-prefix h1, section.section-hero h1 {
  color: #0c4a6e !important;
  font-size: 1.9rem !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  margin: 16px 0 12px !important;
}
section.no-prefix h1 em, section.section-hero h1 em {
  color: #0284c7 !important;
  font-style: normal !important;
}

/* === A44a POLAIRE FORCE — 2026-05-13 === */
.btn-cta, a.btn-cta, button.btn-cta, .btn-primary, a.btn-primary, button.btn-primary,
.btn, a.btn {
  background: linear-gradient(135deg, #0284c7, #06b6d4) !important;
  color: #fff !important;
  border: none !important;
  padding: .85rem 1.5rem !important;
  border-radius: .5rem !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  cursor: pointer !important;
  display: inline-block !important;
  min-height: 44px !important;
  text-decoration: none !important;
  transition: transform .15s, box-shadow .15s !important;
  line-height: 1.5 !important;
}
.btn-cta:hover, .btn-primary:hover, .btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 40px rgba(2,132,199,.3) !important;
  color: #fff !important;
  background: linear-gradient(135deg, #0369a1, #0891b2) !important;
}
/* Sticky header POLAIRE */
header {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  background: linear-gradient(135deg, #0c4a6e, #0284c7) !important;
  padding: 12px 0 !important;
  box-shadow: 0 2px 12px rgba(0,0,0,.15) !important;
}
header a { color: #fff !important; text-decoration: none !important; }
header nav { display: flex !important; justify-content: space-between !important; align-items: center !important; flex-wrap: wrap !important; gap: 10px !important; }
header nav a:not(.btn-cta) { color: rgba(255,255,255,.85) !important; padding: .3rem .6rem !important; font-size: .9rem !important; }
header nav a:not(.btn-cta):hover { color: #fff !important; background: rgba(255,255,255,.12) !important; border-radius: .25rem !important; }
/* Hero POLAIRE */
.hero, section.hero { background: linear-gradient(135deg, #0c4a6e, #0284c7) !important; color: #fff !important; padding: 56px 0 !important; }
.hero h1, section.hero h1 { color: #fff !important; font-size: 2.1rem !important; font-weight: 800 !important; line-height: 1.18 !important; }
.hero .lead, .hero p.lead { color: rgba(255,255,255,.88) !important; }
.badge-pill { background: rgba(255,255,255,.18) !important; color: #bae6fd !important; padding: .35rem 1rem !important; border-radius: 999px !important; font-size: .8rem !important; font-weight: 600 !important; letter-spacing: .03em !important; }
/* Service cards POLAIRE */
.card, .cards-grid .card, .service-card {
  background: #fff !important;
  border-left: 4px solid #0284c7 !important;
  border-radius: .6rem !important;
  padding: 22px !important;
  box-shadow: 0 2px 10px rgba(2,132,199,.07) !important;
  transition: transform .2s, box-shadow .2s !important;
}
.card:hover, .service-card:hover { transform: translateY(-4px) !important; box-shadow: 0 14px 32px rgba(2,132,199,.18) !important; }
.card h3, .service-card h3 { color: #0c4a6e !important; font-size: 1.1rem !important; font-weight: 700 !important; margin-top: 0 !important; }
.card .num { font-size: .72rem !important; font-weight: 700 !important; letter-spacing: .1em !important; color: #0284c7 !important; text-transform: uppercase !important; margin-bottom: 6px !important; }
/* Sections */
section { background: #fff !important; padding: 56px 0 !important; }
section.alt { background: #f0f9ff !important; }
body, body.theme-btp-chantier { background: #fff !important; color: #1e293b !important; }
/* Footer */
footer { background: #0c4a6e !important; color: #cbd5e1 !important; padding: 44px 0 18px !important; border-top: none !important; }
footer a { color: #38bdf8 !important; text-decoration: none !important; }
footer a:hover { color: #fff !important; }
footer strong { color: #fff !important; }
/* H2 with em */
h2 { color: #0c4a6e !important; }
h2 em { color: #0284c7 !important; font-style: normal !important; }
/* RGPD bottom strip */
#rgpd-banner, .rgpd-banner, #cookie-banner {
  position: fixed !important; bottom: 0 !important; left: 0 !important; right: 0 !important; top: auto !important;
  max-width: 100% !important; border-radius: 0 !important; margin: 0 !important;
  z-index: 9997 !important; background: rgba(15,23,42,.96) !important; color: #fff !important;
  padding: 14px 20px !important;
}
#rgpd-banner button, .rgpd-banner button { background: #06b6d4 !important; }
/* Trust bar */
.trust-bar { background: #f0f9ff !important; padding: 14px 0 !important; border-bottom: 1px solid #e0f2fe !important; display: flex !important; justify-content: center !important; gap: 24px !important; flex-wrap: wrap !important; font-size: .9rem !important; color: #0369a1 !important; }
.trust-bar span { font-weight: 600 !important; }
/* === /A44a POLAIRE FORCE === */

/* hero-photo bg — gpt-image-1 generated 2026-05-14 */
.hero, section.hero {
    background-image:
        linear-gradient(135deg, rgba(15,23,42,.78), rgba(2,132,199,.52)),
        url('/images/local/hero.jpg') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-attachment: scroll !important;
}

/* HERO READABILITY FIX 2026-05-15 */
.hero { position: relative; isolation: isolate; }
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(2,62,138,.72) 0%, rgba(0,0,0,.55) 100%);
  z-index: 0; pointer-events: none;
}
.hero > * { position: relative; z-index: 1; }
.hero h1, .hero h1 strong, .hero p, .hero > .container > *:not(.aprod-topfold-cta) {
  color: #ffffff !important;
  text-shadow: 0 2px 14px rgba(0,0,0,.45);
}
.hero h1 strong { color: #ffd166 !important; }
.hero .btn-cta, .hero .btn-primary, .hero a.btn-cta { color: #fff !important; }
.hero .aprod-topfold-cta { background: rgba(255,255,255,.96) !important; border: 1px solid rgba(255,255,255,.4) !important; }
.hero .aprod-topfold-cta * { color: #1a1a1a !important; text-shadow: none !important; }
.hero .aprod-topfold-cta a[style*="background:#dc2626"], .hero .aprod-topfold-cta a[style*="background:#0077B6"] { color: #fff !important; }
/* end hero fix */

/* CTA BUTTON VISIBILITY FIX 2026-05-15 */
.cta-section, section.cta, .cta-banner, .cta { background: #023E8A; color: #fff; padding: 40px 20px; border-radius: 16px; margin: 40px auto; max-width: 1200px; }
.cta-section h2, .cta-section p, section.cta h2, section.cta p, .cta-banner h2, .cta-banner p, .cta h2, .cta p { color: #fff !important; }
.cta-section a, section.cta a, .cta-banner a, .cta a,
.cta-section .btn, .cta-section a.btn, .cta-section .btn-primary, .cta-section a[class*="btn"],
section.cta .btn, section.cta a.btn, section.cta a[class*="btn"],
.cta-banner .btn, .cta-banner a.btn, .cta-banner a[class*="btn"],
.cta a[class*="btn"], .cta .btn {
  background: #ffd166 !important; color: #023E8A !important; font-weight: 700 !important;
  padding: 14px 28px !important; border-radius: 999px !important; display: inline-block !important;
  text-decoration: none !important; border: 0 !important; box-shadow: 0 4px 14px rgba(0,0,0,.2) !important;
  min-width: 200px; text-align: center;
}
.cta-section a[style*="background"], section.cta a[style*="background"], .cta-banner a[style*="background"], .cta a[style*="background"] {
  background: #ffd166 !important; color: #023E8A !important;
}
/* end cta fix */

/* TESTIMONIALS CENTERING FIX 2026-05-15 */
.testimonials { padding: 60px 20px; }
.testimonials .section-title { text-align: center; margin-bottom: 30px; max-width: 1200px; margin-left: auto; margin-right: auto; }
.testimonials-grid { max-width: 1200px; margin: 40px auto !important; padding: 0 20px; }
/* end testimonials */

/* HERO READABILITY FIX 2026-05-15 */
.hero { position: relative; isolation: isolate; }
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(2,62,138,.72) 0%, rgba(0,0,0,.55) 100%);
  z-index: 0; pointer-events: none;
}
.hero > * { position: relative; z-index: 1; }
.hero h1, .hero h1 strong, .hero p, .hero > .container > *:not(.aprod-topfold-cta) {
  color: #ffffff !important;
  text-shadow: 0 2px 14px rgba(0,0,0,.45);
}
.hero h1 strong { color: #ffd166 !important; }
.hero .btn-cta, .hero .btn-primary, .hero a.btn-cta { color: #fff !important; }
.hero .aprod-topfold-cta { background: rgba(255,255,255,.96) !important; border: 1px solid rgba(255,255,255,.4) !important; }
.hero .aprod-topfold-cta * { color: #1a1a1a !important; text-shadow: none !important; }
.hero .aprod-topfold-cta a[style*="background:#dc2626"], .hero .aprod-topfold-cta a[style*="background:#0077B6"] { color: #fff !important; }
/* end hero fix */

/* VUD_GEOLOC_BTN_OVERRIDE 2026-05-15 — force readable geoloc button (was blue-on-blue) */
.vud-form-card a.vud-geoloc, .vud-form-card .vud-geoloc-btn, .vud-form-card .vud-geolocate,
#vecb30ead0bd a[href*="geoloc"], #vecb30ead0bd button[class*="geoloc"],
.vud-form-card a[style*="background:#3b82f6"], .vud-form-card a[style*="background:#2563eb"],
.vud-form-card a[style*="background-color:#3b82f6"], .vud-form-card a[style*="background-color:#2563eb"] {
  background: #023E8A !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  padding: 12px 24px !important;
  border-radius: 999px !important;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(0,0,0,.18) !important;
  border: 0 !important;
}
/* If text and bg use same blue: catch all anchors inside vud widget with blue-ish bg */
#vecb30ead0bd a[style*="background"] { color: #ffffff !important; }
#vecb30ead0bd .vud-geoloc, #vecb30ead0bd .vud-geolocate, #vecb30ead0bd .geolocate-btn { color: #ffffff !important; }
/* end vud geoloc btn */
/* LOW_OPACITY_BLUE_FIX 2026-05-15 — readable text on blue gradient cards */
[style*="background:linear-gradient(135deg,#0077B6,#023E8A)"] p,
[style*="background:linear-gradient(135deg,#0077B6,#023E8A)"] label,
[style*="background:linear-gradient(135deg,#0077B6,#023E8A)"] span,
[style*="background:linear-gradient(135deg,#0077B6,#023E8A)"] div,
[style*="background:linear-gradient(135deg,#0077B6,#023E8A)"] li,
[style*="background:linear-gradient(135deg,#0077B6,#023E8A)"] strong,
[style*="background:linear-gradient(135deg,#0077B6,#023E8A)"] [style*="opacity:.85"],
[style*="background:linear-gradient(135deg,#0077B6,#023E8A)"] [style*="opacity:.8"],
[style*="background:linear-gradient(135deg,#0077B6,#023E8A)"] [style*="opacity:.7"],
[style*="background:#0077B6"] [style*="opacity:.85"],
[style*="background:#0077B6"] [style*="opacity:.8"],
[style*="background:#023E8A"] [style*="opacity:.85"],
[style*="background:#023E8A"] [style*="opacity:.8"] {
  color: #fff !important;
  opacity: 1 !important;
}
/* keep highlight text visible */
[style*="background:linear-gradient(135deg,#0077B6,#023E8A)"] h1,
[style*="background:linear-gradient(135deg,#0077B6,#023E8A)"] h2,
[style*="background:linear-gradient(135deg,#0077B6,#023E8A)"] h3,
[style*="background:linear-gradient(135deg,#0077B6,#023E8A)"] h4 {
  color: #FFB703 !important;
  opacity: 1 !important;
}
/* end low opacity blue fix */

/* EXIT_POPUP_FIX_V2 2026-05-15 — let JS toggle display, only fix visuals */
#cro-exit-popup { padding: 16px; box-sizing: border-box; }
#cro-exit-popup > div {
  background: #fff !important;
  border-radius: 16px !important;
  max-width: 460px !important;
  width: 100% !important;
  padding: 32px 24px !important;
  text-align: center !important;
  position: relative !important;
  box-shadow: 0 25px 60px rgba(0,0,0,.3) !important;
  z-index: 100000 !important;
  margin: auto !important;
}
#cro-exit-popup h3 { margin: 0 0 12px !important; color: #111 !important; font-size: 1.4rem !important; }
#cro-exit-popup p  { margin: 0 0 18px !important; color: #4b5563 !important; line-height: 1.5 !important; }
#cro-exit-popup #cro-exit-cta, #cro-exit-popup a.cro-ab-cta {
  display: inline-block !important;
  background: linear-gradient(135deg,#f97316,#ea580c) !important;
  color: #fff !important;
  padding: 14px 28px !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  font-size: 1rem !important;
  width: 100% !important;
  max-width: 320px !important;
  margin: 0 auto !important;
  box-sizing: border-box !important;
}
#cro-exit-popup #cro-exit-close {
  position: absolute !important; top: 12px !important; right: 14px !important;
  background: transparent !important; border: none !important;
  font-size: 1.6rem !important; cursor: pointer !important; color: #9ca3af !important;
  line-height: 1 !important; padding: 0 6px !important;
}
/* Hide A/B text variant placeholders if both visible */
#cro-exit-popup .cro-ab-text-A { display: inline !important; }
#cro-exit-popup .cro-ab-text-B { display: none !important; }
/* end exit popup fix v2 */

/* WIDGET_BLUE_EXCEPTION 2026-05-15 — undo color:#fff inside VUD widget */
.cluster-hero #vecb30ead0bd, [style*="background:linear-gradient(135deg,#0077B6,#023E8A)"] #vecb30ead0bd,
.cluster-hero .vud-widget-top-wrap, [style*="background:linear-gradient(135deg,#0077B6,#023E8A)"] .vud-widget-top-wrap {
  color: #1a1a1a !important;
}
.cluster-hero #vecb30ead0bd *, .cluster-hero .vud-widget-top-wrap *,
[style*="background:linear-gradient(135deg,#0077B6,#023E8A)"] #vecb30ead0bd *,
[style*="background:linear-gradient(135deg,#0077B6,#023E8A)"] .vud-widget-top-wrap * {
  color: inherit !important;
}
/* But preserve white background of the VUD form card */
#vecb30ead0bd { background: #fff; border-radius: 12px; padding: 16px; box-shadow: 0 4px 24px rgba(0,0,0,.15); }
.vud-widget-top-wrap { background: transparent; }
/* end widget exception */

/* WIDGET_GLOBAL_CARD 2026-05-15 — VUD widget always has white card + dark text */
.vud-widget-top-wrap {
  background: #ffffff !important;
  border-radius: 14px !important;
  box-shadow: 0 6px 28px rgba(0,0,0,.18) !important;
  padding: 14px !important;
  color: #1a1a1a !important;
  isolation: isolate;
}
.vud-widget-top-wrap, .vud-widget-top-wrap * {
  color: #1a1a1a !important;
  text-shadow: none !important;
}
.vud-widget-top-wrap a { color: #0077B6 !important; }
.vud-widget-top-wrap strong, .vud-widget-top-wrap b { color: #0a1f3a !important; }
.vud-widget-top-wrap button, .vud-widget-top-wrap input, .vud-widget-top-wrap select, .vud-widget-top-wrap textarea {
  color: #1a1a1a !important;
  background: #ffffff !important;
}
#vecb30ead0bd, #vecb30ead0bd * { color: inherit !important; }
/* The VUD form internal blue buttons should keep their color via the script's inline styles, but ensure visibility */
.vud-widget-top-wrap [style*="background:#0077B6"], .vud-widget-top-wrap [style*="background: #0077B6"],
.vud-widget-top-wrap [style*="background:#023E8A"] { color: #ffffff !important; }
/* end widget global card */

/* KILL_CRO_EXIT_ONLY 2026-05-15 — kill cro-exit-popup + sticky + live-activity for good (buggy, dimmer overlays content) */
#cro-exit-popup, #cro-sticky-mobile, #cro-live-activity, [id="cro-exit-popup"] {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
  opacity: 0 !important;
}
body { padding-bottom: 0 !important; }
/* end kill cro */
