:root {
  --ad-ink: #0f172a;
  --ad-blue: #0e5875;
  --ad-orange: #ff6b35;
  --ad-bg: #f8fafc;
}

/* ===== HERO ===== */
.rep-hero {
  position: relative;
  isolation: isolate;
  background: #000;
}

.rep-hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.rep-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  filter: saturate(1.03) contrast(1.02);
  animation: ken 18s ease-in-out infinite;
}

@keyframes ken {

  0%,
  100% {
    transform: scale(1.06) translateY(0);
  }

  50% {
    transform: scale(1.12) translateY(-2%);
  }
}

.rep-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 8, 23, .25), rgba(2, 8, 23, .65));
}

.grid-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 22px 22px;
  mix-blend-mode: overlay;
}

.rep-hero .container {
  position: relative;
  z-index: 1;
}

.rep-hero-inner {
  min-height: clamp(380px, 56vh, 640px);
  color: #fff;
  display: grid;
  align-content: center;
  justify-items: start;
  text-shadow: 0 14px 36px rgba(0, 0, 0, .45);
  padding: 72px 0;
}

.rep-title {
  margin: 0 0 6px;
  font-size: clamp(28px, 4.8vw, 56px);
}

.rep-sub {
  margin: 0 0 16px;
  font-size: clamp(14px, 2.1vw, 20px);
  opacity: .95;
}

.rep-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Fancy underline + subtle shimmer */
.accent-underline {
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

.accent-underline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ad-orange), #f9a23c 50%, var(--ad-blue));
  border-radius: 999px;
  transform-origin: left;
  transform: scaleX(.25);
  transition: transform .4s ease;
}

.accent-underline:is(:hover, :focus-within)::after {
  transform: scaleX(1);
}

.shimmer {
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, .55), #fff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shine 3.2s linear infinite;
}

@keyframes shine {
  0% {
    background-position: -200% 0
  }

  100% {
    background-position: 200% 0
  }
}

/* ===== BUTTON LIFT & RIPPLE ===== */
.btn-lift {
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(2, 8, 23, .15);
  transition: transform .2s ease, box-shadow .25s ease;
}

.btn-lift:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(2, 8, 23, .2);
}

.ripple {
  position: relative;
  overflow: hidden;
  /* ensure the ripple stays inside */
}

.ripple::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle closest-side, rgba(255, 255, 255, .35), transparent 60%);
  transform: scale(0);
  opacity: 0;
  transition: transform .4s ease, opacity .4s ease;
  pointer-events: none;
  /* never block clicks */
}


.ripple.rippling::after {
  transform: scale(1);
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .ripple::after {
    transition: none;
  }
}


/* ===== SECTION HEAD ===== */
.section-padding {
  padding: 64px 0;
}

.rep-head {
  margin-bottom: 20px;
}

.rep-head p {
  margin: 0;
  color: #475569;
}

/* ===== SERVICES GRID ===== */
.serv-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width:1024px) {
  .serv-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:640px) {
  .serv-grid {
    grid-template-columns: 1fr;
  }
}

/* Modern card with gradient border via mask */
.serv-card {
  --b: #e5e7eb;
  position: relative;
  padding: 22px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(2, 8, 23, .06);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  border: 1px solid var(--b);
}

.serv-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(120deg, #ffd9c9, #e6f6ff 60%, #e4ffe7);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
  border-radius: inherit;
}

.serv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 60px rgba(2, 8, 23, .16);
  background: #fff;
}

.serv-card h3 {
  margin: 2px 0 6px;
  color: var(--ad-ink);
  font-size: 20px;
}

.serv-card p {
  margin: 0;
  color: #4b5563;
  line-height: 1.7;
}

.serv-icon {
  width: 66px;
  height: 66px;
  border-radius: 16px;
  margin-bottom: 6px;
  display: grid;
  place-items: center;
  background: radial-gradient(100% 100% at 30% 30%, #fff 0%, #fff3ed 100%);
  border: 1px solid #ffe1d2;
  box-shadow: 0 12px 22px rgba(255, 107, 53, .16);
}

/* ⬇️ Only custom ic-* icons draw a masked block in ::before */
.serv-icon[class*="ic-"]::before {
  content: "";
  width: 28px;
  height: 28px;
  display: block;
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  background: linear-gradient(180deg, var(--ad-ink), #0b2740);
}

/* Custom mask icons */
.ic-wrench::before {
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill=%23000 d="M22 19.59 13.41 11A6.5 6.5 0 1 1 11 10.59L19.59 19.2A2 2 0 1 0 22 19.59zM6.5 10A3.5 3.5 0 1 0 10 6.5 3.5 3.5 0 0 0 6.5 10z"/></svg>');
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill=%23000 d="M22 19.59 13.41 11A6.5 6.5 0 1 1 11 10.59L19.59 19.2A2 2 0 1 0 22 19.59zM6.5 10A3.5 3.5 0 1 0 10 6.5 3.5 3.5 0 0 0 6.5 10z"/></svg>');
}

.ic-engine::before {
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill=%23000 d="M7 7h10v4h3l1 2v4h-4v2H7v-2H3v-6h4V7z"/></svg>');
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill=%23000 d="M7 7h10v4h3l1 2v4h-4v2H7v-2H3v-6h4V7z"/></svg>');
}

.ic-scan::before {
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill=%23000 d="M3 5h18v2H3V5m0 12h18v2H3v-2M7 9h10v6H7V9z"/></svg>');
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill=%23000 d="M3 5h18v2H3V5m0 12h18v2H3v-2M7 9h10v6H7V9z"/></svg>');
}

.ic-radiator::before {
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill=%23000 d="M3 7h18v10H3V7m3-3h2v4H6V4m4 0h2v4h-2V4m4 0h2v4h-2V4z"/></svg>');
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill=%23000 d="M3 7h18v10H3V7m3-3h2v4H6V4m4 0h2v4h-2V4m4 0h2v4h-2V4z"/></svg>');
}

.ic-tire::before {
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill=%23000 d="M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2m0 3a7 7 0 1 1-7 7 7 7 0 0 1 7-7m0 3a4 4 0 1 0 4 4 4 4 0 0 0-4-4z"/></svg>');
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill=%23000 d="M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2m0 3a7 7 0 1 1-7 7 7 7 0 0 1 7-7m0 3a4 4 0 1 0 4 4 4 4 0 0 0-4-4z"/></svg>');
}

.ic-electric::before {
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill=%23000 d="m7 2 10 9H11l2 9L5 11h6z"/></svg>');
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill=%23000 d="m7 2 10 9H11l2 9L5 11h6z"/></svg>');
}

.ic-ac::before {
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill=%23000 d="m12 2 2 6h6l-5 4 2 6-5-4-5 4 2-6-5-4h6z"/></svg>');
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill=%23000 d="m12 2 2 6h6l-5 4 2 6-5-4-5 4 2-6-5-4h6z"/></svg>');
}

.ic-body::before {
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill=%23000 d="M3 13l3-5h12l3 5v6H3v-6z"/></svg>');
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill=%23000 d="M3 13l3-5h12l3 5v6H3v-6z"/></svg>');
}

/* subtle icon pulse */
.pulse {
  animation: pulse 2.8s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: translateZ(0) scale(1)
  }

  50% {
    transform: translateZ(0) scale(1.05)
  }
}

/* 3D tilt hover (pure CSS + perspective container) */
.tilt {
  transform-style: preserve-3d;
  will-change: transform;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s ease, transform .55s cubic-bezier(.22, .61, .36, 1);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ===== FORM ===== */
.rdv-shell {
  display: grid;
  gap: 22px;
  grid-template-columns: 1.18fr .82fr;
}

@media (max-width:992px) {
  .rdv-shell {
    grid-template-columns: 1fr;
  }
}

.glass {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(1.2) blur(2px);
}

.rdv-form {
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(2, 8, 23, .08);
  padding: 18px;
}

.rdv-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "name email"
    "phone imm"
    "types types"
    "date time"
    "msg msg"
    "actions actions";
}

@media (max-width:760px) {
  .rdv-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "name" "email" "phone" "imm" "types" "date" "time" "msg" "actions";
  }
}

.field-name {
  grid-area: name
}

.field-email {
  grid-area: email
}

.field-phone {
  grid-area: phone
}

.field-imm {
  grid-area: imm
}

.field-types {
  grid-area: types
}

.field-date {
  grid-area: date
}

.field-time {
  grid-area: time
}

.field-msg {
  grid-area: msg
}

.field-actions {
  grid-area: actions;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap
}

/* Float labels */
.float {
  position: relative;
  display: block;
}

.float>input,
.float>textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px 14px;
  background: #fff;
  font-size: 16px;
  transition: border-color .2s, box-shadow .2s, background .2s;
}

.float>textarea {
  min-height: 140px;
  resize: vertical;
}

.float>input:focus,
.float>textarea:focus {
  outline: 0;
  border-color: var(--ad-orange);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, .16);
}

.float>span {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 0 6px;
  color: #6b7280;
  background: #fff;
  transition: transform .15s ease, font-size .15s ease, top .15s ease, color .15s ease;
}

.float>input:not(:placeholder-shown)+span,
.float>textarea:not(:placeholder-shown)+span,
.float>input:focus+span,
.float>textarea:focus+span {
  transform: translateY(-18px);
  font-size: 12px;
  top: 8px;
  color: var(--ad-blue);
}

/* Chips */
.field-types {
  border: 0;
  margin: 4px 0 0;
  padding: 0;
}

.field-types legend {
  margin-bottom: 8px;
  font-weight: 800;
  color: var(--ad-ink);
}

.chip-wrap {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: 8px 12px;
  background: #fff;
  cursor: pointer;
  user-select: none;
  transition: transform .12s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(2, 8, 23, .06);
}

.chip input {
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  border: 1px solid #cbd5e1;
  display: grid;
  place-items: center;
}

.chip input::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: transparent;
  transition: transform .15s ease, background .15s ease;
  transform: scale(.6);
}

.chip input:checked {
  border-color: #ffb18f;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, .15);
}

.chip input:checked::after {
  background: var(--ad-orange);
  transform: scale(1);
}

/* Aside */
.rdv-aside {
  display: grid;
  gap: 14px;
}

.aside-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 28px rgba(2, 8, 23, .08);
}

.gradient-border {
  position: relative;
}

.gradient-border::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(from 220deg, #a0c8ff, #7dd3fc, #a7f3d0, #fde68a, #a0c8ff);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

/* Utility reveal */
.reveal-delay-1 {
  transition-delay: .05s
}

.reveal-delay-2 {
  transition-delay: .1s
}

.reveal-delay-3 {
  transition-delay: .15s
}


:root {
  --ad-ink: #0f172a;
  --ad-blue: #0e5875;
  --ad-orange: #ff6b35;
  --ad-bg: #f8fafc;
}

/* ===== HERO & SERVICES from previous version (kept) ===== */
/* (…the hero, buttons, cards, icons, reveal, etc. from your last reply…) */

/* ---------- SMALL ADDITIONS YOU NEED ---------- */
.section-padding {
  padding: 64px 0;
}

.rep-head {
  margin-bottom: 20px;
}

.rep-head p {
  margin: 0;
  color: #475569;
}

.btn-lift {
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(2, 8, 23, .15);
  transition: transform .2s, box-shadow .25s;
}

.btn-lift:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(2, 8, 23, .2);
}

.ripple::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle closest-side, rgba(255, 255, 255, .35), transparent 60%);
  transform: scale(0);
  opacity: 0;
  transition: transform .4s, opacity .4s;
}

.ripple:active::after {
  transform: scale(1);
  opacity: 1;
  transition: none;
}

.accent-underline {
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

.accent-underline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ad-orange), #f9a23c 50%, var(--ad-blue));
  border-radius: 999px;
  transform-origin: left;
  transform: scaleX(.25);
  transition: transform .4s;
}

.accent-underline:hover::after {
  transform: scaleX(1);
}

/* ===== CONTACT / RDV – enhanced ===== */
.rdv-shell {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.2fr .8fr;
}

@media (max-width:992px) {
  .rdv-shell {
    grid-template-columns: 1fr;
  }
}

.elevate {
  box-shadow: 0 14px 36px rgba(2, 8, 23, .10);
}

.glass {
  background: #fff;
  backdrop-filter: saturate(1.1);
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 20px;
}

/* Grid */
.rdv-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "name email"
    "phone imm"
    "types types"
    "date time"
    "msg msg"
    "consent consent"
    "actions actions";
}

@media (max-width:760px) {
  .rdv-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "name" "email" "phone" "imm" "types" "date" "time" "msg" "consent" "actions";
  }
}

.field-name {
  grid-area: name
}

.field-email {
  grid-area: email
}

.field-phone {
  grid-area: phone
}

.field-imm {
  grid-area: imm
}

.field-types {
  grid-area: types
}

.field-date {
  grid-area: date
}

.field-time {
  grid-area: time
}

.field-msg {
  grid-area: msg
}

/* Float labels */
.float {
  position: relative;
  display: block;
}

.float>input,
.float>textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px 14px;
  background: #fff;
  font-size: 16px;
  transition: border-color .2s, box-shadow .2s, background .2s;
}

.float>textarea {
  min-height: 140px;
  resize: vertical;
}

.float>input:focus,
.float>textarea:focus {
  outline: 0;
  border-color: var(--ad-orange);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, .16);
}

.float>span {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 0 6px;
  color: #6b7280;
  background: #fff;
  transition: transform .15s ease, font-size .15s ease, top .15s ease, color .15s ease;
}

.float>input:not(:placeholder-shown)+span,
.float>textarea:not(:placeholder-shown)+span,
.float>input:focus+span,
.float>textarea:focus+span {
  transform: translateY(-18px);
  font-size: 12px;
  top: 8px;
  color: var(--ad-blue);
}

/* Clickable checkbox list */
.field-types {
  border: 0;
  margin-top: 6px;
}

.field-types legend {
  margin-bottom: 10px;
  font-weight: 800;
  color: var(--ad-ink);
}

.options {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 1fr;
}

@media (max-width:760px) {
  .options {
    grid-template-columns: 1fr;
  }
}

.options li {
  position: relative;
}

.check-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.check {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #e5e7eb;
  background: #fff;
  border-radius: 14px;
  padding: 12px 14px;
  cursor: pointer;
  transition: transform .12s, box-shadow .2s, border-color .2s, background .2s;
  user-select: none;
}

.check:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(2, 8, 23, .06);
}

.check-box {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 1px solid #cbd5e1;
  display: grid;
  place-items: center;
  position: relative;
  transition: border-color .2s, background .2s;
}

.check-box::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: transparent;
  transform: scale(.6);
  transition: transform .15s ease, background .15s ease;
}

.check-input:checked+.check .check-box {
  border-color: #ffb18f;
  background: #ffe9e0;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, .15) inset;
}

.check-input:checked+.check .check-box::after {
  background: var(--ad-orange);
  transform: scale(1);
}

.check-label {
  color: #0f172a;
}

/* Consent toggle */
.consent {
  grid-area: consent;
  display: flex;
  align-items: center;
  gap: 10px;
}

.consent input {
  appearance: none;
  width: 44px;
  height: 26px;
  border-radius: 999px;
  position: relative;
  background: #e5e7eb;
  cursor: pointer;
  transition: background .2s;
}

.consent input::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(2, 8, 23, .2);
  transition: transform .2s;
}

.consent input:checked {
  background: linear-gradient(90deg, var(--ad-orange), #f9a23c);
}

.consent input:checked::after {
  transform: translateX(18px);
}

.consent span {
  display: none;
}

/* purely decorative track */
.consent em {
  color: #475569;
}

/* Actions */
.field-actions {
  grid-area: actions;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.rdv-status {
  opacity: 0;
  transition: opacity .25s;
  color: #0f172a;
  font-weight: 700;
}

.rdv-note {
  color: #64748b;
  margin: 0;
}

/* ======== ENHANCED ASIDE CARDS ======== */
.rdv-aside {
  display: grid;
  gap: 14px;
}

/* Glow card with animated border */
.aside-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff, #f9fbff);
  border: 1px solid #e9eef5;
  border-radius: 20px;
  padding: 18px 16px;
  box-shadow: 0 12px 28px rgba(2, 8, 23, .08);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .25s ease;
}

.aside-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(2, 8, 23, .14);
}

.aside-card.glow::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  z-index: -1;
  padding: 2px;
  background: conic-gradient(from 0deg, #a0c8ff, #7dd3fc, #a7f3d0, #fde68a, #fca5a5, #a0c8ff);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: spin 12s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(1turn);
  }
}

.aside-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.aside-head h3 {
  margin: 0;
  font-weight: 900;
  color: var(--ad-ink);
}

.aside-head .halo {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, #ffd2bf 40%, rgba(255, 107, 53, .7) 70%);
  box-shadow: 0 0 0 6px rgba(255, 107, 53, .15), 0 0 24px rgba(255, 107, 53, .35);
}

/* Benefits list */
.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.benefit {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 10px;
  align-items: flex-start;
  padding: 10px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #eef2f7;
  transition: transform .15s, box-shadow .2s, border-color .2s;
}

.benefit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(2, 8, 23, .08);
  border-color: #e6eef8;
}

.b-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #0d2741;
  background: radial-gradient(120% 120% at 30% 20%, #fff 0%, #eef6ff 50%, #e6f6ff 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9), 0 10px 18px rgba(15, 23, 42, .12);
}

.b-icon svg {
  width: 22px;
  height: 22px;
  opacity: .95;
}

.b-copy strong {
  display: block;
  color: #0f172a;
  margin-bottom: 4px;
}

.b-copy small {
  color: #64748b;
  line-height: 1.55;
}

/* Hours timeline */
.hours-card .time-timeline {
  position: relative;
  margin: 6px 0 14px 8px;
  padding-left: 18px;
}

.hours-card .time-timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(180deg, #dbeafe, #94a3b8);
}

.time-row {
  position: relative;
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 10px 0;
}

.time-row .dot {
  position: absolute;
  left: -2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(180deg, #fff, #ffedd5);
  border: 1px solid #fcd7b4;
  box-shadow: 0 0 0 6px rgba(255, 107, 53, .12);
  transform: translateX(-8px);
  animation: pop .9s ease forwards, pulseDot 2.4s ease-in-out infinite;
}

.time-row .time-copy b {
  display: block;
  color: #0f172a;
}

.time-row .time-copy small {
  color: #64748b;
}

.time-row.closed b,
.time-row.closed small {
  color: #94a3b8;
}

@keyframes pop {
  from {
    scale: .6;
    opacity: .6
  }

  to {
    scale: 1;
    opacity: 1
  }
}

@keyframes pulseDot {

  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(255, 107, 53, .10)
  }

  50% {
    box-shadow: 0 0 0 8px rgba(255, 107, 53, .20)
  }
}

.w-100 {
  width: 100%;
}

/* Reveal animation hook used by JS */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease, transform .6s cubic-bezier(.2, .7, .2, 1);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* (Icons used earlier for service cards exist in your previous sheet) */


/* ===== Persistent Ripple (never disappears) ===== */
.ripple {
  position: relative;
  overflow: hidden;
  /* keep the shine inside the button */
}

.ripple::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle closest-side, rgba(255, 255, 255, .35), transparent 60%);
  transform: scale(0.9);
  opacity: 0;
  transition: transform .4s ease, opacity .4s ease;
  pointer-events: none;
}

/* Stays ON after first interaction */
.ripple.rippling-on::after {
  transform: scale(1);
  opacity: 1;
  transition: none;
  /* lock it on */
}

/* (Optional utilities — use if you want these behaviors too) */
/* Always on from page load */
.ripple.-always::after {
  transform: scale(1);
  opacity: 1;
  transition: none;
}

/* Gentle infinite breathing effect */
.ripple.-pulse::after {
  animation: ripplePulse 1.6s ease-in-out infinite;
  opacity: 1;
}

@keyframes ripplePulse {

  0%,
  100% {
    transform: scale(0.92);
    opacity: .75;
  }

  50% {
    transform: scale(1.02);
    opacity: 1;
  }
}

/* IMPORTANT: remove any old :active rule for ripple */


/* ===== FINAL OVERRIDES: Persistent Ripple that never disappears ===== */

/* Base */
.ripple {
  position: relative;
  overflow: hidden;
  /* keep shine inside */
}

/* Create the shine layer */
.ripple::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle closest-side, rgba(255, 255, 255, .35), transparent 60%);
  transform: scale(.9);
  opacity: 0;
  transition: transform .4s ease, opacity .4s ease;
  pointer-events: none;
  z-index: 0;
}

/* Make sure button/content sits above z-index 0 layer if needed */
.ripple>* {
  position: relative;
  z-index: 1;
}

/* 🔒 Persistent states (stronger specificity + !important to beat earlier rules) */
.ripple.rippling-on::after,
.ripple.-always::after {
  transform: scale(1) !important;
  opacity: 1 !important;
  transition: none !important;
}

/* Optional: gentle breathing that never stops */
.ripple.-pulse::after {
  opacity: 1 !important;
  animation: ripplePulse 1.6s ease-in-out infinite;
}

@keyframes ripplePulse {

  0%,
  100% {
    transform: scale(.92);
    opacity: .8;
  }

  50% {
    transform: scale(1.02);
    opacity: 1;
  }
}

/* IMPORTANT: neutralize any old :active rules that might kill it */
.ripple:active::after {
  /* override old styles */
  transform: scale(1) !important;
  opacity: 1 !important;
  transition: none !important;
}



/* Ensure bootstrap-icons scale nicely inside your wrappers */
.serv-icon.bi,
.b-icon.bi {
  font-size: 1.75rem;
  /* tweak to taste */
  line-height: 1;
}

.serv-icon.bi::before,
.b-icon.bi::before {
  display: inline-block;
  vertical-align: middle;
}

/* === ICON COLOR OVERRIDES — neutral, no blue === */
:root {
  --ad-icon: var(--ad-ink);
}

/* set once; change here if you want a different tone */

/* Service card icons (mask-based or font-based) */
.serv-card .serv-icon {
  color: var(--ad-icon);
}

/* Keep masked icons neutral (no blue gradient) */
.serv-card .serv-icon::before {
  background: white !important;
}

/* Aside/benefits icons (Bootstrap or inline SVG 'currentColor') */
.benefit .b-icon {
  color: var(--ad-icon) !important;
}

/* Bootstrap Icons inside wrappers (they inherit 'color') */
.serv-icon.bi,
.b-icon.bi {
  color: var(--ad-icon) !important;
}

/* Optional: if you ever place icons on a dark surface, wrap with .on-dark */
.on-dark .serv-icon,
.on-dark .b-icon {
  color: #fff !important;
}

.on-dark .serv-icon::before {
  background: currentColor !important;
}

/* ================= ICONS FIX (place at the very end) ================= */

/* 0) One place to control icon color (neutral, high-contrast) */
:root {
  --ad-icon: var(--ad-ink);
}

/* tweak if needed */

/* 1) (REMOVED the rule that set content:none on non-ic icons to avoid killing .bi::before) */

/* 2) Only apply the mask drawing to custom ic-* icons (already scoped above) */
.serv-icon[class*="ic-"] {
  color: var(--ad-icon);
}

.serv-icon[class*="ic-"]::before {
  content: "";
  width: 28px;
  height: 28px;
  display: block;
  background: currentColor !important;
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
}

/* 3) Bootstrap Icons: use the glyph, no mask. They inherit color. */
.serv-icon.bi,
.b-icon.bi {
  color: var(--ad-icon) !important;
  font-size: 1.75rem;
  line-height: 1;
}

.serv-icon.bi::before,
.b-icon.bi::before {
  display: inline-block;
  vertical-align: middle;
}

/* 4) Aside/benefits wrappers also inherit neutral color */
.benefit .b-icon {
  color: var(--ad-icon) !important;
}

/* 5) Optional: on dark blocks, flip to white */
.on-dark .serv-icon,
.on-dark .b-icon {
  color: #fff !important;
}

.on-dark .serv-icon[class*="ic-"]::before {
  background: currentColor !important;
}

/* =====================================================================
   RDV ASIDE — BULLET & TIMELINE ENHANCEMENTS (ONLY THIS SECTION)
   - Non-destructive overrides scoped to .hours-card and .aside-head
   - Softer, refined bullets & dashed vertical line
   ===================================================================== */

/* Refine the small orange halo bullet in aside headers */
.aside-head .halo {
  background: radial-gradient(circle at 35% 35%, #fff 0%, #ffe6d9 45%, rgba(255, 107, 53, .6) 85%);
  box-shadow:
    0 0 0 3px #fff,
    /* crisp inner ring to separate from bg */
    0 0 0 7px rgba(255, 107, 53, .12),
    0 10px 22px rgba(255, 107, 53, .20);
}

/* Timeline vertical line — subtle dashed + neutral tint */
.hours-card .time-timeline::before {
  width: 3px;
  left: 9px;
  /* aligns with refined dot offset below */
  background: repeating-linear-gradient(to bottom,
      #d7e2f0 0 14px,
      rgba(215, 226, 240, 0) 14px 26px);
  filter: drop-shadow(0 0 1px rgba(15, 23, 42, .08));
  opacity: .9;
}

/* Timeline bullet — soft glassy core with dual ring */
.hours-card .time-row .dot {
  width: 12px;
  height: 12px;
  background: radial-gradient(circle at 35% 35%, #fff 0%, #f7f9fc 60%, #ecf1f7 100%);
  border: 1px solid #e2e8f0;
  box-shadow:
    0 0 0 2px #fff,
    /* inner crisp ring */
    0 0 0 8px rgba(255, 107, 53, .12);
  /* soft outer glow (kept brand, reduced) */
  transform: translateX(-9px);
  animation: pop .9s ease forwards, timelinePulse 2.6s ease-in-out infinite;
}

/* Closed rows — calmer, no pulse */
.hours-card .time-row.closed .dot {
  background: radial-gradient(circle at 35% 35%, #fff 0%, #f4f6f8 65%, #e9edf3 100%);
  border-color: #e5e9ef;
  box-shadow:
    0 0 0 2px #fff,
    0 0 0 8px rgba(148, 163, 184, .15);
  animation: pop .9s ease forwards;
}

/* New pulse tailored for the refined dual ring */
@keyframes timelinePulse {

  0%,
  100% {
    box-shadow:
      0 0 0 2px #fff,
      0 0 0 8px rgba(255, 107, 53, .12);
  }

  50% {
    box-shadow:
      0 0 0 2px #fff,
      0 0 0 12px rgba(255, 107, 53, .20);
  }
}
