/* ============================================
   Platinum France Investissements — Global Styles
   Fonts: Playfair Display (headings), Montserrat (body)
   Colors extracted from Tailwind/CSS variables
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --background: #ffffff;
  --foreground: hsl(222, 40%, 14%);

  --card: hsl(0, 0%, 98%);
  --card-foreground: hsl(222, 40%, 14%);

  --primary: hsl(43, 72%, 52%);
  --primary-foreground: #ffffff;

  --secondary: hsl(222, 40%, 14%);
  --secondary-foreground: hsl(0, 0%, 95%);

  --muted: hsl(220, 20%, 95%);
  --muted-foreground: hsl(220, 10%, 45%);

  --border: hsl(220, 15%, 88%);

  --gold-light: hsl(43, 80%, 65%);
  --gold: hsl(43, 72%, 52%);
  --gold-dark: hsl(43, 60%, 35%);

  --radius: 0.5rem;

  --gold-gradient: linear-gradient(135deg, hsl(43, 80%, 65%), hsl(43, 72%, 52%), hsl(43, 60%, 35%));
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

ul, ol {
  list-style: none;
}

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

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.3;
}

.font-display {
  font-family: 'Playfair Display', serif;
}

.font-body {
  font-family: 'Montserrat', sans-serif;
}

/* ---------- Gold Gradient Text ---------- */
.text-gold-gradient {
  background-image: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gold-gradient {
  background-image: var(--gold-gradient);
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---------- Layout ---------- */
.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  padding-top: 5.3rem;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
}

.header-top-line {
  height: 3px;
  background-color: var(--secondary);
}

.header-bottom-line {
  height: 2px;
  background-color: var(--secondary);
}

.header-nav {
  background-color: var(--background);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.header-logo img {
  height: 3.5rem;
}

/* Desktop Nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(21, 28, 51, 0.7);
  transition: color 0.2s;
  border-radius: 2px;
  font-family: 'Montserrat', sans-serif;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a.active {
  border-bottom: 2px solid var(--primary);
}

/* Header Buttons */
.header-buttons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.btn-primary {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-radius: var(--radius);
  transition: background-color 0.2s;
  font-family: 'Montserrat', sans-serif;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-primary:hover {
  background-color: hsl(43, 72%, 47%);
}

.btn-outline {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--secondary);
  border: 1px solid var(--secondary);
  border-radius: var(--radius);
  transition: all 0.2s;
  font-family: 'Montserrat', sans-serif;
  background: transparent;
  cursor: pointer;
  text-align: center;
}

.btn-outline:hover {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--secondary);
}

.mobile-toggle svg {
  width: 28px;
  height: 28px;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  background-color: var(--background);
  border-top: 1px solid var(--border);
}

.mobile-nav.open {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  color: rgba(21, 28, 51, 0.7);
  transition: color 0.2s;
  font-family: 'Montserrat', sans-serif;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--primary);
  background-color: var(--muted);
}

.mobile-nav-buttons {
  border-top: 1px solid var(--border);
  margin-top: 0.5rem;
  padding: 0.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (max-width: 1023px) {
  .nav-links,
  .header-buttons {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
}

@media (min-width: 1024px) {
  .header-logo img {
    height: 4rem;
  }
}

/* ============================================
   HERO CAROUSEL
   ============================================ */
.hero {
  position: relative;
  overflow: hidden;
  height: 500px;
  margin-top: -1px;
}

@media (min-width: 768px) {
  .hero {
    height: 600px;
  }
}

.hero-track {
  display: flex;
  height: 100%;
  transition: transform 0.7s ease-in-out;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  flex-shrink: 0;
}

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

.hero-slide .overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(21, 28, 51, 0.6);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.hero-text {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
  animation: fadeInUp 0.8s ease-out;
}

.hero-text h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--secondary-foreground);
}

@media (min-width: 768px) {
  .hero-text h1 {
    font-size: 3.75rem;
  }
}

.hero-text p {
  font-size: 1.125rem;
  color: rgba(242, 242, 242, 0.8);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-family: 'Montserrat', sans-serif;
}

@media (min-width: 768px) {
  .hero-text p {
    font-size: 1.25rem;
  }
}

.hero-divider {
  height: 1px;
  width: 8rem;
  margin: 0 auto;
  background-image: var(--gold-gradient);
}

/* Carousel Arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgba(21, 28, 51, 0.5);
  color: var(--secondary-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  transition: background-color 0.2s;
}

.hero-arrow:hover {
  background-color: rgba(21, 28, 51, 0.8);
}

.hero-arrow.prev {
  left: 1rem;
}

.hero-arrow.next {
  right: 1rem;
}

/* Slide Indicators */
.hero-indicators {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.hero-indicators button {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  background-color: rgba(242, 242, 242, 0.4);
  transition: all 0.3s;
}

.hero-indicators button.active {
  background-color: var(--primary);
  width: 2rem;
}

/* ============================================
   METAL TICKER (TradingView Widget)
   ============================================ */
.metal-ticker {
  position: relative;
  overflow: hidden;
}

.metal-ticker .cover-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1.5rem;
  background-color: var(--background);
  z-index: 10;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 5rem 0;
}

.section-muted {
  background-color: rgba(237, 239, 244, 0.5);
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-subtitle {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto 4rem;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

.gold-divider {
  height: 1px;
  width: 8rem;
  margin: 2rem auto 0;
  background-image: var(--gold-gradient);
}

/* ---------- Cards Grid ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

@media (min-width: 1024px) {
  .cards-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---------- Card ---------- */
.card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color 0.2s;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.card:hover {
  border-color: rgba(196, 160, 56, 0.5);
}

.card-center {
  text-align: center;
}

.card-icon {
  color: var(--primary);
  margin-bottom: 1rem;
}

.card-center .card-icon {
  margin-left: auto;
  margin-right: auto;
}

.card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  font-family: 'Montserrat', sans-serif;
}

/* Card with icon left */
.card-horizontal {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
}

.card-horizontal .card-icon {
  flex-shrink: 0;
  margin-top: 0.25rem;
  margin-bottom: 0;
}

/* Card with icon circle */
.card .icon-circle {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: rgba(196, 160, 56, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background-color 0.2s;
}

.card:hover .icon-circle {
  background-color: rgba(196, 160, 56, 0.2);
}

/* ---------- Contact Section ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 20rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

@media (min-width: 1024px) {
  .contact-map {
    height: auto;
    min-height: 20rem;
  }
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  min-height: 320px;
}

.contact-info {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-item svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.125rem;
  width: 20px;
  height: 20px;
}

.contact-item .label {
  font-weight: 500;
  color: var(--foreground);
}

.contact-item a {
  color: var(--primary);
  transition: color 0.2s;
}

.contact-item a:hover {
  color: var(--gold-light);
}

.contact-item .text-muted {
  color: var(--muted-foreground);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background-color: var(--secondary);
  border-top: 1px solid var(--border);
}

.footer-inner {
  padding: 3rem 0;
}

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

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

.footer-col h4 {
  font-size: 1.125rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col a {
  color: rgba(242, 242, 242, 0.7);
  font-size: 0.875rem;
  transition: color 0.2s;
  font-family: 'Montserrat', sans-serif;
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(242, 242, 242, 0.7);
  font-size: 0.875rem;
  font-family: 'Montserrat', sans-serif;
}

.footer-contact-item svg {
  color: var(--primary);
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.footer-contact-item a {
  color: rgba(242, 242, 242, 0.7);
}

.footer-contact-item a:hover {
  color: var(--primary);
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}

.footer-logo img {
  width: 8rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .footer-logo img {
    width: 10rem;
  }
}

.footer-bottom {
  border-top: 1px solid rgba(220, 220, 220, 0.15);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  color: rgba(242, 242, 242, 0.5);
  font-size: 0.75rem;
  font-family: 'Montserrat', sans-serif;
}

.footer-bottom-links {
  display: flex;
  gap: 1rem;
}

.footer-bottom-links a {
  color: rgba(242, 242, 242, 0.5);
  font-size: 0.75rem;
  font-family: 'Montserrat', sans-serif;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

/* ============================================
   PAGE HEADER (inner pages)
   ============================================ */
.page-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeInUp 0.6s ease-out;
}

.page-header h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .page-header h1 {
    font-size: 3rem;
  }
}

.page-header p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto;
  font-family: 'Montserrat', sans-serif;
}

/* ---------- Banner Image ---------- */
.banner-image {
  max-width: 64rem;
  margin: 0 auto 3rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.6s ease-out;
}

.banner-image img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
}

@media (min-width: 768px) {
  .banner-image img {
    height: 16rem;
  }
}

/* ============================================
   BLOG / NEWS
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 76rem;
  margin: 0 auto;
}

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

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

.blog-card {
  display: flex;
  flex-direction: column;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
  height: 100%;
}

.blog-card:hover {
  border-color: rgba(196, 160, 56, 0.5);
}

.blog-card .gold-bar {
  height: 6px;
  background-image: var(--gold-gradient);
}

.blog-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card .date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
  font-family: 'Montserrat', sans-serif;
}

.blog-card .date svg {
  color: var(--primary);
  width: 14px;
  height: 14px;
}

.blog-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
  transition: color 0.2s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card:hover h3 {
  color: var(--primary);
}

.blog-card .excerpt {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
}

.blog-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  transition: gap 0.2s;
}

.blog-card:hover .read-more {
  gap: 0.5rem;
}

.blog-card .read-more svg {
  width: 14px;
  height: 14px;
}

/* ============================================
   ARTICLE PAGE
   ============================================ */
.article-container {
  max-width: 48rem;
  margin: 0 auto;
  animation: fadeInUp 0.6s ease-out;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-size: 0.875rem;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 2rem;
  transition: color 0.2s;
}

.article-back:hover {
  color: var(--gold-light);
}

.article-back svg {
  width: 16px;
  height: 16px;
}

.article-gold-bar {
  height: 6px;
  background-image: var(--gold-gradient);
  border-radius: 9999px;
  margin-bottom: 2rem;
}

.article-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 1rem;
}

.article-date svg {
  color: var(--primary);
  width: 14px;
  height: 14px;
}

.article-container h1 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 2rem;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .article-container h1 {
    font-size: 2.25rem;
  }
}

.article-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.article-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.article-content p {
  color: var(--muted-foreground);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.article-content strong {
  color: var(--foreground);
}

.article-content .text-primary-strong {
  color: var(--primary);
  font-weight: 700;
}

.article-content ul {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.article-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--muted-foreground);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
}

.article-content ul li::before {
  content: "•";
  color: var(--primary);
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.article-content ol {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  counter-reset: list-counter;
}

.article-content ol li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--muted-foreground);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  counter-increment: list-counter;
}

.article-content ol li::before {
  content: counter(list-counter) ".";
  color: var(--primary);
  font-weight: 600;
  flex-shrink: 0;
}

/* Article Table */
.article-content table {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 1rem;
  border-collapse: collapse;
  overflow: hidden;
}

.article-content thead tr {
  background-color: var(--secondary);
}

.article-content th {
  padding: 0.5rem 1rem;
  text-align: left;
  color: var(--secondary-foreground);
  font-weight: 600;
}

.article-content td {
  padding: 0.5rem 1rem;
  text-align: left;
  color: var(--muted-foreground);
  border-top: 1px solid var(--border);
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content {
  max-width: 48rem;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .legal-content h1 {
    font-size: 2.25rem;
  }
}

.legal-content h2 {
  font-size: 1.25rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  margin-top: 1.5rem;
}

.legal-content p {
  color: var(--muted-foreground);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.legal-content a {
  color: var(--primary);
  transition: color 0.2s;
}

.legal-content a:hover {
  color: var(--gold-light);
}

.legal-content ul {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
}

.legal-content ul li {
  color: var(--muted-foreground);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.7;
  list-style: disc;
  margin-bottom: 0.25rem;
}

.legal-section {
  margin-bottom: 1.5rem;
}

/* ============================================
   HIGHLIGHT BOX
   ============================================ */
.highlight-box {
  max-width: 48rem;
  margin: 0 auto;
  background-color: var(--card);
  border: 1px solid rgba(196, 160, 56, 0.3);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.highlight-box p {
  color: var(--foreground);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.highlight-box .italic-gold {
  color: var(--primary);
  font-style: italic;
  font-size: 1.125rem;
}

/* ============================================
   INFO BLOCK (or-papier style)
   ============================================ */
.info-block {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 3rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.info-block-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-block-header svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
  width: 28px;
  height: 28px;
}

.info-block-header h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--foreground);
}

.info-block-content {
  padding-left: 2.75rem;
}

.info-block-content p {
  color: var(--muted-foreground);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.info-block-content strong {
  color: var(--foreground);
}

.info-block-content .text-primary-strong {
  color: var(--primary);
  font-weight: 700;
}

/* ============================================
   UTILITY
   ============================================ */
.max-w-4xl { max-width: 56rem; margin-left: auto; margin-right: auto; }
.max-w-5xl { max-width: 64rem; margin-left: auto; margin-right: auto; }
.max-w-3xl { max-width: 48rem; margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.mt-12 { margin-top: 3rem; }

.italic-gold-center {
  text-align: center;
  color: var(--primary);
  font-style: italic;
  font-size: 1.125rem;
  margin-top: 3rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out both;
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out both;
}

/* Staggered animations */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }
.delay-7 { animation-delay: 0.7s; }
.delay-8 { animation-delay: 0.8s; }
.delay-9 { animation-delay: 0.9s; }
.delay-10 { animation-delay: 1.0s; }

/* ============================================
   SVG ICONS (inline)
   ============================================ */
.icon {
  display: inline-block;
  vertical-align: middle;
}
