/* =========================================
   MEDPLACE — Main Stylesheet
   Theme: Elegant Red & Prestige
   Font: Playfair Display + Roboto
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400&family=Roboto:wght@300;400;500;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --red-deep:    #7B0D0D;
  --red-primary: #9B1C1C;
  --red-medium:  #B91C1C;
  --red-light:   #DC2626;
  --red-glow:    #EF4444;
  --red-soft:    #FEE2E2;
  --red-pale:    #FFF5F5;
  --gold:        #C9A84C;
  --gold-light:  #F5D98B;
  --charcoal:    #1A1A2E;
  --dark:        #111111;
  --mid:         #444444;
  --muted:       #777777;
  --light:       #F8F8F8;
  --white:       #FFFFFF;
  --border:      rgba(155,28,28,0.15);
  --shadow-sm:   0 2px 12px rgba(155,28,28,0.10);
  --shadow-md:   0 8px 32px rgba(155,28,28,0.15);
  --shadow-lg:   0 20px 60px rgba(155,28,28,0.20);
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--red-pale); }
::-webkit-scrollbar-thumb { background: var(--red-medium); border-radius: 3px; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--dark);
}
.section-label {
  font-family: 'Roboto', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-medium);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--gold);
}
.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.2rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.8;
}

/* ---- Layout ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 90px 0; }
.section-alt { background: var(--red-pale); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: var(--transition);
}
.btn:hover::before { opacity: 1; }
.btn-primary {
  background: linear-gradient(135deg, var(--red-primary), var(--red-light));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(155,28,28,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(155,28,28,0.45); }
.btn-outline {
  background: transparent;
  color: var(--red-primary);
  border: 2px solid var(--red-primary);
}
.btn-outline:hover { background: var(--red-primary); color: var(--white); transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,168,76,0.50); }
.btn-white {
  background: var(--white);
  color: var(--red-primary);
  box-shadow: var(--shadow-md);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-lg { padding: 18px 42px; font-size: 1rem; border-radius: 10px; }

/* ============================
   NAVBAR
   ============================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(17,17,17,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(155,28,28,0.30);
  padding: 0 24px;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(10,10,10,0.99);
  box-shadow: 0 4px 30px rgba(155,28,28,0.20);
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--red-primary), var(--red-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: white;
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}
.logo-text span { color: var(--gold); }
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  padding: 8px 16px;
  color: rgba(255,255,255,0.80);
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%; height: 2px;
  background: var(--gold);
  transition: var(--transition);
  border-radius: 2px;
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { transform: translateX(-50%) scaleX(1); }
.nav-link.active { color: var(--white); }
.nav-link.active::after { transform: translateX(-50%) scaleX(1); }
.navbar-cta { margin-left: 16px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================
   HERO
   ============================ */
.hero {
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 80% at 70% 50%, rgba(155,28,28,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(201,168,76,0.08) 0%, transparent 50%),
    linear-gradient(180deg, #0d0d0d 0%, #1a0505 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(155,28,28,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(155,28,28,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(155,28,28,0.20);
  border: 1px solid rgba(155,28,28,0.40);
  border-radius: 100px;
  color: #f87171;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeInDown 0.6s ease both;
}
.hero-badge .dot { width: 6px; height: 6px; background: #f87171; border-radius: 50%; animation: pulse 2s infinite; }
.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  animation: fadeInUp 0.7s 0.15s ease both;
}
.hero-h1 em { font-style: italic; color: var(--gold); }
.hero-h1 .accent { color: var(--red-glow); }
.hero-desc {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 500px;
  animation: fadeInUp 0.7s 0.3s ease both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s 0.45s ease both;
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.08);
  animation: fadeInUp 0.7s 0.6s ease both;
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
}
.hero-stat-num span { color: var(--gold); }
.hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.50); margin-top: 2px; }
.hero-visual {
  position: relative;
  animation: fadeInRight 0.8s 0.2s ease both;
}
.hero-card-main {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}
.hero-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 24px;
}
.hero-card-overlay {
  position: absolute;
  bottom: 48px;
  right: -20px;
  background: linear-gradient(135deg, var(--red-primary), var(--red-deep));
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  animation: float 4s ease-in-out infinite;
}
.hero-card-overlay .num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
}
.hero-card-overlay .lbl { font-size: 0.75rem; color: rgba(255,255,255,0.70); }
.hero-progress { margin-top: 20px; }
.hero-progress-label { display: flex; justify-content: space-between; font-size: 0.82rem; color: rgba(255,255,255,0.60); margin-bottom: 8px; }
.hero-progress-bar { background: rgba(255,255,255,0.10); border-radius: 4px; height: 6px; overflow: hidden; }
.hero-progress-fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--red-medium), var(--gold)); animation: fillBar 2s 1s ease both; }

/* ============================
   CARDS
   ============================ */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(155,28,28,0.25);
}
.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.card-body { padding: 24px; }
.card-tag {
  display: inline-block;
  padding: 3px 12px;
  background: var(--red-soft);
  color: var(--red-medium);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.35;
}
.card-text { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--muted);
}
.card-link {
  color: var(--red-medium);
  font-weight: 700;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.card-link:hover { gap: 10px; color: var(--red-deep); }

/* ============================
   FEATURE BLOCKS
   ============================ */
.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--red-soft), var(--red-pale));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--red-medium);
  font-size: 1.4rem;
  transition: var(--transition);
  border: 1px solid rgba(155,28,28,0.15);
}
.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--red-medium), var(--red-light));
  color: var(--white);
  transform: scale(1.1) rotate(-4deg);
}
.feature-card {
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--red-medium);
}
.feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}
.feature-text { font-size: 0.9rem; color: var(--muted); line-height: 1.75; }

/* ============================
   PROCESS STEPS
   ============================ */
.steps-wrap { position: relative; }
.steps-wrap::before {
  content: '';
  position: absolute;
  left: 28px; top: 40px; bottom: 40px;
  width: 2px;
  background: linear-gradient(180deg, var(--red-medium), var(--gold));
}
.step {
  display: flex;
  gap: 28px;
  padding: 28px 0;
  position: relative;
}
.step-num {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: linear-gradient(135deg, var(--red-primary), var(--red-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(155,28,28,0.35);
  position: relative;
  z-index: 1;
}
.step-content { padding-top: 8px; }
.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.step-text { font-size: 0.92rem; color: var(--muted); line-height: 1.75; }

/* ============================
   TESTIMONIALS
   ============================ */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(155,28,28,0.20);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--red-soft);
  line-height: 1;
}
.stars { display: flex; gap: 4px; margin-bottom: 16px; color: var(--gold); font-size: 1rem; }
.testimonial-text {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--red-soft);
}
.author-name { font-weight: 700; font-size: 0.9rem; color: var(--dark); }
.author-role { font-size: 0.78rem; color: var(--muted); }
.author-verified {
  margin-left: auto;
  font-size: 0.72rem;
  color: #16a34a;
  background: #f0fdf4;
  padding: 3px 10px;
  border-radius: 100px;
  font-weight: 700;
  border: 1px solid #bbf7d0;
}

/* ============================
   FORMS
   ============================ */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.form-label span { color: var(--red-medium); }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(155,28,28,0.20);
  border-radius: 10px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.92rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--red-medium);
  box-shadow: 0 0 0 4px rgba(155,28,28,0.08);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-hint { font-size: 0.78rem; color: var(--muted); margin-top: 6px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: var(--mid); }
.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--red-medium);
  min-width: 18px;
  margin-top: 1px;
}
.form-success {
  display: none;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: 10px;
  padding: 16px 20px;
  color: #166534;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 16px;
}

/* ============================
   BANNER / CTA STRIP
   ============================ */
.cta-banner {
  background: linear-gradient(135deg, var(--red-deep) 0%, var(--red-primary) 50%, var(--red-medium) 100%);
  position: relative;
  overflow: hidden;
  padding: 72px 0;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}
.cta-banner .container { position: relative; z-index: 1; text-align: center; }
.cta-banner h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ============================
   STATS SECTION
   ============================ */
.stats-section {
  background: linear-gradient(135deg, var(--charcoal), var(--dark));
  padding: 70px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
}
.stat-item {
  padding: 40px 32px;
  text-align: center;
  background: var(--charcoal);
  transition: var(--transition);
}
.stat-item:hover { background: rgba(155,28,28,0.20); }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  display: block;
}
.stat-number em { color: var(--gold); font-style: normal; }
.stat-desc { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-top: 8px; }

/* ============================
   NEWS SECTION
   ============================ */
.news-featured {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
}
.news-featured .card-img { height: 320px; }

/* ============================
   DOSSIER BANNER
   ============================ */
.dossier-banner {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.dossier-banner::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, var(--red-medium), var(--gold));
  border-radius: 6px 0 0 6px;
}
.questionnaire-section {
  background: var(--red-pale);
  border: 1px solid rgba(155,28,28,0.12);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.questionnaire-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.progress-steps {
  display: flex;
  gap: 0;
  margin-bottom: 36px;
  position: relative;
}
.progress-steps::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 0; right: 0;
  height: 2px;
  background: rgba(155,28,28,0.15);
  z-index: 0;
}
.progress-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}
.progress-step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(155,28,28,0.15);
  border: 2px solid rgba(155,28,28,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
  transition: var(--transition);
}
.progress-step.active .progress-step-dot,
.progress-step.done .progress-step-dot {
  background: var(--red-primary);
  border-color: var(--red-primary);
  color: white;
}
.progress-step-label { font-size: 0.72rem; color: var(--muted); text-align: center; font-weight: 600; }
.progress-step.active .progress-step-label { color: var(--red-medium); }

/* ============================
   FOOTER
   ============================ */
.footer {
  background: var(--dark);
  padding: 72px 0 0;
  color: rgba(255,255,255,0.60);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-text {
  font-size: 0.9rem;
  line-height: 1.8;
  margin: 16px 0 24px;
  max-width: 300px;
}
.footer-social { display: flex; gap: 12px; }
.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.60);
  font-size: 1rem;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.08);
}
.social-btn:hover { background: var(--red-primary); color: white; border-color: var(--red-primary); transform: translateY(-2px); }
.footer-heading {
  font-family: 'Roboto', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-link:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.88rem;
  margin-bottom: 12px;
}
.footer-contact-item i { color: var(--gold); margin-top: 2px; min-width: 16px; }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: var(--gold); }
.footer-bottom a:hover { text-decoration: underline; }
.footer-newsletter { margin-top: 20px; }
.newsletter-input-wrap {
  display: flex;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
}
.newsletter-input {
  flex: 1;
  padding: 11px 16px;
  background: rgba(255,255,255,0.06);
  border: none;
  color: white;
  font-family: 'Roboto', sans-serif;
  font-size: 0.85rem;
  outline: none;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-btn {
  padding: 11px 18px;
  background: var(--red-primary);
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-family: 'Roboto', sans-serif;
}
.newsletter-btn:hover { background: var(--red-light); }

/* ============================
   PAGE HERO (sub-pages)
   ============================ */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #1a0505 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(155,28,28,0.20) 0%, transparent 70%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.30); }

/* ============================
   ARTICLE PAGE
   ============================ */
.article-content {
  max-width: 780px;
  margin: 0 auto;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.article-meta-item { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; color: var(--muted); }
.article-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  margin: 36px 0 16px;
}
.article-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--red-deep);
  margin: 28px 0 12px;
}
.article-body p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--mid);
  margin-bottom: 20px;
}
.article-body .highlight-box {
  background: var(--red-pale);
  border-left: 4px solid var(--red-medium);
  padding: 20px 24px;
  border-radius: 0 8px 8px 0;
  margin: 28px 0;
  font-size: 0.95rem;
  color: var(--dark);
  line-height: 1.75;
}
.article-body ul { margin: 16px 0 20px 0; }
.article-body ul li {
  padding: 6px 0 6px 22px;
  position: relative;
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.7;
}
.article-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  background: var(--red-medium);
  border-radius: 50%;
}
.article-cover {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 36px;
}

/* ============================
   PRICING TABLE
   ============================ */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  padding: 36px;
  position: relative;
  transition: var(--transition);
}
.pricing-card:hover, .pricing-card.featured {
  border-color: var(--red-medium);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--red-medium), var(--gold));
  color: white;
  padding: 4px 20px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.pricing-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.pricing-price { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 900; color: var(--red-primary); }
.pricing-price sup { font-size: 1.2rem; vertical-align: super; }
.pricing-price span { font-size: 1rem; font-weight: 400; color: var(--muted); }
.pricing-features { margin: 28px 0; display: flex; flex-direction: column; gap: 12px; }
.pricing-feature { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--mid); }
.pricing-feature i { color: var(--red-medium); font-size: 0.85rem; }

/* ============================
   FAQ
   ============================ */
.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
  transition: var(--transition);
}
.faq-item.open { border-color: rgba(155,28,28,0.30); }
.faq-question {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
  gap: 16px;
  background: var(--white);
  transition: var(--transition);
}
.faq-question:hover { background: var(--red-pale); }
.faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--red-soft);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-medium);
  font-size: 0.9rem;
  transition: var(--transition);
}
.faq-item.open .faq-icon { background: var(--red-primary); color: white; transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.8;
  background: var(--white);
}
.faq-item.open .faq-answer { display: block; }

/* ============================
   LEGAL PAGE
   ============================ */
.legal-content {
  max-width: 860px;
  margin: 0 auto;
}
.legal-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--red-deep);
  margin: 36px 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.legal-content p, .legal-content li {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: 14px;
}
.legal-content ul { padding-left: 20px; }
.legal-content ul li { list-style: disc; }
.legal-info-box {
  background: var(--red-pale);
  border: 1px solid rgba(155,28,28,0.15);
  border-radius: var(--radius);
  padding: 24px;
  margin: 24px 0;
}
.legal-info-box p { margin-bottom: 6px; }
.legal-info-box strong { color: var(--red-deep); }

/* ============================
   ANIMATIONS
   ============================ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.4); }
}
@keyframes fillBar {
  from { width: 0%; }
  to   { width: var(--fill, 85%); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes countUp {
  from { opacity: 0; transform: scale(0.8); }
  to   { opacity: 1; transform: scale(1); }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .navbar-nav, .navbar-cta { display: none; }
  .hamburger { display: flex; }
  .navbar-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 72px 0 0 0;
    background: var(--dark);
    padding: 24px;
    gap: 4px;
    z-index: 999;
  }
  .navbar-nav.open .navbar-cta { display: block; margin-top: 16px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 60px 0; }
  .news-featured { grid-column: span 1; }
  .progress-steps { display: none; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .dossier-banner { padding: 28px; }
  .questionnaire-section { padding: 28px; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 2rem; }
  .btn-lg { padding: 14px 28px; }
}

/* ============================
   MOBILE MENU OVERLAY
   ============================ */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.50);
  z-index: 998;
}
.mobile-overlay.open { display: block; }
