:root {
  --background: 340 40% 7%;
  --foreground: 30 30% 93%;

  --card: 320 30% 5%;
  --card-foreground: 30 30% 93%;

  --popover: 320 30% 5%;
  --popover-foreground: 30 30% 93%;

  --primary: 348 45% 33%;
  --primary-foreground: 30 30% 93%;

  --secondary: 340 30% 10%;
  --secondary-foreground: 30 30% 93%;

  --muted: 340 20% 12%;
  --muted-foreground: 20 25% 69%;

  --accent: 27 40% 59%;
  --accent-foreground: 30 30% 93%;

  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 210 40% 98%;

  --border: 348 30% 20%;
  --input: 340 20% 15%;
  --ring: 348 45% 33%;

  --radius: 0.375rem;

  /* Custom tokens */
  --hover-accent: 350 30% 53%;
  --rose-gold: 27 40% 59%;
  --cream: 30 30% 93%;
  --beige-rose: 20 25% 69%;
  --deep-bordeaux: 340 40% 7%;
  --aubergine: 320 30% 5%;
  --marsala: 348 45% 33%;
  --marsala-hover: 350 30% 53%;

  --gradient-spotlight: radial-gradient(ellipse at center, hsl(340 50% 12%) 0%, hsl(340 40% 7%) 70%);
  --shadow-glow: 0 4px 30px -4px hsl(348 45% 33% / 0.3);
  --shadow-card: 0 8px 32px -8px hsl(340 40% 7% / 0.6);
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-color: hsl(var(--border));
}

html {
  scroll-behavior: smooth;
  font-size: 18px;
  overflow-x: hidden;
}

::selection {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
}

body {
  overflow-x: hidden;
  background: var(--gradient-spotlight);
  background-attachment: fixed;
  color: hsl(var(--foreground));
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.2;
}

h1 { font-family: "Outfit", sans-serif; font-size: 3rem; font-weight: 600; }
h2 { font-size: 2.25rem; font-weight: 600; }
h3 { font-size: 1.5rem; font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 600; }

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

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

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

@media (max-width: 768px) {
  html { font-size: 16px; }
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.25rem; }
}
/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  transition: all 0.5s ease;
}
.site-header.scrolled {
  background: hsl(var(--background) / 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(var(--border) / 0.5);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .header-inner {
    height: 5rem;
    padding: 0 2rem;
  }
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.header-logo-img {
  height: 2.5rem;
  width: auto;
}
@media (min-width: 768px) {
  .header-logo-img { height: 3rem; }
}

/* Desktop nav */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
@media (min-width: 1024px) {
  .desktop-nav { display: flex; }
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  font-size: 0.8rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  transition: color 0.3s ease;
  color: hsl(var(--muted-foreground));
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-link:hover {
  color: hsl(var(--foreground));
}
.nav-link.active {
  color: hsl(var(--accent));
}
.nav-link svg {
  width: 0.75rem;
  height: 0.75rem;
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 0.25rem;
  min-width: 180px;
  display: none;
  z-index: 50;
}
.nav-dropdown.open {
  display: block;
}
.nav-dropdown-menu {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: var(--radius);
  padding: 0.5rem 0;
  box-shadow: 0 8px 24px hsl(0 0% 0% / 0.3);
}
.nav-dropdown-link {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-family: "Outfit", sans-serif;
  color: hsl(var(--muted-foreground));
  transition: all 0.2s ease;
  text-decoration: none;
}
.nav-dropdown-link:hover {
  color: hsl(var(--foreground));
  background: hsl(var(--muted) / 0.2);
}

/* Desktop right actions */
.header-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 1024px) {
  .header-actions { display: flex; }
}
.header-phone {
  color: hsl(var(--muted-foreground));
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
}
.header-phone:hover {
  color: hsl(var(--foreground));
}
.header-phone svg {
  width: 1rem;
  height: 1rem;
}

/* Mobile hamburger */
.mobile-toggle {
  display: block;
  padding: 0.5rem;
  color: hsl(var(--foreground));
  background: none;
  border: none;
  cursor: pointer;
}
.mobile-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}
@media (min-width: 1024px) {
  .mobile-toggle { display: none; }
}

/* Mobile menu */
.mobile-menu {
  display: none;
  background: hsl(var(--background) / 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid hsl(var(--border) / 0.3);
  animation: fade-up 0.3s ease-out;
}
.mobile-menu.open {
  display: block;
}
@media (min-width: 1024px) {
  .mobile-menu { display: none !important; }
}

.mobile-nav {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  gap: 0.25rem;
}

.mobile-nav-label {
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
}
.mobile-nav-label.active {
  color: hsl(var(--accent));
  background: hsl(var(--muted) / 0.3);
}

.mobile-nav-link {
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  transition: color 0.3s ease;
  text-decoration: none;
  display: block;
}
.mobile-nav-link:hover {
  color: hsl(var(--foreground));
}
.mobile-nav-link.active {
  color: hsl(var(--accent));
  background: hsl(var(--muted) / 0.3);
}

.mobile-sub-links {
  padding-left: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-sub-link {
  font-size: 0.75rem;
  font-family: "Outfit", sans-serif;
  color: hsl(var(--muted-foreground) / 0.7);
  padding: 0.375rem 0;
  transition: color 0.3s ease;
  text-decoration: none;
}
.mobile-sub-link:hover {
  color: hsl(var(--foreground));
}

.mobile-cta {
  margin-top: 0.5rem;
}
/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Section spacing */
.section {
  padding: 5rem 0;
}
.section-sm {
  padding: 3rem 0;
}

/* Grids */
.grid {
  display: grid;
  gap: 1.5rem;
}
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

@media (min-width: 640px) {
  .container { padding: 0 56px; }
}
@media (min-width: 768px) {
  .container { padding: 0 80px; }
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid { gap: 2.5rem; }
}

@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .grid { gap: 2.5rem; }
}

/* Flex helpers */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }

/* Text alignment */
.text-center { text-align: center; }
.text-left { text-align: left; }

/* Max width */
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Spacing */
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.pt-24 { padding-top: 6rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }

/* Width */
.w-full { width: 100%; }

/* Display */
.hidden { display: none; }
.block { display: block; }
.inline-flex { display: inline-flex; }

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

@media (min-width: 1024px) {
  .lg-show { display: flex; }
  .lg-hide { display: none; }
}
/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
  padding: 0.5rem 1rem;
  height: 2.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  line-height: 1;
}
.btn svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  pointer-events: none;
}

.btn-cta {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  box-shadow: 0 4px 20px -4px hsl(348 45% 33% / 0.5);
  letter-spacing: 0.05em;
  transition: all 0.5s ease;
}
.btn-cta:hover {
  background: hsl(var(--marsala-hover));
  box-shadow: 0 8px 30px -4px hsl(348 45% 33% / 0.7);
}

.btn-cta-outline {
  background: transparent;
  border: 1px solid hsl(var(--accent));
  color: hsl(var(--accent));
  letter-spacing: 0.05em;
  transition: all 0.5s ease;
}
.btn-cta-outline:hover {
  background: hsl(var(--accent) / 0.1);
}

.btn-default {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}
.btn-default:hover {
  background: hsl(var(--primary) / 0.9);
}

.btn-outline {
  background: transparent;
  border: 1px solid hsl(var(--input));
  color: hsl(var(--foreground));
}
.btn-outline:hover {
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
}

.btn-ghost {
  background: transparent;
  color: hsl(var(--foreground));
}
.btn-ghost:hover {
  background: hsl(var(--accent) / 0.1);
  color: hsl(var(--accent));
}

.btn-link {
  background: transparent;
  color: hsl(var(--primary));
  text-decoration-offset: 4px;
  padding: 0;
  height: auto;
}
.btn-link:hover {
  text-decoration: underline;
}

/* Button sizes */
.btn-sm {
  height: 2.25rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.8rem;
}
.btn-lg {
  height: 2.75rem;
  padding: 0.5rem 2rem;
}

.btn-full { width: 100%; }

/* ========== INPUTS ========== */
.input-field {
  width: 100%;
  padding: 0.75rem 1rem;
  background: hsl(var(--input));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  color: hsl(var(--foreground));
  font-size: 0.875rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}
.input-field::placeholder {
  color: hsl(var(--muted-foreground));
}
.input-field:focus {
  border-color: hsl(var(--accent));
  box-shadow: 0 0 0 2px hsl(var(--accent) / 0.2);
}

textarea.input-field {
  min-height: 120px;
  resize: vertical;
}

/* ========== PRICING CARD ========== */
.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.pricing-card.highlighted {
  border-color: hsl(var(--accent));
  box-shadow: 0 0 0 1px hsl(var(--accent) / 0.2);
}

.pricing-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-size: 0.7rem;
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  white-space: nowrap;
}

.pricing-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .pricing-card h3 { font-size: 1.875rem; }
}

.pricing-price {
  color: hsl(var(--accent) / 0.7);
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.pricing-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}
.pricing-features li svg {
  width: 1rem;
  height: 1rem;
  color: hsl(var(--accent));
  margin-top: 0.125rem;
  flex-shrink: 0;
}

/* ========== FAQ ITEM ========== */
.faq-item {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq-item:hover {
  border-color: hsl(var(--border) / 0.8);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  color: hsl(var(--foreground));
  font-family: "Cormorant Garamond", serif;
  font-size: 1.125rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
}

.faq-chevron {
  width: 1rem;
  height: 1rem;
  color: hsl(var(--accent));
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-chevron {
  transform: rotate(90deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-content-inner {
  padding: 0 1.5rem 1.25rem;
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  line-height: 1.7;
}

/* ========== TESTIMONIAL CARD ========== */
.testimonial-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
}
.testimonial-stars svg {
  width: 1rem;
  height: 1rem;
  fill: hsl(var(--accent));
  color: hsl(var(--accent));
}

.testimonial-text {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author {
  color: hsl(var(--foreground));
  font-weight: 600;
  font-size: 0.875rem;
}
.testimonial-event {
  color: hsl(var(--muted-foreground));
  font-size: 0.75rem;
}

/* ========== TESTIMONIAL CAROUSEL ========== */
.testimonial-carousel {
  position: relative;
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 3rem;
}
.testimonial-carousel-viewport {
  overflow: hidden;
  padding: 0.5rem 0;
  margin: -0.5rem 0;
}
.testimonial-carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-carousel-slide {
  flex: 0 0 calc(100% / 3);
  min-width: 0;
  padding: 0 0.75rem;
  box-sizing: border-box;
}
.testimonial-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  color: hsl(var(--foreground));
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s, border-color 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.testimonial-carousel-btn:hover {
  background: hsl(var(--accent));
  border-color: hsl(var(--accent));
  color: hsl(var(--background));
}
.testimonial-carousel-btn--prev { left: 0; }
.testimonial-carousel-btn--next { right: 0; }
.testimonial-carousel-btn svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.testimonial-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 1rem;
}
.testimonial-carousel-dot {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s;
}
.testimonial-carousel-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: hsl(var(--border));
  transition: background 0.2s;
}
.testimonial-carousel-dot.active::after {
  background: hsl(var(--accent));
  transform: translate(-50%, -50%) scale(1.3);
}

.section-testimonials {
  position: relative;
  padding-bottom: 6rem;
  margin-bottom: -1px;
  background: linear-gradient(to bottom, hsl(var(--aubergine)) 60%, hsl(var(--background)) 100%);
}

@media (max-width: 768px) {
  .testimonial-carousel { padding: 0 2.5rem; }
  .testimonial-carousel-slide { flex: 0 0 100%; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .testimonial-carousel-slide { flex: 0 0 50%; }
}

/* ========== STATS ========== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding: 2rem 0;
}
@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}
.stat-item { text-align: center; }
.stat-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: hsl(var(--accent));
}
.stat-label {
  color: hsl(var(--muted-foreground));
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

/* ========== STEP INDICATOR ========== */
.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.step-dot {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid hsl(var(--border));
  color: hsl(var(--muted-foreground));
  transition: all 0.3s ease;
}
.step-dot.active {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border-color: hsl(var(--primary));
}
.step-dot.completed {
  background: hsl(var(--accent));
  color: hsl(var(--foreground));
  border-color: hsl(var(--accent));
}
.step-line {
  width: 2rem;
  height: 1px;
  background: hsl(var(--border));
}

/* ========== PROCESS STEPS ========== */
.process-step {
  text-align: center;
  padding: 1.5rem;
}
.process-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(var(--accent) / 0.3);
  margin-bottom: 0.75rem;
}
.process-step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.process-step p {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}

/* ========== WHATSAPP FLOATING BUTTON ========== */
.whatsapp-float {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 45;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}
.whatsapp-float svg {
  width: 1.75rem;
  height: 1.75rem;
  fill: #fff;
}
@media (min-width: 1024px) {
  .whatsapp-float {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 3.5rem;
    height: 3.5rem;
  }
  .whatsapp-float svg {
    width: 2rem;
    height: 2rem;
  }
}

/* ========== FEATURE CARD ========== */
.feature-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s ease;
}
.feature-card:hover {
  border-color: hsl(var(--accent) / 0.3);
}
.feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: hsl(var(--accent));
  margin-bottom: 1rem;
}
.feature-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}
.feature-card p {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ========== LOGO GRID ========== */
.logo-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.logo-grid img {
  height: 2.5rem;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(2);
  opacity: 0.5;
  transition: all 0.3s ease;
}
.logo-grid img:hover {
  filter: grayscale(0) brightness(1);
  opacity: 1;
}

/* ========== SOCIAL LINKS ========== */
.social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid hsl(var(--border));
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--muted-foreground));
  transition: all 0.3s ease;
}
.social-link:hover {
  color: hsl(var(--accent));
  border-color: hsl(var(--accent));
}
.social-link svg {
  width: 1rem;
  height: 1rem;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  padding: 8rem 0 5rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, hsl(340 40% 7% / 0.95), hsl(340 40% 7% / 0.8), hsl(340 40% 7% / 0.4));
}
.hero h1 {
  margin-bottom: 1rem;
}
.hero p {
  color: hsl(var(--muted-foreground));
  font-size: 1rem;
  max-width: 38rem;
}

/* Star badge */
.star-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: hsl(var(--muted));
  border: 1px solid hsl(var(--border));
  border-radius: 9999px;
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
}
.star-badge svg {
  width: 0.875rem;
  height: 0.875rem;
  fill: hsl(var(--accent));
  color: hsl(var(--accent));
}

/* ========== DEVIS FORM ========== */
.devis-form {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 2rem;
}
.devis-form h3 {
  margin-bottom: 1rem;
}
.devis-form .form-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .devis-form .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========== INTERNAL LINKS / MAILLAGE ========== */
.internal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.internal-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: hsl(var(--muted));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  color: hsl(var(--muted-foreground));
  font-size: 0.8rem;
  transition: all 0.3s ease;
}
.internal-link:hover {
  border-color: hsl(var(--accent));
  color: hsl(var(--accent));
}

/* ========== CITY TAGS ========== */
.city-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.city-tag {
  padding: 0.25rem 0.75rem;
  border: 1px solid hsl(var(--border));
  border-radius: 9999px;
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  transition: all 0.3s ease;
}
.city-tag:hover,
.city-tag.active {
  border-color: hsl(var(--accent));
  color: hsl(var(--accent));
}

/* ========== PORTFOLIO ========== */
.card-prestige img:hover {
  transform: scale(1.05);
}
/* ========== SEO PAGES — Shared styles for DJ, Wedding Planner, Decoration pages ========== */

/* ---- Hero variants ---- */
.hero-mariage {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-mariage .hero-bg {
  position: absolute;
  inset: 0;
}
.hero-mariage .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-mariage .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, hsl(var(--background) / 0.95), hsl(var(--background) / 0.80), hsl(var(--background) / 0.40));
}
.hero-mariage .hero-content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  align-items: center;
  min-height: 0;
  padding-top: 4rem;
  padding-bottom: 1rem;
}

.hero-anniv {
  position: relative;
  padding: 5rem 0 0;
}

/* ---- Hero grid (shared by DJ + wedding planner pages) ---- */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.grid-2-hero {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .grid-2-hero {
    grid-template-columns: 1fr 1fr;
    justify-items: center;
  }
}

/* ---- Hero form / CTA responsive ---- */
.hero-form-desktop {
  margin: 0 auto 3rem;
  min-height: 480px;
}
@media (min-width: 1024px) {
  .hero-form-desktop {
    min-height: 520px;
  }
}
@media (max-width: 1023px) {
  [data-hero-form] {
    width: 100%;
    max-width: 450px;
  }
  .hero-form-desktop {
    overflow: hidden;
    max-width: 100%;
  }
  .inline-form {
    padding: 40px 48px 32px;
  }
  .inline-form h2,
.inline-form h3 {
    font-size: 30px;
  }
}
.hero-cta-mobile {
  display: none;
}
.hero-mobile-cta {
  display: none;
}

/* Hero text: centered on mobile */
.grid-2-hero > div:first-child {
  text-align: center;
}
.grid-2-hero > div:first-child p,
.grid-2-hero > div:first-child h1 {
  margin-left: auto;
  margin-right: auto;
}
.grid-2-hero > div:first-child > p:first-child {
  justify-content: center;
}

/* Hero headline: fixed size */
@media (max-width: 639px) {
  .grid-2-hero .glow-text {
    font-size: 2.25rem !important;
  }
}
@media (max-width: 1023px) {
  #devis {
    overflow: hidden !important;
    min-height: auto !important;
  }
}
@media (max-width: 480px) {
  .inline-form {
    padding: 24px 16px 20px;
  }
  .inline-form .btn {
    white-space: normal;
    max-width: 100%;
    word-break: break-word;
    line-height: 1.2;
  }
  .grid-2-hero .glow-text {
    font-size: 1.75rem !important;
  }
  [data-hero-form] {
    max-width: 100%;
  }
  .inline-form {
    padding: 24px 20px 20px;
  }
}

@media (min-width: 640px) and (max-width: 767px) {
  .grid-2-hero .glow-text {
    font-size: 42px !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .grid-2-hero .glow-text {
    font-size: 48px !important;
  }
}
@media (min-width: 1024px) {
  .grid-2-hero .glow-text {
    font-size: 54px !important;
  }
}

/* Floating CTA: hidden (WhatsApp suffices) */
.floating-cta-mobile {
  display: none !important;
}

@media (min-width: 1024px) {
  .hero-form-desktop {
    justify-content: flex-end;
    max-width: none;
    margin-bottom: 0;
  }
  .grid-2-hero > div:first-child {
    text-align: left;
  }
  .grid-2-hero > div:first-child p,
  .grid-2-hero > div:first-child h1 {
    margin-left: 0;
  }
  .grid-2-hero > div:first-child > p:first-child {
    justify-content: flex-start;
  }
}

/* Decoration pages: hero desktop/mobile overrides */
.hero-devis-desktop {
  display: none;
}
@media (min-width: 1024px) {
  .hero-devis-desktop {
    display: flex !important;
  }
}
@media (max-width: 1023px) {
  .grid.grid-2 {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 767px) {
  .grid.grid-3 {
    grid-template-columns: 1fr !important;
  }
  .grid.grid-4 {
    grid-template-columns: 1fr !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .grid.grid-3 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .grid.grid-4 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ---- Stats bar ---- */
.stats-bar {
  position: relative;
  z-index: 10;
  border-top: none;
  background: hsl(var(--background) / 0.6);
  backdrop-filter: blur(12px);
}
.stats-bar::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, hsl(var(--background) / 0.6));
  pointer-events: none;
}

/* ---- Inline form (hero devis) ---- */
.inline-form {
  background: hsl(var(--card) / 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid hsl(var(--border));
  border-radius: 8px;
  padding: 40px 40px 32px;
  width: 100%;
}
@media (min-width: 768px) {
  .inline-form {
    padding: 40px 48px 32px;
  }
}
.inline-form h2,
.inline-form h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .inline-form h2,
.inline-form h3 {
    font-size: 30px;
  }
}
.inline-form .form-subtitle {
  color: hsl(var(--muted-foreground));
  font-size: 14px;
  margin-bottom: 24px;
}

/* ---- Form fields ---- */
.form-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form-input,
.form-select,
.form-static {
  width: 100%;
  border-radius: 6px;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--muted) / 0.5);
  padding: 12px 16px;
  font-size: 14px;
  color: hsl(var(--foreground));
  outline: none;
  box-sizing: border-box;
  color-scheme: dark;
}
.form-input:focus,
.form-select:focus {
  box-shadow: 0 0 0 2px hsl(var(--primary) / 0.5);
}
select.form-input option,
.form-select option {
  background: hsl(var(--background));
  color: hsl(var(--foreground));
}

/* ---- Custom select dropdown ---- */
.custom-select {
  position: relative;
}
.custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}
.custom-select-trigger span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.custom-select-options {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 50;
  background: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  border-radius: 0.375rem;
  overflow: hidden;
  box-shadow: 0 8px 24px hsl(0 0% 0% / 0.4);
}
.custom-select.open .custom-select-options {
  display: block;
}
.custom-select.open .custom-select-trigger svg {
  transform: rotate(180deg);
}
.custom-select-option {
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.custom-select-option:hover {
  background: hsl(var(--primary) / 0.25);
  color: hsl(var(--foreground));
}
.custom-select-option.selected {
  color: hsl(var(--accent));
}

/* ---- Custom datepicker ---- */
.custom-datepicker {
  position: relative;
}
.custom-datepicker-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}
.custom-datepicker-trigger span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.custom-datepicker-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  width: 20rem;
  max-width: 100vw;
  z-index: 50;
  background: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  border-radius: 0.375rem;
  padding: 1rem;
  box-shadow: 0 8px 24px hsl(0 0% 0% / 0.4);
}
.custom-datepicker.open .custom-datepicker-dropdown {
  display: block;
}
.custom-datepicker-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.custom-datepicker-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  text-transform: capitalize;
}
.custom-datepicker-nav {
  background: none;
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: 0.25rem;
  color: hsl(var(--muted-foreground));
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s, border-color 0.15s;
}
.custom-datepicker-nav:hover {
  color: hsl(var(--foreground));
  border-color: hsl(var(--border));
}
.custom-datepicker-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: 0.5rem;
}
.custom-datepicker-weekdays span {
  font-size: 0.7rem;
  color: hsl(var(--muted-foreground));
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.custom-datepicker-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.custom-datepicker-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  border-radius: 0.25rem;
  cursor: pointer;
  color: hsl(var(--muted-foreground));
  transition: background 0.15s, color 0.15s;
}
.custom-datepicker-day:hover {
  background: hsl(var(--primary) / 0.25);
  color: hsl(var(--foreground));
}
.custom-datepicker-day.today {
  border: 1px solid hsl(var(--accent) / 0.5);
  color: hsl(var(--foreground));
}
.custom-datepicker-day.selected {
  background: hsl(var(--primary));
  color: hsl(var(--foreground));
  font-weight: 600;
}
.custom-datepicker-day.other-month {
  opacity: 0.3;
}
.custom-datepicker-day.past {
  opacity: 0.25;
  pointer-events: none;
}
.form-input::placeholder {
  color: hsl(var(--muted-foreground));
}
.form-disclaimer {
  color: hsl(var(--muted-foreground) / 0.6);
  font-size: 0.6rem;
  margin-top: 0.75rem;
  text-align: center;
}

/* ---- Devis form card (mid-page) ---- */
.devis-form-card {
  background: hsl(var(--card) / 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  padding: 1.5rem;
  max-width: 32rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .devis-form-card {
    padding: 2rem;
  }
}
.devis-form-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.25rem;
  text-align: center;
}
.devis-form-card .form-subtitle {
  color: hsl(var(--muted-foreground));
  font-size: 0.75rem;
  margin-bottom: 1.25rem;
  text-align: center;
}

/* ---- Badge pill ---- */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
  background: hsl(var(--card) / 0.4);
  backdrop-filter: blur(8px);
  border: 1px solid hsl(var(--border) / 0.3);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
}

/* ---- Icon circles ---- */
.icon-circle {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1rem;
  border-radius: 9999px;
  border: 1px solid hsl(var(--accent) / 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--accent));
}
.icon-circle-sm {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  border-radius: 9999px;
  border: 1px solid hsl(var(--accent) / 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--accent));
}

/* ---- Timeline ---- */
.timeline-step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 5rem;
}
.timeline-step:last-child {
  margin-bottom: 0;
}
.timeline-line {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.timeline-circle {
  width: 4rem;
  height: 4rem;
  flex-shrink: 0;
  border-radius: 9999px;
  border: 1px solid hsl(var(--accent) / 0.4);
  background: hsl(var(--card));
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline-circle span {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--accent));
}
.timeline-connector {
  width: 1px;
  flex: 1;
  background: hsl(var(--border) / 0.3);
  margin-top: 0.5rem;
}
.timeline-body {
  padding-bottom: 4.5rem;
}
.timeline-time {
  color: hsl(var(--accent));
  font-size: 0.75rem;
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

/* ---- Trust info ---- */
.trust-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.trust-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* ---- Check list ---- */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.check-list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}

/* ---- City tags (SEO pages variant) ---- */
.city-tag-active {
  background: hsl(var(--primary) / 0.2);
  border-color: hsl(var(--primary));
  color: hsl(var(--foreground));
  font-weight: 500;
}

/* ---- Options / pricing list ---- */
.options-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.option-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid hsl(var(--border) / 0.3);
}
.option-row:last-child {
  border-bottom: none;
}
.option-label {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}
.option-price {
  color: hsl(var(--accent));
  font-family: "Cormorant Garamond", serif;
  font-size: 1.125rem;
  white-space: nowrap;
  margin-left: 1rem;
}

/* ---- Testimonial grid (SEO pages variant) ---- */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 80rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .testimonial-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.testimonial-name {
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  font-size: 0.6rem;
  color: hsl(var(--muted-foreground));
}

/* ---- Animations grid ---- */
.animations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 70rem;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .animations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .animations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.anim-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
}

/* ---- Pricing grid 2-col ---- */
.pricing-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .pricing-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---- CTA final with background ---- */
.cta-final-bg {
  position: relative;
  overflow: hidden;
}
.cta-final-bg .bg-img {
  position: absolute;
  inset: 0;
}
.cta-final-bg .bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-final-bg .bg-img .overlay {
  position: absolute;
  inset: 0;
  background: hsl(var(--background) / 0.9);
}

/* ---- Floating CTA (SEO pages) ---- */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: hsl(var(--background) / 0.9);
  backdrop-filter: blur(12px);
  border-top: 1px solid hsl(var(--border) / 0.3);
  padding: 0.75rem;
}
@media (min-width: 1024px) {
  .floating-cta {
    display: none;
  }
}
.floating-cta-inner {
  display: flex;
  gap: 0.5rem;
  max-width: 32rem;
  margin: 0 auto;
}

/* ---- Zone d'intervention grid (SEO pages) ---- */
.zone-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .zone-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 5rem;
  }
}

/* ---- Breadcrumb spacing (under fixed header) ---- */
.breadcrumb-wrap {
  padding-top: 5rem;
}

/* ========== HOMEPAGE HERO ========== */
.hero-home {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

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

.hero-home-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, hsl(340 40% 7% / 0.95), hsl(340 40% 7% / 0.8), hsl(340 40% 7% / 0.4));
}

.hero-home-content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  align-items: center;
  padding-top: 7rem;
  padding-bottom: 1rem;
  min-height: 0;
}

.hero-home-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  width: 100%;
}
@media (min-width: 1024px) {
  .hero-home-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ========== HERO STATS BAR ========== */
@media (max-width: 480px) {
  .stats-grid {
    flex-direction: column !important;
    gap: 1.5rem !important;
    align-items: center;
  }
}

.hero-stats-bar {
  position: relative;
  z-index: 10;
  border-top: none;
  background: hsl(var(--background) / 0.6);
  backdrop-filter: blur(8px);
}
.hero-stats-bar::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, hsl(var(--background) / 0.6));
  pointer-events: none;
}

/* ========== ZONE D'INTERVENTION GRID ========== */
.zone-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .zone-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 5rem;
  }
}
/* Noise grain overlay */
.noise-overlay {
  position: relative;
}
.noise-overlay::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.04;
  z-index: 50;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Text label utility */
.text-label {
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.778rem;
  font-weight: 500;
  color: hsl(var(--beige-rose));
}

/* Gold separator line */
.separator-gold {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent 0%, hsl(var(--rose-gold)) 50%, transparent 100%);
}

/* Glow text effect */
.glow-text {
  text-shadow: 0 0 40px hsl(var(--marsala) / 0.4), 0 0 80px hsl(var(--marsala) / 0.15);
}

/* Prestige card */
.card-prestige {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 2.5rem;
  transition: all 0.5s ease;
  box-shadow: var(--shadow-card);
  color: hsl(var(--foreground));
}
.card-prestige:hover {
  border-color: hsl(var(--rose-gold));
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .card-prestige {
    padding: 3.5rem;
  }
}

/* Section alt background */
.section-alt {
  background: hsl(var(--aubergine));
}

/* Text colors */
.text-foreground { color: hsl(var(--foreground)); }
.text-muted { color: hsl(var(--muted-foreground)); }
.text-accent { color: hsl(var(--accent)); }
.text-primary { color: hsl(var(--primary)); }

/* Background colors */
.bg-card { background: hsl(var(--card)); }
.bg-muted { background: hsl(var(--muted)); }
.bg-primary { background: hsl(var(--primary)); }

/* Visually hidden (sr-only) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
/* Fade up animation */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
}
.animate-on-scroll.animated {
  animation: fade-up 0.6s ease-out forwards;
}

/* Accordion */
@keyframes accordion-down {
  from { max-height: 0; }
  to { max-height: var(--content-height, 500px); }
}
@keyframes accordion-up {
  from { max-height: var(--content-height, 500px); }
  to { max-height: 0; }
}

/* Fade in */
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-fade-up {
  animation: fade-up 0.6s ease-out forwards;
}

.animate-fade-in {
  animation: fade-in 0.3s ease-out forwards;
}

/* Hover transitions */
.hover-lift {
  transition: transform 0.3s ease;
}
.hover-lift:hover {
  transform: translateY(-2px);
}
/* Footer */
.site-footer {
  border-top: 1px solid hsl(var(--border) / 0.3);
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr 1fr 0.8fr;
  }
  .footer-brand {
    grid-column: auto;
  }
}

/* Footer brand */
.footer-brand h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}
.footer-brand p {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  line-height: 1.7;
}

/* Footer nav */
.footer-nav-title {
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.7rem;
  font-weight: 500;
  color: hsl(var(--beige-rose));
  margin-bottom: 1rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.footer-nav:last-child {
  margin-bottom: 0;
}
.footer-nav a {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  transition: color 0.3s ease;
  text-decoration: none;
}
.footer-nav a:hover {
  color: hsl(var(--foreground));
}

/* Footer contact */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
}
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(var(--muted-foreground));
  transition: color 0.3s ease;
  text-decoration: none;
}
.footer-contact a:hover {
  color: hsl(var(--foreground));
}
.footer-contact svg {
  width: 1rem;
  height: 1rem;
  color: hsl(var(--accent));
  flex-shrink: 0;
}
.footer-contact .address-link {
  align-items: flex-start;
}
.footer-contact .address-link svg {
  margin-top: 0.125rem;
}
.footer-hours {
  color: hsl(var(--muted-foreground));
  font-size: 0.75rem;
  margin-top: 0.75rem;
}

/* Footer social */
.footer-social {
  display: flex;
  gap: 0.75rem;
}

/* Footer legal */
.footer-legal {
  margin-top: 1.5rem;
}
.footer-legal a {
  color: hsl(var(--muted-foreground));
  font-size: 0.75rem;
  transition: color 0.3s ease;
  text-decoration: none;
  display: block;
  margin-bottom: 0.25rem;
}
.footer-legal a:hover {
  color: hsl(var(--foreground));
}

/* Footer bottom */
.footer-bottom {
  text-align: center;
  color: hsl(var(--muted-foreground));
  font-size: 0.75rem;
}
/* ========== LEGAL PAGES (Mentions légales, Politique de confidentialité) ========== */
.legal-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.legal-block h2 {
  font-size: 1.25rem;
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
}

.legal-block p {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  line-height: 1.7;
}

.legal-block ul {
  padding-left: 1.5rem;
  margin-top: 0.5rem;
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  line-height: 1.7;
  list-style: disc;
}

.legal-block ul li {
  margin-bottom: 0.25rem;
}

.legal-block a:hover {
  text-decoration: underline;
}
