/* --- PREMIUM SERVICE GLOBAL STYLES --- */
/* ============================================================
   service-premium.css — Snoussi Studio — Version 2.0 STABLE
   ============================================================ */

:root {
  --mauve-color: #6d28d9;
  --mauve-light: #8b5cf6;
  --bg-dark: #05020a;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --f-termina: 'termina', sans-serif;
  --f-body: 'Space Grotesk', sans-serif;
  --theme-transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

/* ---- LIGHT MODE ---- */
.light-mode {
  --bg-dark: #f8fafc;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(109, 40, 217, 0.2);
}

.light-mode .hero-glass-card h1 {
  background: linear-gradient(to right, var(--mauve-color), var(--mauve-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.light-mode .bento-item {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(109, 40, 217, 0.1);
}

.light-mode .purple-block {
  background: linear-gradient(135deg, var(--mauve-color), #4c1d95);
}

.light-mode .purple-block .purple-content p { color: rgba(255,255,255,0.9); }

.light-mode .feature-card {
  background: #fff;
  border-color: rgba(109, 40, 217, 0.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.light-mode .cta-box {
  background: #fff;
  border-color: var(--mauve-light);
}

.light-mode .faq-modern-item {
  background: #fff;
  border-color: rgba(109, 40, 217, 0.1);
}

.light-mode .contact-form-wrapper {
  background: #fff;
  box-shadow: 0 30px 60px rgba(109, 40, 217, 0.1);
}

.light-mode .premium-form input,
.light-mode .premium-form textarea,
.light-mode .premium-form select {
  background: #f1f5f9;
  border-color: #e2e8f0;
  color: #0f172a;
}

/* ---- BASE PREMIUM BODY ---- */
.premium-body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--f-body);
  overflow-x: clip;
  padding-top: 80px; /* +50px pour passer sous la navbar */
  transition: var(--theme-transition);
}

/* ====================================================================
   HERO SECTION
   ==================================================================== */
.service-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 4rem 5%;
  background: radial-gradient(circle at 80% 20%, rgba(109, 40, 217, 0.2), transparent 40%);
}

.hero-glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 3rem;
  max-width: 700px;
  position: relative;
  z-index: 2;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.hero-glass-card h1 {
  font-family: var(--f-termina);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #fff, #c4b5fd);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-glass-card p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.hero-glass-card strong { color: var(--text-primary); font-weight: 600; }

.hero-visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  height: 60vh;
  border-radius: 30px;
  overflow: clip;
  z-index: 1;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8) contrast(1.1);
}

/* New-style flex hero (2-column grid) */
.hero-flex-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 3rem;
}

.hero-main-img {
  position: relative;
  border-radius: 40px;
  overflow: clip;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  aspect-ratio: 4/5;
}

.hero-main-img img { width: 100%; height: 100%; object-fit: cover; }

.img-accent-border {
  position: absolute;
  top: 20px; right: 20px; bottom: 20px; left: 20px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 30px;
  pointer-events: none;
}

/* ====================================================================
   REVEAL ACCORDION (HOMEPAGE SERVICES)
   ==================================================================== */
.reveal-accordion {
  display: flex;
  width: 100%;
  height: 70vh;
  min-height: 500px;
  margin-top: 5rem;
  overflow: hidden;
  background: #000;
  position: relative;
  cursor: none !important;
}

.reveal-accordion * { cursor: none !important; }

.reveal-item {
  flex: 1;
  position: relative;
  overflow: hidden;
  transition: flex 1s cubic-bezier(0.23, 1, 0.32, 1);
  text-decoration: none;
  border-right: 1px solid rgba(255,255,255,0.05);
}

.reveal-item:last-child { border-right: none; }
.reveal-item:hover { flex: 4; }

.reveal-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.4);
  transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1), filter 0.8s ease;
}

.reveal-item:hover .reveal-bg {
  filter: grayscale(0%) brightness(0.7);
  transform: scale(1.05);
}

.reveal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  opacity: 0.6;
  z-index: 1;
}

.reveal-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  color: white;
  pointer-events: none;
  padding: 2.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-item:hover .reveal-content {
  background: linear-gradient(to top, rgba(109,40,217,0.6) 0%, transparent 100%);
}

.reveal-cat {
  font-family: var(--f-termina);
  font-size: 0.7rem;
  color: var(--mauve-light);
  display: block;
  margin-bottom: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) 0.1s;
}

.reveal-item:hover .reveal-cat { opacity: 1; transform: translateY(0); }

.reveal-title {
  font-family: var(--f-termina);
  font-size: clamp(1.1rem, 2.5vw, 2rem);
  margin: 0;
  white-space: normal;
  text-transform: uppercase;
  transform: translateY(6px);
  opacity: 0.6;
  transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  letter-spacing: 0.04em;
}

.reveal-item:hover .reveal-title {
  white-space: nowrap;
  transform: translateY(0);
  opacity: 1;
  letter-spacing: 0.08em;
  text-shadow: 0 0 30px rgba(255,255,255,0.3);
}

/* CUSTOM ACCORDION CURSOR */
#reveal-cursor {
  position: fixed;
  width: 120px;
  height: 120px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

#reveal-cursor-text {
  color: var(--text-primary);
  font-family: var(--f-termina);
  font-size: 0.6rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .reveal-accordion { flex-direction: column; height: auto; cursor: auto !important; pointer-events: auto !important; }
  .reveal-accordion * { cursor: auto !important; pointer-events: auto !important; }
  #reveal-cursor { display: none !important; }
  .reveal-item { height: 300px; flex: none; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .reveal-item:hover { flex: none; }
}

/* ====================================================================
   MOSAIC GRID
   ==================================================================== */
.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  grid-auto-rows: 250px;
}

.mosaic-item {
  position: relative;
  border-radius: 30px;
  overflow: clip;
  border: 1px solid var(--glass-border);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  background: var(--glass-bg);
}

.mosaic-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(109, 40, 217, 0.3);
  border-color: var(--mauve-light);
}

.mosaic-item.wide-img { grid-column: span 2; grid-row: span 2; }
.mosaic-item.tall { grid-row: span 2; }
.mosaic-item.square { grid-column: span 1; grid-row: span 1; }
.mosaic-item.wide { grid-column: span 2; grid-row: span 1; }

.mosaic-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.8s ease;
}

.mosaic-item:hover .mosaic-bg { transform: scale(1.1); }

.mosaic-overlay {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
  z-index: 2;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.mosaic-overlay-soft {
  padding: 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mosaic-content-v {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
}

.mosaic-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  width: 100%;
}

.mosaic-item h3 { font-family: var(--f-termina); font-size: 1.4rem; margin-bottom: 0.5rem; }
.mosaic-item p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.4; }
.mosaic-item:hover p { color: rgba(255,255,255,0.8); }

/* Portal / Magnetic */
.portal-strip:hover .strip-title { color: #fff !important; -webkit-text-stroke: 1px #fff; text-shadow: 0 0 40px rgba(255,255,255,0.4); }
.magnetic-content { display: inline-block; padding: 2rem; transition: transform 0.2s ease-out; will-change: transform; }
.marquee-item { -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3); }
.marquee-item.alternate { -webkit-text-stroke: 1px var(--mauve-light); }

/* ====================================================================
   CATEGORY LABEL
   ==================================================================== */
.category-label {
  font-family: var(--f-body);
  font-size: 0.8rem;
  color: var(--mauve-light);
  text-transform: uppercase;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 1.5rem;
}

/* ====================================================================
   BENTO GRID SECTION
   ==================================================================== */
.bento-section { padding: 4rem 10%; } /* Increased margins from 5% to 10% */


.bento-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 4rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bento-header h2 {
  font-family: var(--f-termina);
  font-size: clamp(1.8rem, 5vw, 2.6rem); /* Slightly smaller for premium feel */
  margin-bottom: 1.5rem;
  line-height: 1.2;
  max-width: 800px;
}


.bento-header p {
  max-width: 600px;
  color: var(--text-secondary);
  font-size: 1.15rem;
  line-height: 1.7;
  text-align: center;
  margin: 0 auto;
}


.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
  grid-auto-rows: minmax(180px, auto);
}

/* All bento items in a centered grid should flow like flex items */
.bento-grid.bento-flex-center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  grid-template-columns: none; /* Override grid */
}

.bento-flex-center .bento-item {
  flex: 0 1 calc(33.333% - 2rem); /* Approx span 4 */
  min-width: 300px;
}

@media (max-width: 1024px) {
  .bento-flex-center .bento-item {
    flex: 0 1 100%;
  }
}

.bento-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  overflow: clip;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.bento-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(0,0,0,0.3);
  border-color: var(--mauve-light);
}

.bento-item h3 { font-family: var(--f-termina); font-size: 1.4rem; margin-bottom: 1rem; }
.bento-item p { color: var(--text-secondary); font-size: 1rem; line-height: 1.6; }

.bento-item.large    { grid-column: span 8; padding: 3rem; }
.bento-item.medium   { grid-column: span 4; padding: 3rem; } /* Changed from 6 to 4 for symmetry */
.bento-item.small    { grid-column: span 4; padding: 3rem; background: var(--mauve-color); color: #fff; }
.bento-item.img-block { grid-column: span 12; padding: 0; min-height: 400px; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.2); }
.bento-item.img-block img { max-width: 30%; height: auto; object-fit: contain; border-radius: 15px; box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.bento-item.narrow-img { grid-column: span 4; padding: 0; overflow: hidden; min-height: 350px; } /* Changed from 6 to 4 for symmetry */
.bento-item.narrow-img img { width: 100%; height: 100%; object-fit: cover; display: block; }




/* ====================================================================
   PURPLE BLOCK (2-column expert section)
   ==================================================================== */
.purple-block {
  background: var(--mauve-color);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  margin: 3rem 0;
  overflow: clip;
}

.purple-content {
  padding: 4rem 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.purple-content h2 {
  font-family: var(--f-termina);
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 2rem;
  color: #fff;
  line-height: 1.2;
}

.purple-content p { color: rgba(255,255,255,0.85); font-size: 1.1rem; line-height: 1.7; margin-bottom: 1.5rem; }

.purple-visual {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 350px;
  z-index: 1;
  overflow: hidden;
}

.purple-visual img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; }

/* ====================================================================
   BTN MAUVE PREMIUM
   ==================================================================== */
.btn-mauve-premium {
  background: var(--mauve-color);
  color: white;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none !important;
  font-family: var(--f-termina);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-block;
  box-shadow: 0 10px 30px rgba(109, 40, 217, 0.3);
}

.btn-mauve-premium:hover {
  transform: scale(1.05) translateY(-5px);
  background: var(--mauve-light);
  box-shadow: 0 15px 40px rgba(109, 40, 217, 0.5);
}

/* ====================================================================
   FEATURES SECTION (Testimonials / Avantages)
   ==================================================================== */
.features-section {
  padding: 4rem 5%;
  background: linear-gradient(180deg, transparent, rgba(109, 40, 217, 0.03));
}

.features-section h2 {
  font-family: var(--f-termina);
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
  text-align: center;
}

.features-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem auto;
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
  list-style: none;
  padding: 0;
}

.feature-card {
  grid-column: span 4;
  min-height: 260px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 3rem;
  border-radius: 32px;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(109, 40, 217, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.6s;
}

.feature-card:hover::before { opacity: 1; }

.feature-card:hover {
  transform: translateY(-15px) scale(1.02);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--mauve-light);
  box-shadow: 0 40px 100px rgba(109, 40, 217, 0.2);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: var(--mauve-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i { color: #fff; font-size: 1.2rem; }

.feature-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-primary);
  position: relative;
  z-index: 1;
}

.testimonial-meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--glass-border);
  padding-top: 1.5rem;
}

.testimonial-meta strong {
  font-family: var(--f-termina);
  color: var(--mauve-light);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.testimonial-meta a {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-decoration: none;
  border: 1px solid var(--glass-border);
  padding: 5px 12px;
  border-radius: 20px;
  transition: all 0.3s;
}

.testimonial-meta a:hover { background: var(--mauve-color); color: #fff; border-color: var(--mauve-color); }

/* ====================================================================
   EXPERTISE GRID (Alternative à FAQ)
   ==================================================================== */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.expertise-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid var(--glass-border);
  padding: 3rem 2rem;
  border-radius: 30px;
  text-align: center;
  transition: all 0.5s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.expertise-card:hover {
  background: var(--mauve-color);
  transform: translateY(-15px) scale(1.05);
  border-color: var(--mauve-light);
  box-shadow: 0 30px 60px rgba(109, 40, 217, 0.3);
}

.expertise-card h3 {
  font-family: var(--f-termina);
  font-size: 1.3rem;
  margin: 0;
  color: #fff;
}

.expertise-card p { color: var(--text-secondary); line-height: 1.6; margin: 0; }
.expertise-card:hover h3, .expertise-card:hover p { color: #fff; }

.expertise-card .learn-more {
  margin-top: 1rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--mauve-light);
  font-weight: 700;
}

.expertise-card:hover .learn-more { color: #fff; text-decoration: underline; }

/* ====================================================================
   CTA BOX
   ==================================================================== */
.cta-box {
  background: linear-gradient(135deg, var(--bg-dark), #1e1b4b);
  border: 1px solid var(--mauve-color);
  border-radius: 24px;
  padding: 4rem;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 3rem auto;
}

.cta-box h2 { font-family: var(--f-termina); font-size: 2.5rem; margin-bottom: 1.5rem; }
.cta-box p { font-size: 1.15rem; color: var(--text-secondary); margin-bottom: 1.5rem; max-width: 700px; margin-left: auto; margin-right: auto; }

/* ====================================================================
   FAQ MODERN PREMIUM (Accordion)
   ==================================================================== */
.faq-modern-section {
  padding: 6rem 5%;
  margin: 0 auto;
}

.faq-modern-section h2 {
  font-family: var(--f-termina);
  font-size: clamp(1.2rem, 4vw, 2.5rem);
  margin-bottom: 3rem;
  text-align: center;
  letter-spacing: 0;
}

.faq-accordion-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.faq-modern-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  margin-bottom: 1.5rem;
  overflow: clip;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.faq-modern-item:hover {
  border-color: var(--mauve-light);
  background: rgba(255, 255, 255, 0.08);
}

.faq-modern-item summary {
  padding: 2rem;
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--f-termina);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
}

.faq-modern-item summary::-webkit-details-marker { display: none; }

.faq-modern-item summary h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.4;
  padding-right: 40px;
}

.faq-modern-item summary::after {
  content: '\2192';
  font-size: 1.5rem;
  color: var(--mauve-light);
  transition: transform 0.4s;
  font-weight: 900;
  flex-shrink: 0;
}

.faq-modern-item[open] summary::after {
  transform: rotate(90deg);
  color: #fff;
}

.faq-answer {
  padding: 0 2rem 2rem 2rem;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  animation: slideDown 0.5s ease-out;
}

.faq-answer p { margin: 0; }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ====================================================================
   COMPACT TESTIMONIAL SLIDER
   ==================================================================== */
/* Override agressif du .trust-wall-section global (padding: 15rem dans style.css) */
section.trust-wall-section.compact {
  padding: 5rem 5vw !important;
  background: transparent !important;
  text-align: center !important;
  overflow: visible !important;
}

/* Cacher le gros marquee ticker dans version compacte - DISABLED BY USER REQUEST */
/* .trust-wall-section.compact .trust-marquee { display: none !important; } */

.trust-slider-container {
  position: relative;
  max-width: 800px;
  margin: 3rem auto 0;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.trust-slide {
  position: absolute;
  top: 0; left: 0; width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.trust-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.trust-wall-section.compact .trust-quote {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  line-height: 1.6;
  font-style: italic;
  color: #fff;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: initial;
  font-family: var(--f-body);
  font-weight: 500;
}

.trust-wall-section.compact .trust-author {
  font-size: 0.9rem;
  letter-spacing: 3px;
  font-weight: 700;
  margin-top: 1rem;
  font-family: var(--f-body);
}

.trust-slide:nth-child(1) .trust-author { color: var(--text-primary); }
.trust-slide:nth-child(2) .trust-author { color: var(--mauve-light); }
.trust-slide:nth-child(3) .trust-author { color: var(--text-primary); }

/* Slider dots */
.slider-dots {
  display: flex;
  gap: 10px;
  margin-top: 2rem;
}

.dot {
  width: 8px; height: 8px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--mauve-light);
  transform: scale(1.5);
  box-shadow: 0 0 10px var(--mauve-light);
}

/* ====================================================================
   COMPACT TESTIMONIAL - Classes isolées (éviter conflit style.css)
   ==================================================================== */
.trust-quote-compact {
  font-family: var(--f-body) !important;
  font-size: clamp(1rem, 2vw, 1.35rem) !important;
  line-height: 1.6 !important;
  font-style: italic !important;
  font-weight: 500 !important;
  color: #fff !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: #fff !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  margin-bottom: 0 !important;
}

.trust-author-compact {
  font-family: var(--f-body) !important;
  font-size: 0.85rem !important;
  letter-spacing: 3px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  color: var(--text-secondary);
  margin-top: 1rem;
}

.trust-slide:nth-child(1) .trust-author-compact { color: var(--text-primary); }
.trust-slide:nth-child(2) .trust-author-compact { color: var(--mauve-light); }

/* ====================================================================
   PREMIUM CONTACT SECTION
   ==================================================================== */
.premium-contact-section {
  padding: 6rem 5%;
  overflow-x: clip;
  background: linear-gradient(to bottom, transparent, rgba(109, 40, 217, 0.05));
}

.contact-container { max-width: 1200px; margin: 0 auto; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact-info h2 {
  font-family: var(--f-termina);
  font-size: clamp(1.8rem, 6vw, 3rem);
  margin-bottom: 2rem;
  padding: 0 10px;
  background: linear-gradient(to right, #fff, var(--mauve-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-wrap: balance;
}

.contact-info p { color: var(--text-secondary); font-size: 1.15rem; line-height: 1.7; margin-bottom: 3rem; padding: 0 10px; }

.direct-contact { display: flex; flex-direction: column; gap: 2rem; padding: 0 10px; }

.contact-link {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
  max-width: 100%;
  overflow: hidden;
}

.contact-link:hover { transform: translateX(10px); }

.contact-icon-circle {
  width: 60px; height: 60px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.contact-link:hover .contact-icon-circle {
  background: var(--mauve-color);
  border-color: var(--mauve-light);
  box-shadow: 0 0 20px rgba(109, 40, 217, 0.4);
}

.contact-icon-circle svg { width: 24px; height: 24px; fill: var(--mauve-light); transition: fill 0.3s ease; }
.contact-link:hover svg { fill: #fff; }

.contact-text { overflow: hidden; }
.contact-text span { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-secondary); margin-bottom: 0.3rem; }
.contact-text strong { font-size: clamp(1rem, 4vw, 1.3rem); color: #fff; font-family: var(--f-body); word-break: break-all; }

/* Contact Form */
.contact-form-wrapper {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  padding: clamp(1.5rem, 5vw, 3rem);
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
  max-width: 100%;
}

.premium-form { display: flex; flex-direction: column; gap: 1.5rem; max-width: 100%; }
.form-group { max-width: 100%; }
.form-group label { display: block; font-size: 0.9rem; margin-bottom: 0.8rem; color: var(--text-secondary); }

.premium-form input,
.premium-form textarea,
.premium-form select {
  width: 100%;
  box-sizing: border-box;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  color: #fff;
  font-family: var(--f-body);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.premium-form input:focus,
.premium-form textarea:focus,
.premium-form select:focus {
  outline: none;
  border-color: var(--mauve-light);
  background: rgba(109, 40, 217, 0.05);
}

.submit-btn-premium {
  position: relative;
  background: var(--mauve-color);
  border: none;
  padding: 1.2rem;
  border-radius: 12px;
  color: #fff;
  font-weight: 700;
  font-family: var(--f-termina);
  letter-spacing: 1px;
  font-size: 0.95rem;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s ease;
  width: 100%;
}

.submit-btn-premium:hover { transform: translateY(-3px); background: var(--mauve-light); }

.btn-glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.submit-btn-premium:hover .btn-glow { transform: translate(-50%, -50%) scale(1); }

/* Footer extra links */
.footer-contact-links { margin: 2rem 0; display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.footer-big-link { font-family: var(--f-termina); font-size: 1.1rem; color: #fff; text-decoration: none; transition: color 0.3s; }
.footer-big-link:hover { color: var(--mauve-light); }
.footer-sep { color: rgba(255,255,255,0.2); }

/* ====================================================================
   PRICING BESPOKE CARD (Tarifs page)
   ==================================================================== */
.pricing-bespoke-card {
  display: flex;
  align-items: center;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 40px;
  overflow: hidden;
  margin: 4rem 0;
  min-height: 500px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s ease;
}

.pricing-bespoke-card:hover { transform: translateY(-10px); }

.bespoke-content { flex: 1.2; padding: 4rem; }

.bespoke-content h2 {
  font-family: var(--f-termina);
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 1.5rem 0;
  line-height: 1.1;
  background: linear-gradient(to right, #fff, var(--mauve-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bespoke-content p { font-size: 1.15rem; line-height: 1.7; color: var(--text-secondary); margin-bottom: 2rem; max-width: 600px; }

.bespoke-cta-group { display: flex; gap: 1.5rem; flex-wrap: wrap; }

.bespoke-visual { flex: 1; height: 100%; min-height: 500px; position: relative; overflow: hidden; }
.bespoke-visual img { width: 100%; height: 100%; object-fit: cover; }

/* ====================================================================
   NAVIGATION ACTIVE INDICATOR
   ==================================================================== */
@keyframes infiniteLine {
  0%   { left: -20%; }
  100% { left: 110%; }
}

.nav-links > li > a.active {
  font-weight: 800 !important;
  position: relative;
  overflow: hidden;
  opacity: 1 !important;
}

.nav-links > li > a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--mauve-light), transparent);
  animation: infiniteLine 0.65s infinite linear;
}

/* Cursor follower réduit sur la navbar standard */
.nav-links > li > a:hover ~ .cursor-follower,
.nav-links:hover .cursor-follower {
  width: 15px !important;
  height: 15px !important;
  top: -6px !important;
  left: -6px !important;
  border-radius: 50% !important;
}

.dropdown-menu li a.active-sub {
  font-weight: 800 !important;
  opacity: 1 !important;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  padding-left: 35px !important;
}

.dropdown-menu li a.active-sub::before {
  content: '';
  position: absolute;
  left: 15px;
  width: 8px; height: 8px;
  background: var(--mauve-color);
  box-shadow: 0 0 8px var(--mauve-light);
  border-radius: 2px;
}

/* ====================================================================
   UTILS
   ==================================================================== */
.no-scroll { overflow: hidden !important; height: 100vh !important; }

/* ====================================================================
   RESPONSIVE
   ==================================================================== */
@media (max-width: 1024px) {
  .service-hero { flex-direction: column-reverse; padding-top: 10rem; text-align: center; }
  .hero-glass-card { margin-top: 2rem; padding: 2rem; max-width: 100%; border-radius: 20px; }
  .hero-visual { position: relative; width: 100%; height: 35vh; transform: none; top: 0; right: 0; border-radius: 20px; margin-bottom: 2rem; }
  .hero-flex-container { grid-template-columns: 1fr; gap: 2rem; }
  .hero-main-img { aspect-ratio: 16/9; }
  .mosaic-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .mosaic-item { grid-column: span 1 !important; grid-row: span 1 !important; height: auto; min-height: 250px; }
  .mosaic-bg { opacity: 0.3; }
  .bento-grid { grid-template-columns: 1fr !important; }
  .bento-item { grid-column: span 12 !important; grid-row: auto !important; height: auto !important; }
  .bento-item.img-block img { max-width: 60%; }
  .purple-block { grid-template-columns: 1fr; }
  .purple-content { padding: 3rem 5%; }
  .purple-visual { min-height: 300px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-card { grid-column: span 6; min-height: auto; }
  .expertise-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-info h2 { font-size: 2.2rem; text-align: center; }
  .contact-form-wrapper { padding: 1.5rem; width: 100%; max-width: 100%; }
  .pricing-bespoke-card { flex-direction: column; border-radius: 30px; }
  .bespoke-content { padding: 2.5rem; order: 2; }
  .bespoke-visual { width: 100%; height: 350px; min-height: 350px; order: 1; }
}

@media (max-width: 768px) {
  .bento-item { padding: 1.5rem !important; }
  .purple-block { flex-direction: column; padding: 3rem 5%; text-align: center; margin: 2rem 0; border-radius: 20px; }
  .purple-content { max-width: 100%; margin-bottom: 2rem; }
  .purple-visual { position: relative; top: 0; right: 0; width: 100%; height: 250px; transform: none; border-radius: 15px; }
  .purple-content h2 { font-size: 1.8rem; }
  .features-grid { grid-template-columns: 1fr !important; }
  .feature-card { grid-column: span 1 !important; min-height: auto; }
  .expertise-grid { grid-template-columns: 1fr; }
  .faq-modern-item summary { padding: 1.5rem; }
  .faq-modern-item summary h3 { font-size: 1rem; }
  .faq-answer { padding: 0 1.5rem 1.5rem 1.5rem; }
  .faq-modern-section h2 { white-space: normal; }
  .contact-grid { gap: 2rem; }
  .contact-info h2 { font-size: 2rem; text-align: center; }
  .premium-contact-section { padding: 3rem 15px; }
  .cta-box { padding: 2rem 1.5rem; }
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ====================================================================
   NEW 2-COLUMN SERVICE CONTENT LAYOUT
   ==================================================================== */
.premium-split-section {
  padding: 8rem 5vw;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 6rem;
  align-items: center;
}

.split-content-left {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.split-content-left h2 {
  font-family: var(--f-termina);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.split-content-left p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.content-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.feature-mini-card {
  padding: 2.5rem;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: transform 0.3s ease;
}

.feature-mini-card:hover { transform: translateY(-5px); }

.feature-mini-card.black {
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.05);
}

.feature-mini-card.mauve {
  background: var(--mauve-color);
  color: #fff;
}

.mini-card-icon {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.feature-mini-card.mauve .mini-card-icon {
  background: rgba(255,255,255,0.2);
}

.feature-mini-card h3 {
  font-family: var(--f-termina);
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.feature-mini-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  color: inherit;
  opacity: 0.8;
}

.split-content-right {
  position: relative;
}

.split-image-container {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
  border: 1px solid var(--glass-border);
  aspect-ratio: 4/5;
}

.split-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .premium-split-section {
    grid-template-columns: 1fr;
    gap: 4rem;
    padding: 5rem 5vw;
  }
  .split-content-right {
    order: -1;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .content-cards-row {
    grid-template-columns: 1fr;
  }
}

/* ====================================================================
   CTA PURPLE BANNER (Standard across pages)
   ==================================================================== */
.cta-purple-banner {
    background: linear-gradient(135deg, var(--mauve-color), #4c1d95);
    padding: 6rem 5%;
    border-radius: 40px;
    text-align: center;
    margin: 6rem 5% 10rem 5%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.cta-purple-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotateBanner 20s linear infinite;
}

@keyframes rotateBanner {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-purple-banner .cta-content {
    position: relative;
    z-index: 2;
}

.cta-purple-banner h2 {
    font-family: var(--f-termina);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.cta-purple-banner p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.8);
    max-width: 750px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
}

.btn-white-cta {
    display: inline-block;
    background: #fff;
    color: var(--mauve-color);
    padding: 1.4rem 3.5rem;
    border-radius: 50px;
    font-family: var(--f-termina);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.btn-white-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    background: var(--mauve-light);
    color: #fff;
}


/* ====================================================================
   CTA PURPLE BANNER (Standard across all pages)
   ==================================================================== */
.cta-purple-banner {
    background: linear-gradient(135deg, var(--mauve-color), #4c1d95);
    padding: 8rem 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 4rem 0;
    border-radius: 40px;
    box-shadow: 0 40px 100px -20px rgba(109, 40, 217, 0.4);
}

.cta-purple-banner .cta-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.cta-purple-banner h2 {
    font-family: var(--f-termina);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.cta-purple-banner p {
    font-family: var(--f-body);
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 0;
}

.btn-white-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #fff;
    color: var(--mauve-color);
    text-decoration: none !important;
    border-radius: 50px;
    font-family: var(--f-termina);
    font-weight: 900;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.btn-white-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    background: var(--mauve-light);
    color: #fff;
}

/* Light mode support for CTA */
.light-mode .cta-purple-banner {
    background: linear-gradient(135deg, var(--mauve-color), var(--mauve-light));
}

/* Responsive CTA */

@media (max-width: 768px) {
    .cta-purple-banner {
        margin: 4rem 15px;
        padding: 4rem 1.5rem;
        border-radius: 20px;
    }
    .btn-white-cta {
        padding: 1.2rem 2.5rem;
    }
}