/* ═══════════════════════════════════════════════════════
   AGD PRODUCTION — Design System Glassmorphism
   Violet #6E35A6 · Noir #0D0D0D · Blanc #F5F5F5
═══════════════════════════════════════════════════════ */

:root {
  --violet:        #6E35A6;
  --violet-light:  #9B5FD4;
  --violet-dark:   #4A2070;
  --violet-glow:   rgba(110, 53, 166, 0.35);
  --noir:          #0D0D0D;
  --noir-soft:     #111111;
  --blanc:         #F5F5F5;
  --gris:          #666666;
  --gris-light:    #AAAAAA;

  --glass-bg:      rgba(255, 255, 255, 0.04);
  --glass-border:  rgba(110, 53, 166, 0.2);
  --glass-blur:    blur(24px);
  --glass-glow:    0 0 40px rgba(110, 53, 166, 0.12);

  --font:          'Inter', sans-serif;
  --nav-h:         70px;
  --radius:        16px;
  --radius-lg:     24px;
  --ease:          cubic-bezier(0.16, 1, 0.3, 1);
  --t:             0.35s;

  --max-w:         1200px;
}

/* ── RESET ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--noir);
  color: var(--blanc);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img, video { max-width: 100%; display: block; }
button { font-family: var(--font); cursor: pointer; border: none; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--noir); }
::-webkit-scrollbar-thumb { background: var(--violet); border-radius: 2px; }

/* ── BRUIT DE FOND (texture subtile) ───────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ── GRADIENT ORB (ambient glow) ───────────────────── */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.18;
}
.orb-1 {
  width: 600px; height: 600px;
  background: var(--violet);
  top: -200px; left: -200px;
}
.orb-2 {
  width: 400px; height: 400px;
  background: var(--violet-light);
  bottom: 10%; right: -100px;
}

/* ── NAVIGATION ─────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background var(--t), border-color var(--t);
}
#navbar.scrolled {
  background: rgba(13, 13, 13, 0.8);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}
.logo-agd  { color: var(--violet-light); }
.logo-prod { color: var(--blanc); font-weight: 300; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gris-light);
  transition: color var(--t);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--violet-light);
  transform: scaleX(0);
  transition: transform var(--t) var(--ease);
}
.nav-link:hover { color: var(--blanc); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--blanc); }

.nav-cta {
  background: var(--violet);
  color: var(--blanc) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background var(--t), transform var(--t), box-shadow var(--t) !important;
  box-shadow: 0 0 20px rgba(110,53,166,0.3);
}
.nav-cta::after { display: none; }
.nav-cta:hover {
  background: var(--violet-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 0 30px rgba(110,53,166,0.5);
}

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--blanc);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 1.5rem 2rem 2rem;
  gap: 1.5rem;
  background: rgba(13,13,13,0.95);
  backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
}
.nav-mobile.open { display: flex; }
.nav-mobile-link {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gris-light);
  transition: color var(--t);
}
.nav-mobile-link:hover { color: var(--blanc); }
.nav-mobile-cta {
  background: var(--violet);
  color: var(--blanc) !important;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  text-align: center;
  font-weight: 600;
}

/* ── GLASS CARD ─────────────────────────────────────── */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-glow);
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.glass:hover {
  border-color: rgba(110, 53, 166, 0.45);
  box-shadow: 0 0 60px rgba(110, 53, 166, 0.2);
  transform: translateY(-4px);
}

/* ── BOUTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.925rem;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform var(--t) var(--ease), box-shadow var(--t), background var(--t);
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--violet);
  color: var(--blanc);
  box-shadow: 0 0 30px rgba(110,53,166,0.4);
}
.btn-primary:hover {
  background: var(--violet-light);
  box-shadow: 0 0 45px rgba(110,53,166,0.6);
}
.btn-ghost {
  background: transparent;
  color: var(--blanc);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-ghost:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.3); }
.btn-outline {
  background: transparent;
  color: var(--violet-light);
  border: 1px solid rgba(110,53,166,0.4);
}
.btn-outline:hover { background: rgba(110,53,166,0.08); border-color: var(--violet); }
.btn-full { width: 100%; }

/* ── LAYOUT ─────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
section { position: relative; z-index: 1; }

/* ── TYPOGRAPHIE ────────────────────────────────────── */
.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--violet-light);
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.gradient-text {
  background: linear-gradient(130deg, var(--violet-light) 0%, #C97DFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--gris-light);
  line-height: 1.65;
  max-width: 560px;
}

/* ── HERO ───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.25;
}
.hero-video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,13,13,0.3) 0%,
    rgba(13,13,13,0.1) 40%,
    rgba(13,13,13,0.8) 100%
  );
}
/* Placeholder si pas de vidéo */
.hero-video-placeholder {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(110,53,166,0.25) 0%, transparent 70%),
              radial-gradient(ellipse at 80% 20%, rgba(155,95,212,0.1) 0%, transparent 60%);
  animation: breathe 8s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: calc(var(--nav-h) + 4rem) 2rem 6rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  font-size: 0.8rem;
  color: var(--gris-light);
  margin-bottom: 2rem;
}
.hero-tag-dot {
  width: 6px; height: 6px;
  background: var(--violet-light);
  border-radius: 50%;
  animation: ping 2s ease-in-out infinite;
}
@keyframes ping {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(1.6rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0;
  max-width: 900px;
}
.hero-word-big {
  display: block;
  font-size: clamp(5rem, 13vw, 11rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.88;
  margin-top: 0.05em;
  margin-bottom: 0.2em;
}
.hero-watermark {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 28vw;
  font-weight: 900;
  letter-spacing: -0.06em;
  color: var(--violet);
  opacity: 0.028;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
  line-height: 1;
}
.hero-sub {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  color: var(--gris-light);
  line-height: 1.65;
  max-width: 500px;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.hero-stat-value {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--blanc);
  letter-spacing: -0.01em;
  margin-bottom: 0.2rem;
}
.hero-stat-label {
  font-size: 0.7rem;
  color: var(--gris);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  z-index: 1;
  opacity: 0.4;
}
.scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--violet-light), transparent);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── SECTION PADDING ────────────────────────────────── */
.section-pad { padding: 7rem 0; }
.section-pad-sm { padding: 4rem 0; }

/* ── OFFRES CARDS (Home teaser) ─────────────────────── */
.offers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
.offers-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.offer-card {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.offer-card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(110,53,166,0.15);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.offer-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.offer-card p {
  color: var(--gris-light);
  font-size: 0.95rem;
  line-height: 1.6;
  flex: 1;
}
.offer-card-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--violet-light);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--t);
}
.offer-card-link:hover { gap: 0.7rem; }

/* ── FEATURES (Pourquoi AGD) ────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.feature-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.feature-icon {
  font-size: 1.6rem;
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(110,53,166,0.12);
  border: 1px solid var(--glass-border);
}
.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--gris-light);
  line-height: 1.55;
}

/* ── RÉALISATIONS TEASER ────────────────────────────── */
.realisations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.realisation-card {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  position: relative;
  cursor: pointer;
}
.realisation-card .placeholder-thumb {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(110,53,166,0.1), rgba(13,13,13,0.8));
  display: flex;
  align-items: center;
  justify-content: center;
}
.realisation-card .play-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(110,53,166,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform var(--t), background var(--t);
  backdrop-filter: var(--glass-blur);
}
.realisation-card:hover .play-btn {
  transform: scale(1.12);
  background: var(--violet);
}
.realisation-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(13,13,13,0.9), transparent);
  font-size: 0.85rem;
  font-weight: 600;
}
.realisation-thumb {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.realisation-thumb img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.realisation-card:hover .realisation-thumb img {
  transform: scale(1.05);
}
.realisation-thumb .play-btn {
  position: relative;
  z-index: 2;
}

/* ── AVIS ───────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.review-card {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.review-stars { color: #F5C842; letter-spacing: 2px; font-size: 0.9rem; }
.review-text {
  font-size: 0.9rem;
  color: var(--gris-light);
  line-height: 1.65;
  font-style: italic;
  flex: 1;
}
.review-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6E35A6, #A855F7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}
.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.review-avatar::after {
  content: attr(data-initials);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
}
.review-author-name { font-size: 0.875rem; font-weight: 700; color: var(--blanc); }
.review-source { font-size: 0.75rem; color: var(--gris); margin-top: 1px; }

/* ── CTA BANNER ─────────────────────────────────────── */
.cta-banner {
  text-align: center;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(110,53,166,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner .section-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  max-width: 700px;
  margin: 0 auto 1.5rem;
}
.cta-banner .section-sub {
  margin: 0 auto 2.5rem;
  text-align: center;
}
.cta-banner .btn { font-size: 1rem; padding: 1rem 2.5rem; }

/* ── FOOTER ─────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--glass-border);
  padding: 3rem 0;
  position: relative;
  z-index: 1;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-logo { font-size: 1.1rem; font-weight: 800; }
.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--gris);
  transition: color var(--t);
}
.footer-links a:hover { color: var(--violet-light); }
.footer-copy { font-size: 0.8rem; color: var(--gris); }

/* ── PAGE HEADER ────────────────────────────────────── */
.page-header {
  padding: calc(var(--nav-h) + 5rem) 0 4rem;
  text-align: center;
}
.page-header .section-title { font-size: clamp(2.5rem, 5vw, 4rem); }

/* ── OFFRES PAGE ────────────────────────────────────── */
.offers-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}
.offers-toggle {
  display: inline-flex;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 5px;
}
.offer-btn {
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.6rem 1.6rem;
  border-radius: 50px;
  background: transparent;
  color: var(--gris-light);
  transition: all var(--t);
}
.offer-btn.active {
  background: var(--violet);
  color: var(--blanc);
  box-shadow: 0 0 20px rgba(110,53,166,0.4);
}
.offer-panel { display: none; }
.offer-panel.active { display: block; }
.offer-description {
  color: var(--gris-light);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 680px;
  margin: 0 auto 3rem;
  text-align: center;
}
.formulas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.formula-card {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
}
.formula-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--violet);
  color: var(--blanc);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 14px;
  border-radius: 50px;
  white-space: nowrap;
}
.formula-card.popular { border-color: rgba(110,53,166,0.5); box-shadow: 0 0 40px rgba(110,53,166,0.2); }
.formula-name { font-size: 1.2rem; font-weight: 700; letter-spacing: -0.02em; }
.formula-details { font-size: 0.9rem; color: var(--gris-light); line-height: 1.6; flex: 1; }
.formula-price { font-size: 0.9rem; color: var(--gris); }
.formula-price span { color: var(--violet-light); font-weight: 700; font-size: 1.3rem; }

.metaads-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}
.metaads-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
}
.metaads-item-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(110,53,166,0.12);
  border: 1px solid var(--glass-border);
}
.metaads-item strong { display: block; font-size: 1rem; margin-bottom: 0.3rem; }
.metaads-item p { font-size: 0.9rem; color: var(--gris-light); line-height: 1.55; }

/* ── RÉALISATIONS PAGE ──────────────────────────────── */
.portfolio-filters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}
.filter-btn {
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  background: transparent;
  color: var(--gris-light);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all var(--t);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--violet);
  border-color: var(--violet);
  color: var(--blanc);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}
.portfolio-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  position: relative;
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.portfolio-item:hover {
  transform: scale(1.02);
  border-color: rgba(110,53,166,0.4);
  box-shadow: 0 0 40px rgba(110,53,166,0.15);
}
.portfolio-thumb {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: opacity var(--t);
}
.portfolio-item:hover .portfolio-thumb { opacity: 1; }
.portfolio-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.25rem;
  background: linear-gradient(to top, rgba(13,13,13,0.95), transparent);
}
.portfolio-cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--violet-light);
  margin-bottom: 0.3rem;
}
.portfolio-title { font-size: 0.95rem; font-weight: 600; }

/* ── BADGE MULTI-VIDÉOS ─────────────────────────────── */
.portfolio-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(110,53,166,0.85);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.65rem;
  border-radius: 20px;
  border: 1px solid rgba(168,85,247,0.4);
  z-index: 2;
}

/* ── SOUS-MENU PROJET ───────────────────────────────── */
#projectMenu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  align-items: center;
  justify-content: center;
}
#projectMenu.pm-open { display: flex; }

.pm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(6px);
  animation: lbFadeIn 0.2s ease;
}

.pm-panel {
  position: relative;
  width: min(92vw, 780px);
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  z-index: 1;
  animation: lbScaleIn 0.25s cubic-bezier(0.22,1,0.36,1);
}

.pm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.pm-titre {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.pm-close {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  color: #fff;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  flex-shrink: 0;
}
.pm-close:hover { background: rgba(255,255,255,0.14); }

.pm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  padding: 1.5rem;
}

.pm-item {
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.15s, transform 0.15s;
}
.pm-item:hover {
  border-color: rgba(110,53,166,0.5);
  transform: scale(1.02);
}

.pm-thumb-wrap {
  aspect-ratio: 16/9;
  position: relative;
  background: rgba(110,53,166,0.08);
  overflow: hidden;
}
.pm-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  transition: opacity 0.15s;
}
.pm-item:hover .pm-thumb-wrap img { opacity: 1; }

.pm-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity 0.15s;
  background: rgba(0,0,0,0.3);
}
.pm-item:hover .pm-play { opacity: 1; }

.pm-label {
  padding: 0.6rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  background: #0f0f0f;
}

/* ── ALBUM PHOTO ────────────────────────────────────── */
#photoAlbum {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1001;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#photoAlbum.al-open { display: flex; }

.al-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.95);
  animation: lbFadeIn 0.2s ease;
}

.al-modal {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  z-index: 1;
  animation: lbFadeIn 0.2s ease;
}

.al-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  flex-shrink: 0;
}

.al-titre {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.al-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.al-counter {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  font-variant-numeric: tabular-nums;
}

.al-close {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: #fff;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.al-close:hover { background: rgba(255,255,255,0.18); }

.al-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0 1rem;
  min-height: 0;
}

.al-img-wrap {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.al-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 6px;
  display: block;
}

.al-arrow {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, transform 0.15s;
}
.al-arrow:hover {
  background: rgba(110,53,166,0.5);
  border-color: rgba(110,53,166,0.6);
  transform: scale(1.08);
}

/* Strip miniatures en bas */
.al-strip {
  flex-shrink: 0;
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(110,53,166,0.5) transparent;
}
.al-strip::-webkit-scrollbar { height: 4px; }
.al-strip::-webkit-scrollbar-thumb { background: rgba(110,53,166,0.5); border-radius: 2px; }

.al-thumb {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
  cursor: pointer;
  opacity: 0.45;
  border: 2px solid transparent;
  transition: opacity 0.15s, border-color 0.15s;
}
.al-thumb:hover { opacity: 0.75; }
.al-thumb--active {
  opacity: 1;
  border-color: #A855F7;
}

/* ── LIGHTBOX YOUTUBE ───────────────────────────────── */
#ytLightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
#ytLightbox.lb-open { display: flex; }

.lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(6px);
  animation: lbFadeIn 0.2s ease;
}

.lb-modal {
  position: relative;
  width: min(92vw, 960px);
  z-index: 1;
  animation: lbScaleIn 0.25s cubic-bezier(0.22,1,0.36,1);
}

.lb-ratio {
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.06);
}

/* Mode portrait (Shorts / vidéo verticale) */
.lb-modal--vertical {
  width: min(92vw, 420px);
}
.lb-modal--vertical .lb-ratio {
  aspect-ratio: 9/16;
  max-height: 80vh;
}

.lb-ratio iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.lb-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: #fff;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.lb-close:hover { background: rgba(255,255,255,0.18); }

@keyframes lbFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes lbScaleIn {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}

/* ── À PROPOS PAGE ──────────────────────────────────── */
.apropos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.apropos-bio {
  color: var(--gris-light);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}
.strengths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
.strength-item {
  padding: 1.25rem;
}
.strength-item strong { display: block; font-size: 0.95rem; margin-bottom: 0.3rem; }
.strength-item p { font-size: 0.85rem; color: var(--gris); }

/* ── CONTACT PAGE ───────────────────────────────────── */
.contact-form-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 2.5rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--gris-light); }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: 0.95rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  color: var(--blanc);
  transition: border-color var(--t);
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gris); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--violet); box-shadow: 0 0 0 3px rgba(110,53,166,0.15); }
.form-group select option { background: #111; }
.form-group textarea { resize: vertical; min-height: 130px; }
.contact-alt {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: var(--gris);
}
.contact-alt a { color: var(--violet-light); }

/* ── ANIMATIONS (init state) ────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── CONTACT LAYOUT ─────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 900px) {
  .features-grid, .formulas-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .apropos-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .offers-grid,
  .offers-grid--3 { grid-template-columns: 1fr; }
  .realisations-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .section-pad { padding: 4rem 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 560px) {
  .hero-title { font-size: clamp(2.5rem, 12vw, 4rem); }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .reviews-grid, .realisations-grid { grid-template-columns: 1fr; }
  .formulas-grid { grid-template-columns: 1fr; }
  .strengths { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════
   LOGO NAV
════════════════════════════════════════════════════ */
.nav-logo {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 56px;
  width: auto;
  display: block;
  transition: opacity var(--t);
}
.nav-logo:hover .nav-logo-img { opacity: 0.75; }

/* ════════════════════════════════════════════════════
   ANIMATIONS AVANCÉES
════════════════════════════════════════════════════ */

/* Gradient animé sur les titres */
.gradient-text {
  background: linear-gradient(130deg, var(--violet-light), #C97DFF, var(--violet-light));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 5s ease infinite;
}
@keyframes gradientShift {
  0%   { background-position: 0% center; }
  50%  { background-position: 100% center; }
  100% { background-position: 0% center; }
}

/* Float sur les icônes features */
.feature-icon {
  animation: floatIcon 3.5s ease-in-out infinite;
}
.feature-card:nth-child(2) .feature-icon { animation-delay: 0.5s; }
.feature-card:nth-child(3) .feature-icon { animation-delay: 1s; }
@keyframes floatIcon {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-7px); }
}

/* Pulse glow sur le bouton CTA primaire au repos */
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(110,53,166,0.4); }
  50%       { box-shadow: 0 0 40px rgba(110,53,166,0.7), 0 0 60px rgba(155,95,212,0.3); }
}
.cta-banner .btn-primary {
  animation: pulseGlow 3s ease-in-out infinite;
}

/* Orbs plus dynamiques */
.orb-1 { animation: orbMove1 12s ease-in-out infinite; }
.orb-2 { animation: orbMove2 15s ease-in-out infinite; }
@keyframes orbMove1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(60px, 40px) scale(1.1); }
  66%       { transform: translate(-30px, 60px) scale(0.95); }
}
@keyframes orbMove2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%       { transform: translate(-50px, -40px) scale(1.08); }
  70%       { transform: translate(40px, -20px) scale(0.92); }
}

/* Shimmer sur les glass cards au hover */
.glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.04) 50%,
    transparent 60%
  );
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.glass { position: relative; }
.glass:hover::before {
  opacity: 1;
  animation: shimmer 0.8s ease forwards;
}
@keyframes shimmer {
  from { background-position: 200% center; }
  to   { background-position: -200% center; }
}

/* Reveal amélioré avec scale subtil */
.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.99);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }
.reveal-delay-5 { transition-delay: 0.60s; }

/* ════════════════════════════════════════════════════
   PROCESS TIMELINE
════════════════════════════════════════════════════ */
.process-timeline {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-top: 3.5rem;
  gap: 0;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 21px;
  left: calc(100% / 12);
  right: calc(100% / 12);
  height: 2px;
  background: linear-gradient(to right, var(--violet), rgba(110,53,166,0.2));
  z-index: 0;
}
.process-step {
  flex: 1;
  min-width: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0.6rem;
  position: relative;
  z-index: 1;
}
.process-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 0 4px var(--noir);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.88rem;
  color: #fff;
  flex-shrink: 0;
  margin-bottom: 1.25rem;
  transition: transform var(--t), box-shadow var(--t);
}
.process-step--optional .process-dot {
  background: transparent;
  border: 2px dashed var(--violet);
  color: var(--violet-light);
  box-shadow: 0 0 0 4px var(--noir);
}
.process-step:hover .process-dot {
  transform: scale(1.1);
  box-shadow: 0 0 0 4px var(--noir), 0 0 20px var(--violet-glow);
}
.process-step-body {
  text-align: center;
}
.process-step-icon {
  font-size: 1.5rem;
  margin-bottom: 0.45rem;
}
.process-step-title {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  line-height: 1.3;
  color: var(--blanc);
}
.process-step-desc {
  font-size: 0.75rem;
  color: var(--gris-light);
  line-height: 1.55;
}
.process-optional-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--violet-light);
  border: 1px solid rgba(110,53,166,0.5);
  border-radius: 4px;
  padding: 0.1rem 0.45rem;
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .process-timeline {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .process-timeline::before {
    top: 22px;
    bottom: 22px;
    left: 21px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(to bottom, var(--violet), rgba(110,53,166,0.2));
  }
  .process-step {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 0 0 2rem 0;
    min-width: auto;
    width: 100%;
  }
  .process-dot { margin-bottom: 0; }
  .process-step-body { text-align: left; }
}

/* ════════════════════════════════════════════════════
   FAQ ACCORDION
════════════════════════════════════════════════════ */
.faq-item { cursor: pointer; overflow: hidden; }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 1.75rem;
  user-select: none;
  gap: 1rem;
}
.faq-question strong {
  font-size: 0.95rem;
  font-weight: 700;
  flex: 1;
  line-height: 1.4;
}
.faq-icon {
  font-size: 1.1rem;
  color: var(--violet-light);
  transition: transform 0.35s var(--ease);
  flex-shrink: 0;
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: rgba(110,53,166,0.08);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.faq-body-inner {
  padding: 0 1.75rem 1.4rem;
  color: var(--gris-light);
  font-size: 0.9rem;
  line-height: 1.7;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 1rem;
}
.faq-item.open .faq-body { max-height: 300px; }

/* ════════════════════════════════════════════════════
   FORMULA LIST (offres)
════════════════════════════════════════════════════ */
.formula-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
  margin: 0;
  padding: 0;
}
.formula-list li {
  font-size: 0.875rem;
  color: var(--gris-light);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.5;
}
.formula-list li::before {
  content: '✓';
  color: var(--violet-light);
  font-size: 0.75rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 3px;
}
.formula-tag {
  display: inline-block;
  background: rgba(110,53,166,0.15);
  color: var(--violet-light);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 50px;
  margin-left: 0.4rem;
  vertical-align: middle;
}

/* ════════════════════════════════════════════════════
   YOUTUBE FACADE (réalisations)
════════════════════════════════════════════════════ */
.portfolio-item { position: relative; overflow: hidden; }
.portfolio-thumb {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease), opacity 0.3s;
  opacity: 0.75;
}
.portfolio-item:hover .portfolio-thumb {
  transform: scale(1.05);
  opacity: 1;
}
.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13,13,13,0.25);
  transition: background var(--t);
}
.portfolio-item:hover .play-overlay { background: rgba(13,13,13,0.05); }
.play-btn-lg {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: rgba(110,53,166,0.85);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; padding-left: 3px;
  border: 2px solid rgba(255,255,255,0.2);
  transition: transform 0.35s var(--ease), background var(--t), box-shadow var(--t);
  box-shadow: 0 0 30px rgba(110,53,166,0.5);
}
.portfolio-item:hover .play-btn-lg {
  transform: scale(1.15);
  background: var(--violet);
  box-shadow: 0 0 50px rgba(110,53,166,0.7);
}
.portfolio-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--gris);
  font-size: 0.9rem;
  grid-column: 1 / -1;
}
.portfolio-empty a { color: var(--violet-light); }
