/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --blue-dark: #112C50;
  --blue-darker: #0D223D;
  --gold: #C9A646;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-900: #0f172a;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--gray-900);
  overflow-x: hidden;
}

/* ===================================
   CURSEUR PERSONNALISÉ
   =================================== */
.fancy-cursor {
  pointer-events: none;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  width: 24px;
  height: 24px;
  border: 2px solid rgba(201, 166, 70, 0.7);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: transform 0.1s ease-out;
}

@media (max-width: 768px) {
  .fancy-cursor {
    display: none;
  }
}

/* ===================================
   HEADER
   =================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(17, 44, 80, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.25rem;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--gold);
}

.btn-primary {
  background-color: var(--gold);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 500;
  transition: filter 0.3s;
}

.btn-primary:hover {
  filter: brightness(0.95);
}

.menu-toggle {
  display: block;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}

.menu-icon-close {
  display: none;
}

.menu-toggle.active .menu-icon-open {
  display: none;
}

.menu-toggle.active .menu-icon-close {
  display: block;
}

.mobile-menu {
  display: none;
  background-color: var(--blue-dark);
  padding: 0 1.5rem 1.5rem;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-link {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  padding: 0.75rem 0;
  transition: color 0.3s;
}

.mobile-menu-link:hover {
  color: var(--gold);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(17, 44, 80, 0.6), rgba(17, 44, 80, 0.5), rgba(17, 44, 80, 0.8));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

.hero-text {
  max-width: 42rem;
  color: var(--white);
}

.hero-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.text-gold {
  color: var(--gold);
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-subtitle {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.25rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.875rem;
  }
}

@media (min-width: 1024px) {
  .hero-subtitle {
    font-size: 2.25rem;
  }
}

.hero-description {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  text-align: justify;
}

@media (min-width: 640px) {
  .hero-description {
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.125rem;
  }
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-gold {
  background-color: var(--gold);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 500;
  transition: filter 0.3s;
  display: inline-block;
}

.btn-gold:hover {
  filter: brightness(0.95);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s;
  display: inline-block;
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Animations */
.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===================================
   SECTIONS
   =================================== */
.section {
  position: relative;
  padding: 5rem 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.875rem;
  color: var(--blue-dark);
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-subtitle {
  color: var(--gray-600);
  margin-top: 0.75rem;
}

.bg-gradient {
  background: linear-gradient(to bottom right, var(--white), var(--gray-50));
}

.bg-white {
  background-color: var(--white);
}

.bg-dark {
  background: linear-gradient(to bottom right, #112C50, #1D3E73, #0D223D);
  color: var(--white);
}

.decorative-wave {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

.decorative-wave svg {
  color: var(--gold);
}

/* ===================================
   SERVICES
   =================================== */
.services-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(17, 44, 80, 0.2);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.service-card:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.service-card-featured {
  border: 2px solid var(--blue-dark);
}

.service-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background-color: var(--gold);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.service-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.service-icon {
  background-color: rgba(17, 44, 80, 0.1);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-dark);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.service-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.25rem;
  color: var(--blue-dark);
  line-height: 1.3;
}

.service-list {
  list-style: none;
  margin-bottom: 1rem;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-600);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.service-list i {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--blue-dark);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  margin-top: 1rem;
  transition: color 0.3s;
}

.service-link:hover {
  color: var(--gold);
}

/* ===================================
   ABOUT
   =================================== */
.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-text {
  color: var(--gray-700);
  text-align: justify;
  line-height: 1.7;
}

.values-section {
  margin: 1.5rem 0;
}

.values-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 0.75rem;
}

.values-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .values-grid {
    flex-direction: row;
    justify-content: flex-start;
    gap: 2rem;
  }
}

.value-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: transform 0.3s;
}

.value-item:hover {
  transform: scale(1.05);
}

.value-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgba(201, 166, 70, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.125rem;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s;
}

.value-item:hover .value-icon {
  background-color: rgba(201, 166, 70, 0.2);
}

.value-label {
  color: var(--gray-700);
  font-weight: 500;
  transition: color 0.3s;
}

.value-item:hover .value-label {
  color: var(--gold);
}

.about-image {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  display: none;
}

@media (min-width: 768px) {
  .about-image {
    display: block;
  }
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, rgba(17, 44, 80, 0.2), rgba(201, 166, 70, 0.2));
}

/* ===================================
   WHY / FEATURES
   =================================== */
.kpis-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-bottom: 4rem;
  text-align: center;
}

@media (min-width: 640px) {
  .kpis-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.kpi-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.kpi-value {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 3rem;
  color: var(--blue-dark);
  font-weight: 600;
}

.kpi-label {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.features-grid {
  display: grid;
  gap: 0;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border-bottom: 1px solid var(--gray-200);
}

@media (min-width: 768px) {
  .feature-item:nth-child(odd) {
    border-right: 1px solid var(--gray-200);
  }
  .feature-item:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

.feature-icon {
  color: var(--gold);
  font-size: 1.5rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.feature-title {
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 0.25rem;
}

.feature-text {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===================================
   PROCESS
   =================================== */
.process-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process-step {
  text-align: center;
}

@media (min-width: 768px) {
  .process-step {
    text-align: left;
  }
}

.process-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .process-header {
    justify-content: flex-start;
  }
}

.process-number {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  font-size: 1.125rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.process-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.125rem;
  color: var(--blue-dark);
  line-height: 1.3;
}

@media (min-width: 768px) {
  .process-title {
    font-size: 1.25rem;
  }
}

.process-text {
  font-size: 0.875rem;
  color: var(--gray-600);
  max-width: 20rem;
  margin: 0 auto;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .process-text {
    margin: 0;
  }
}

/* ===================================
   PRICING / TARIFS
   =================================== */
.pricing-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  background-color: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid var(--gray-200);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.pricing-card-featured {
  border: 2px solid var(--gold);
  order: 1;
}

@media (min-width: 768px) {
  .pricing-card-featured {
    order: 2;
  }
  .pricing-card:nth-child(2) {
    order: 1;
  }
  .pricing-card:nth-child(3) {
    order: 3;
  }
}

.pricing-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--gold);
  color: var(--white);
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.pricing-value {
  font-size: 5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 2rem;
}

.pricing-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.25rem;
  color: var(--blue-dark);
  margin-bottom: 1.5rem;
}

.pricing-text {
  color: var(--gray-600);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.pricing-emphasis {
  font-style: italic;
  color: rgba(17, 44, 80, 0.8);
}

.pricing-note {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-top: auto;
}

.pricing-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-top: 2rem;
}

/* ===================================
   FAQ
   =================================== */
.faq-container {
  max-width: 48rem;
  margin: 0 auto;
  border: 1px solid var(--gray-200);
  border-radius: 1rem;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
  padding: 1.5rem;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: var(--blue-dark);
  font-weight: 500;
  user-select: none;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-icon {
  margin-left: 0.5rem;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item[open] .faq-icon {
  transform: rotate(90deg);
}

.faq-answer {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===================================
   NEWS / ACTUALITES
   =================================== */
.news-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.news-card {
  background-color: rgba(248, 250, 252, 0.5);
  border: 1px solid var(--gray-200);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
}

.news-card:hover {
  transform: translateY(-5px);
}

.news-date {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.news-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.25rem;
  color: var(--blue-dark);
  margin-top: 0.5rem;
  line-height: 1.3;
}

.news-excerpt {
  color: var(--gray-600);
  font-size: 0.875rem;
  margin-top: 0.75rem;
  line-height: 1.6;
  flex-grow: 1;
}

.news-link {
  margin-top: 1.5rem;
  color: var(--blue-dark);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: color 0.3s;
}

.news-link:hover {
  color: var(--gold);
}

/* ===================================
   CONTACT
   =================================== */
.contact-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.contact-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.875rem;
  color: var(--gold);
}

@media (min-width: 768px) {
  .contact-title {
    font-size: 2.25rem;
  }
}

.contact-subtitle {
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-location {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.5rem;
}

.contact-form {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
  text-align: left;
}

.form-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-input {
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1rem;
  color: var(--white);
  outline: none;
  transition: border-color 0.3s;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-input:focus {
  border-color: var(--gold);
}

.form-submit {
  display: flex;
  justify-content: center;
  margin-top: 0.5rem;
}

#submit-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
}

#submit-btn:disabled {
  opacity: 0.6;
  cursor: wait;
}

.form-message {
  text-align: center;
  margin-top: 1.5rem;
  font-weight: 500;
}

.form-message.success {
  color: var(--gold);
}

.form-message.error {
  color: #f87171;
}

.form-privacy {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.contact-direct {
  margin-top: 3rem;
}

.contact-direct-title {
  font-size: 1.125rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 640px) {
  .contact-methods {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.5rem;
  transition: background-color 0.3s, border-color 0.3s;
}

.contact-method:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
}

.contact-method i {
  font-size: 1.25rem;
  color: var(--gold);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
  position: relative;
  background-color: var(--blue-darker);
  color: var(--white);
  padding: 3rem 0 1.5rem;
  overflow: hidden;
}

.footer-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 8rem;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 0.025em;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.875rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-link:hover {
  color: var(--gold);
}

.footer-divider {
  width: 4rem;
  height: 1px;
  background-color: rgba(201, 166, 70, 0.4);
  border-radius: 9999px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-legal-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-legal-link:hover {
  color: var(--gold);
}

.footer-dot {
  color: var(--gold);
}

.footer-copyright {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.footer-zone {
  font-size: 0.875rem;
}

.footer-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 100px;
  background-color: rgba(201, 166, 70, 0.1);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

/* ===================================
   UTILITIES
   =================================== */
.max-w-3xl {
  max-width: 48rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-12 {
  margin-bottom: 3rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-slate-700 {
  color: var(--gray-700);
}

.leading-relaxed {
  line-height: 1.625;
}

/* ===================================
   SCROLL ANIMATIONS
   =================================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}