/* Styles spécifiques à creation-site-web-lyon.html */

/* ══════════════════════════════════════════════════════
   PAGE — creation-site-web-lyon
   Styles & espacements alignés sur home.html
══════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════
   FULL PAGE SCROLL (repris de home.css)
══════════════════════════════════════════════════════ */
html, body { overflow: hidden; height: 100%; }

.fp-section {
  position: fixed !important;
  top: 0; left: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  will-change: transform;
  transform: translateY(100vh);
  visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Décale le contenu sous le menu sticky (+ encoche iOS si présente) */
  padding-top: calc(112px + env(safe-area-inset-top, 0px)) !important;
  box-sizing: border-box;
}
.fp-section.fp-active {
  visibility: visible;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: none;
  scrollbar-gutter: stable;
}
/* Sections longues : aligner en haut pour scroll interne propre */
.guide.fp-section,
.pricing-light.fp-section,
.testimonials.fp-section,
.faq-page.fp-section,
footer.fp-section { justify-content: flex-start; padding-bottom: 40px; }

/* Dot nav */
#fp-nav {
  position: fixed;
  right: 20px; top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 9999;
}
.fp-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(55,57,46,0.25);
  border: none; padding: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.fp-dot.fp-dot-active {
  background: var(--dark);
  transform: scale(1.4);
}
@media (max-width: 920px) {
  #fp-nav { display: none; }
}

/* ── Hero (fond light, pattern home) ───────────────── */
.hero-light {
  background: var(--light);
  padding: var(--space-xl) var(--space-md) 0;
  color: var(--dark);
  position: relative;
  overflow: hidden;
}
.hero-light-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: block;
  padding-bottom: var(--space-xl);
}
.hero-content { max-width: 55%; }
.hero-light-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: var(--space-xs) var(--space-sm);
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: var(--space-md);
  color: var(--dark);
}
.hero-light h1 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: var(--space-md);
  color: var(--dark);
}
.hero-light h1 .highlight { background: var(--lavender); padding: 0 10px; }
.hero-light .subtitle { color: var(--gray); font-size: 1rem; line-height: 1.6; margin-bottom: 32px; max-width: 780px; }
.hero-actions { display: flex; gap: var(--space-sm); flex-wrap: wrap; align-items: center; }
.hero-light .hero-rating { font-size: 0.82rem; color: var(--dark); margin-top: var(--space-md); }
.hero-light .hero-rating strong { color: var(--dark); font-weight: 600; }

/* CTA centré sous une grille (bénéfices, process…) */
.benefits-cta,
.process-cta {
  max-width: var(--max-w);
  margin: var(--space-lg) auto 0;
  text-align: center;
}

/* ── Benefit cards — version immersive (numéro + SVG) ─ */
.benefit-card {
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.benefit-card::before {
  content: attr(data-num);
  position: absolute;
  top: -18px;
  right: 10px;
  font-family: var(--font-title);
  font-size: 5.5rem;
  line-height: 1;
  color: var(--lavender);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
  letter-spacing: -0.02em;
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: var(--lavender); }
.benefit-card:hover::before { opacity: 0.85; }
.benefit-card > * { position: relative; z-index: 1; }
.benefit-card .benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: var(--lavender);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}
.benefit-card:hover .benefit-icon { transform: scale(1.08) rotate(-4deg); }
.benefit-icon svg { width: 28px; height: 28px; }

/* Image collée aux bords top/bottom/right du hero */
.hero-image {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 42%;
  margin: 0;
  z-index: 0;
}
.hero-image img {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  object-fit: cover;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  display: block;
}
.hero-stat {
  position: absolute;
  bottom: var(--space-md);
  left: 20px;
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-sm) 20px;
  box-shadow: var(--shadow-float);
  text-align: center;
}
.hero-stat strong { display: block; font-size: 1.6rem; font-weight: 700; color: var(--lavender); }
.hero-stat span   { font-size: 0.78rem; font-weight: 400; color: var(--on-dark); }

/* ── Carrousel réalisations (grande + miniatures) ──── */
.carousel-layout {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  gap: var(--space-md);
  align-items: stretch;
}
.carousel-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/11;
  background: var(--light);
  cursor: pointer;
}
.carousel-thumbs {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.carousel-main .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  margin: 0;
}
.carousel-main .slide.is-active { opacity: 1; }
.carousel-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.carousel-main figcaption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 10px 18px;
  background: rgba(55,57,46,0.85);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
}
.carousel-thumb {
  position: relative;
  flex: 1 1 0;
  min-height: 0;
  padding: 0;
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--light);
  transition: transform var(--transition);
}
.carousel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.5;
  transition: opacity var(--transition), transform var(--transition);
}
.carousel-thumb:hover img { opacity: 0.9; transform: scale(1.03); }
.carousel-thumb.is-active img { opacity: 1; }
.carousel-thumb::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: var(--lavender);
  pointer-events: none;
}
.carousel-thumb.is-progressing::after {
  width: 100%;
  transition: width 5s linear;
}
.carousel-thumb-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--white);
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
  text-align: left;
}

/* ── Projets (repris de home.css) ─────────────────── */
.projects {
  background: var(--light);
  padding: var(--space-xl) var(--space-md);
  position: relative;
}
.projects-header {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.projects-grid {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.project-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  transition: transform var(--transition), box-shadow var(--transition);
}
.project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.project-card:hover .project-img { transform: scale(1.04); }
.project-caption {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  padding: 8px 14px;
  background: rgba(55,57,46,0.85);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.02em;
}

/* ── Parcours style situations (classes repris de home, sans le flip) ── */
.situations-immersive {
  background-color: var(--lavender);
  padding: var(--space-xl) var(--space-md);
}
.situations-immersive .services-header {
  max-width: var(--max-w);
  margin: 0 auto var(--space-lg);
  text-align: center;
  padding: 0;
}
.situations-immersive .label    { color: var(--dark); }
.situations-immersive .highlight { background-color: var(--light); }
.situations-list {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.situation-item { flex: 1; min-height: 320px; position: relative; }
.sit-card-inner { width: 100%; height: 100%; min-height: 320px; }
.sit-front {
  width: 100%;
  height: 100%;
  min-height: 320px;
  padding: 28px 20px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.7);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sit-icon { width: 56px; height: 56px; color: var(--white); flex-shrink: 0; }
.situation-tag {
  display: block;
  font-family: var(--font-title);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: normal;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 10px;
}
.situation-desc {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.65;
}
.situation-action { display: flex; align-items: flex-start; padding-top: var(--space-xs); margin-top: auto; }
.situation-action .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.85rem;
  font-weight: 500;
  font-family: var(--font-body);
  color: var(--dark);
  background-color: var(--light);
  padding: 10px 18px;
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  white-space: nowrap;
}
.situation-action .btn-ghost:hover { background: var(--white); color: var(--dark); }

/* ── "Ce qui est inclus" — version claire ──────────── */
.inclus-light {
  background-image:
    linear-gradient(rgba(222,207,253,0.88), rgba(222,207,253,0.82)),
    url('assets/images/site-web.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: var(--space-xl) var(--space-md);
}
.inclus-light-header { max-width: var(--max-w); margin: 0 auto var(--space-lg); text-align: center; padding: 0 var(--space-md); }
.inclus-light-header h2 { color: var(--dark); margin-bottom: var(--space-sm); }
.inclus-light-header .subtitle { color: var(--dark); opacity: 0.75; margin: 0 auto; max-width: 520px; }

/* Layout : image en fond + checklist full-width */
.inclus-layout {
  max-width: var(--max-w);
  margin: 0 auto;
}
.inclus-visual { display: none; }

/* Checklist en 3 colonnes sur fond image */
.inclus-light-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 32px;
}
.inclus-light-item {
  background: rgba(255,255,255,0.22);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: var(--radius);
  padding: 10px 14px 10px 42px;
  position: relative;
  display: block;
  transition: background var(--transition), border-color var(--transition);
}
.inclus-light-item:hover {
  background: rgba(255,255,255,0.38);
  border-color: rgba(255,255,255,0.6);
}
.inclus-light-item::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 13px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--dark) url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 6l2.5 2.5L9.5 3.5' stroke='%23DECFFD' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.inclus-light-item-icon { display: none; }
.inclus-light-item h4 { color: var(--dark); font-size: 0.9rem; margin-bottom: 2px; line-height: 1.25; }
.inclus-light-item p  { display: block; font-size: 0.78rem; color: var(--dark); line-height: 1.4; margin: 0; }

/* ── Callout Kalinotes (IA) ────────────────────────── */
.kalinotes {
  background: var(--dark);
  padding: var(--space-xl) var(--space-md);
  color: var(--white);
}
.kalinotes-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.kalinotes-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(222,207,253,0.15);
  border: 1px solid rgba(222,207,253,0.3);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: var(--space-sm);
}
.kalinotes h2 { color: var(--white); margin-bottom: var(--space-sm); }
.kalinotes h2 .highlight { background: var(--lavender); color: var(--dark); padding: 0 10px; }
.kalinotes-lede { color: rgba(255,255,255,0.75); font-size: 1rem; line-height: 1.65; margin-bottom: var(--space-md); max-width: 480px; }
.kalinotes-points { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: var(--space-md); }
.kalinotes-points li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.55;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.kalinotes-points li::before {
  content: '✨';
  flex-shrink: 0;
  margin-top: 1px;
}
.kalinotes-link {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color var(--transition);
  align-self: center;
}
.kalinotes-link:hover { color: var(--lavender); }
.kalinotes-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.kalinotes-image img {
  width: 100%;
  height: auto;
  display: block;
}

.kalinotes-mock {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  font-family: var(--font-body);
}
.kalinotes-mock-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: var(--space-sm);
}
.kalinotes-mock-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.2); }
.kalinotes-mock-dot:nth-child(1) { background: #ff6057; }
.kalinotes-mock-dot:nth-child(2) { background: #ffbd2e; }
.kalinotes-mock-dot:nth-child(3) { background: #28c941; }
.kalinotes-mock-title { font-size: 0.72rem; color: rgba(255,255,255,0.5); margin-left: auto; letter-spacing: 0.05em; }
.kalinotes-mock-prompt {
  background: rgba(222,207,253,0.08);
  border: 1px solid rgba(222,207,253,0.2);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-xs);
  line-height: 1.5;
}
.kalinotes-mock-prompt::before { content: '› '; color: var(--lavender); font-weight: 600; }
.kalinotes-mock-response {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  padding: 10px 14px;
}
.kalinotes-mock-response strong { color: var(--lavender); font-weight: 500; }

/* ── Guide + accompagnement ────────────────────────── */
.guide {
  background: var(--white);
  padding: var(--space-xl) var(--space-md);
}
.guide-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.guide-content h2 { margin-bottom: var(--space-sm); }
.guide-content > p { color: var(--gray); font-size: 1rem; line-height: 1.6; margin-bottom: var(--space-md); max-width: 480px; }

.guide-checklist {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
}
.guide-checklist-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: var(--space-sm);
}
.guide-checklist h3 {
  font-family: var(--font-title);
  font-size: 1.4rem;
  line-height: 1.3;
  margin-bottom: var(--space-md);
}
.guide-checklist ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.guide-checklist li {
  font-size: 0.88rem;
  line-height: 1.55;
  padding-left: 30px;
  position: relative;
  color: var(--dark);
}
.guide-checklist li strong { display: block; margin-bottom: 2px; font-weight: 600; }
.guide-checklist li span { font-size: 0.82rem; color: var(--gray); }
.guide-checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  background: var(--lavender);
  border-radius: 6px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8.5l2.5 2.5L12 5.5' stroke='%2337392E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

.guide-pillars {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}
.guide-pillar {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-sm);
}
.guide-pillar-icon { font-size: 1.2rem; margin-bottom: 6px; }
.guide-pillar-title { font-weight: 600; font-size: 0.9rem; margin-bottom: 2px; }
.guide-pillar-desc { font-size: 0.82rem; color: var(--gray); line-height: 1.55; }

/* Pas d'animation d'apparition sur les cartes tarifs */
.pricing-card {
  opacity: 1 !important;
  transform: none !important;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition) !important;
}

/* Voir plus / replier sur les pricing-card */
.pricing-more { margin-top: var(--space-xs); }
.pricing-more summary {
  cursor: pointer;
  list-style: none;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--dark);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color var(--transition);
  user-select: none;
  display: inline-block;
}
.pricing-more summary::-webkit-details-marker { display: none; }
.pricing-more summary::after {
  content: ' →';
  display: inline-block;
  transition: transform var(--transition);
}
.pricing-more[open] summary::after { content: ' ↑'; }
.pricing-more .pricing-features { margin-top: var(--space-sm); }
.pricing-card.featured .pricing-more summary { color: var(--lavender); }
.pricing-card.featured .pricing-more summary:hover { color: var(--white); }

/* CTA guide */
.guide-cta {
  margin-top: var(--space-md);
  display: flex;
  gap: var(--space-md);
  align-items: center;
  flex-wrap: wrap;
}
.guide-cta-link {
  color: var(--gray);
  font-size: 0.88rem;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color var(--transition);
}
.guide-cta-link:hover { color: var(--dark); }

/* ── Pricing — 2 groupes ───────────────────────────── */
.pricing-light {
  background: var(--light);
  padding: var(--space-xl) var(--space-md);
}
.pricing-light-header { max-width: var(--max-w); margin: 0 auto 10px; text-align: center; padding: 0 10px; }
.pricing-light-header h2 { margin-bottom: var(--space-sm); max-width: 600px; margin-left: auto; margin-right: auto; }
.pricing-light-header .subtitle { margin: 0 auto; max-width: 560px; color: var(--gray); }

.pricing-group { max-width: var(--max-w); margin: 0 auto; display: none; }
.pricing-group.is-active { display: block; }
.pricing-group-sub {
  text-align: center;
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: var(--space-md);
}

.pricing-toggle {
  max-width: 520px;
  margin: 0 auto 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 4px;
}
.pricing-toggle-btn {
  background: transparent;
  border: none;
  border-radius: var(--radius-full);
  padding: 12px 20px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.pricing-toggle-btn:hover { color: var(--dark); }
.pricing-toggle-btn.is-active {
  background: var(--dark);
  color: var(--white);
}
.pricing-group-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  align-items: stretch;
}
.pricing-group-grid .pricing-card { background: var(--white); }
.pricing-group-grid .pricing-card.featured { background: var(--dark); }

/* ── Widget SociableKit (mêmes overrides que home.css) */
.sk-ww-google-reviews .soc-avatar,
.sk-ww-google-reviews .reviewer-image,
.sk-ww-google-reviews .sk-reviewer-image,
.sk-ww-google-reviews img.avatar,
.sk-ww-google-reviews .review-image,
.sk-ww-google-reviews .user-image { display: none !important; }
.sk-ww-google-reviews .owner-answer,
.sk-ww-google-reviews .sk-owner-answer,
.sk-ww-google-reviews .owner-reply,
.sk-ww-google-reviews .sk-owner-reply,
.sk-ww-google-reviews [class*="owner"],
.sk-ww-google-reviews [class*="reply"] { display: none !important; }
.sk_branding { display: none !important; visibility: hidden !important; }
.sk-image-container { display: none !important; }
.sk-ww-google-reviews,
.sk-ww-google-reviews > *,
.sk-ww-google-reviews .reviews-widget,
.sk-ww-google-reviews .widget-container,
.sk-ww-google-reviews .sk-widget,
.sk-ww-google-reviews .sk-widget-container,
.sk-ww-google-reviews [class*="container"],
.sk-ww-google-reviews [class*="wrapper"],
.sk-ww-google-reviews [class*="widget"] { background: transparent !important; background-color: transparent !important; box-shadow: none !important; border: none !important; }

/* ── CTA final — lavande ───────────────────────────── */
.cta-lavender {
  background: var(--lavender);
  padding: var(--space-xl) var(--space-md);
  text-align: center;
  color: var(--dark);
}
.cta-lavender h2 { color: var(--dark); margin-bottom: var(--space-sm); max-width: 680px; margin-left: auto; margin-right: auto; }
.cta-lavender .subtitle { color: var(--dark); opacity: 0.75; max-width: 520px; margin: 0 auto var(--space-lg); }
.cta-lavender .cta-actions { justify-content: center; display: flex; gap: var(--space-sm); flex-wrap: wrap; }
.cta-lavender .cta-reassurance {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-md);
  font-size: 0.82rem;
  color: var(--dark);
  opacity: 0.7;
}

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 920px) {
  .hero-light { overflow: visible; }
  .hero-light-inner { display: block; gap: 40px; }
  .hero-content { max-width: none; margin-bottom: 40px; }
  .hero-image {
    position: static;
    width: 100%;
    margin-top: 40px;
  }
  .hero-image img {
    height: auto;
    max-height: 420px;
    border-radius: var(--radius-lg);
  }
  .projects-grid { grid-template-columns: 1fr; }
  .carousel-layout { grid-template-columns: 1fr; }
  .carousel-thumbs { flex-direction: row; }
  .carousel-thumb { aspect-ratio: 4/3; }
  .kalinotes-inner { grid-template-columns: 1fr; gap: 40px; }
  .inclus-light-grid { grid-template-columns: 1fr 1fr; }
  .guide-inner { grid-template-columns: 1fr; gap: 40px; }
  .pricing-group-grid { grid-template-columns: 1fr; }

  .situations-list { flex-direction: column; gap: var(--space-sm); }
  .situation-item { min-height: 0; flex: none; }
  .sit-card-inner { min-height: 220px; }
  .sit-front { min-height: 220px; padding: var(--space-md); }
  .sit-icon { width: 40px; height: 40px; }
}
@media (max-width: 560px) {
  .inclus-light-grid { grid-template-columns: 1fr; }
  .guide-pillars { grid-template-columns: 1fr; }
  .hero-stat { left: 10px; right: 10px; }
  .hero-actions { flex-direction: column; align-items: center; }
}

/* ── FAQ ──────────────────────────────────────────── */
.faq-page {
  background: var(--white);
  padding: var(--space-xl) var(--space-md);
}
.faq-page-inner { max-width: 880px; width: 100%; margin: 0 auto; }
.faq-page-header { text-align: center; margin-bottom: var(--space-lg); }
.faq-page-header h2 { max-width: 720px; margin: var(--space-xs) auto 0; }
.faq-page-list { display: flex; flex-direction: column; gap: 12px; width: 100%; align-items: stretch; }
.faq-page-item {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  width: 100%;
  box-sizing: border-box;
  transition: background var(--transition);
}
.faq-page-item:hover { background: rgba(222,207,253,0.35); }
.faq-page-item summary {
  cursor: pointer; list-style: none;
  font-family: var(--font-body); font-weight: 500; font-size: 1rem;
  color: var(--dark);
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--space-sm);
}
.faq-page-item summary::-webkit-details-marker { display: none; }
.faq-page-item summary::after {
  content: '+';
  font-family: var(--font-title); font-size: 1.4rem;
  color: var(--dark); flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-page-item[open] summary::after { transform: rotate(45deg); }
.faq-page-item p {
  margin-top: 12px; font-size: 0.92rem;
  line-height: 1.65; color: var(--gray);
}
