/* ============================================================
   COMPAROO — Design System
   ============================================================ */
:root {
  --navy:       #0A1628;
  --navy2:      #112240;
  --blue:       #1D4ED8;
  --blue-light: #3B82F6;
  --green:      #10B981;
  --orange:     #F59E0B;
  --red:        #EF4444;
  --white:      #FFFFFF;
  --gray-50:    #F9FAFB;
  --gray-100:   #F3F4F6;
  --gray-200:   #E5E7EB;
  --gray-400:   #9CA3AF;
  --gray-600:   #4B5563;
  --text:       #1F2937;
  --radius:     14px;
  --radius-sm:  8px;
  --shadow:     0 4px 24px rgba(0,0,0,.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.18);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Hanken Grotesk', 'Segoe UI', system-ui, sans-serif; color: var(--text); background: #fff; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

/* ── UTILITIES ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.mt-8  { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mb-4  { margin-bottom: 1rem; }

/* ── TYPOGRAPHY ── */
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: 1.25rem; font-weight: 600; }
.section-tag {
  display: inline-block;
  background: rgba(29,78,216,.12);
  color: var(--blue);
  font-size: .8rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .3rem .9rem; border-radius: 50px;
  margin-bottom: 1rem;
}
.section-subtitle { color: var(--gray-600); font-size: 1.05rem; max-width: 640px; margin: .8rem auto 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.8rem; border-radius: 50px;
  font-size: 1rem; font-weight: 700; cursor: pointer;
  border: none; transition: all .25s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue), #6366F1);
  color: #fff;
  box-shadow: 0 6px 24px rgba(29,78,216,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(29,78,216,.45); }
.btn-white { background: #fff; color: var(--blue); }
.btn-white:hover { background: var(--gray-100); }
.btn-green { background: var(--green); color: #fff; box-shadow: 0 6px 20px rgba(16,185,129,.3); }
.btn-green:hover { background: #059669; transform: translateY(-2px); }
.btn-lg { padding: 1.05rem 2.4rem; font-size: 1.1rem; }

/* ── NAV ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 0;
  transition: all .35s;
}
.navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  padding: .7rem 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-size: 1.55rem; font-weight: 900;
  background: linear-gradient(135deg, #fff, #93C5FD);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  transition: all .3s;
}
.navbar.scrolled .logo {
  background: linear-gradient(135deg, var(--blue), #6366F1);
  -webkit-background-clip: text;
}
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { color: rgba(255,255,255,.85); font-weight: 500; transition: color .2s; font-size: .95rem; }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.navbar.scrolled .nav-links a { color: var(--gray-600); }
.navbar.scrolled .nav-links a:hover { color: var(--blue); }
.nav-cta .btn { padding: .55rem 1.3rem; font-size: .9rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.hamburger span { width: 26px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s; }
.navbar.scrolled .hamburger span { background: var(--navy); }
.mobile-menu { display: none; }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-attachment: fixed;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(145deg, rgba(10,22,40,.88) 0%, rgba(17,34,64,.75) 50%, rgba(29,78,216,.4) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 160px 0 80px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  color: #fff; font-size: .85rem; font-weight: 600;
  padding: .4rem 1rem; border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero-badge span { width: 8px; height: 8px; background: var(--green); border-radius: 50%; animation: pulse 2s infinite; }
.hero h1 { color: #fff; margin-bottom: 1.2rem; }
.hero h1 em { font-style: normal; color: #93C5FD; }
.hero p { color: rgba(255,255,255,.8); font-size: 1.15rem; max-width: 560px; margin-bottom: 2.5rem; }
.hero-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 3.5rem;
}
.hero-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
  border-radius: var(--radius); padding: 1.6rem 1.2rem;
  text-align: center; cursor: pointer;
  transition: all .3s;
  text-decoration: none;
}
.hero-card:hover { background: rgba(255,255,255,.18); transform: translateY(-5px); }
.hero-card .card-icon { font-size: 2.4rem; margin-bottom: .7rem; }
.hero-card h3 { color: #fff; font-size: 1rem; margin-bottom: .3rem; }
.hero-card p { color: rgba(255,255,255,.65); font-size: .82rem; }
.hero-card .card-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.15); color: #fff;
  margin-top: .8rem; font-size: 1rem;
}

/* ── SECTION STATS ── */
.stats { background: var(--navy); padding: 4rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-item {}
.stat-number {
  font-size: 2.6rem; font-weight: 900; color: #fff;
  display: block;
  background: linear-gradient(135deg, #93C5FD, #C4B5FD);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label { color: rgba(255,255,255,.55); font-size: .875rem; margin-top: .3rem; }

/* ── HOW IT WORKS ── */
.how { padding: 6rem 0; background: var(--gray-50); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; margin-top: 3.5rem; }
.step-card {
  background: #fff; border-radius: var(--radius);
  padding: 2.5rem 2rem; text-align: center;
  box-shadow: var(--shadow); position: relative;
  border: 1px solid var(--gray-100);
  transition: transform .3s;
}
.step-card:hover { transform: translateY(-6px); }
.step-number {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue), #6366F1);
  color: #fff; width: 36px; height: 36px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .9rem;
}
.step-icon { font-size: 2.8rem; margin: .5rem 0 1rem; }
.step-card h3 { margin-bottom: .5rem; }
.step-card p { color: var(--gray-600); font-size: .9rem; }

/* ── SECTORS ── */
.sectors { padding: 6rem 0; }
.sectors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.sector-card {
  border-radius: 20px; overflow: hidden;
  position: relative; min-height: 440px;
  display: flex; flex-direction: column; justify-content: flex-end;
  cursor: pointer; text-decoration: none;
  box-shadow: var(--shadow-lg);
  transition: transform .35s, box-shadow .35s;
}
.sector-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 30px 80px rgba(0,0,0,.25); }
.sector-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .5s;
}
.sector-card:hover .sector-bg { transform: scale(1.06); }
.sector-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 30%, rgba(0,0,0,.1) 100%);
}
.sector-content { position: relative; z-index: 2; padding: 2rem; }
.sector-tag {
  display: inline-block;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff; font-size: .75rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .3rem .8rem; border-radius: 50px;
  margin-bottom: .8rem;
}
.sector-content h3 { color: #fff; font-size: 1.5rem; margin-bottom: .4rem; }
.sector-content p { color: rgba(255,255,255,.7); font-size: .9rem; margin-bottom: 1.2rem; }
.sector-cta {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff; color: var(--navy);
  font-weight: 700; font-size: .9rem;
  padding: .65rem 1.3rem; border-radius: 50px;
  transition: all .2s;
}
.sector-card:hover .sector-cta { background: var(--blue); color: #fff; }
.sector-savings {
  position: absolute; top: 1.2rem; right: 1.2rem; z-index: 3;
  background: var(--green);
  color: #fff; font-weight: 800; font-size: .85rem;
  padding: .35rem .9rem; border-radius: 50px;
}

/* ── FORM WIZARD ── */
.form-section { padding: 6rem 0; background: var(--gray-50); }
.form-section.dark { background: var(--navy2); }
.form-wrapper {
  max-width: 720px; margin: 0 auto;
  background: #fff; border-radius: 24px;
  box-shadow: 0 24px 80px rgba(0,0,0,.14);
  overflow: hidden;
}
.form-header {
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  padding: 2.5rem 3rem 2rem;
}
.form-header h2 { color: #fff; margin-bottom: .4rem; font-size: 1.5rem; }
.form-header p { color: rgba(255,255,255,.65); font-size: .9rem; }
.form-progress { margin-top: 1.5rem; }
.progress-track { background: rgba(255,255,255,.15); border-radius: 50px; height: 6px; }
.progress-fill { height: 6px; border-radius: 50px; background: var(--green); transition: width .5s ease; }
.progress-labels {
  display: flex; justify-content: space-between;
  margin-top: .5rem;
}
.progress-labels span { color: rgba(255,255,255,.4); font-size: .72rem; }
.progress-labels span.active { color: #fff; font-weight: 600; }

.form-body { padding: 2.5rem 3rem; }
.form-step { display: none; animation: fadeIn .4s; }
.form-step.active { display: block; }
.step-question { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 1.5rem; }

/* Option cards */
.options-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .9rem; }
.options-grid.grid-3 { grid-template-columns: repeat(3, 1fr); }
.opt-card {
  border: 2px solid var(--gray-200); border-radius: var(--radius);
  padding: 1.2rem 1rem; text-align: center; cursor: pointer;
  transition: all .2s; background: #fff;
}
.opt-card:hover { border-color: var(--blue); background: rgba(29,78,216,.04); }
.opt-card.selected { border-color: var(--blue); background: rgba(29,78,216,.08); }
.opt-card .opt-icon { font-size: 2rem; margin-bottom: .5rem; display: block; }
.opt-card .opt-label { font-weight: 600; font-size: .95rem; color: var(--navy); }
.opt-card .opt-sub { font-size: .78rem; color: var(--gray-400); margin-top: .2rem; }
.opt-card.selected .opt-label { color: var(--blue); }

/* Contact form */
.form-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field-group { display: flex; flex-direction: column; gap: .4rem; }
.field-group.full { grid-column: 1 / -1; }
.field-group label { font-size: .85rem; font-weight: 600; color: var(--gray-600); }
.field-group input, .field-group select {
  border: 2px solid var(--gray-200); border-radius: var(--radius-sm);
  padding: .8rem 1rem; font-size: .95rem;
  transition: border-color .2s; outline: none;
}
.field-group input:focus, .field-group select:focus { border-color: var(--blue); }
.field-group input.error { border-color: var(--red); }
.rgpd-note { font-size: .75rem; color: var(--gray-400); margin-top: 1rem; text-align: center; }
.rgpd-note a { color: var(--blue); }

.form-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 2rem; }
.btn-back {
  background: none; border: 2px solid var(--gray-200); color: var(--gray-600);
  padding: .7rem 1.5rem; border-radius: 50px; font-weight: 600; cursor: pointer;
  transition: all .2s;
}
.btn-back:hover { border-color: var(--navy); color: var(--navy); }
.btn-next {
  background: linear-gradient(135deg, var(--blue), #6366F1);
  color: #fff; border: none; padding: .8rem 2rem; border-radius: 50px;
  font-size: 1rem; font-weight: 700; cursor: pointer;
  box-shadow: 0 6px 20px rgba(29,78,216,.3);
  transition: all .25s;
}
.btn-next:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(29,78,216,.4); }
.btn-next:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.btn-submit-final {
  width: 100%; background: linear-gradient(135deg, var(--green), #059669);
  color: #fff; border: none; padding: 1rem 2rem; border-radius: 50px;
  font-size: 1.05rem; font-weight: 700; cursor: pointer;
  box-shadow: 0 8px 24px rgba(16,185,129,.3); margin-top: 1.5rem;
  transition: all .25s;
}
.btn-submit-final:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(16,185,129,.4); }
.savings-preview {
  background: linear-gradient(135deg, rgba(16,185,129,.1), rgba(29,78,216,.08));
  border: 1px solid rgba(16,185,129,.3);
  border-radius: var(--radius); padding: 1rem 1.4rem;
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem;
}
.savings-preview .savings-icon { font-size: 1.8rem; }
.savings-preview strong { color: var(--green); font-size: 1.1rem; }
.savings-preview span { font-size: .85rem; color: var(--gray-600); }

/* ── TESTIMONIALS ── */
.testimonials { padding: 6rem 0; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.testi-card {
  background: #fff; border-radius: var(--radius);
  padding: 2rem; box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
}
.testi-stars { color: #F59E0B; margin-bottom: 1rem; font-size: 1.1rem; letter-spacing: 2px; }
.testi-text { color: var(--gray-600); font-size: .92rem; line-height: 1.7; margin-bottom: 1.2rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: .8rem; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #6366F1);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: .9rem; }
.testi-location { font-size: .78rem; color: var(--gray-400); }
.testi-saving {
  margin-top: .8rem;
  background: rgba(16,185,129,.08); border-radius: var(--radius-sm);
  padding: .5rem .9rem; font-size: .82rem;
  color: #059669; font-weight: 700;
}

/* ── TRUST BADGES ── */
.trust { padding: 4rem 0; background: var(--navy); }
.trust-grid { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.trust-item { text-align: center; color: #fff; }
.trust-icon { font-size: 2rem; margin-bottom: .5rem; }
.trust-label { font-size: .85rem; color: rgba(255,255,255,.65); }

/* ── FAQ ── */
.faq { padding: 5rem 0; }
.faq-list { max-width: 760px; margin: 3rem auto 0; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  padding: 1.2rem 0; display: flex; justify-content: space-between; align-items: center;
  font-size: 1rem; font-weight: 600; cursor: pointer; color: var(--navy);
}
.faq-icon { font-size: 1.3rem; transition: transform .3s; color: var(--blue); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { color: var(--gray-600); padding-bottom: 1.2rem; font-size: .93rem; line-height: 1.7; }

/* ── HERO SECTOR LANDING ── */
.hero-split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 100vh; }
.hero-split-left {
  background: var(--navy);
  display: flex; align-items: center;
  padding: 140px 60px 80px;
}
.hero-split-right { position: relative; overflow: hidden; }
.hero-split-right .hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }

/* Lighter overlay for sector page hero right panels */
.hero-split-right .hero-bg::after {
  background: linear-gradient(160deg, rgba(10,22,40,.18) 0%, rgba(10,22,40,.32) 100%);
}

/* ── HERO HOME (split bright) ── */
.hero.hero-home {
  background: linear-gradient(150deg, #071120 0%, #0D1E3A 55%, #0A1628 100%);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}
.hero.hero-home::before {
  content: '';
  position: absolute;
  top: -160px; right: -80px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29,78,216,.24) 0%, transparent 70%);
  pointer-events: none;
}
.hero.hero-home::after {
  content: '';
  position: absolute;
  bottom: -180px; left: -60px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,.14) 0%, transparent 70%);
  pointer-events: none;
}
.hero-home-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
  padding: 150px 0 80px;
  position: relative;
  z-index: 2;
}
.hero-home-left { /* text + cards */ }
.hero-home-right { position: relative; align-self: center; }
.hero-photo-wrap {
  position: relative;
  border-radius: 22px;
  overflow: visible;
}
.hero-photo-wrap > img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 22px;
  box-shadow: 0 32px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.06);
}
.hero-float-badge {
  position: absolute;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 800;
  box-shadow: 0 6px 20px rgba(0,0,0,.14);
  white-space: nowrap;
  z-index: 10;
  padding: .6rem 1.1rem;
  pointer-events: none;
}
.savings-badge {
  bottom: -14px;
  left: 18px;
  color: #065F46;
  background: #D1FAE5;
  border: 2px solid #A7F3D0;
}
.time-badge {
  top: 18px;
  right: -14px;
  color: #1E3A5F;
  background: #fff;
  border: 2px solid #E5E7EB;
}
@media (max-width: 960px) {
  .hero-home-grid { grid-template-columns: 1fr; padding: 130px 0 60px; }
  .hero-home-right { display: none; }
}

/* ── THANK YOU ── */
.thanks { min-height: 100vh; display: flex; align-items: center; background: var(--gray-50); }
.thanks-box {
  max-width: 560px; margin: 0 auto; text-align: center;
  background: #fff; border-radius: 24px; padding: 4rem 3rem;
  box-shadow: var(--shadow-lg);
}
.thanks-icon { font-size: 5rem; margin-bottom: 1.5rem; }
.thanks-box h1 { color: var(--green); margin-bottom: 1rem; font-size: 2rem; }
.thanks-box p { color: var(--gray-600); margin-bottom: 2rem; }
.thanks-steps { text-align: left; margin: 2rem 0; }
.thanks-steps li {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: .7rem 0; border-bottom: 1px solid var(--gray-100);
  font-size: .9rem;
}
.thanks-steps li .num {
  width: 26px; height: 26px; flex-shrink: 0;
  background: var(--green); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .8rem;
}

/* ── FOOTER ── */
footer { background: var(--navy); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo {
  font-size: 1.6rem; font-weight: 900;
  background: linear-gradient(135deg, #fff, #93C5FD);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: .8rem;
}
.footer-desc { color: rgba(255,255,255,.45); font-size: .875rem; line-height: 1.7; }
.footer-social { display: flex; gap: .7rem; margin-top: 1.2rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.7);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: all .2s;
}
.footer-social a:hover { background: var(--blue); color: #fff; }
.footer-col h4 { color: #fff; font-size: .9rem; margin-bottom: 1rem; }
.footer-col a {
  display: block; color: rgba(255,255,255,.45); font-size: .85rem;
  margin-bottom: .5rem; transition: color .2s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { color: rgba(255,255,255,.35); font-size: .8rem; }
.footer-badges { display: flex; gap: .5rem; }
.badge-ssl {
  background: rgba(16,185,129,.2); color: var(--green);
  font-size: .72rem; font-weight: 700; padding: .25rem .7rem; border-radius: 50px;
}

/* ── TOAST / NOTIFICATION ── */
.toast {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 9999;
  background: var(--navy); color: #fff;
  padding: 1rem 1.5rem; border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: .8rem;
  transform: translateY(80px); opacity: 0;
  transition: all .4s;
  font-size: .9rem; font-weight: 500;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast .toast-icon { font-size: 1.3rem; }

/* ── LIVE COUNTER BADGE ── */
.live-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(239,68,68,.12); color: var(--red);
  border: 1px solid rgba(239,68,68,.25);
  padding: .35rem .9rem; border-radius: 50px;
  font-size: .8rem; font-weight: 700;
  margin-bottom: 1rem;
}
.live-badge .dot { width: 8px; height: 8px; background: var(--red); border-radius: 50%; animation: pulse 1.5s infinite; }

/* ── PHOTOS TESTIMONIALS ── */
.testi-avatar { overflow: hidden; }
.testi-avatar img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }

/* ── LIFESTYLE PHOTO GRID ── */
.lifestyle-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 1rem;
  margin-top: 3rem;
}
.lp { border-radius: 18px; overflow: hidden; position: relative; cursor: pointer; }
.lp img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; display: block; }
.lp:hover img { transform: scale(1.05); }
.lp.tall { grid-row: 1 / 3; }
.lp-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(10,22,40,.78));
  padding: 1.5rem .9rem .8rem;
  color: #fff; font-size: .8rem; font-weight: 600;
}

/* ── ADVISOR BAR IN FORM ── */
.advisor-bar {
  display: flex; align-items: center; gap: .9rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  padding: .75rem 1rem; margin-top: 1.2rem;
}
.advisor-bar img {
  width: 42px; height: 42px; border-radius: 50%;
  object-fit: cover; border: 2px solid rgba(255,255,255,.3); flex-shrink: 0;
}
.advisor-bar-info strong { color: #fff; font-size: .85rem; display: block; }
.advisor-bar-info span   { color: rgba(255,255,255,.5); font-size: .73rem; }
.advisor-available {
  margin-left: auto; display: flex; align-items: center; gap: .4rem;
  color: var(--green); font-size: .73rem; font-weight: 700; white-space: nowrap;
}
.advisor-available .dot { width: 7px; height: 7px; background: var(--green); border-radius: 50%; flex-shrink: 0; animation: pulse 1.5s infinite; }

/* ── RGPD CONSENT CHECKBOX ── */
.rgpd-consent {
  display: flex; align-items: flex-start; gap: .75rem;
  padding: .9rem 1rem; border-radius: var(--radius-sm);
  background: rgba(29,78,216,.05);
  border: 1px solid rgba(29,78,216,.15);
  margin-top: 1rem; cursor: pointer;
  transition: border-color .2s;
}
.rgpd-consent:hover { border-color: var(--blue); }
.rgpd-consent input[type="checkbox"] {
  width: 17px; height: 17px; margin-top: 2px;
  accent-color: var(--blue); flex-shrink: 0; cursor: pointer;
}
.rgpd-consent-text { font-size: .79rem; color: var(--gray-600); line-height: 1.55; user-select: none; }
.rgpd-consent-text a { color: var(--blue); text-decoration: underline; }
.rgpd-consent.consent-error { border-color: var(--red); background: rgba(239,68,68,.05); }

/* ── PHOTO STRIP HERO BOTTOM ── */
.hero-photos {
  display: flex; gap: .75rem; margin-top: 2rem; overflow: hidden; border-radius: 16px;
}
.hero-photo-item { flex: 1; height: 120px; border-radius: 12px; overflow: hidden; position: relative; }
.hero-photo-item img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-item .hp-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(transparent 40%, rgba(0,0,0,.55));
  display: flex; align-items: flex-end; padding: .5rem;
}
.hero-photo-item .hp-overlay span { color: #fff; font-size: .72rem; font-weight: 600; }

/* ── ANIMATIONS ── */
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(.85); }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { opacity: 0; transition: opacity .7s, transform .7s; transform: translateY(24px); }
.fade-in.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-cards { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .hero-split { grid-template-columns: 1fr; }
  .hero-split-right { min-height: 300px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu {
    position: fixed; inset: 0; z-index: 999;
    background: var(--navy);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 2rem;
  }
  .mobile-menu.hidden { display: none; }
  .mobile-menu a { color: #fff; font-size: 1.4rem; font-weight: 700; }
  .hero-cards { grid-template-columns: 1fr; gap: .75rem; }
  .steps-grid, .sectors-grid, .testi-grid { grid-template-columns: 1fr; }
  .form-fields { grid-template-columns: 1fr; }
  .form-body { padding: 1.5rem; }
  .form-header { padding: 1.5rem; }
  .options-grid.grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-grid { gap: 1.5rem; }
  .hero-split-left { padding: 120px 24px 60px; }
}

@media (max-width: 480px) {
  .options-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   ICÔNES SVG (remplacent les émojis — non-IA)  [dw-noia-v1]
   ============================================================ */
.ic{width:1em;height:1em;display:inline-block;vertical-align:-.14em;fill:none;stroke:currentColor;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0;}
.nav-links a .ic,.mobile-menu a .ic{width:1.05em;height:1.05em;vertical-align:-.18em;}
.hero-card .card-icon .ic{color:#93C5FD;stroke-width:1.6;}
.hero-card .card-arrow .ic{width:1em;height:1em;}
.btn .ic{width:1.05em;height:1.05em;}
.step-icon .ic{color:var(--blue);stroke-width:1.5;}
.trust-icon .ic{color:var(--blue);stroke-width:1.6;}
.sector-tag .ic{width:1em;height:1em;vertical-align:-.14em;}
.sector-cta .ic{width:.95em;height:.95em;}
.hero-float-badge .ic{color:var(--blue);width:1.05em;height:1.05em;}
.testi-saving .ic{width:1em;height:1em;vertical-align:-.14em;}
.footer-social a .ic{width:1.05em;height:1.05em;}
.footer-col a .ic{width:1em;height:1em;vertical-align:-.14em;opacity:.85;}
.badge-ssl .ic{width:1em;height:1em;vertical-align:-.14em;}

/* ── FOURNISSEURS / OPÉRATEURS BELGES ── */
.providers{padding:4.5rem 0;background:#fff;}
.prov-group{margin-top:2.4rem;}
.prov-head{display:inline-flex;align-items:center;gap:.55rem;font-weight:700;color:var(--navy);font-size:1.02rem;margin-bottom:1.1rem;}
.prov-head .ic{color:var(--blue);width:1.2em;height:1.2em;vertical-align:-.16em;}
.prov-chips{display:flex;flex-wrap:wrap;gap:.6rem;justify-content:center;max-width:920px;margin:0 auto;}
.prov-chips span{display:inline-flex;align-items:center;padding:.55rem 1.15rem;border:1px solid var(--gray-200);border-radius:50px;background:var(--gray-50);color:var(--navy);font-weight:600;font-size:.92rem;transition:border-color .2s,color .2s,transform .2s,box-shadow .2s;}
.prov-chips span:hover{border-color:var(--blue);color:var(--blue);transform:translateY(-2px);box-shadow:var(--shadow);}

/* dw-noia3 : police non-IA + fix nav sous-pages */
h1, h2, h3, .logo, .footer-logo { font-family: 'Fraunces', Georgia, 'Times New Roman', serif; letter-spacing: -.015em; }
.navbar-sub { position: sticky !important; top: 0; }

/* ============================================================
   leads-v1 — Bloc « on vous rappelle »
   Points de capture sur les pages de contenu (accueil, blog, tarifs)
   qui n'en avaient aucun. Reprend la grammaire du site :
   navy en fond, vert pour la conversion, boutons pill, inputs 2px.
   ============================================================ */
.rappel-bloc {
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  padding: 3.5rem 0;
  margin-top: 3rem;
}
.rappel-inner {
  max-width: 1000px; margin: 0 auto; padding: 0 1.5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center;
}
.rappel-copy h2 {
  color: #fff; font-size: 1.75rem; margin: 0 0 .6rem; line-height: 1.2;
}
.rappel-copy p { color: rgba(255,255,255,.7); font-size: .95rem; margin: 0 0 1.2rem; }
.rappel-points { list-style: none; padding: 0; margin: 0; }
.rappel-points li {
  color: rgba(255,255,255,.85); font-size: .87rem; padding: .3rem 0 .3rem 1.6rem;
  position: relative;
}
.rappel-points li::before {
  content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 800;
}
.rappel-form {
  background: #fff; border-radius: var(--radius); padding: 1.6rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.28);
}
.rappel-form .rf-row { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.rappel-form .rf-field { display: flex; flex-direction: column; gap: .35rem; margin-bottom: .8rem; }
.rappel-form label { font-size: .8rem; font-weight: 600; color: var(--gray-600); }
.rappel-form input[type="text"], .rappel-form input[type="tel"] {
  border: 2px solid var(--gray-200); border-radius: var(--radius-sm);
  padding: .7rem .9rem; font-size: .93rem; outline: none;
  transition: border-color .2s; font-family: inherit;
}
.rappel-form input:focus { border-color: var(--blue); }
.rappel-form input.error { border-color: var(--red); }
.rappel-consent {
  display: flex; align-items: flex-start; gap: .6rem;
  background: rgba(29,78,216,.05); border: 1px solid rgba(29,78,216,.15);
  border-radius: var(--radius-sm); padding: .7rem .8rem; margin: .2rem 0 1rem; cursor: pointer;
}
.rappel-consent.consent-error { border-color: var(--red); background: rgba(239,68,68,.05); }
.rappel-consent input { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--blue); flex-shrink: 0; }
.rappel-consent span { font-size: .74rem; color: var(--gray-600); line-height: 1.5; }
.rappel-consent a { color: var(--blue); }
.rappel-form button {
  width: 100%; background: linear-gradient(135deg, var(--green), #059669);
  color: #fff; border: none; padding: .9rem 1.5rem; border-radius: 50px;
  font-size: 1rem; font-weight: 700; cursor: pointer; font-family: inherit;
  box-shadow: 0 8px 24px rgba(16,185,129,.3); transition: all .25s;
}
.rappel-form button:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(16,185,129,.4); }
.rappel-form button:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.rappel-note { font-size: .72rem; color: var(--gray-400); text-align: center; margin: .8rem 0 0; }
.rappel-feedback { margin-top: .9rem; padding: .8rem .9rem; border-radius: var(--radius-sm); font-size: .85rem; font-weight: 600; }
.rappel-feedback.err { background: rgba(239,68,68,.08); border: 1px solid rgba(239,68,68,.35); color: #b91c1c; }
.rappel-feedback.ok  { background: rgba(16,185,129,.08); border: 1px solid rgba(16,185,129,.35); color: #047857; }
.rappel-done { text-align: center; padding: 1.5rem .5rem; }
.rappel-done .rd-ic { font-size: 2.2rem; color: var(--green); }
.rappel-done h3 { color: var(--navy); margin: .5rem 0 .4rem; font-size: 1.15rem; }
.rappel-done p { color: var(--gray-600); font-size: .88rem; margin: 0; }

@media (max-width: 820px) {
  .rappel-inner { grid-template-columns: 1fr; gap: 1.8rem; }
  .rappel-copy h2 { font-size: 1.45rem; }
  .rappel-form .rf-row { grid-template-columns: 1fr; }
}
