/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --blue: #2196f3;
  --blue-dark: #1565c0;
  --blue-light: #42a5f5;
  --green: #22c55e;
  --green-dark: #16a34a;
  --white: #ffffff;
  --bg: #f8f9fb;
  --border: #e0e0e0;
  --text: #1a1a2e;
  --gray: #555;
  --light: #777;
  --radius: 12px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes blink-dot {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, .7);
  }

  50% {
    box-shadow: 0 0 0 18px rgba(34, 197, 94, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ============================================================
   TOP BAR
   ============================================================ */
.se24-topbar {
  background: var(--blue);
  color: #fff;
  text-align: center;
  padding: 9px 20px;
  font-size: 15px;
  font-weight: 600;
}

.se24-topbar a {
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ============================================================
   HEADER
   ============================================================ */
.se24-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.se24-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 70px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

/* Mobile-only elements hidden on desktop */
.se24-mobile-call {
  display: none;
}

.se24-burger {
  display: none;
}

.se24-drawer {
  display: none;
}

.se24-drawer-overlay {
  display: none;
}

/* Logo */
.se24-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.se24-logo img {
  max-height: 44px;
  width: auto;
}

.se24-logo-text {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  white-space: nowrap;
}

/* Nav centre */
.se24-nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

.se24-nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.se24-nav-menu>li {
  position: relative;
}

.se24-nav-menu>li>a {
  display: block;
  padding: 8px 15px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  border-radius: 7px;
  white-space: nowrap;
  transition: background .18s, color .18s;
}

.se24-nav-menu>li>a:hover,
.se24-nav-menu>li.current-menu-item>a,
.se24-nav-menu>li.current_page_item>a {
  background: #eff6ff;
  color: var(--blue);
}

/* Dropdown */
.se24-nav-menu .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.11);
  min-width: 210px;
  padding: 6px;
  z-index: 300;
  list-style: none;
}

.se24-nav-menu .sub-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
  background: transparent;
}

.se24-nav-menu>li:hover>.sub-menu {
  display: block;
}

/* Arrow on desktop parent items */
.se24-nav-menu>li.menu-item-has-children>a::after {
  content: '▾';
  font-size: 11px;
  margin-left: 4px;
  opacity: .6;
  transition: transform .2s;
}

.se24-nav-menu>li.menu-item-has-children:hover>a::after {
  transform: rotate(180deg);
  opacity: 1;
}

.se24-nav-menu .sub-menu li a {
  display: block;
  padding: 10px 14px;
  font-size: 13.5px;
  border-radius: 6px;
  color: var(--text);
  transition: background .15s, color .15s;
}

.se24-nav-menu .sub-menu li a:hover {
  background: #eff6ff;
  color: var(--blue);
}

/* CTA right */
.se24-header-cta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* Green pulse button (shared) */
.se24-btn-green {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--green);
  color: #fff !important;
  padding: 16px 28px;
  border-radius: 9px;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
  border: none;
  cursor: pointer;
  animation: pulse-green 1.8s infinite;
  transition: background .2s;
}

.se24-btn-green:hover {
  background: var(--green-dark) !important;
}

.se24-btn-green .dot {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  animation: blink-dot 1s step-start infinite;
}

/* Blue btn */
.se24-btn-blue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  padding: 13px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s;
}

.se24-btn-blue:hover {
  background: var(--blue-dark);
  color: #fff;
}

/* Burger - hidden desktop */
.se24-burger {
  display: none;
}

/* Mobile call btn - hidden desktop */
.se24-mobile-call {
  display: none;
}

/* ============================================================
   HERO
   ============================================================ */
.se24-hero {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.se24-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-color: #1a2a4a;
}

.se24-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 20, 50, .82) 0%, rgba(20, 50, 110, .62) 100%);
}

.se24-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
  width: 100%;
  text-align: center;
}

.se24-badge {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 15px 24px;
  border-radius: 30px;
  margin-bottom: 18px;
}

.se24-hero h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1.05;
  margin-bottom: 16px;
}

.se24-hero-sub {
  color: rgba(255, 255, 255, .88);
  font-size: 15px;
  max-width: 480px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

/* Social proof */
.se24-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 5px;
}

.se24-avatars {
  display: flex;
}

.se24-avatars img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  margin-right: -10px;
  object-fit: cover;
  background: #222;
  transition: transform 0.3s ease;
}

.se24-avatars img:hover {
  transform: translateY(-5px) scale(1.1);
  z-index: 10;
  border-color: #fff;
}

.se24-stars-wrap {
  text-align: left;
}

.se24-stars-wrap .stars {
  color: #ffd600;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 1px;
}

.se24-stars-wrap .avis {
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  margin-top: -25px;
}

/* Proximity */
.se24-proximity {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
  color: #fff;
  font-size: 18px;
  line-height: 1.4;
  text-align: left;
}

.se24-prox-indicator {
  position: relative;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dot-main {
  width: 14px;
  height: 14px;
  background: var(--green);
  border-radius: 50%;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 15px var(--green);
}

.dot-pulse {
  position: absolute;
  width: 32px;
  height: 32px;
  background: rgba(34, 197, 94, 0.4);
  border-radius: 50%;
  z-index: 1;
  animation: se24-pulse-ring 2s infinite;
}

@keyframes se24-pulse-ring {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}
.stars-logo{
    width:100px;
    height:100px;
    object-fit:contain;
    position:relative;
    top:30px;
}
.stars{
    display:flex;
    align-items:center;
    gap:12px;
}
.services-list{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:10px;
    text-align:center;
    margin-top:20px;
	margin-bottom: 10px
}

.services-list span{
    background:rgba(255,255,255,0.08);
    padding:10px 16px;
    border-radius:12px;
    backdrop-filter:blur(4px);
    color:#fff;
    font-weight:500;
    width:fit-content;
    max-width:90%;
}

/* Mobile */
@media (max-width:768px){

    .services-list{
        gap:8px;
        margin-top:15px;
    }

    .services-list span{
        font-size:12px;
        padding:5px 10px;
        max-width:95%;
    }
}
/* ============================================================
   INSURANCE LOGOS BAR
   ============================================================ */
.se24-logos-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  overflow: hidden;
}

.se24-logos-track {
  display: flex;
  gap: 20px;
  align-items: center;
  width: max-content;
  animation: scroll-logos 28s linear infinite;
}

.se24-logos-bar:hover .se24-logos-track {
  animation-play-state: paused;
}

.se24-logos-track .logo-chip {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 20px;
  font-size: 12px;
  font-weight: 700;
  color: #555;
  white-space: nowrap;
}

/* ============================================================
   EXPERTISE / STATS
   ============================================================ */
.se24-expertise {
  padding: 60px 20px;
  background: var(--white);
}

.se24-expertise-card {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--bg);
  border-radius: var(--radius);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.se24-expertise-intro h2 {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 14px;
  line-height: 1.25;
}

.se24-expertise-intro p {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 22px;
  line-height: 1.7;
}

.se24-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  grid-column: 2 / 4;
}

.se24-stat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.se24-stat-icon {
  font-size: 26px;
  flex-shrink: 0;
  margin-top: 2px;
}

.se24-stat-value {
  font-size: 1.3rem;
  font-weight: 800;
}

.se24-stat-label {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.4;
}

/* ============================================================
   SERVICES
   ============================================================ */
.se24-services {
  padding: 70px 20px;
}

.se24-section-label {
  text-align: center;
  font-size: 12px;
  color: var(--light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.se24-section-title {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 12px;
}

.se24-section-sub {
  text-align: center;
  color: var(--light);
  font-size: 14px;
  margin-bottom: 48px;
}

.se24-services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.se24-service-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  transition: box-shadow .25s, transform .25s;
}

.se24-service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.se24-service-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.se24-service-card-body {
  padding: 20px;
}

.se24-service-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.se24-service-icon {
  color: var(--blue);
  font-size: 20px;
}

.se24-service-card p {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.65;
}

.se24-extra-grid {
  max-width: 1200px;
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.se24-extra-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}

.se24-extra-card p {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.65;
  margin-top: 8px;
}

/* ============================================================
   VALUES (dark bg)
   ============================================================ */
.se24-values {
  position: relative;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
  background: url('') center/cover no-repeat;
  background-color: #1a2030;
}

.se24-values::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(18, 25, 40, .82);
}

.se24-values>* {
  position: relative;
  z-index: 2;
}

.se24-values .se24-section-title {
  color: var(--blue-light);
}

.se24-values-grid {
  max-width: 1000px;
  margin: 44px auto 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.se24-value-item h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.se24-value-item p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .78);
  line-height: 1.65;
}

.se24-value-icon {
  font-size: 34px;
  margin-bottom: 14px;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.se24-reviews {
  padding: 80px 20px;
  background: var(--white);
}

.se24-reviews-wrap {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.se24-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.se24-review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}

.se24-review-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.se24-review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue-light), var(--blue-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
}

.se24-review-name {
  font-weight: 700;
  font-size: 14px;
}

.se24-review-date {
  font-size: 12px;
  color: var(--light);
}

.se24-review-g {
  margin-left: auto;
  font-weight: 900;
  font-size: 18px;
  color: #4285f4;
}

.se24-review-stars {
  color: #f5c518;
  font-size: 15px;
  margin-bottom: 6px;
}

.se24-review-badge {
  color: var(--blue);
  font-size: 12px;
  margin-bottom: 12px;
}

.se24-review-card p {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.65;
}

.se24-review-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.se24-review-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  display: inline-block;
}

.se24-review-dot.inactive {
  background: #d0d8e4;
}

.se24-arrow {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
  font-size: 16px;
  z-index: 5;
}

.se24-arrow-prev {
  left: -18px;
}

.se24-arrow-next {
  right: -18px;
}

/* ============================================================
   PARTNERS
   ============================================================ */
.se24-partners {
  padding: 80px 20px;
  background: var(--bg);
}

.se24-partners-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.se24-partners-left h2 {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 22px;
}

.se24-checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 26px;
}

.se24-check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--gray);
}

.se24-check-item .ck {
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 15px;
}

.se24-logos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: center;
}

.se24-logos-grid .lp {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 22px;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  color: #666;
  letter-spacing: 1px;
}

/* ============================================================
   CONTACT BAND
   ============================================================ */
.se24-contact-band {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-light) 100%);
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.se24-contact-band::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 70px solid rgba(255, 255, 255, .06);
  top: -180px;
  right: -80px;
  pointer-events: none;
}

.se24-contact-band .logo-img {
  max-height: 90px;
  margin: 0 auto 24px;
}

.se24-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--blue);
  padding: 14px 34px;
  border-radius: 40px;
  font-weight: 800;
  font-size: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .18);
  margin-bottom: 26px;
  transition: transform .2s;
}

.se24-phone-btn:hover {
  transform: scale(1.04);
}

.se24-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  margin-top: 14px;
}

.se24-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .9);
  font-size: 13.5px;
  font-weight: 500;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.se24-form-section {
  padding: 80px 20px;
  background: var(--white);
}

.se24-form-section .se24-section-title {
  color: var(--text);
}

.se24-form {
  max-width: 680px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.se24-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.se24-input {
  width: 100%;
  padding: 15px 18px;
  border: 1.5px solid #d0d8e8;
  border-radius: 10px;
  font-size: 14.5px;
  color: var(--text);
  font-family: inherit;
  background: var(--white);
  outline: none;
  transition: border-color .2s;
}

.se24-input:focus {
  border-color: var(--blue);
}

.se24-input::placeholder {
  color: #aab0bc;
}

textarea.se24-input {
  resize: vertical;
  min-height: 120px;
}

.se24-submit {
  width: 100%;
  padding: 16px;
  background: var(--blue);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s;
}

.se24-submit:hover {
  background: var(--blue-dark);
}

/* ============================================================
   FOOTER
   ============================================================ */
.se24-footer {
  background: #12161f;
  color: rgba(255, 255, 255, .62);
  padding: 50px 20px 26px;
}

.se24-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 38px;
}

.se24-footer-brand .name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.se24-footer-brand p {
  font-size: 13px;
  line-height: 1.7;
}

.se24-footer-col h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
}

.se24-footer-col ul li {
  margin-bottom: 9px;
  font-size: 13px;
}

.se24-footer-col ul li a {
  color: rgba(255, 255, 255, .62);
  transition: color .2s;
}

.se24-footer-col ul li a:hover {
  color: var(--blue-light);
}

.se24-footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 20px;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* ============================================================
   PAGE TEMPLATE
   ============================================================ */
.se24-page-main {
  padding: 60px 20px;
  min-height: 60vh;
}

.se24-page-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.se24-page-title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 26px;
  padding-bottom: 16px;
  border-bottom: 2px solid #e8f0fe;
}

.se24-page-body {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
}

.se24-page-body h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin: 28px 0 10px;
}

.se24-page-body p {
  margin-bottom: 16px;
}

.se24-page-body a {
  color: var(--blue);
  text-decoration: underline;
}

/* ============================================================
   RESPONSIVE — TABLET ≤960px
   ============================================================ */
@media (max-width: 960px) {
  .se24-header-inner {
    padding: 0 20px;
    height: 64px;
  }

  .se24-nav-menu>li>a {
    padding: 7px 10px;
    font-size: 13px;
  }

  .se24-btn-green {
    padding: 12px 18px;
    font-size: 14px;
  }

  .se24-expertise-card {
    grid-template-columns: 1fr 1fr;
  }

  .se24-stats {
    grid-column: 2/3;
  }
}

/* ============================================================
   SITE HEADER — DESKTOP NAV + DROPDOWN
   ============================================================ */
.se24-nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

.se24-nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.se24-nav-menu>li {
  position: relative;
}

.se24-nav-menu>li>a {
  display: block;
  padding: 8px 15px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  border-radius: 7px;
  white-space: nowrap;
  transition: background .18s, color .18s;
}

.se24-nav-menu>li>a:hover,
.se24-nav-menu>li.current-menu-item>a,
.se24-nav-menu>li.current_page_item>a {
  background: #eff6ff;
  color: var(--blue);
}

/* Desktop dropdown */
.se24-nav-menu .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, .11);
  min-width: 210px;
  padding: 6px;
  z-index: 300;
  list-style: none;
}

.se24-nav-menu .sub-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
  background: transparent;
}

.se24-nav-menu>li:hover>.sub-menu {
  display: block;
}

.se24-nav-menu .sub-menu li a {
  display: block;
  padding: 10px 14px;
  font-size: 13.5px;
  border-radius: 6px;
  color: var(--text);
  transition: background .15s, color .15s;
}

.se24-nav-menu .sub-menu li a:hover {
  background: #eff6ff;
  color: var(--blue);
}

/* Desktop: small chevron on parent */
.se24-nav-menu>li.menu-item-has-children>a::after {
  content: '▾';
  font-size: 11px;
  margin-left: 4px;
  opacity: .5;
  transition: transform .2s;
}

.se24-nav-menu>li.menu-item-has-children:hover>a::after {
  transform: rotate(180deg);
  opacity: 1;
}

/* Mobile-only elements — hidden on desktop */
.se24-mobile-call {
  display: none;
}

.se24-burger {
  display: none;
}

.se24-nav-cta-wrap {
  display: none;
}

.se24-nav-close-btn {
  display: none;
}

.se24-nav-top {
  display: none;
}

/* ============================================================
   RESPONSIVE — TABLET ≤960px
   ============================================================ */
@media (max-width: 960px) {
  .se24-header-inner {
    padding: 0 20px;
    height: 64px;
  }

  .se24-nav-menu>li>a {
    padding: 7px 10px;
    font-size: 13px;
  }

  .se24-btn-green {
    padding: 20px 18px;
    font-size: 16px;
  }

  .se24-expertise-card {
    grid-template-columns: 1fr 1fr;
  }

  .se24-stats {
    grid-column: 2/3;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE ≤720px
   Layout: [LOGO]  [📞 Appelez-nous]  [☰]
   ============================================================ */
@media (max-width: 720px) {

  /* Header */
  .se24-header-inner {
    grid-template-columns: 1fr auto auto;
    padding: 0 16px;
    height: 60px;
    gap: 10px;
  }

  .se24-logo img {
    max-height: 34px;
  }

  .se24-logo-text {
    font-size: .82rem;
  }

  .se24-header-cta {
    display: none;
  }

  /* Mobile call pill */
  .se24-mobile-call {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--green);
    color: #fff;
    padding: 8px 13px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    text-decoration: none;
    animation: pulse-green 1.8s infinite;
    flex-shrink: 0;
  }

  .se24-mobile-call .dot {
    width: 7px;
    height: 7px;
    background: #fff;
    border-radius: 50%;
    animation: blink-dot 1s step-start infinite;
  }

  /* Burger */
  .se24-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: 1.5px solid var(--border);
    border-radius: 7px;
    cursor: pointer;
    padding: 8px 9px;
    flex-shrink: 0;
    transition: border-color .2s;
  }

  .se24-burger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all .25s;
  }

  .se24-burger.open {
    border-color: var(--blue);
  }

  .se24-burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background: var(--blue);
  }

  .se24-burger.open span:nth-child(2) {
    opacity: 0;
  }

  .se24-burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background: var(--blue);
  }

  /* ── DRAWER: slides in from right ── */
  .se24-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(310px, 86vw);
    background: var(--white);
    z-index: 1100;
    transform: translateX(110%);
    transition: transform .3s cubic-bezier(.22, .68, 0, 1.1);
    box-shadow: -6px 0 32px rgba(0, 0, 0, .15);
    overflow: hidden;
  }

  .se24-nav.open {
    transform: translateX(0);
  }

  /* Overlay */
  .se24-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    z-index: 1099;
  }

  .se24-nav-overlay.open {
    display: block;
  }

  /* ── Drawer header: title + X ── */
  .se24-nav-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    height: 58px;
    flex-shrink: 0;
    border-bottom: 1px solid #eef0f4;
    background: var(--white);
  }

  .se24-nav-top-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: .2px;
  }

  .se24-nav-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 7px;
    border: 1.5px solid #e0e4ea;
    background: none;
    cursor: pointer;
    font-size: 18px;
    color: #374151;
    line-height: 1;
    transition: background .2s, border-color .2s, color .2s;
  }

  .se24-nav-close-btn:hover {
    background: #fee2e2;
    border-color: #fca5a5;
    color: #dc2626;
  }

  /* ── Scrollable menu area ── */
  .se24-nav-menu {
    flex-direction: column;
    align-items: stretch;
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0;
    padding: 8px 0;
    list-style: none;
  }

  /* Top-level items */
  .se24-nav-menu>li>a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 18px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    border-bottom: 1px solid #f3f4f6;
    border-radius: 0;
    background: none;
    white-space: normal;
    transition: background .15s, color .15s;
  }

  .se24-nav-menu>li>a:hover,
  .se24-nav-menu>li.current-menu-item>a,
  .se24-nav-menu>li.current_page_item>a {
    background: #eff6ff;
    color: var(--blue);
  }

  /* + / − toggle on parents */
  .se24-nav-menu>li.menu-item-has-children>a::after,
  .se24-nav-menu>li.page_item_has_children>a::after {
    content: '+' !important;
    font-size: 22px !important;
    font-weight: 300 !important;
    line-height: 1 !important;
    color: var(--blue) !important;
    flex-shrink: 0;
    padding-left: 12px;
    opacity: 1 !important;
    transform: none !important;
  }

  .se24-nav-menu>li.menu-item-has-children.submenu-open>a::after,
  .se24-nav-menu>li.page_item_has_children.submenu-open>a::after {
    content: '−' !important;
  }

  /* ── SUBMENUS: hidden by default, no WP override can show them ── */
  .se24-nav-menu .sub-menu,
  .se24-nav-menu .children,
  .se24-nav-menu li.current-menu-ancestor>.sub-menu,
  .se24-nav-menu li.current-menu-parent>.sub-menu,
  .se24-nav-menu li.current_page_ancestor>.children,
  .se24-nav-menu li.current_page_parent>.children {
    display: none !important;
    position: static !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    min-width: 0 !important;
    background: #f7f9ff;
    list-style: none;
    padding: 0 !important;
  }

  /* Only show when JS adds .submenu-open —
     Spécificité (0,3,1) pour battre li.current-menu-ancestor > .sub-menu (0,3,1)
     Comme ce bloc vient APRÈS dans le CSS, il l'emporte à spécificité égale */
  .se24-nav-menu li.submenu-open > .sub-menu,
  .se24-nav-menu li.submenu-open > .children {
    display: block !important;
    border-top: 1px solid #e8efff !important;
    border-bottom: 1px solid #e8efff !important;
    padding: 4px 0 !important;
  }

  .se24-nav-menu .sub-menu li a,
  .se24-nav-menu .children li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px 12px 32px;
    font-size: 14px;
    font-weight: 400;
    color: #374151;
    border-bottom: 1px solid #eef2ff;
    border-radius: 0;
    background: transparent;
    transition: background .15s, color .15s;
  }

  .se24-nav-menu .sub-menu li a::before,
  .se24-nav-menu .children li a::before {
    content: '→';
    color: var(--blue);
    font-size: 11px;
    flex-shrink: 0;
  }

  .se24-nav-menu .sub-menu li a:hover,
  .se24-nav-menu .children li a:hover {
    background: #eff6ff;
    color: var(--blue);
  }

  /* ── CTA at bottom of drawer ── */
  .se24-nav-cta-wrap {
    display: block;
    padding: 14px 16px;
    flex-shrink: 0;
    border-top: 1px solid #eef0f4;
    background: var(--white);
  }

  .se24-nav-cta-wrap .se24-btn-green {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 15px;
    font-size: 15px;
    border-radius: 10px;
  }

  /* ── Page sections ── */
  .se24-hero-content {
    padding: 40px 20px;
  }

  .se24-hero h1 {
    font-size: 17px;
  }

  .se24-expertise-card {
    grid-template-columns: 1fr;
    padding: 28px 20px;
  }

  .se24-stats {
    grid-column: 1;
    grid-template-columns: 1fr 1fr;
  }

  .se24-services-grid,
  .se24-extra-grid {
    grid-template-columns: 1fr;
  }

  .se24-values-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .se24-reviews-grid {
    grid-template-columns: 1fr;
  }

  .se24-arrow {
    display: none;
  }

  .se24-partners-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .se24-form-row {
    grid-template-columns: 1fr;
  }

  .se24-footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .se24-trust {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .se24-contact-band h2 {
    font-size: 1.4rem;
  }
}

/* ============================================================
   GOOGLE REVIEWS BAR — after hero, all pages
   ============================================================ */
.se24-gr-bar {
  background: #fff;
  border-bottom: 1px solid #e8edf4;
  box-shadow: 0 4px 20px rgba(0,0,0,.05);
  padding: 20px 24px;
  position: relative;
  z-index: 10;
}

.se24-gr-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

/* Left: Google score block */
.se24-gr-score {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
  transition: opacity .2s;
}
.se24-gr-score:hover { opacity: .85; }

.se24-gr-g {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #fff;
  border: 2px solid #e8edf4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 900;
  color: #4285f4;
  box-shadow: 0 2px 8px rgba(66,133,244,.15);
  flex-shrink: 0;
  font-family: 'Google Sans', system-ui, sans-serif;
}

.se24-gr-score-body {}

.se24-gr-stars {
  color: #f59e0b;
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 3px;
}

.se24-gr-meta {
  font-size: 13px;
  color: #374151;
  line-height: 1;
}
.se24-gr-meta strong {
  font-size: 17px;
  font-weight: 800;
  color: #111827;
  margin-right: 2px;
}
.se24-gr-meta span {
  color: #6b7280;
}

/* Separator */
.se24-gr-sep {
  width: 1px;
  height: 52px;
  background: #e5e7eb;
  flex-shrink: 0;
}

/* Cards container */
.se24-gr-cards {
  display: flex;
  gap: 14px;
  flex: 1;
  min-width: 0;
}

/* Individual review card */
.se24-gr-card {
  flex: 1;
  min-width: 0;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px 14px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.se24-gr-card:hover {
  border-color: #93c5fd;
  box-shadow: 0 4px 16px rgba(59,130,246,.1);
  transform: translateY(-2px);
}

.se24-gr-card-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.se24-gr-av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2196f3, #1565c0);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.se24-gr-card-info {
  flex: 1;
  min-width: 0;
}

.se24-gr-name {
  font-size: 12.5px;
  font-weight: 700;
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.se24-gr-loc {
  font-size: 10.5px;
  color: #9ca3af;
}

.se24-gr-g-mini {
  font-size: 15px;
  font-weight: 900;
  color: #4285f4;
  flex-shrink: 0;
  margin-left: auto;
}

.se24-gr-mini-stars {
  color: #f59e0b;
  font-size: 12px;
  letter-spacing: .5px;
  margin-bottom: 5px;
}

.se24-gr-txt {
  font-size: 12px;
  color: #4b5563;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Responsive */
@media (max-width: 960px) {
  .se24-gr-cards {
    flex-wrap: wrap;
  }
  .se24-gr-card {
    min-width: calc(50% - 7px);
    flex: 0 0 calc(50% - 7px);
  }
  .se24-gr-card:last-child {
    display: none;
  }
}

@media (max-width: 720px) {
  .se24-gr-inner {
    gap: 16px;
  }
  .se24-gr-sep {
    display: none;
  }
  .se24-gr-cards {
    width: 100%;
  }
  .se24-gr-card {
    min-width: calc(50% - 7px);
    flex: 0 0 calc(50% - 7px);
  }
  .se24-gr-card:last-child {
    display: none;
  }
}

@media (max-width: 480px) {
  .se24-gr-score { width: 100%; }
  .se24-gr-cards { gap: 10px; }
  .se24-gr-card {
    min-width: 100%;
    flex: 0 0 100%;
  }
  .se24-gr-card:nth-child(n+2) {
    display: none;
  }
}