﻿

:root {
  
  --navy-950: #060f1d;
  --navy-900: #0b1f3a;
  --navy-800: #0f2043;
  --navy-700: #1e3564;

--blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --cyan-300: #67e8f9;
  --cyan-400: #22d3ee;
  --green-400: #4ade80;
  --green-500: #22c55e;

--violet-400: #a78bfa;

--white-04:  rgba(255,255,255,0.04);
  --white-05:  rgba(255,255,255,0.05);
  --white-06:  rgba(255,255,255,0.06);
  --white-07:  rgba(255,255,255,0.07);
  --white-08:  rgba(255,255,255,0.08);
  --white-10:  rgba(255,255,255,0.10);
  --white-20:  rgba(255,255,255,0.20);
  --white-25:  rgba(255,255,255,0.25);
  --white-30:  rgba(255,255,255,0.30);
  --white-40:  rgba(255,255,255,0.40);
  --white-45:  rgba(255,255,255,0.45);
  --white-50:  rgba(255,255,255,0.50);
  --white-55:  rgba(255,255,255,0.55);
  --white-60:  rgba(255,255,255,0.60);
  --white-70:  rgba(255,255,255,0.70);
  --white-80:  rgba(255,255,255,0.80);
  --white-90:  rgba(255,255,255,0.90);

--container-max: 80rem; 
  --container-md:  64rem; 
  --container-sm:  48rem; 
  --px: 1.25rem;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--navy-950);
  color: #ffffff;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}

img, video {
  display: block;
  max-width: 100%;
}

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

button {
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  color: inherit;
}

ul, ol {
  list-style: none;
}

::selection {
  background: rgba(59,130,246,0.30);
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
}

p {
  line-height: 1.6;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 0.75rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  background: linear-gradient(to right, var(--blue-600), var(--blue-500));
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(37,99,235,0.25);
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  border: none;
}
.btn-primary:hover {
  background: linear-gradient(to right, var(--blue-500), var(--blue-400));
  transform: translateY(-2px);
}
.btn-primary svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 0.75rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  border: 1px solid var(--white-20);
  color: #ffffff;
  background: transparent;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}
.btn-outline:hover {
  border-color: var(--white-40);
  background: var(--white-05);
}
.btn-outline svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.glass-card {
  background: var(--white-04);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid var(--white-08);
  border-radius: 1rem;
}

.section-title {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.875rem;
  letter-spacing: -0.025em;
  color: #ffffff;
}

.section-subtitle {
  color: var(--white-60);
  font-size: 1rem;
  max-width: 42rem;
  line-height: 1.7;
}

.gradient-text {
  background: linear-gradient(to right, var(--blue-400), var(--cyan-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--px);
}
.container-md {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 var(--px);
}
.container-sm {
  max-width: 42rem;
  margin: 0 auto;
  padding: 0 var(--px);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0) translateX(-50%); }
  50%       { transform: translateY(-8px) translateX(-50%); }
}

.animate-fade-in-up {
  animation: fadeInUp 0.7s ease-out both;
}
.animate-fade-in {
  animation: fadeIn 0.6s ease-out both;
}
.animate-slide-in-left {
  animation: slideInLeft 0.6s ease-out both;
}

.delay-100 { animation-delay: 0.1s; }
.delay-150 { animation-delay: 0.15s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy-900); }
::-webkit-scrollbar-thumb { background: rgba(37,99,235,0.25); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(37,99,235,0.50); }

#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.15s ease;
  padding: 1.25rem 0;
}

#site-header.scrolled {
  background: rgba(6,15,29,0.90);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--white-06);
  padding: 0.75rem 0;
}

@media (max-width: 768px) {
  #site-header:has(#mobile-menu.open) {
    background: rgba(6,15,29,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--white-06);
  }
}

.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.header-logo img {
  height: 3rem;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.4));
  transition: transform 0.2s ease;
}
.header-logo:hover img {
  transform: scale(1.05);
}
.header-logo-text {
  line-height: 1.2;
}
.header-logo-text .brand-name {
  display: block;
  color: #ffffff;
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
}
.header-logo-text .brand-sub {
  display: block;
  color: var(--blue-400);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.desktop-nav a.nav-link {
  font-size: 0.875rem;
  color: var(--white-70);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.2s ease;
}
.desktop-nav a.nav-link:hover {
  color: #ffffff;
}

.header-wa-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  border-radius: 0.75rem;
  background: var(--green-500);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}
.header-wa-btn:hover {
  background: var(--green-400);
  transform: scale(1.05);
}
.header-wa-btn svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.header-rdv-btn {
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
}

.hamburger-btn {
  display: flex;
  padding: 0.5rem;
  color: var(--white-80);
  transition: color 0.2s ease;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger-btn:hover {
  color: #ffffff;
}
.hamburger-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

#mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(6,15,29,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--white-06);
  display: none;
  animation: fadeIn 0.25s ease-out both;
}
#mobile-menu.open {
  display: block;
}

.mobile-nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav-inner a.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--white-70);
  font-size: 0.875rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}
.mobile-nav-inner a.mobile-nav-link:hover {
  color: #ffffff;
  background: var(--white-05);
}
.mobile-nav-inner .btn-primary {
  margin-top: 0.75rem;
  font-size: 0.875rem;
}

#accueil {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg-video {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero-bg-img   { display: none; }
  .hero-bg-video { display: block; }
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(6,15,29,0.80) 0%,
    rgba(6,15,29,0.70) 50%,
    var(--navy-950) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 56rem;
  margin: 0 auto;
  padding: 8rem 1.25rem;
  text-align: center;
}

.hero-proofs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.hero-proof-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  background: var(--white-07);
  border: 1px solid var(--white-10);
  font-size: 0.75rem;
  color: var(--white-70);
}
.hero-proof-badge svg {
  width: 0.75rem;
  height: 0.75rem;
  color: var(--blue-400);
  flex-shrink: 0;
}

.hero-h1 {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 4.5rem);
  letter-spacing: -0.025em;
  color: #ffffff;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  opacity: 0.75;
}
.hero-rating-stars {
  display: flex;
  gap: 0.1rem;
}
.hero-rating-stars svg {
  width: 0.85rem;
  height: 0.85rem;
  color: #facc15;
}
.hero-rating-score {
  font-weight: 600;
  font-size: 0.82rem;
  color: #ffffff;
}
.hero-rating-count {
  font-size: 0.78rem;
  color: var(--white-60);
}
.hero-rating img {
  opacity: 0.7;
}

.hero-subtitle {
  color: var(--white-80);
  font-size: 1.25rem;
  font-weight: 500;
  max-width: 42rem;
  margin: 0 auto 1rem;
}

.hero-body {
  color: var(--white-50);
  font-size: 1rem;
  max-width: 32rem;
  margin: 0 auto 0.75rem;
  line-height: 1.7;
}

.hero-reassurance {
  color: var(--white-30);
  font-size: 0.75rem;
  max-width: 28rem;
  margin: 0 auto 2.5rem;
  font-style: italic;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.hero-book-btn,
.hero-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  width: 100%;
  max-width: 17rem;
  background: var(--green-500);
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem 1.4rem;
  border-radius: 0.75rem;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(34,197,94,0.30);
  transition: all 0.3s ease;
}
.hero-book-btn:hover,
.hero-wa-btn:hover {
  background: var(--green-500);
  transform: scale(1.05);
}
.hero-book-btn svg,
.hero-wa-btn svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.hero-pack-btn {
  width: 100%;
  max-width: 17rem;
  font-size: 1rem;
  padding: 1rem 2.25rem;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  box-shadow: none;
  color: #ffffff;
}
.hero-pack-btn:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}

.hero-support-text {
  margin-top: 1rem;
  color: var(--white-55);
  font-size: 0.85rem;
}

.hero-support-text a {
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.22);
}

.hero-support-text a:hover {
  border-bottom-color: rgba(255,255,255,0.5);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 1.5s ease-in-out infinite;
}
.scroll-indicator-inner {
  width: 1.25rem;
  height: 2rem;
  border-radius: 9999px;
  border: 2px solid var(--white-20);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0.375rem;
}
.scroll-indicator-dot {
  width: 0.25rem;
  height: 0.5rem;
  background: var(--white-40);
  border-radius: 9999px;
}

#apropos {
  padding: 2rem 0 1rem;
}

.about-header {
  text-align: center;
  margin-bottom: 3rem;
}
.about-eyebrow {
  color: var(--blue-400);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.about-card {
  padding: 1.5rem;
  transition: all 0.3s ease;
}
.about-card:hover {
  background: var(--white-06);
}

.about-icon-wrap {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: rgba(59,130,246,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background 0.2s ease;
}
.about-card:hover .about-icon-wrap {
  background: rgba(59,130,246,0.20);
}
.about-icon-wrap svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--blue-400);
  stroke: var(--blue-400);
  fill: none;
}

.about-card-title {
  font-weight: 600;
  color: #ffffff;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
.about-card-desc {
  color: var(--white-45);
  font-size: 0.75rem;
  line-height: 1.6;
}

.about-card-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.about-card-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--white-70);
  font-size: 0.82rem;
  line-height: 1.65;
}

.about-card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 9999px;
  background: var(--blue-400);
}

#avis {
  padding: 0.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.avis-header {
  text-align: center;
  margin-bottom: 1.75rem;
}

.avis-eyebrow {
  color: var(--blue-400);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.avis-rating-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.avis-stars-global {
  display: flex;
  gap: 0.2rem;
}

.avis-stars-global svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #facc15;
}

.avis-score {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
}

.avis-count {
  font-size: 0.875rem;
  color: var(--white-50);
}

.avis-google-logo {
  height: 1.1rem;
  margin-left: 0.25rem;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

.avis-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.avis-track-outer {
  overflow: hidden;
  flex: 1;
}

.avis-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.avis-card {
  flex: 0 0 100%;
  background: var(--white-4);
  border: 1px solid var(--white-8);
  border-radius: 1rem;
  padding: 1.75rem 2rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: row;
  gap: 2rem;
  min-width: 0;
  align-items: flex-start;
}

.avis-card-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  width: 7rem;
  text-align: center;
}

.avis-card-right {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  justify-content: center;
}

.avis-card-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.avis-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), var(--cyan-400));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
  text-transform: uppercase;
}

.avis-author {
  min-width: 0;
  text-align: center;
}

.avis-author-name {
  font-weight: 600;
  font-size: 0.875rem;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 7rem;
}

.avis-date {
  font-size: 0.72rem;
  color: var(--white-40);
  margin-top: 0.15rem;
}

.avis-card-stars {
  display: flex;
  gap: 0.15rem;
  justify-content: center;
}

.avis-card-stars svg {
  width: 1rem;
  height: 1rem;
  color: #facc15;
}

.avis-card-text {
  font-size: 0.9rem;
  color: var(--white-80);
  line-height: 1.7;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.avis-arrow {
  background: var(--white-8);
  border: 1px solid var(--white-10);
  color: #fff;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}

.avis-arrow:hover {
  background: var(--white-15);
  transform: scale(1.08);
}

.avis-arrow svg {
  width: 1.1rem;
  height: 1.1rem;
}

.avis-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}

.avis-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.avis-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: var(--white-20);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.avis-dot.active {
  background: var(--blue-400);
  width: 1.5rem;
}

.avis-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  padding: 3rem 0;
  color: var(--white-50);
  font-size: 0.875rem;
}

.avis-spinner {
  width: 2rem;
  height: 2rem;
  border: 3px solid var(--white-10);
  border-top-color: var(--blue-400);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
  .avis-card {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.25rem;
  }
  .avis-card-left {
    flex-direction: column;
    width: auto;
    text-align: left;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .avis-card-top {
    flex-direction: row;
    align-items: center;
    gap: 0.6rem;
  }
  .avis-author {
    text-align: left;
  }
  .avis-author-name {
    max-width: none;
  }
  .avis-card-stars {
    justify-content: flex-start;
  }
  .avis-arrow {
    width: 2.25rem;
    height: 2.25rem;
  }
}

#services {
  padding: 2rem 0 3.5rem;
  position: relative;
}
#services::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(23,37,84,0.10), transparent);
  pointer-events: none;
}

.services-header {
  text-align: center;
  margin-bottom: 3rem;
}
.services-eyebrow {
  color: var(--blue-400);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.packs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
  align-items: stretch;
}

.pack-card {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.25rem 1.15rem;
  position: relative;
  overflow: visible;
  transition: all 0.3s ease;
}
.pack-card:hover {
  background: var(--white-06);
  transform: translateY(-3px);
}
.pack-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 1.25rem;
  right: 1.25rem;
  height: 1px;
  background: rgba(255,255,255,0.08);
}
.pack-card.highlight {
  border-color: rgba(59,130,246,0.40);
  background: rgba(59,130,246,0.06);
  transform: scale(1.02);
  z-index: 10;
}
.pack-card-essentiel {
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.025);
}
.pack-card-signature {
  border-color: rgba(103,232,249,0.16);
  background: linear-gradient(180deg, rgba(34,211,238,0.05), rgba(255,255,255,0.03));
}

.pack-badge {
  position: absolute;
  top: -0.875rem;
  left: 50%;
  transform: translateX(-50%);
}
.pack-badge span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.625rem;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.pack-badge-blue span { background: var(--blue-500); }
.pack-badge-cyan span { background: linear-gradient(90deg, var(--cyan-400), var(--blue-400)); }
.pack-badge-star {
  width: 0.625rem;
  height: 0.625rem;
}

.pack-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.pack-label-blue { color: var(--blue-400); }
.pack-label-dim  { color: var(--white-40); }

.pack-name {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: #ffffff;
  margin-bottom: 0.4rem;
}
.pack-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.45rem;
}
.pack-price-from {
  color: var(--white-40);
  font-size: 0.75rem;
}
.pack-price-amount {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #ffffff;
}
.pack-price-currency {
  color: var(--white-40);
  font-size: 1.125rem;
}

.pack-duration {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.7rem;
  color: var(--white-30);
  font-size: 0.625rem;
}
.pack-duration svg {
  width: 0.625rem;
  height: 0.625rem;
  stroke: var(--white-30);
  fill: none;
}

.pack-desc {
  color: var(--white-45);
  font-size: 0.73rem;
  line-height: 1.55;
  margin-bottom: 1rem;
}

.pack-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
  margin-bottom: 0.85rem;
  padding: 0.6rem;
  border-radius: 0.9rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--white-06);
}
.pack-pricing-cell {
  text-align: center;
  padding: 0.25rem 0;
}
.pack-pricing-label {
  color: var(--white-25);
  font-size: 0.5625rem;
  margin-bottom: 0.125rem;
  line-height: 1.2;
}
.pack-pricing-price {
  font-size: 0.75rem;
  font-weight: 700;
}
.pack-pricing-price-blue { color: var(--blue-400); }
.pack-pricing-price-dim  { color: var(--white-70); }

.pack-features {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
  margin-bottom: 1rem;
}
.pack-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.pack-feature-icon {
  width: 0.75rem;
  height: 0.75rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
}
.pack-feature-icon-blue { color: var(--blue-400); }
.pack-feature-icon-dim  { color: var(--white-30); }

.pack-feature span {
  color: var(--white-50);
  font-size: 0.74rem;
  line-height: 1.45;
}

.pack-cta {
  display: block;
  text-align: center;
  padding: 0.75rem 0.875rem;
  border-radius: 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  transition: all 0.2s ease;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.pack-cta-blue {
  background: var(--blue-500);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(59,130,246,0.20);
}
.pack-cta-blue:hover { background: var(--blue-400); }
.pack-cta-ghost {
  background: var(--white-08);
  color: #ffffff;
  border: 1px solid var(--white-10);
}
.pack-cta-ghost:hover { background: rgba(255,255,255,0.14); }
.pack-cta-ghost2 {
  background: rgba(255,255,255,0.04);
  color: var(--white-90);
  border: 1px solid rgba(255,255,255,0.10);
}
.pack-cta-ghost2:hover { background: var(--white-10); }

.secondary-separator {
  text-align: center;
  margin-bottom: 2rem;
}
.secondary-separator span {
  color: var(--white-25);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.secondary-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.secondary-card {
  padding: 1.25rem;
}
.secondary-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.secondary-card-name {
  color: var(--white-70);
  font-weight: 600;
  font-size: 0.875rem;
}
.secondary-card-desc {
  color: var(--white-35, rgba(255,255,255,0.35));
  font-size: 0.6875rem;
  margin-top: 0.25rem;
  line-height: 1.4;
}
.secondary-card-price {
  flex-shrink: 0;
  text-align: right;
}
.secondary-card-price-from {
  color: var(--white-30);
  font-size: 0.625rem;
  display: block;
}
.secondary-card-price-amount {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.25rem;
}

.supplements-wrap {
  max-width: 42rem;
  margin: 0 auto 2rem;
}
.supplements-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1.25rem;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s ease;
}
.supplements-toggle:hover {
  background: rgba(255,255,255,0.04);
}
.supplements-toggle span {
  color: var(--white-60);
  font-weight: 500;
  font-size: 0.875rem;
}
.supplements-toggle .chevron {
  width: 1rem;
  height: 1rem;
  color: var(--white-30);
  stroke: var(--white-30);
  fill: none;
  transition: transform 0.3s ease;
}
.supplements-toggle .chevron.open {
  transform: rotate(180deg);
}

.supplements-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  border-top: none;
  border-radius: 0 0 1rem 1rem;
}
.supplements-body.open {
  max-height: 18rem;
}
.supplements-inner {
  background: var(--white-04);
  border: 1px solid var(--white-08);
  border-top: none;
  border-radius: 0 0 1rem 1rem;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.supplement-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.supplement-label {
  color: var(--white-50);
  font-size: 0.75rem;
}
.supplement-price {
  color: var(--blue-400);
  font-size: 0.75rem;
  font-weight: 600;
}
.supplement-note {
  color: var(--white-30);
  font-size: 0.625rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--white-06);
  margin-top: 0.5rem;
}

.services-reassurance {
  max-width: 36rem;
  margin: 0 auto;
  text-align: center;
}
.services-reassurance p:first-child {
  color: var(--white-50);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.services-reassurance p:nth-child(2) {
  color: var(--white-30);
  font-size: 0.75rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.services-reassurance-alert {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.5rem;
  color: var(--white-25);
  font-size: 0.6875rem;
  padding-top: 0.5rem;
}
.services-reassurance-alert svg {
  width: 0.875rem;
  height: 0.875rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
  stroke: var(--white-25);
  fill: none;
}

#notre-travail {
  padding: 1.5rem 0 2.5rem;
}

.videosection-header {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 2.5rem;
}
.videosection-eyebrow {
  color: var(--blue-400);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.phones-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
}

.phone-mockup-wrap {
  position: relative;
  flex: 1;
  min-width: 0;
  max-width: 280px;
}
.phone-frame {
  position: relative;
  border-radius: 2.5rem;
  border: 6px solid var(--white-10);
  background: #000;
  box-shadow: 0 25px 50px rgba(0,0,0,0.5), 0 0 40px rgba(59,130,246,0.10);
  overflow: hidden;
}
.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 6rem;
  height: 1.5rem;
  background: #000;
  border-radius: 0 0 1rem 1rem;
  z-index: 10;
}
.phone-video-wrap {
  aspect-ratio: 9/16;
}
.phone-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.phone-bottom-bar {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 6rem;
  height: 0.25rem;
  background: var(--white-30);
  border-radius: 9999px;
  z-index: 10;
}
.phone-glow {
  position: absolute;
  inset: -1rem;
  background: radial-gradient(ellipse at center, rgba(59,130,246,0.20) 0%, rgba(34,211,238,0.10) 50%, transparent 75%);
  border-radius: 3rem;
  filter: blur(1rem);
  z-index: -1;
  pointer-events: none;
}

#realisations {
  padding: 3rem 0 4rem;
  position: relative;
}
#realisations::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(23,37,84,0.10), transparent);
  pointer-events: none;
}

.realisations-header {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 2.5rem;
}
.realisations-eyebrow {
  color: var(--blue-400);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.gallery-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.gallery-card:hover {
  transform: translateY(-4px);
}
.gallery-card-body {
  padding: 1rem;
  flex: 1;
}
.gallery-card-footer {
  padding: 0 1rem 1rem;
  text-align: center;
}
.gallery-card-label {
  color: var(--white-90);
  font-size: 0.875rem;
  font-weight: 600;
}
.gallery-card-desc {
  color: var(--white-40);
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

.ba-pair {
  display: flex;
  align-items: stretch;
  gap: 0.75rem;
}
.ba-video-col {
  flex: 1;
  min-width: 0;
}
.ba-arrow {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.ba-arrow-circle {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 9999px;
  background: var(--blue-500);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(59,130,246,0.4);
}
.ba-arrow-circle svg {
  width: 0.875rem;
  height: 0.875rem;
  color: #ffffff;
  stroke: #ffffff;
  fill: none;
}

.glass-video {
  position: relative;
}
.glass-video-inner {
  position: relative;
  border-radius: 1rem;
  border: 1px solid var(--white-10);
  background: rgba(0,0,0,0.40);
  box-shadow: 0 4px 20px rgba(59,130,246,0.05);
  overflow: hidden;
}
.glass-video-inner .aspect-916 {
  aspect-ratio: 9/16;
}
.glass-video-inner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.glass-video-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.625rem;
  border-radius: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 10;
}
.glass-video-tag-before {
  background: rgba(0,0,0,0.60);
  color: var(--white-80);
  backdrop-filter: blur(4px);
}
.glass-video-tag-after {
  background: rgba(59,130,246,0.80);
  color: #ffffff;
  backdrop-filter: blur(4px);
}

.full-video-card-body {
  padding: 1rem;
  flex: 1;
  display: flex;
  justify-content: center;
}
.full-video-inner {
  width: 100%;
  max-width: 200px;
}

.realisations-note {
  text-align: center;
  color: var(--white-30);
  font-size: 0.75rem;
  margin-top: 2rem;
}

#complementaires {
  padding: 1.5rem 0 2.5rem;
}

.comp-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.comp-eyebrow {
  color: var(--blue-400);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.comp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.comp-card {
  padding: 0.875rem 1rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.comp-card:hover {
  background: var(--white-06);
}
.comp-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}
.comp-card-name {
  font-weight: 600;
  color: #ffffff;
  font-size: 0.875rem;
  line-height: 1.3;
}
.comp-card-tag {
  flex-shrink: 0;
  font-size: 0.625rem;
  font-weight: 600;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  background: rgba(59,130,246,0.15);
  color: var(--blue-400);
}
.comp-card-desc {
  color: var(--white-45);
  font-size: 0.75rem;
  line-height: 1.5;
  flex: 1;
}

.comp-partner-note {
  text-align: center;
  color: var(--white-60);
  font-size: 0.75rem;
  margin-bottom: 2rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.comp-cta {
  text-align: center;
}
.comp-cta-text {
  color: var(--white-70);
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}
.comp-cta-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.comp-wa-btn {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: var(--green-500);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(34,197,94,0.30);
  transition: all 0.3s ease;
}
.comp-wa-btn:hover {
  background: var(--green-500);
  transform: scale(1.05);
}
.comp-wa-btn svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

#rdv {
  padding: 2.5rem 0 4rem;
}

#rdv .container {
  display: flex;
  flex-direction: column;
}

.booking-header {
  text-align: center;
  margin-bottom: 3rem;
}
.booking-eyebrow {
  color: var(--blue-400);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.booking-steps {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.booking-step {
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.booking-step-icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.75rem;
  background: rgba(59,130,246,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.booking-step-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--blue-400);
  stroke: var(--blue-400);
  fill: none;
}
.booking-step-num {
  color: var(--blue-400);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.booking-step-title {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
  margin: 0.125rem 0 0.25rem;
}
.booking-step-desc {
  color: var(--white-45);
  font-size: 0.75rem;
  line-height: 1.6;
}

.booking-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  max-width: 24rem;
  margin: 1.25rem auto 0;
  background: var(--green-500);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.9rem 1.25rem;
  border-radius: 0.75rem;
  text-decoration: none;
  border: 1px solid rgba(34,197,94,0.28);
  box-shadow: 0 6px 22px rgba(34,197,94,0.24);
  transition: all 0.3s ease;
  order: 4;
}
.booking-wa-btn:hover {
  background: var(--green-400);
  transform: translateY(-2px);
}
.booking-wa-btn svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.booking-divider {
  display: none;
}
.booking-divider-line {
  flex: 1;
  height: 1px;
  background: var(--white-06);
}
.booking-divider-text {
  color: var(--white-60);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
}

.calendly-toggle-btn {
  display: none;
}

#calendly-panel {
  display: block;
  order: 3;
}
.calendly-panel-inner {
  padding: 1rem;
}

.calendly-step-label {
  color: var(--white-40);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}
.pack-selector-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.pack-selector-btn {
  padding: 0.625rem 0.75rem;
  border-radius: 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-align: left;
  transition: all 0.2s ease;
  border: 1px solid var(--white-06);
  background: rgba(255,255,255,0.03);
  color: var(--white-50);
  cursor: pointer;
  font-family: inherit;
}
.pack-selector-btn:hover {
  background: var(--white-06);
}
.pack-selector-btn.active {
  background: rgba(59,130,246,0.20);
  border-color: rgba(59,130,246,0.50);
  color: #ffffff;
}

.calendly-selected-info {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  background: rgba(59,130,246,0.10);
  border: 1px solid rgba(59,130,246,0.20);
  margin-bottom: 1rem;
}
.calendly-selected-info.visible {
  display: flex;
}
.calendly-selected-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 9999px;
  background: var(--blue-400);
  flex-shrink: 0;
}
.calendly-selected-text {
  color: var(--blue-400);
  font-size: 0.75rem;
}

.calendly-slot-label {
  color: var(--white-40);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}
.calendly-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--white-30);
  padding: 2.5rem 0;
  text-align: center;
}
.calendly-placeholder svg {
  width: 2rem;
  height: 2rem;
  opacity: 0.4;
  stroke: var(--white-30);
  fill: none;
}
.calendly-placeholder p {
  font-size: 0.875rem;
}

#calendly-widget-container {
  min-width: 320px;
  height: 680px;
}

.calendly-inline-widget {
  border-radius: 1rem;
  overflow: hidden;
}

.calendly-fine-print {
  color: rgba(255,255,255,0.20);
  font-size: 0.625rem;
  text-align: center;
  margin-top: 1rem;
}

.booking-phone-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  margin-top: 1.5rem;
  text-decoration: none;
  transition: background 0.2s ease;
  order: 5;
}
.booking-phone-link:hover {
  background: var(--white-06);
}
.booking-phone-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: rgba(59,130,246,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  flex-shrink: 0;
}
.booking-phone-link:hover .booking-phone-icon {
  background: rgba(59,130,246,0.20);
}
.booking-phone-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--blue-400);
  stroke: var(--blue-400);
  fill: none;
}
.booking-phone-hint {
  font-size: 0.75rem;
  color: var(--white-70);
}
.booking-phone-number {
  font-size: 0.875rem;
  color: #ffffff;
  font-weight: 500;
}

#faq {
  padding: 2.5rem 0 4rem;
}

.faq-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.faq-eyebrow {
  color: var(--blue-400);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s ease;
  background: none;
  border: none;
  color: inherit;
}
.faq-question:hover {
  background: rgba(255,255,255,0.02);
}
.faq-question-text {
  color: #ffffff;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.4;
}
.faq-chevron {
  width: 1rem;
  height: 1rem;
  color: var(--white-30);
  stroke: var(--white-30);
  fill: none;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-chevron.open {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer.open {
  max-height: 18rem;
}
.faq-answer-inner {
  padding: 0.25rem 1.25rem 1.25rem;
  border-top: 1px solid var(--white-06);
}
.faq-answer-inner p {
  color: var(--white-55);
  font-size: 0.875rem;
  line-height: 1.7;
}

footer {
  border-top: 1px solid var(--white-06);
}

.footer-top {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  margin-bottom: 1rem;
}
.footer-brand-logo img {
  height: 3rem;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.4));
}
.footer-brand-logo .brand-name {
  display: block;
  color: #ffffff;
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
}
.footer-brand-logo .brand-sub {
  display: block;
  color: var(--blue-400);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.footer-brand-desc {
  color: var(--white-70);
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-col-title {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.footer-nav-list a {
  color: var(--white-50);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-nav-list a:hover {
  color: #ffffff;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--white-50);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}
.footer-contact-item:hover {
  color: #ffffff;
}
.footer-contact-item svg {
  width: 1rem;
  height: 1rem;
  color: var(--blue-400);
  flex-shrink: 0;
  margin-top: 0.125rem;
  stroke: var(--blue-400);
  fill: none;
}
.footer-contact-item svg.fill-icon {
  fill: var(--blue-400);
  stroke: none;
}

.footer-hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-hours-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.footer-hours-item svg {
  width: 1rem;
  height: 1rem;
  color: var(--blue-400);
  flex-shrink: 0;
  margin-top: 0.125rem;
  stroke: var(--blue-400);
  fill: none;
}
.footer-hours-day {
  color: var(--white-70);
  font-size: 0.875rem;
  font-weight: 500;
}
.footer-hours-time {
  color: var(--white-70);
  font-size: 0.875rem;
}
.footer-hours-note {
  color: var(--white-55);
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

.footer-bottom {
  border-top: 1px solid var(--white-06);
}
.footer-bottom-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 1rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 1rem;
}
.footer-legal-links p {
  color: var(--white-60);
  font-size: 0.75rem;
}
.footer-legal-links a {
  color: var(--white-60);
  font-size: 0.75rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-legal-links a:hover {
  color: var(--white-90);
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.footer-bottom-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.875rem;
}
.footer-social-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s ease;
}
.footer-social-icon:hover {
  background: var(--white-08);
}
.footer-social-icon svg {
  width: 1rem;
  height: 1rem;
  fill: var(--white-50);
}
.footer-credit {
  color: var(--white-60);
  font-size: 0.75rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-credit:hover {
  color: var(--white-90);
}

.scroll-top-btn {
  position: fixed;
  bottom: max(1.5rem, calc(env(safe-area-inset-bottom) + 0.75rem));
  right: max(1.5rem, calc(env(safe-area-inset-right) + 0.75rem));
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #3b82f6;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(59,130,246,0.4);
}
.scroll-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
}
.scroll-top-btn:hover {
  transform: scale(1.08);
}
.scroll-top-btn svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: #ffffff;
}

.legal-page {
  min-height: 100vh;
  padding-top: 6rem;
  padding-bottom: 5rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.legal-container {
  max-width: 48rem;
  margin: 0 auto;
}
.legal-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white-50);
  font-size: 0.875rem;
  text-decoration: none;
  margin-bottom: 2.5rem;
  transition: color 0.2s ease;
}
.legal-back-link:hover {
  color: #ffffff;
}
.legal-back-link svg {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
  fill: none;
}
.legal-h1 {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.875rem;
  color: #ffffff;
  margin-bottom: 2.5rem;
}
.legal-last-updated {
  color: var(--white-30);
  font-size: 0.875rem;
  margin-top: -2rem;
  margin-bottom: 2.5rem;
}
.legal-sections {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.legal-section {
  color: var(--white-60);
  font-size: 0.875rem;
  line-height: 1.7;
}
.legal-section h2 {
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}
.legal-section h3 {
  color: var(--white-80);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  margin-top: 1.5rem;
}
.legal-section p + p {
  margin-top: 0.75rem;
}
.legal-section ul {
  margin-top: 0.75rem;
  padding-left: 1rem;
  border-left: 1px solid var(--white-08);
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.legal-section ul li {
  color: inherit;
}
.legal-section ul.disc-list {
  border-left: none;
  padding-left: 0.5rem;
  list-style: disc;
  list-style-position: inside;
}
.legal-section table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.75rem;
  margin-top: 0.75rem;
}
.legal-section table thead tr {
  border-bottom: 1px solid var(--white-08);
  background: rgba(255,255,255,0.02);
}
.legal-section table th {
  text-align: left;
  padding: 0.625rem 1rem;
  color: var(--white-40);
  font-weight: 500;
}
.legal-section table td {
  padding: 0.625rem 1rem;
  color: var(--white-60);
}
.legal-section .table-wrap {
  border: 1px solid var(--white-06);
  border-radius: 0.5rem;
  overflow: hidden;
  overflow-x: auto;
  margin-top: 0.75rem;
}
.legal-section .key   { color: var(--white-40); }
.legal-section .value { color: var(--white-70); }
.legal-section .highlight { color: var(--white-80); font-weight: 600; }

@media (min-width: 640px) {
  .hero-ctas {
    flex-direction: row;
  }
  .hero-book-btn,
  .hero-wa-btn,
  .hero-pack-btn {
    width: auto;
    max-width: none;
  }

  .hero-book-btn {
    min-width: 16rem;
  }

  .hero-pack-btn {
    min-width: 16rem;
  }

  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .packs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .secondary-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .comp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .comp-cta-btns {
    flex-direction: row;
  }

  .pack-selector-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .phones-row {
    gap: 2rem;
  }
}

@media (min-width: 768px) {
  #apropos { padding: 2.5rem 0; }
  #services { padding: 2.5rem 0; }
  #notre-travail { padding: 1.75rem 0; }
  #realisations { padding: 2rem 0; }
  #complementaires { padding: 1.75rem 0; }
  #rdv { padding: 3rem 0; }
  #faq { padding: 3rem 0; }

  .section-title { font-size: 2.25rem; }

  .section-subtitle { font-size: 1.125rem; }

  .footer-bottom-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .footer-bottom-meta {
    align-items: flex-end;
  }
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
  }
  .hamburger-btn {
    display: none;
  }

  .section-title { font-size: 2.75rem; }

  .about-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .packs-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1280px) {
  .hero-h1 { font-size: 4.5rem; }
}

.pack-price-from,
.pack-price-currency,
.pack-label-dim,
.pack-duration      { color: var(--white-55); }

.pack-desc,
.pack-feature span,
.avis-date,
.avis-count         { color: var(--white-60); }

.comp-card-desc,
.about-card-desc,
.section-subtitle   { color: var(--white-70); }

@media (max-width: 768px) {
  .nav-link,
  .mobile-nav-link,
  .btn-primary,
  .btn-outline,
  .avis-arrow,
  .comp-wa-btn,
  .faq-question,
  .pack-selector-btn {
    min-height: 44px;
    min-width: 44px;
  }

  .avis-dot {
    min-width: 24px;
    min-height: 24px;
  }
}

@supports (min-height: 100svh) {
  #accueil { min-height: 100svh; }
}

/* Mobile portrait — resserre le hero pour tout faire tenir dans la fenêtre */
@media (max-width: 639px) {
  .hero-content {
    padding-top: 5.5rem;
    padding-bottom: 2rem;
  }
  .hero-proofs {
    margin-bottom: 1.25rem;
  }
  .hero-h1 {
    margin-bottom: 1rem;
  }
  .hero-rating {
    margin-bottom: 1rem;
  }
  .hero-subtitle {
    margin-bottom: 0.75rem;
  }
  .hero-body {
    margin-bottom: 0.5rem;
  }
  .hero-reassurance {
    margin-bottom: 1.5rem;
  }
  .hero-ctas {
    gap: 0.625rem;
  }
  .hero-book-btn,
  .hero-wa-btn,
  .hero-pack-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    width: 13.5rem;
    max-width: 13.5rem;
  }
  .scroll-indicator {
    display: none;
  }
  .hero-book-btn svg,
  .hero-wa-btn svg {
    width: 1rem;
    height: 1rem;
  }
  .hero-support-text {
    font-size: 0.8rem;
    margin-top: 0.625rem;
  }
}

/* Écrans étroits (≤ 390px) — badges plus compacts pour tenir 2 par ligne */
@media (max-width: 390px) {
  .hero-proof-badge {
    font-size: 0.7rem;
    padding: 0.275rem 0.55rem;
  }
  .hero-proof-badge svg {
    width: 0.65rem;
    height: 0.65rem;
  }
  .hero-h1 {
    font-size: clamp(1.75rem, 8.5vw, 2.25rem);
  }
  .hero-rating {
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
  }
  .hero-subtitle {
    font-size: 1.05rem;
  }
  .hero-body {
    font-size: 0.875rem;
  }
  .hero-reassurance {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 768px) and (max-height: 720px) {
  .hero-content {
    padding-top: 5rem;
    padding-bottom: 3rem;
  }
  .hero-proofs {
    margin-bottom: 1rem;
  }
  .hero-h1 {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
    margin-bottom: 0.75rem;
  }
  .hero-rating {
    margin-bottom: 0.75rem;
  }
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 0.6rem;
  }
  .hero-body {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
  }
  .hero-reassurance {
    margin-bottom: 1.5rem;
  }
  .hero-ctas {
    gap: 0.625rem;
  }
  .hero-wa-btn,
  .hero-pack-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) and (max-height: 640px) {
  .hero-content {
    padding-top: 4rem;
    padding-bottom: 2rem;
  }
  .hero-proofs {
    margin-bottom: 0.6rem;
  }
  .hero-proof-badge {
    padding: 0.25rem 0.6rem;
    font-size: 0.7rem;
  }
  .hero-h1 {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
    margin-bottom: 0.5rem;
  }
  .hero-rating {
    margin-bottom: 0.5rem;
  }
  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
  }
  .hero-body {
    font-size: 0.82rem;
    margin-bottom: 0.4rem;
  }
  .hero-reassurance {
    margin-bottom: 1.25rem;
    font-size: 0.7rem;
  }
  .hero-wa-btn,
  .hero-pack-btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }
}

.header-inner {
  position: relative;
}

.hero-book-btn {
  background: var(--blue-500);
  box-shadow: 0 8px 30px rgba(59,130,246,0.30);
}

.hero-book-btn:hover {
  background: var(--blue-600);
  transform: translateY(-2px);
}

.hero-support-text a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.7rem 1rem;
  border-radius: 9999px;
  color: #ffffff;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  text-decoration: none;
  transition: all 0.2s ease;
}

.hero-support-text a:hover {
  color: #ffffff;
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.24);
  transform: translateY(-1px);
}

.hero-support-text a::after {
  content: '↗';
  font-size: 0.9em;
  opacity: 0.9;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 0.75rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  background: var(--green-500);
  color: #ffffff;
  border: 1px solid rgba(34,197,94,0.28);
  box-shadow: 0 6px 22px rgba(34,197,94,0.24);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-whatsapp:hover {
  background: var(--green-400);
  transform: translateY(-2px);
}

@media (min-width: 1024px) {
  .desktop-nav {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    gap: 2.25rem;
  }

  .desktop-nav .header-rdv-btn {
    position: absolute;
    left: calc(100% + 2rem);
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
  }
}

.subpage-hero {
  padding: 10rem 0 5rem;
}

.subpage-hero .container {
  max-width: 56rem;
}

.subpage-eyebrow {
  color: var(--blue-400);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.subpage-title {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.25rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 46rem;
  margin-bottom: 1rem;
}

.subpage-body {
  color: var(--white-70);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 42rem;
  margin-bottom: 1.75rem;
}

.subpage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.nav-link-current {
  color: #ffffff !important;
}

.realisations-intro {
  padding: 4rem 0 2rem;
}

.realisations-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.realisations-intro-card {
  padding: 1.25rem;
}

.realisations-intro-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.realisations-intro-desc {
  color: var(--white-60);
  font-size: 0.9rem;
  line-height: 1.6;
}

.realisations-cta {
  padding: 1rem 0 5rem;
}

.realisations-cta-box {
  max-width: 56rem;
  margin: 0 auto;
  padding: 1.5rem;
  text-align: center;
}

.realisations-cta-text {
  color: var(--white-70);
  margin: 0.75rem auto 1.25rem;
  max-width: 34rem;
}

.realisations-cta-actions {
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .realisations-intro-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ================================================================ */
/* NOS RÉALISATIONS V2 — sc-* / ba-* / reel-*                       */
/* ================================================================ */

/* ---------- Hero ---------- */
.sc-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

@supports (min-height: 100svh) {
  .sc-hero { min-height: 100svh; }
}

.sc-hero-bg {
  position: absolute;
  inset: 0;
}
.sc-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.sc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6,15,29,0.92) 0%,
    rgba(6,15,29,0.72) 50%,
    rgba(6,15,29,0.88) 100%
  );
}

.sc-hero-content {
  position: relative;
  z-index: 10;
  padding: 9rem 0 5rem;
  max-width: 52rem;
}

.sc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--blue-400);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.sc-eyebrow::before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--blue-400);
  border-radius: 2px;
  flex-shrink: 0;
}

.sc-hero-h1 {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  letter-spacing: -0.03em;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.sc-hero-desc {
  color: var(--white-70);
  font-size: 1.0625rem;
  max-width: 36rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.sc-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ---------- Stats strip ---------- */
.sc-stats {
  border-top: 1px solid var(--white-06);
  border-bottom: 1px solid var(--white-06);
  padding: 2rem 0;
}

.sc-section--page-start {
  padding-top: calc(5rem + 2rem);
}

.sc-page-header {
  padding: 8rem 0 3rem;
  text-align: center;
}

.sc-page-header-title {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.025em;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.sc-page-header-sub {
  color: var(--white-60);
  font-size: 1.0625rem;
  line-height: 1.7;
  max-width: 36rem;
  margin: 0 auto;
}

.sc-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1rem;
  text-align: center;
}

@media (min-width: 640px) {
  .sc-stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .sc-stat + .sc-stat {
    border-left: 1px solid var(--white-08);
  }
}

.sc-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.sc-stat-number {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1;
  background: linear-gradient(to right, var(--blue-400), var(--cyan-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sc-stat-plus {
  font-size: 1.5rem;
}

.sc-stat-label {
  color: var(--white-50);
  font-size: 0.8125rem;
  font-weight: 500;
}

/* ---------- Generic section layout ---------- */
.sc-section {
  padding: 5rem 0;
}

.sc-section--flush-top {
  padding-top: 0;
}

.sc-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.sc-section-eyebrow {
  color: var(--blue-400);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.sc-section-title {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  letter-spacing: -0.025em;
  color: #ffffff;
  margin-bottom: 0.875rem;
  line-height: 1.15;
}

.sc-note {
  text-align: center;
  color: var(--white-30);
  font-size: 0.75rem;
  margin-top: 2rem;
}

/* ---------- Avant / Après showcase ---------- */
.ba-showcase {
  overflow: hidden;
  max-width: 640px;
  margin: 0 auto;
}

.ba-showcase-pair {
  display: grid;
  grid-template-columns: 1fr 3rem 1fr;
  align-items: stretch;
}

.ba-showcase-side {
  position: relative;
  overflow: hidden;
  background: #000;
}

.ba-showcase-side video {
  width: 100%;
  aspect-ratio: 9/16;
  height: auto;
  object-fit: cover;
  display: block;
}

.ba-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 10;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.ba-tag-before {
  background: rgba(0,0,0,0.65);
  color: var(--white-80);
}

.ba-tag-after {
  background: rgba(59,130,246,0.90);
  color: #ffffff;
}

.ba-showcase-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.40);
  position: relative;
}

.ba-showcase-divider::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--white-08);
}

.ba-showcase-divider svg {
  width: 2.25rem;
  height: 2.25rem;
  padding: 0.45rem;
  background: var(--blue-500);
  border-radius: 50%;
  box-shadow: 0 0 28px rgba(59,130,246,0.65);
  color: #ffffff;
  stroke: #ffffff;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.ba-showcase-caption {
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--white-06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.ba-showcase-caption-left h3 {
  font-weight: 600;
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 0.375rem;
}

.ba-showcase-caption-left p {
  color: var(--white-55);
  font-size: 0.875rem;
  line-height: 1.6;
}

.ba-caption-cta {
  font-size: 0.8125rem;
  padding: 0.625rem 1.25rem;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .ba-showcase-caption {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.25rem;
  }
  .ba-caption-cta {
    width: 100%;
    justify-content: center;
  }
}

/* ---------- Phone captions ---------- */
.sc-phone-caption {
  text-align: center;
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.sc-phone-label {
  color: var(--white-70);
  font-size: 0.875rem;
  font-weight: 600;
}

/* ---------- Storytelling ---------- */
.sc-story {
  padding: 0 0 4rem;
}

.sc-story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .sc-story-grid { grid-template-columns: repeat(3, 1fr); }
}

.sc-story-card {
  padding: 1.75rem;
  transition: background 0.3s ease;
}
.sc-story-card:hover {
  background: var(--white-06);
}

.sc-story-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: rgba(59,130,246,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background 0.2s ease;
}
.sc-story-card:hover .sc-story-icon {
  background: rgba(59,130,246,0.22);
}
.sc-story-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--blue-400);
  stroke: var(--blue-400);
}

.sc-story-title {
  font-weight: 600;
  font-size: 0.9375rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.sc-story-desc {
  color: var(--white-55);
  font-size: 0.8125rem;
  line-height: 1.65;
}

/* ---------- Reel grid ---------- */
.reel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .reel-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.reel-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--white-08);
  border-radius: 1.25rem;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.reel-card:hover {
  border-color: rgba(59,130,246,0.28);
  transform: translateY(-5px);
  box-shadow: 0 28px 56px rgba(0,0,0,0.45);
}

.reel-phone-wrap {
  display: flex;
  justify-content: center;
  padding: 2rem 2rem 1rem;
  position: relative;
}

.reel-phone-frame {
  position: relative;
  width: 100%;
  max-width: 220px;
  border-radius: 2.5rem;
  border: 6px solid var(--white-10);
  background: #000;
  box-shadow: 0 25px 50px rgba(0,0,0,0.5), 0 0 40px rgba(59,130,246,0.10);
  overflow: hidden;
}

.reel-card-info {
  padding: 1.25rem 1.5rem 1.5rem;
}

.reel-tag {
  display: inline-block;
  padding: 0.2rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(59,130,246,0.12);
  color: var(--blue-400);
  margin-bottom: 0.625rem;
}

.reel-title {
  font-weight: 600;
  font-size: 0.9375rem;
  color: #ffffff;
  margin-bottom: 0.375rem;
  line-height: 1.3;
}

.reel-desc {
  color: var(--white-55);
  font-size: 0.8125rem;
  line-height: 1.6;
}

@media (max-width: 480px) {
  .reel-card-media {
    height: 280px;
  }
}

/* ---------- Media carousel ---------- */
.media-carousel {
  position: relative;
  padding: 0 3rem;
}

.media-carousel-track-outer {
  overflow: hidden;
}

.media-carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.media-slide {
  flex: 0 0 100%;
  min-width: 0;
}

.media-slide-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0 0.5rem;
}

.media-slide-caption {
  text-align: center;
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.media-slide-label {
  color: var(--white-70);
  font-size: 0.875rem;
  font-weight: 600;
}

.media-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--white-08);
  border: 1px solid var(--white-10);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 10;
  flex-shrink: 0;
}
.media-arrow:hover {
  background: var(--white-15);
  transform: translateY(-50%) scale(1.08);
}
.media-arrow svg {
  width: 1.1rem;
  height: 1.1rem;
}
.media-prev { left: 0; }
.media-next { right: 0; }

.media-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.media-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: var(--white-20);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.media-dot.active {
  background: var(--blue-400);
  width: 1.5rem;
}

@media (max-width: 640px) {
  .media-carousel {
    padding: 0 2.5rem;
  }
  .media-arrow {
    width: 2.25rem;
    height: 2.25rem;
  }
}

/* ---------- Portrait cards (carrousel) ---------- */
.media-portrait-card {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--white-08);
  aspect-ratio: 9/16;
  flex: 1;
  min-width: 0;
}

.media-portrait-card video,
.media-portrait-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-portrait-card--centered {
  max-width: 280px;
  width: 100%;
  margin: 0 auto;
  flex: none;
}

.media-slide-ba {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 640px;
  margin: 0 auto;
}

.media-ba-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0 0.75rem;
}

.media-ba-arrow svg {
  width: 2rem;
  height: 2rem;
  padding: 0.4rem;
  background: var(--blue-500);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(59,130,246,0.55);
  color: #ffffff;
  stroke: #ffffff;
}

/* ---------- CTA section ---------- */
.sc-cta-section {
  padding: 2rem 0 5rem;
}

.sc-cta-box {
  position: relative;
  text-align: center;
  padding: 4rem 2rem;
  overflow: hidden;
  border: none;
  background: none;
}

@media (max-width: 640px) {
  .sc-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .sc-cta-actions .btn-primary,
  .sc-cta-actions .btn-whatsapp {
    width: 100%;
    justify-content: center;
  }
}

.sc-cta-glow {
  display: none;
}

.sc-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

@media (max-width: 480px) {
  .sc-cta-box {
    padding: 2.5rem 1.25rem;
  }
}
