/**
 * Landing Quantum Voyages — inspiration agence voyages d'affaires
 * Palette : vert #66c193, accents orange #fa360a / #ff5e17
 */
:root {
  --qv-primary: #66c193;
  --qv-primary-dark: #2ca2da;
  --qv-gradient-start: #2ca2da;
  --qv-gradient-end: #66c193;
  --qv-accent: #fa360a;
  --qv-accent-alt: #ff5e17;
  --qv-text: #444444;
  --qv-heading: #1a1a1a;
  --qv-muted: #6b7280;
  --qv-white: #ffffff;
  --qv-topbar: #66c193;
  --qv-font-body: "Roboto", system-ui, sans-serif;
  --qv-font-heading: "Source Sans 3", "Source Sans Pro", sans-serif;
  --qv-container: 1170px;
  --qv-gutter-x: 15px;
  --qv-radius: 8px;
  --qv-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.qv-landing {
  margin: 0;
  font-family: var(--qv-font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--qv-text);
  background: var(--qv-white);
}

body.qv-landing.menu-open {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--qv-font-heading);
  font-weight: 700;
  color: var(--qv-heading);
  line-height: 1.2;
  margin: 0 0 0.5em;
}

a {
  color: var(--qv-primary);
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s;
}

a:hover {
  color: var(--qv-accent);
}

.qv-container {
  width: 100%;
  max-width: var(--qv-container);
  margin: 0 auto;
  padding: 0 var(--qv-gutter-x);
}

/* ——— Top bar ——— */
.qv-topbar {
  background: var(--qv-topbar);
  color: #fff;
  font-size: 14px;
}

.qv-topbar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px var(--qv-gutter-x);
  max-width: var(--qv-container);
  margin: 0 auto;
}

.qv-topbar a {
  color: #fff;
}

.qv-topbar a:hover {
  color: #ffe4d9;
}

.qv-topbar .qv-loc,
.qv-topbar-news-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.95;
  flex: 1;
  min-width: 0;
}

.qv-topbar-news {
  position: relative;
  flex: 1;
  min-width: 0;
  height: 1.35em;
  overflow: hidden;
}

.qv-topbar-news-item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0;
  transform: translateY(0.45em);
  transition: opacity 0.55s ease, transform 0.55s ease;
  pointer-events: none;
}

.qv-topbar-news-item.is-active {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .qv-topbar-news-item {
    transition: none;
  }
}

.qv-topbar .qv-topbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ——— Header ——— */
.qv-header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.qv-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--qv-gutter-x);
  max-width: var(--qv-container);
  margin: 0 auto;
  gap: 20px;
}

.qv-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--qv-font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--qv-heading);
}

.qv-logo img {
  max-height: 68px;
  width: auto;
  display: block;
}

.qv-nav {
  display: none;
  align-items: center;
  gap: 8px;
}

@media (min-width: 992px) {
  .qv-nav {
    display: flex;
  }
}

.qv-nav > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.qv-nav li {
  position: relative;
}

.qv-nav > ul > li > a {
  display: block;
  padding: 10px 14px;
  font-family: var(--qv-font-heading);
  font-size: 15px;
  color: #222;
  border-radius: 4px;
}

.qv-nav > ul > li > a:hover,
.qv-nav > ul > li > a:focus {
  color: var(--qv-accent);
}

.qv-nav .qv-submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #fff;
  box-shadow: var(--qv-shadow);
  border-radius: var(--qv-radius);
  padding: 8px 0;
  list-style: none;
  margin: 0;
  z-index: 50;
}

/* Sous-menu principal : uniquement l’enfant direct du lien de 1er niveau */
.qv-nav > ul > li:hover > .qv-submenu,
.qv-nav > ul > li:focus-within > .qv-submenu {
  display: block;
}

.qv-nav > ul > li > .qv-submenu {
  overflow: visible;
}

.qv-submenu a {
  display: block;
  padding: 10px 18px;
  color: #222;
  font-size: 15px;
}

.qv-submenu a:hover {
  color: var(--qv-accent);
  background: rgba(102, 193, 147, 0.06);
}

.qv-submenu-has-flyout {
  position: relative;
}

.qv-submenu-flyout-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 18px;
  color: #222;
  font-size: 15px;
  cursor: default;
  user-select: none;
}

.qv-submenu-has-flyout:hover .qv-submenu-flyout-trigger,
.qv-submenu-has-flyout:focus-within .qv-submenu-flyout-trigger {
  color: var(--qv-accent);
  background: rgba(102, 193, 147, 0.06);
}

.qv-submenu-chevron {
  font-size: 11px;
  opacity: 0.55;
}

/* Flyout « Nos Locations » : masqué tant qu’on ne survole pas cette ligne */
.qv-nav .qv-submenu--flyout {
  display: none;
  top: 0;
  left: 100%;
  margin-left: 0;
  min-width: 220px;
  z-index: 60;
}

.qv-submenu-has-flyout:hover > .qv-submenu--flyout,
.qv-submenu-has-flyout:focus-within > .qv-submenu--flyout {
  display: block;
}

/* Pont invisible pour garder le survol entre la ligne et le panneau latéral */
.qv-submenu--flyout::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10px;
  width: 10px;
  height: 100%;
}

.qv-mobile-sub--label {
  font-weight: 600;
  color: #6b7280;
  pointer-events: none;
}

.qv-mobile-sub--nested a {
  padding-left: 8px;
}

.qv-header-cta {
  display: none;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (min-width: 992px) {
  .qv-header-cta {
    display: flex;
  }
}

.qv-btn-deals {
  background: linear-gradient(90deg, var(--qv-gradient-start), var(--qv-gradient-end));
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}

.qv-btn-deals:hover {
  filter: brightness(1.05);
  color: #fff !important;
}

.qv-btn-outline {
  border: 2px solid var(--qv-primary);
  color: var(--qv-primary);
  padding: 8px 16px;
  border-radius: var(--qv-radius);
  font-weight: 600;
  font-size: 14px;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}

.qv-btn-outline:hover {
  background: var(--qv-primary);
  color: #fff;
}

.qv-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

@media (min-width: 992px) {
  .qv-burger {
    display: none;
  }
}

.qv-burger span {
  display: block;
  height: 3px;
  background: var(--qv-heading);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

body.qv-landing.menu-open .qv-burger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

body.qv-landing.menu-open .qv-burger span:nth-child(2) {
  opacity: 0;
}

body.qv-landing.menu-open .qv-burger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.qv-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 999;
}

body.qv-landing.menu-open .qv-mobile-nav {
  display: block;
}

.qv-mobile-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 92vw);
  height: 100%;
  background: #fff;
  padding: 24px;
  overflow-y: auto;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
}

.qv-mobile-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.qv-mobile-panel a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid #eee;
  color: #222;
  font-weight: 600;
}

.qv-mobile-panel .qv-mobile-sub a {
  font-weight: 400;
  padding-left: 12px;
  font-size: 14px;
}

.qv-mobile-close {
  float: right;
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #666;
  margin-bottom: 8px;
}

/* ——— Hero carousel ——— */
.qv-hero {
  position: relative;
  min-height: 520px;
  background: #1a1a1a;
}

@media (min-width: 768px) {
  .qv-hero {
    min-height: 620px;
  }
}

.qv-hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.qv-hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.qv-hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.35) 55%, transparent 100%);
  z-index: 0;
}

.qv-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--qv-container);
  margin: 0 auto;
  padding: 100px var(--qv-gutter-x) 80px;
  color: #fff;
}

@media (min-width: 768px) {
  .qv-hero-content {
    padding-top: 120px;
    max-width: 640px;
  }
}

.qv-hero-kicker {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  font-family: var(--qv-font-heading);
  margin-bottom: 0.25em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.qv-hero-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  font-family: var(--qv-font-heading);
  margin-bottom: 0.35em;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.qv-hero-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 1.75rem;
  opacity: 0.95;
}

.qv-hero-bar {
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, var(--qv-gradient-start), var(--qv-gradient-end));
  margin-bottom: 1.5rem;
  border-radius: 2px;
}

.qv-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.qv-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  background: #fff;
  color: var(--qv-primary) !important;
  font-weight: 700;
  border-radius: var(--qv-radius);
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
}

.qv-btn-primary:hover {
  background: #f0f0f0;
  color: var(--qv-primary) !important;
}

.qv-btn-warning {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  background: #f59e0b;
  color: #fff !important;
  font-weight: 700;
  border-radius: var(--qv-radius);
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
}

.qv-btn-warning:hover {
  background: #d97706;
  color: #fff !important;
}

.qv-btn-warning--echo {
  position: relative;
  isolation: isolate;
  text-decoration: none;
  animation: qv-hero-warning-pulse 2.4s ease-in-out infinite;
}

.qv-btn-warning-inner {
  position: relative;
  z-index: 1;
}

.qv-btn-warning--echo::before,
.qv-btn-warning--echo::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: var(--qv-radius);
  border: 2px solid rgba(251, 191, 36, 0.9);
  pointer-events: none;
  animation: qv-hero-warning-echo 2.4s ease-out infinite;
}

.qv-btn-warning--echo::after {
  animation-delay: 1.2s;
}

@keyframes qv-hero-warning-echo {
  0% {
    transform: scale(1);
    opacity: 0.85;
  }
  70% {
    opacity: 0.35;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

@keyframes qv-hero-warning-pulse {
  0%,
  100% {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  }
  50% {
    box-shadow: 0 4px 18px rgba(245, 158, 11, 0.55), 0 0 0 4px rgba(251, 191, 36, 0.2);
  }
}

@media (prefers-reduced-motion: reduce) {
  .qv-btn-warning--echo,
  .qv-btn-warning--echo::before,
  .qv-btn-warning--echo::after {
    animation: none;
  }
}

.qv-badge-tranche-age {
  display: inline-block;
  padding: 6px 14px;
  margin: 0 0 10px;
  background: #dc2626;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-radius: 999px;
  line-height: 1.3;
}

.qv-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  background: transparent;
  color: #fff !important;
  font-weight: 700;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--qv-radius);
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
}

.qv-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff !important;
}

.qv-hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.qv-hero-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  cursor: pointer;
  padding: 0;
  opacity: 0.6;
}

.qv-hero-dots button.is-active {
  background: #fff;
  opacity: 1;
}

.qv-hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  display: none;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .qv-hero-arrow {
    display: flex;
  }
}

.qv-hero-arrow:hover {
  background: rgba(255, 255, 255, 0.35);
}

.qv-hero-arrow--prev {
  left: 20px;
}

.qv-hero-arrow--next {
  right: 20px;
}

/* ——— Section experience ——— */
.qv-section {
  padding: 72px 0;
}

.qv-section--alt {
  background: #f9fafb;
}

.qv-split {
  display: grid;
  gap: 40px;
  align-items: center;
}

@media (min-width: 992px) {
  .qv-split {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

.qv-exp-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
}

.qv-exp-num {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  font-family: var(--qv-font-heading);
  line-height: 1.05;
  color: var(--qv-primary);
}

.qv-exp-label {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--qv-heading);
  max-width: 22rem;
}

/* Chiffres clés (accueil) */
.qv-key-stats {
  padding-top: 40px;
  padding-bottom: 48px;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.qv-key-stats-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1.5rem;
}

@media (min-width: 768px) {
  .qv-key-stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.qv-key-stats-item {
  text-align: center;
  padding: 0.5rem;
}

.qv-key-stats-value {
  display: block;
  font-family: var(--qv-font-heading);
  font-size: clamp(2.75rem, 6vw, 4.25rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--qv-primary);
  letter-spacing: -0.02em;
}

.qv-key-stats-label {
  display: block;
  margin-top: 0.65rem;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--qv-heading);
}

.qv-subtitle {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--qv-primary);
  margin-bottom: 8px;
}

.qv-section-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ——— Video block ——— */
.qv-video-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--qv-shadow);
  background: #000;
}

.qv-video-wrap img {
  width: 100%;
  display: block;
  opacity: 0.9;
}

.qv-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #fff;
  text-align: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.25);
  transition: background 0.2s;
}

.qv-video-play:hover {
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
}

.qv-video-play .qv-play-icon {
  width: 64px;
  height: 64px;
  background: var(--qv-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  padding-left: 4px;
}

/* ——— Offer cards ——— */
.qv-offers-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.qv-grid-3 {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .qv-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.qv-grid-offers {
  display: grid;
  gap: 24px;
}

@media (min-width: 640px) {
  .qv-grid-offers {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .qv-grid-offers {
    grid-template-columns: repeat(4, 1fr);
  }
}

.qv-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 28px 22px;
  text-align: center;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}

.qv-card:hover {
  box-shadow: var(--qv-shadow);
  border-color: rgba(102, 193, 147, 0.25);
}

a.qv-card--link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a.qv-card--link:hover {
  transform: translateY(-4px);
  color: inherit;
}

a.qv-card--link:focus-visible {
  outline: 2px solid var(--qv-primary);
  outline-offset: 3px;
}

a.qv-card--link h3 {
  color: var(--qv-heading);
}

.qv-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--qv-primary);
}

a.qv-card--link:hover .qv-card-cta {
  color: var(--qv-accent);
}

.qv-card-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  background: linear-gradient(145deg, rgba(44, 162, 218, 0.14), rgba(102, 192, 146, 0.12));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--qv-primary);
}

.qv-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.qv-card p {
  margin: 0;
  font-size: 14px;
  color: var(--qv-muted);
  line-height: 1.6;
}

/* ——— Logo strip ——— */
.qv-partners {
  text-align: center;
  padding: 48px 0;
  background: #fff;
  border-top: 1px solid #eee;
}

.qv-partners h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--qv-heading);
  margin-bottom: 36px;
}

.qv-partners-logos {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 28px 40px;
}

.qv-partners-logos li {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
}

.qv-partners-logos img {
  max-height: 56px;
  max-width: min(200px, 40vw);
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.88;
  transition: filter 0.25s ease, opacity 0.25s ease;
}

.qv-partners-logos li:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ——— Blog grid ——— */
.qv-post-grid {
  display: grid;
  gap: 28px;
}

@media (min-width: 768px) {
  .qv-post-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.qv-post-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s;
}

.qv-post-card:hover {
  transform: translateY(-4px);
}

.qv-post-img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e5e5e5;
}

.qv-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.qv-post-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  transition: opacity 0.3s;
  z-index: 1;
}

.qv-post-card:hover .qv-post-img::before {
  opacity: 0;
}

.qv-post-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--qv-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 4px;
}

.qv-post-body {
  padding: 20px;
}

.qv-post-meta {
  font-size: 13px;
  color: var(--qv-muted);
  margin-bottom: 10px;
}

.qv-post-body h3 {
  font-size: 1.05rem;
  line-height: 1.35;
}

.qv-post-body h3 a {
  color: inherit;
}

.qv-post-body h3 a:hover {
  color: var(--qv-accent);
}

/* ——— Testimonials ——— */
.qv-testi-section {
  background: linear-gradient(180deg, #f9fafb 0%, #fff 100%);
}

.qv-testi-title {
  text-align: center;
  margin-bottom: 40px;
}

.qv-testi-slider {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.qv-testi-slide {
  display: none;
  background: #fff;
  padding: 36px;
  border-radius: 12px;
  box-shadow: var(--qv-shadow);
  border-left: 4px solid var(--qv-primary);
}

.qv-testi-slide.is-active {
  display: block;
  animation: qvFade 0.4s ease;
}

@keyframes qvFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.qv-testi-stars {
  color: #f0b429;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.qv-testi-slide p {
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0 0 20px;
}

.qv-testi-author {
  font-weight: 700;
  color: var(--qv-heading);
}

.qv-testi-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.qv-testi-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--qv-primary);
  background: #fff;
  color: var(--qv-primary);
  cursor: pointer;
  font-size: 18px;
}

.qv-testi-nav button:hover {
  background: var(--qv-primary);
  color: #fff;
}

.qv-btn-celebrate-header {
  background: transparent;
  color: var(--qv-primary) !important;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  border: 2px solid var(--qv-primary);
}

.qv-btn-celebrate-header:hover {
  background: var(--qv-primary);
  color: #fff !important;
}

/* ——— Capsule strip ——— */
.qv-capsule-strip {
  background: linear-gradient(90deg, var(--qv-gradient-start), var(--qv-gradient-end));
  color: #fff;
  padding: 20px 20px;
  text-align: center;
}

.qv-capsule-strip-text {
  margin: 0 auto;
  max-width: 900px;
  text-align: center;
  font-size: 15px;
  line-height: 1.5;
}

.qv-trust-copy p:not(.qv-subtitle) {
  margin: 0;
}

.qv-trust-cta {
  margin-top: 1.5rem;
}

.qv-btn-celebrate-section {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  background: linear-gradient(90deg, var(--qv-gradient-start), var(--qv-gradient-end));
  color: #fff !important;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none !important;
  border-radius: 999px;
  border: none;
  transition: filter 0.2s ease;
}

.qv-btn-celebrate-section:hover {
  filter: brightness(1.06);
  color: #fff !important;
}

.qv-capsule-strip a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.qv-capsule-strip a:hover {
  color: #ffe4b5;
}

/* ——— Footer ——— */
.qv-footer {
  background: #fff;
  border-top: 1px solid #e5e5e5;
  padding-top: 48px;
}

.qv-footer-grid {
  display: grid;
  gap: 36px;
  padding-bottom: 40px;
}

@media (min-width: 768px) {
  .qv-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .qv-footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

.qv-footer-brand {
  max-width: 280px;
}

.qv-footer-logo {
  display: inline-block;
  margin-bottom: 14px;
  line-height: 0;
}

.qv-footer-logo img {
  max-height: 72px;
  width: auto;
  display: block;
}

.qv-footer-logo-text {
  font-family: var(--qv-font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--qv-heading);
}

.qv-footer-tagline {
  font-size: 14px;
  color: #6b7280;
  margin: 0 0 12px;
  line-height: 1.55;
}

.qv-footer h3 {
  font-size: 1rem;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 10px;
}

.qv-footer h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: var(--qv-primary);
  border-radius: 2px;
}

.qv-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.qv-footer ul li {
  margin-bottom: 10px;
}

.qv-footer ul a {
  color: var(--qv-text);
  font-size: 15px;
}

.qv-footer ul a:hover {
  color: var(--qv-accent);
}

.qv-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.qv-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--qv-primary);
  color: #fff !important;
  border-radius: 50%;
  font-size: 16px;
}

.qv-social a:hover {
  background: var(--qv-accent);
  color: #fff !important;
}

/* Newsletter form (style proche du modèle) */
.qv-newsletter label {
  font-size: 13px;
  font-weight: 600;
  color: #555;
  display: block;
  margin-bottom: 6px;
}

.qv-newsletter input[type="email"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  margin-bottom: 12px;
  font-family: inherit;
}

.qv-newsletter input:focus {
  outline: none;
  border-color: #06768b;
  box-shadow: 0 0 0 3px rgba(6, 118, 139, 0.15);
}

.qv-newsletter button {
  width: 100%;
  padding: 12px;
  background: var(--qv-primary);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
}

.qv-newsletter button:hover {
  background: var(--qv-primary-dark);
}

.qv-footer-bottom {
  border-top: 1px solid #eee;
  padding: 20px;
  text-align: center;
  font-size: 14px;
  color: var(--qv-muted);
}

/* ——— Modal démo ——— */
.qv-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.qv-modal-overlay.is-open {
  display: flex;
}

.qv-modal {
  background: #fff;
  border-radius: 12px;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 28px;
  position: relative;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.qv-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: none;
  background: #f3f4f6;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: #444;
}

.qv-modal h2 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.qv-modal .qv-muted {
  font-size: 14px;
  margin-bottom: 20px;
}

.qv-modal .qv-field {
  margin-bottom: 14px;
}

.qv-modal label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #333;
}

.qv-modal input,
.qv-modal textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
}

.qv-modal textarea {
  min-height: 100px;
  resize: vertical;
}

.qv-modal-submit {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  background: #18551c;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  font-size: 15px;
}

.qv-modal-submit:hover {
  filter: brightness(1.08);
}

/* Scroll top */
.qv-whatsapp-float {
  position: fixed;
  bottom: 88px;
  right: 24px;
  z-index: 501;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  text-decoration: none;
}

.qv-whatsapp-float:hover {
  color: #fff;
  background: #1ebe57;
  transform: scale(1.06);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.55);
}

.qv-whatsapp-float:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

@media (max-width: 480px) {
  .qv-whatsapp-float {
    bottom: 80px;
    right: 16px;
    width: 52px;
    height: 52px;
    font-size: 28px;
  }
}

.qv-scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--qv-primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 16px rgba(102, 193, 147, 0.4);
}

.qv-scroll-top.is-visible {
  display: flex;
}

.qv-skip {
  position: absolute;
  left: -9999px;
  z-index: 10000;
}

.qv-skip:focus {
  left: 12px;
  top: 12px;
  background: #fff;
  padding: 8px 16px;
  border-radius: 4px;
}

/* Horloge du monde */
.qv-world-clock-section {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.qv-world-clock-head {
  margin-bottom: 1.5rem;
}

.qv-world-clock-banner {
  background: linear-gradient(135deg, var(--qv-gradient-start) 0%, var(--qv-primary) 55%, #4a946f 100%);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: var(--qv-shadow);
}

.qv-world-clock-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

@media (max-width: 991px) {
  .qv-world-clock-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .qv-world-clock-grid {
    grid-template-columns: 1fr;
  }
}

.qv-world-clock-item {
  text-align: center;
  padding: 1rem 0.75rem;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
}

.qv-world-clock-city {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.35rem;
}

.qv-world-clock-time {
  display: block;
  font-family: var(--qv-font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
}

.qv-world-clock-date {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0.25rem;
}

/* ——— Page connexion ——— */
.qv-page-login .qv-auth-section {
  padding-top: 56px;
  padding-bottom: 72px;
  background: linear-gradient(180deg, #f8faf9 0%, #fff 40%);
}

.qv-auth-card {
  max-width: 440px;
  margin: 0 auto;
  padding: 36px 32px 32px;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--qv-shadow);
  border: 1px solid #e8ece9;
}

.qv-auth-title {
  margin: 0 0 0.5rem;
  font-size: 1.75rem;
}

.qv-auth-lead {
  margin: 0 0 1.75rem;
  font-size: 15px;
  color: var(--qv-muted);
  line-height: 1.55;
}

.qv-alert {
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 1.25rem;
}

.qv-alert--success {
  background: rgba(102, 193, 147, 0.15);
  color: #1f5c3f;
  border: 1px solid rgba(102, 193, 147, 0.35);
}

.qv-alert--error {
  background: rgba(250, 54, 10, 0.08);
  color: #9a3412;
  border: 1px solid rgba(250, 54, 10, 0.25);
}

.qv-auth-errors {
  margin: 0;
  padding-left: 1.1rem;
}

.qv-auth-form .qv-field {
  margin-bottom: 1.1rem;
}

.qv-auth-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--qv-heading);
}

.qv-auth-form input[type="text"],
.qv-auth-form input[type="password"] {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.qv-auth-form input:focus {
  outline: none;
  border-color: var(--qv-primary);
  box-shadow: 0 0 0 3px rgba(102, 193, 147, 0.25);
}

.qv-auth-password-wrap {
  position: relative;
}

.qv-auth-password-wrap input {
  padding-right: 48px;
}

.qv-auth-password-toggle {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  color: var(--qv-muted);
  border-radius: 6px;
  cursor: pointer;
}

.qv-auth-password-toggle:hover {
  color: var(--qv-primary);
  background: rgba(102, 193, 147, 0.1);
}

.qv-auth-remember {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.35rem;
  font-size: 14px;
  color: var(--qv-text);
}

.qv-auth-remember input {
  width: 16px;
  height: 16px;
  accent-color: var(--qv-primary);
}

.qv-auth-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border: none;
  border-radius: 8px;
  background: var(--qv-accent);
  color: #fff;
  font-family: var(--qv-font-heading);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.qv-auth-submit:hover {
  background: var(--qv-accent-alt);
  transform: translateY(-1px);
}

.qv-auth-back {
  margin: 1.5rem 0 0;
  font-size: 14px;
}

.qv-auth-back a {
  color: var(--qv-primary);
  font-weight: 600;
}

.qv-auth-back a:hover {
  color: var(--qv-accent);
}
