/* ═══════════════════════════════════════════════════════════
   STRATÈGE — Design System (from Stratège DS.pdf)
   ═══════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─────────────────────────────────────── */
:root {
  /* Background */
  --bg: #E8F4F2;
  --bg-dark: #1E3040;

  /* Surface & Elevation */
  --surface-0: #FFFFFF;
  --surface-1: #FFFFFF;
  --surface-2: #F0F8F6;

  /* Primary (teal/mint) — from PDF palette */
  --primary-50:  #E8F8F5;
  --primary-100: #C5EFE6;
  --primary-200: #9FE5D5;
  --primary-300: #6EE6D0;
  --primary-400: #3DD9BE;
  --primary-500: #2CC4AA;
  --primary-600: #22A08B;
  --primary-700: #1A8F7D;
  --primary-800: #146B5D;
  --primary-900: #0E4F45;

  /* Neutral (blue-grey) — from PDF palette */
  --neutral-0:   #F5F9FB;
  --neutral-50:  #EDF3F7;
  --neutral-100: #C8DDE8;
  --neutral-200: #A3C0D1;
  --neutral-300: #7FA3B9;
  --neutral-400: #6389A0;
  --neutral-500: #4F6B7F;
  --neutral-600: #3D566A;
  --neutral-700: #2A4055;
  --neutral-800: #1E3040;
  --neutral-900: #152230;
  --neutral-1000:#0D1620;

  /* Secondary (deep teal) */
  --secondary-50:  #E6F0F5;
  --secondary-100: #B8D4E2;
  --secondary-500: #4A6B82;
  --secondary-600: #3D5A72;
  --secondary-700: #2F4A60;
  --secondary-800: #233A4E;

  /* Success (green-teal) — from PDF */
  --success-50:  #E6F7F0;
  --success-100: #B0E8D0;
  --success-300: #4DCCAA;
  --success-500: #0FA878;
  --success-600: #0B8A63;
  --success-700: #086C4E;

  /* Warning (yellow) — from PDF */
  --warning-50:  #FFF8E6;
  --warning-100: #FDE9A6;
  --warning-300: #F5CC42;
  --warning-500: #D4A20A;
  --warning-600: #B08608;
  --warning-700: #8C6A06;

  /* Destructive/Error (red-pink) — from PDF */
  --error-50:  #FDE8E8;
  --error-100: #F8B8B8;
  --error-300: #E86B6B;
  --error-500: #D03E3E;
  --error-600: #AD3333;
  --error-700: #8A2828;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Radius */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 999px;

  /* Shadows (Elevation from PDF) */
  --shadow-sm:    0 1px 3px rgba(21,34,48,0.06);
  --shadow-md:    0 4px 12px rgba(21,34,48,0.08);
  --shadow-lg:    0 8px 24px rgba(21,34,48,0.1);
  --shadow-xl:    0 16px 48px rgba(21,34,48,0.12);
}

/* ─── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  background: var(--bg);
  color: var(--neutral-800);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }
ul { list-style: none; }

/* ─── TYPOGRAPHY (from PDF: Desktop Headings) ───────────── */
/* Display Large: 52px / 56px / tracking -2% */
/* H1: 40px / 48px / -2%   H2: 36px / 44px / -2% */
/* H3: 32px / 40px / -2%   H4: 28px / 36px / -2% */
/* H5: 24px / 32px          H6: 20px / 28px */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--neutral-800);
}
h1 { font-size: 40px; line-height: 48px; }
h2 { font-size: 36px; line-height: 44px; }
h3 { font-size: 32px; line-height: 40px; }
h4 { font-size: 28px; line-height: 36px; }
h5 { font-size: 24px; line-height: 32px; }
h6 { font-size: 20px; line-height: 28px; }

/* Paragraph sizes from PDF */
/* Large: 18px/28px  Medium: 16px/24px  Small: 14px/20px  XSmall: 12px/20px */
/* Overline: 14px uppercase */
.text-lg { font-size: 18px; line-height: 28px; }
.text-sm { font-size: 14px; line-height: 20px; }
.text-xs { font-size: 12px; line-height: 20px; }
.overline {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

/* ─── CONTAINER ─────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── NAVBAR ────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--neutral-50);
  height: 72px;
  display: flex;
  align-items: center;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--neutral-800);
}
.nav-logo svg { width: 36px; height: 36px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--neutral-600);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--primary-500); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-hamburger {
  display: none;
  background: none;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--neutral-800);
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.3s;
}

/* ─── BUTTONS (from PDF: pill shape, 3 variants) ────────── */
/* Filled Primary */
.btn-primary {
  background: var(--primary-400);
  color: var(--neutral-800);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-primary:hover {
  background: var(--primary-500);
  box-shadow: 0 4px 16px rgba(61,217,190,0.25);
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); }

/* Outlined / Secondary */
.btn-secondary {
  background: var(--surface-0);
  color: var(--neutral-800);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid var(--neutral-100);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-secondary:hover {
  border-color: var(--primary-400);
  color: var(--primary-600);
}

/* Ghost */
.btn-ghost {
  background: transparent;
  color: var(--neutral-600);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 15px;
  border: 1.5px solid var(--neutral-100);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-ghost:hover {
  border-color: var(--primary-400);
  color: var(--primary-600);
  background: var(--primary-50);
}

.btn-small { padding: 8px 18px; font-size: 13px; }

/* Dark variant (for dark sections) */
.btn-primary-dark {
  background: var(--primary-400);
  color: var(--neutral-800);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ─── BADGES (from PDF: pill with icon slots) ────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}
.badge-primary {
  background: var(--primary-50);
  color: var(--primary-700);
  border: 1px solid var(--primary-100);
}
.badge-secondary {
  background: var(--neutral-50);
  color: var(--neutral-600);
  border: 1px solid var(--neutral-100);
}
.badge-success {
  background: var(--success-50);
  color: var(--success-700);
  border: 1px solid var(--success-100);
}
.badge-warning {
  background: var(--warning-50);
  color: var(--warning-700);
  border: 1px solid var(--warning-100);
}
.badge-error {
  background: var(--error-50);
  color: var(--error-700);
  border: 1px solid var(--error-100);
}

/* ─── HERO ──────────────────────────────────────────────── */
.hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
/* Geometric teal shape from PDF mockup (page 2) */
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -60px;
  width: 600px;
  height: 600px;
  background: var(--primary-400);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  opacity: 0.15;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  top: 60px;
  right: 120px;
  width: 200px;
  height: 200px;
  background: var(--primary-300);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  opacity: 0.2;
  z-index: 0;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content { position: relative; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-0);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  color: var(--neutral-600);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
  border: 1px solid var(--neutral-50);
}
.hero-badge span { color: var(--primary-500); }
.hero h1 {
  font-size: 52px;
  line-height: 56px;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--neutral-800);
}
.hero h1 .highlight { color: var(--primary-500); }
.hero-tagline {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: var(--neutral-600);
  margin-bottom: 20px;
}
.hero-description {
  font-size: 16px;
  line-height: 24px;
  color: var(--neutral-500);
  margin-bottom: 32px;
  max-width: 460px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 40px;
}
.hero-stat { text-align: center; }
.hero-stat-value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-500);
  line-height: 1.2;
}
.hero-stat-label {
  font-size: 13px;
  color: var(--neutral-500);
  margin-top: 2px;
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-image-wrapper {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-float-card {
  position: absolute;
  background: var(--surface-0);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  border: 1px solid var(--neutral-50);
}
.hero-float-card.top-right { top: 24px; right: -24px; }
.hero-float-card.bottom-left { bottom: 48px; left: -24px; }
.float-card-label { font-size: 12px; color: var(--neutral-500); margin-bottom: 4px; }
.float-card-value {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-500);
}
.float-card-sub { font-size: 12px; color: var(--success-600); font-weight: 500; }

/* ─── TRUST SECTION (dark bg from PDF) ──────────────────── */
.trust {
  background: var(--bg-dark);
  padding: 80px 0;
  color: #fff;
}
.trust .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.trust-header { margin-bottom: 32px; }
.trust h2 { color: #fff; margin-bottom: 8px; }
.trust-subtitle { color: var(--neutral-100); font-size: 16px; line-height: 24px; }
.pillars { display: flex; flex-direction: column; gap: 16px; }
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s;
  opacity: 0;
  transform: translateY(16px);
}
.pillar.visible { opacity: 1; transform: translateY(0); }
.pillar:hover {
  background: rgba(255,255,255,0.08);
  transform: translateX(4px);
}
.pillar.visible:hover { transform: translateX(4px); }
.pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(61,217,190,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.pillar-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #fff;
}
.pillar-text { font-size: 14px; color: var(--neutral-100); line-height: 1.5; }

/* Trust visual — geometric circle from PDF */
.trust-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.trust-graphic {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(61,217,190,0.15) 0%, transparent 70%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.trust-graphic::before {
  content: '';
  position: absolute;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  border: 1.5px solid rgba(61,217,190,0.2);
}
.trust-graphic::after {
  content: '';
  position: absolute;
  width: 60%;
  height: 60%;
  border-radius: 50%;
  border: 1.5px solid rgba(61,217,190,0.3);
  animation: pulse-ring 3s ease-in-out infinite;
}
@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.08); opacity: 1; }
}
.trust-center-text {
  position: absolute;
  text-align: center;
  z-index: 1;
}
.trust-center-text .big {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-400);
}
.trust-center-text .sub { font-size: 14px; color: var(--neutral-100); }

/* ─── PROFILES ──────────────────────────────────────────── */
.profiles { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-500);
  margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 12px; }
.section-header p {
  font-size: 16px;
  line-height: 24px;
  color: var(--neutral-500);
  max-width: 540px;
  margin: 0 auto;
}

.profiles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.profile-card {
  background: var(--surface-0);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--neutral-50);
  transition: all 0.3s;
  opacity: 0;
  transform: translateY(20px);
}
.profile-card.visible { opacity: 1; transform: translateY(0); }
.profile-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.profile-card.visible:hover { transform: translateY(-4px); }
.profile-img {
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}
.profile-body { padding: 24px; }
.profile-body h3 {
  font-size: 22px;
  line-height: 28px;
  margin-bottom: 8px;
}
.profile-body p {
  font-size: 14px;
  line-height: 20px;
  color: var(--neutral-500);
  margin-bottom: 20px;
}

/* ─── SIMULATION ────────────────────────────────────────── */
.simulation {
  padding: 100px 0;
  background: var(--surface-2);
}
.sim-container {
  max-width: 700px;
  margin: 0 auto;
  background: var(--surface-0);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 48px;
  border: 1px solid var(--neutral-50);
}

/* Progress Steps (from PDF page 17 — circle + line style) */
.progress-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
}
.step-indicator {
  display: flex;
  align-items: center;
  gap: 0;
}
.step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  background: var(--surface-0);
  color: var(--neutral-400);
  border: 2px solid var(--neutral-100);
  transition: all 0.3s;
  position: relative;
}
.step-indicator.active .step-dot {
  background: var(--primary-400);
  color: var(--neutral-800);
  border-color: var(--primary-400);
}
.step-indicator.completed .step-dot {
  background: var(--primary-400);
  color: var(--neutral-800);
  border-color: var(--primary-400);
  font-size: 0;
}
.step-indicator.completed .step-dot::after {
  content: '\2713';
  font-size: 16px;
  font-weight: 700;
}
.step-line {
  width: 48px;
  height: 2px;
  background: var(--neutral-100);
  transition: background 0.3s;
}
.step-line.done { background: var(--primary-400); }

/* Sim Steps */
.sim-etape { display: none; }
.sim-etape.active {
  display: block;
  animation: fadeUp 0.3s ease;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.sim-etape h3 { text-align: center; margin-bottom: 8px; font-size: 28px; }
.sim-etape .sim-desc {
  text-align: center;
  color: var(--neutral-500);
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 32px;
}

/* Profile Choice Cards */
.profil-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.profil-option {
  padding: 24px 20px;
  border: 2px solid var(--neutral-50);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  background: var(--surface-0);
}
.profil-option:hover { border-color: var(--primary-300); background: var(--primary-50); }
.profil-option.selected {
  border-color: var(--primary-400);
  background: var(--primary-50);
}
.profil-option .icon { font-size: 32px; margin-bottom: 8px; }
.profil-option .label { font-weight: 600; font-size: 15px; color: var(--neutral-800); margin-bottom: 4px; }
.profil-option .desc { font-size: 13px; color: var(--neutral-500); }

/* Form Fields (from PDF page 12: Input Box) */
.form-group {
  margin-bottom: 20px;
  position: relative;
}
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--neutral-700);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--neutral-100);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--neutral-800);
  background: var(--surface-0);
  transition: all 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary-400);
  box-shadow: 0 0 0 3px rgba(61,217,190,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--neutral-300);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.input-suffix {
  position: absolute;
  right: 16px;
  top: 38px;
  color: var(--neutral-400);
  font-size: 14px;
  font-weight: 500;
}

/* Sim Type Choice */
.sim-type-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.sim-type-option {
  padding: 24px;
  border: 2px solid var(--neutral-50);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s;
  background: var(--surface-0);
}
.sim-type-option:hover { border-color: var(--primary-300); }
.sim-type-option.selected {
  border-color: var(--primary-400);
  background: var(--primary-50);
}
.sim-type-option .type-title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--neutral-800);
}
.sim-type-option .type-desc {
  font-size: 13px;
  color: var(--neutral-500);
  line-height: 1.5;
}

/* Results */
.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}
.result-card {
  background: var(--surface-2);
  border-radius: var(--radius-sm);
  padding: 16px;
  border: 1px solid var(--neutral-50);
}
.result-card .result-label {
  font-size: 12px;
  color: var(--neutral-500);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.result-card .result-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--neutral-800);
}
.result-card.highlight {
  background: var(--primary-50);
  border-color: var(--primary-100);
}
.result-card.highlight .result-value { color: var(--primary-600); }

.sim-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
}

/* ─── CATALOGUE ─────────────────────────────────────────── */
.catalogue { padding: 100px 0; }
.catalogue-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  background: var(--surface-0);
  color: var(--neutral-600);
  border: 1.5px solid var(--neutral-100);
  transition: all 0.2s;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-400);
  color: var(--neutral-800);
  border-color: var(--primary-400);
}

.biens-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bien-card {
  background: var(--surface-0);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--neutral-50);
  transition: all 0.3s;
  opacity: 0;
  transform: translateY(20px);
}
.bien-card.visible { opacity: 1; transform: translateY(0); }
.bien-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.bien-card.visible:hover { transform: translateY(-4px); }
.bien-card.indisponible { opacity: 0.65; }
.bien-img-wrap {
  height: 180px;
  background: linear-gradient(135deg, var(--surface-2), var(--primary-50));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
}
.btn-favori {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--surface-0);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
  border: 1px solid var(--neutral-50);
}
.btn-favori:hover { transform: scale(1.1); }
.btn-favori.active { background: var(--error-50); border-color: var(--error-100); }
.bien-body { padding: 20px; }
.bien-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.bien-titre {
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-weight: 700;
}
.bien-stats {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: var(--neutral-500);
  margin-bottom: 12px;
}
.bien-prix {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.prix-principal {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--neutral-800);
}
.rendement-badge {
  background: var(--primary-50);
  color: var(--primary-700);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--primary-100);
}
.bien-mensualites {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--neutral-600);
  margin-bottom: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--neutral-50);
}
.teal { color: var(--primary-600); font-weight: 700; }
.bien-actions { display: flex; gap: 8px; }
.bien-actions .btn-primary {
  flex: 1;
  padding: 10px 16px;
  font-size: 14px;
}
.bien-actions .btn-ghost {
  padding: 10px 16px;
  font-size: 14px;
}

/* ─── MODAL CONTACT ─────────────────────────────────────── */
.modale-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(21,34,48,0.5);
  backdrop-filter: blur(4px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.modale-overlay.active { display: flex; }
.modale-box {
  background: var(--surface-0);
  border-radius: var(--radius-xl);
  padding: 40px;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  position: relative;
}
.modale-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  font-size: 24px;
  color: var(--neutral-400);
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
}
.modale-close:hover { background: var(--neutral-50); color: var(--neutral-700); }
.modale-box h3 { margin-bottom: 8px; font-size: 24px; }
.modale-box .modale-desc {
  color: var(--neutral-500);
  font-size: 15px;
  margin-bottom: 28px;
}

/* ─── ALERTS (from PDF page 15: inline alert) ────────────── */
.alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  line-height: 1.6;
  border: 1px solid;
}
.alert-success {
  background: var(--success-50);
  border-color: var(--success-100);
  color: var(--success-700);
}
.alert-warning {
  background: var(--warning-50);
  border-color: var(--warning-100);
  color: var(--warning-700);
}
.alert-error {
  background: var(--error-50);
  border-color: var(--error-100);
  color: var(--error-700);
}

/* ─── RGPD / WHY ────────────────────────────────────────── */
.why-section {
  padding: 60px 0;
  background: var(--surface-2);
}
.why-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
}
.why-box.visible { opacity: 1; transform: translateY(0); }
.why-box h3 { margin-bottom: 16px; }
.why-box p {
  font-size: 15px;
  color: var(--neutral-500);
  line-height: 1.8;
}

/* ─── FOOTER ────────────────────────────────────────────── */
.footer {
  background: var(--bg-dark);
  color: #fff;
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .nav-logo {
  color: #fff;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--neutral-100);
  line-height: 1.6;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 16px;
  margin-bottom: 16px;
  color: #fff;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-size: 14px;
  color: var(--neutral-100);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--primary-400); }
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
  color: var(--neutral-100);
}
.footer-socials a:hover { background: var(--primary-400); color: var(--neutral-800); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: var(--neutral-300);
}

/* ─── ANIMATIONS ────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE (Mobile headings from PDF page 6) ──────── */
/* Mobile: H1=36px/44px  H2=32px/40px  H3=28px/36px  H4=24px/32px */
@media (max-width: 1024px) {
  .profiles-grid { grid-template-columns: repeat(2, 1fr); }
  .biens-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 768px) {
  h1 { font-size: 36px; line-height: 44px; }
  h2 { font-size: 32px; line-height: 40px; }
  h3 { font-size: 28px; line-height: 36px; }
  h4 { font-size: 24px; line-height: 32px; }
  h5 { font-size: 20px; line-height: 28px; }
  h6 { font-size: 18px; line-height: 24px; }

  .hero h1 { font-size: 36px; line-height: 44px; }
  .hero::before, .hero::after { display: none; }
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-image-wrapper { max-width: 300px; margin: 0 auto; }
  .hero-float-card { display: none; }
  .hero-ctas { flex-direction: column; }
  .hero-stats { justify-content: center; gap: 24px; }

  .trust .container { grid-template-columns: 1fr; }
  .trust-visual { display: none; }

  .profiles-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .biens-grid { grid-template-columns: 1fr; }

  .sim-container { padding: 28px 20px; }
  .profil-grid { grid-template-columns: 1fr; }
  .sim-type-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .step-line { width: 28px; }

  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: block; }

  .navbar.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--surface-0);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    gap: 16px;
  }
  .navbar.open .nav-actions {
    display: flex;
    position: absolute;
    top: auto;
    left: 0; right: 0;
    background: var(--surface-0);
    padding: 0 24px 24px;
    justify-content: center;
  }

  .footer-grid { grid-template-columns: 1fr; }
  .bien-mensualites { flex-direction: column; gap: 4px; }
  .catalogue-filters { gap: 6px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding: 100px 0 60px; }
  .modale-box { padding: 24px; margin: 16px; }
  .sim-container { padding: 24px 16px; }
}

/* ─── FISCAL NOTICE ────────────────────────────────────── */
.fiscal-notice { padding: 32px 0 0; }

/* ─── PAGE HERO (for scpi.html, pret.html) ─────────────── */
.page-hero {
  padding: 120px 0 60px;
  text-align: center;
}
.page-hero h1 { margin-bottom: 12px; }
.page-hero p {
  font-size: 18px;
  color: var(--neutral-500);
  max-width: 600px;
  margin: 0 auto;
  line-height: 28px;
}

/* ─── TAUX GRID (pret.html) ────────────────────────────── */
.taux-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.taux-card {
  background: var(--surface-0);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  border: 1px solid var(--neutral-50);
  box-shadow: var(--shadow-sm);
}
.taux-card .duree {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--neutral-800);
  margin-bottom: 12px;
}
.taux-card .taux-moyen {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-500);
  margin-bottom: 4px;
}
.taux-card .taux-meilleur {
  font-size: 13px;
  color: var(--success-600);
  font-weight: 600;
}

/* ─── SCPI TABLE ───────────────────────────────────────── */
.scpi-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--surface-0);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--neutral-50);
}
.scpi-table th {
  background: var(--bg-dark);
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 16px;
  text-align: left;
}
.scpi-table td {
  padding: 14px 16px;
  font-size: 14px;
  color: var(--neutral-700);
  border-bottom: 1px solid var(--neutral-50);
}
.scpi-table tr:last-child td { border-bottom: none; }
.scpi-table tr:hover td { background: var(--primary-50); }
.scpi-table .td-value {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-600);
}
.scpi-table .scpi-name {
  font-weight: 600;
  color: var(--neutral-800);
}
.scpi-warning {
  display: inline-block;
  font-size: 12px;
  color: var(--warning-700);
  background: var(--warning-50);
  border: 1px solid var(--warning-100);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  margin-left: 6px;
  font-weight: 500;
}
.scpi-mention {
  font-size: 12px;
  color: var(--neutral-400);
  font-style: italic;
  text-align: center;
  padding: 16px;
  border-top: 1px solid var(--neutral-50);
}

/* ─── SIMULATOR SHARED ─────────────────────────────────── */
.simulator-box {
  max-width: 700px;
  margin: 0 auto 40px;
  background: var(--surface-0);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 40px;
  border: 1px solid var(--neutral-50);
}
.simulator-box h3 {
  text-align: center;
  margin-bottom: 8px;
  font-size: 28px;
}
.simulator-box .sim-desc {
  text-align: center;
  color: var(--neutral-500);
  font-size: 15px;
  margin-bottom: 28px;
}
.sim-results-inline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.sim-result-item {
  background: var(--surface-2);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
  border: 1px solid var(--neutral-50);
}
.sim-result-item.highlight {
  background: var(--primary-50);
  border-color: var(--primary-100);
}
.sim-result-item .label {
  font-size: 12px;
  color: var(--neutral-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.sim-result-item .value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--neutral-800);
}
.sim-result-item.highlight .value { color: var(--primary-600); }

/* ─── AMORT TABLE ──────────────────────────────────────── */
.amort-wrapper {
  max-height: 400px;
  overflow-y: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--neutral-50);
  margin-top: 24px;
}
.amort-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.amort-table th {
  background: var(--neutral-50);
  padding: 10px 12px;
  font-weight: 600;
  text-align: right;
  position: sticky;
  top: 0;
  color: var(--neutral-700);
}
.amort-table th:first-child { text-align: center; }
.amort-table td {
  padding: 8px 12px;
  text-align: right;
  border-bottom: 1px solid var(--neutral-50);
  color: var(--neutral-600);
}
.amort-table td:first-child { text-align: center; font-weight: 600; }

/* ─── SCORING BAR ──────────────────────────────────────── */
.scoring-bar {
  background: var(--neutral-50);
  border-radius: var(--radius-full);
  height: 24px;
  position: relative;
  overflow: hidden;
  margin-top: 12px;
}
.scoring-fill {
  height: 100%;
  border-radius: var(--radius-full);
  transition: width 0.5s ease, background 0.3s;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}
.scoring-fill.ok { background: var(--success-500); }
.scoring-fill.warning { background: var(--warning-500); }
.scoring-fill.danger { background: var(--error-500); }
.scoring-limit {
  position: absolute;
  left: 35%;
  top: -4px;
  bottom: -4px;
  width: 2px;
  background: var(--error-500);
}

/* ─── COMPARATIF GRID ──────────────────────────────────── */
.comparatif-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}
.comparatif-card {
  background: var(--surface-0);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--neutral-50);
  box-shadow: var(--shadow-sm);
}
.comparatif-card h4 {
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--neutral-800);
}
.comparatif-card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.comparatif-card li {
  font-size: 14px;
  color: var(--neutral-600);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.comparatif-card li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--success-500);
  font-weight: 700;
}
.comparatif-card.cons li::before {
  content: '\2717';
  color: var(--error-500);
}

/* ─── FISCALITE SECTION ────────────────────────────────── */
.fiscalite-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.fiscalite-card {
  background: var(--surface-0);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--neutral-50);
  box-shadow: var(--shadow-sm);
}
.fiscalite-card h4 { margin-bottom: 12px; }
.fiscalite-card p {
  font-size: 14px;
  color: var(--neutral-600);
  line-height: 1.6;
}
.fiscalite-card .highlight-rate {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-500);
  margin: 12px 0;
}

/* ─── RESPONSIVE NEW PAGES ─────────────────────────────── */
@media (max-width: 1024px) {
  .taux-grid { grid-template-columns: repeat(2, 1fr); }
  .comparatif-grid { grid-template-columns: 1fr; }
  .fiscalite-grid { grid-template-columns: 1fr; }
  .scpi-table { font-size: 13px; }
  .scpi-table th, .scpi-table td { padding: 10px 8px; }
}
@media (max-width: 768px) {
  .taux-grid { grid-template-columns: 1fr 1fr; }
  .sim-results-inline { grid-template-columns: 1fr; }
  .simulator-box { padding: 24px 16px; }
  .scpi-table-wrapper { overflow-x: auto; }
}
@media (max-width: 480px) {
  .taux-grid { grid-template-columns: 1fr; }
}

/* ─── NAV USER AVATAR / DROPDOWN ───────────────────────── */
.nav-user-menu { position: relative; }
.nav-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--primary-400);
  color: var(--neutral-800);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--primary-300);
  transition: all 0.2s;
}
.nav-avatar:hover { box-shadow: 0 0 0 3px rgba(61,217,190,0.2); }
.nav-dropdown {
  display: none;
  position: absolute;
  top: 48px; right: 0;
  background: var(--surface-0);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--neutral-50);
  min-width: 180px;
  overflow: hidden;
  z-index: 1001;
}
.nav-dropdown.open { display: block; }
.nav-dropdown a {
  display: block;
  padding: 12px 20px;
  font-size: 14px;
  color: var(--neutral-700);
  transition: background 0.15s;
}
.nav-dropdown a:hover { background: var(--primary-50); color: var(--primary-600); }

/* ─── FOOTER DISCLAIMER ────────────────────────────────── */
.footer-disclaimer {
  padding: 20px 0;
  margin-bottom: 16px;
  text-align: center;
  font-size: 12px;
  line-height: 1.8;
  color: var(--neutral-300);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* ─── AUTH PAGES ───────────────────────────────────────── */
.auth-page {
  padding: 120px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.auth-box {
  width: 100%;
  max-width: 440px;
  background: var(--surface-0);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 48px 40px;
  border: 1px solid var(--neutral-50);
}
.auth-box h2 {
  text-align: center;
  margin-bottom: 8px;
}
.auth-box .auth-subtitle {
  text-align: center;
  color: var(--neutral-500);
  font-size: 15px;
  margin-bottom: 32px;
}
.auth-box .auth-footer {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--neutral-500);
}
.auth-box .auth-footer a { color: var(--primary-500); font-weight: 600; }
.auth-box .auth-footer a:hover { text-decoration: underline; }
.auth-error {
  background: var(--error-50);
  border: 1px solid var(--error-100);
  color: var(--error-700);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-bottom: 20px;
  display: none;
}
.auth-error.visible { display: block; }

/* ─── DASHBOARD ────────────────────────────────────────── */
.dash-header {
  padding: 120px 0 40px;
}
.dash-header h1 { margin-bottom: 8px; }
.dash-header p { color: var(--neutral-500); font-size: 16px; }
.dash-section { padding: 0 0 60px; }
.dash-section h3 { margin-bottom: 20px; }
.dash-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--surface-0);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--neutral-50);
}
.dash-table th {
  background: var(--surface-2);
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  color: var(--neutral-600);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.dash-table td {
  padding: 14px 16px;
  font-size: 14px;
  color: var(--neutral-700);
  border-bottom: 1px solid var(--neutral-50);
}
.dash-table tr:last-child td { border-bottom: none; }
.dash-table tr:hover td { background: var(--primary-50); }
.dash-empty {
  text-align: center;
  padding: 48px;
  background: var(--surface-0);
  border-radius: var(--radius-lg);
  border: 1px solid var(--neutral-50);
  color: var(--neutral-400);
}
.dash-empty p { margin-bottom: 16px; }
.plan-badge {
  display: inline-flex;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
}
.plan-badge.express { background: var(--neutral-50); color: var(--neutral-600); }
.plan-badge.premium { background: var(--primary-50); color: var(--primary-700); border: 1px solid var(--primary-100); }

/* ─── TOAST ────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 3000;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s;
}
.toast.visible { transform: translateY(0); opacity: 1; }
.toast-success { background: var(--success-500); color: #fff; }
.toast-error { background: var(--error-500); color: #fff; }

/* ─── LEGAL PAGES ──────────────────────────────────────── */
.legal-page { padding: 120px 0 80px; }
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--surface-0);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--neutral-50);
}
.legal-content h1 {
  font-size: 32px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--primary-100);
}
.legal-content h2 {
  font-size: 22px;
  margin: 32px 0 12px;
  color: var(--neutral-800);
}
.legal-content h3 {
  font-size: 18px;
  margin: 24px 0 8px;
  color: var(--neutral-700);
}
.legal-content p, .legal-content li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--neutral-600);
  margin-bottom: 12px;
}
.legal-content ul { padding-left: 20px; }
.legal-content li { margin-bottom: 6px; list-style: disc; }
.legal-content a { color: var(--primary-500); }
.legal-content a:hover { text-decoration: underline; }
.legal-content .legal-info {
  background: var(--primary-50);
  border: 1px solid var(--primary-100);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 20px 0;
}
.legal-content .legal-info strong { color: var(--neutral-800); }

/* ─── CHECKBOX RGPD ────────────────────────────────────── */
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}
.checkbox-group input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 2px;
  accent-color: var(--primary-400);
  flex-shrink: 0;
}
.checkbox-group label {
  font-size: 13px;
  color: var(--neutral-600);
  line-height: 1.5;
}
.checkbox-group a { color: var(--primary-500); }

@media (max-width: 768px) {
  .auth-box { padding: 32px 20px; margin: 0 16px; }
  .legal-content { padding: 32px 20px; margin: 0 16px; }
  .dash-table-wrapper { overflow-x: auto; }
}
