/* ============================================
   LWC PROPERTY GROUP - LIGHT MODE PREMIUM
   ============================================ */

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

/* CSS VARIABLES */
:root {
  --gold: #C9A84C;
  --gold-light: #E8D08A;
  --gold-dark: #A67C2A;
  --navy: #1A1A2E;
  --navy-mid: #2D2D4E;
  --navy-light: #4A4A7A;
  --white: #FFFFFF;
  --off-white: #FAF9F6;
  --cream: #F5F0E8;
  --light-gray: #F0EDE8;
  --mid-gray: #E8E4DC;
  --text-dark: #1A1A2E;
  --text-mid: #3D3D5C;
  --text-light: #7A7A9A;
  --border: #E0D9CC;
  --shadow-sm: 0 2px 8px rgba(26,26,46,0.08);
  --shadow-md: 0 8px 32px rgba(26,26,46,0.12);
  --shadow-lg: 0 24px 64px rgba(26,26,46,0.16);
  --shadow-gold: 0 8px 32px rgba(201,168,76,0.25);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --transition: 0.25s 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: var(--font-body);
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-dark); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold); }

/* TYPOGRAPHY */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.25;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
p { color: var(--text-mid); font-size: 1rem; }

/* GOLD LINE ACCENT */
.gold-line {
  display: inline-block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin-bottom: 1rem;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.4);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: rgba(201,168,76,0.05);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-mid);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* NAVIGATION */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-text strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}
.nav-logo-text span {
  font-size: 0.7rem;
  color: var(--gold-dark);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  padding: 0.5rem 0.9rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--navy);
  background: var(--cream);
}
.nav-links .nav-cta a {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  padding: 0.55rem 1.25rem;
}
.nav-links .nav-cta a:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
  color: var(--white);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

/* DROPDOWN */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 0.3rem; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  min-width: 200px;
  display: none;
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--text-mid);
}
.dropdown-menu a:hover { background: var(--cream); color: var(--navy); }

/* HAMBURGER */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--transition);
}

/* HERO */
.hero {
  min-height: 100vh;
  padding: 120px 2rem 80px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--off-white) 0%, var(--cream) 50%, #EDE8DF 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,26,46,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.08));
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-badge::before { content: '◆'; font-size: 0.6rem; }
.hero h1 { margin-bottom: 1.25rem; }
.hero h1 span { color: var(--gold-dark); font-style: italic; }
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-mid);
  margin-bottom: 2rem;
  max-width: 500px;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero-stat-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-dark);
  display: block;
}
.hero-stat-label { font-size: 0.8rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.05em; }
.hero-visual { position: relative; }
.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img-wrap img { width: 100%; height: 480px; object-fit: cover; }
.hero-img-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--border);
}
.hero-live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 3px rgba(16,185,129,0.2);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 3px rgba(16,185,129,0.2); } 50% { box-shadow: 0 0 0 6px rgba(16,185,129,0.1); } }
.hero-live-text { font-size: 0.8rem; font-weight: 600; color: var(--navy); }
.hero-live-text span { display: block; font-size: 0.7rem; font-weight: 400; color: var(--text-light); }
.hero-price-list { margin-left: auto; text-align: right; }
.hero-price-list span { display: block; font-size: 0.75rem; font-weight: 600; color: var(--navy); }
.hero-price-list strong { font-size: 0.8rem; color: var(--gold-dark); }

/* SECTIONS */
.section { padding: 80px 2rem; }
.section-alt { background: var(--off-white); }
.section-cream { background: var(--cream); }
.section-navy { background: var(--navy); }
.container { max-width: 1280px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .gold-line { display: block; margin: 0 auto 1rem; }
.section-header p { font-size: 1.1rem; color: var(--text-light); max-width: 580px; margin: 0.75rem auto 0; }

/* TICKER */
.ticker-bar {
  background: var(--navy);
  padding: 0.75rem 0;
  overflow: hidden;
  position: relative;
}
.ticker-inner {
  display: flex;
  gap: 3rem;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}
.ticker-item .ticker-gem { color: var(--gold); font-weight: 700; }
.ticker-item .ticker-price { color: var(--white); }
.ticker-item .ticker-up { color: #10B981; }
.ticker-item .ticker-down { color: #EF4444; }

/* GEM CARDS */
.gems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.gem-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: inherit;
}
.gem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: var(--transition);
}
.gem-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-light);
  color: inherit;
}
.gem-card:hover::before { transform: scaleX(1); }
.gem-card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  border: 1px solid var(--border);
}
.gem-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; color: var(--navy); }
.gem-card p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 1.25rem; line-height: 1.6; }
.gem-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--mid-gray);
}
.gem-card-price { font-size: 0.82rem; color: var(--text-light); }
.gem-card-price strong { display: block; font-size: 1.05rem; font-weight: 700; color: var(--navy); font-family: var(--font-display); }
.gem-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(16,185,129,0.1);
  color: #10B981;
  border: 1px solid rgba(16,185,129,0.2);
}

/* SIMULATEUR */
.simulator-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}
.simulator-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.simulator-subtitle { color: var(--text-light); margin-bottom: 2.5rem; }
.sim-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
.sim-inputs { display: flex; flex-direction: column; gap: 1.5rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--navy);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.range-wrap { position: relative; }
input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--mid-gray);
  outline: none;
  padding: 0;
  border: none;
  background-image: linear-gradient(var(--gold), var(--gold));
  background-size: 50% 100%;
  background-repeat: no-repeat;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--gold);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.range-labels { display: flex; justify-content: space-between; font-size: 0.78rem; color: var(--text-light); margin-top: 0.25rem; }
.sim-result {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
}
.sim-result-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.6; margin-bottom: 0.5rem; }
.sim-result-value {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.sim-result-sub { font-size: 0.9rem; opacity: 0.7; margin-bottom: 2rem; }
.sim-breakdown { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.sim-breakdown-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sim-breakdown-item span { opacity: 0.7; }
.sim-breakdown-item strong { color: var(--gold-light); font-weight: 600; }

/* PRICES TABLE */
.prices-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.prices-table th {
  background: var(--navy);
  color: var(--white);
  padding: 1rem 1.5rem;
  text-align: left;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.prices-table th:first-child { width: 200px; }
.prices-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--mid-gray);
  font-size: 0.9rem;
  color: var(--text-mid);
}
.prices-table tr:last-child td { border-bottom: none; }
.prices-table tr:hover td { background: var(--off-white); }
.prices-table .gem-name {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}
.prices-table .gem-emoji { font-size: 1.2rem; }
.price-val { font-weight: 700; color: var(--navy); font-family: var(--font-display); }
.price-up { color: #10B981; font-weight: 600; }
.price-down { color: #EF4444; font-weight: 600; }
.last-update {
  text-align: right;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 0.75rem;
}

/* BLOG */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
  color: inherit;
}
.blog-card-img { height: 160px; overflow: hidden; background: var(--cream); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 1.5rem; }
.blog-card-tag {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  background: rgba(201,168,76,0.12);
  color: var(--gold-dark);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(201,168,76,0.25);
}
.blog-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--navy); line-height: 1.4; }
.blog-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }
.blog-card-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--mid-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-light);
}

/* BLOG LISTING */
.blog-listing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; }
.region-section { margin-bottom: 3rem; }
.region-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.region-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 1.3rem;
  background: var(--gold);
  border-radius: 2px;
}
.blog-list-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
}
.blog-list-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: var(--gold-light);
  color: inherit;
}
.blog-list-card h4 { font-size: 0.95rem; font-weight: 600; color: var(--navy); margin-bottom: 0.35rem; }
.blog-list-card p { font-size: 0.82rem; color: var(--text-light); }
.blog-list-card .gem-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.6rem;
}
.mini-tag {
  padding: 0.15rem 0.5rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.68rem;
  color: var(--text-light);
}

/* BREADCRUMB */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-light);
  padding: 1rem 0;
}
.breadcrumb a { color: var(--gold-dark); }
.breadcrumb span { opacity: 0.5; }

/* BLOG POST */
.blog-post-hero {
  background: linear-gradient(135deg, var(--off-white), var(--cream));
  padding: 120px 2rem 60px;
}
.blog-post-content { max-width: 780px; margin: 0 auto; }
.blog-post-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 1rem;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}
.blog-post-hero h1 { font-size: clamp(1.8rem, 4vw, 3rem); max-width: 700px; }
.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-light);
  flex-wrap: wrap;
}
.blog-post-meta .meta-item { display: flex; align-items: center; gap: 0.4rem; }
.post-body { padding: 3rem 2rem 4rem; }
.post-body .container { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; align-items: start; }
.post-content h2 { font-size: 1.6rem; margin: 2.5rem 0 1rem; }
.post-content h3 { font-size: 1.25rem; margin: 2rem 0 0.75rem; }
.post-content p { font-size: 1rem; line-height: 1.85; margin-bottom: 1.25rem; }
.post-content ul { margin: 1rem 0 1.5rem 1.5rem; }
.post-content ul li { margin-bottom: 0.5rem; color: var(--text-mid); line-height: 1.7; }
.post-content blockquote {
  border-left: 4px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--cream);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--text-mid);
}
.post-sidebar { position: sticky; top: 90px; }
.sidebar-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.sidebar-card h4 { font-size: 1rem; margin-bottom: 1rem; }
.sidebar-card ul { list-style: none; }
.sidebar-card ul li { padding: 0.5rem 0; border-bottom: 1px solid var(--mid-gray); font-size: 0.88rem; }
.sidebar-card ul li:last-child { border-bottom: none; }
.sidebar-card ul li a { color: var(--text-mid); display: flex; align-items: center; gap: 0.4rem; }
.sidebar-card ul li a:hover { color: var(--gold-dark); }

/* COMPARATIF */
.compare-table-wrap { overflow-x: auto; }
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.compare-table th {
  padding: 1.25rem 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
}
.compare-table th:first-child { text-align: left; background: var(--navy); color: var(--white); }
.compare-table .col-lwc { background: linear-gradient(135deg, var(--navy), var(--navy-mid)); color: var(--white); }
.compare-table .col-flg { background: linear-gradient(135deg, #1a3a2a, #2d5c42); color: var(--white); }
.compare-table .col-other { background: var(--light-gray); color: var(--text-mid); }
.compare-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--mid-gray);
  font-size: 0.9rem;
}
.compare-table td:first-child { font-weight: 600; color: var(--navy); background: var(--off-white); }
.compare-table td:nth-child(2) { background: rgba(201,168,76,0.05); text-align: center; font-weight: 600; color: var(--navy); }
.compare-table td:nth-child(3) { background: rgba(45,90,66,0.04); text-align: center; }
.compare-table td:nth-child(4) { text-align: center; color: var(--text-light); }
.compare-table tr:last-child td { border-bottom: none; }
.check { color: #10B981; font-size: 1.1rem; }
.cross { color: #EF4444; font-size: 1.1rem; }
.badge-winner {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.6rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
}

/* CONTACT / TALLY */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; align-items: start; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { margin-bottom: 2rem; color: var(--text-light); }
.contact-items { display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.contact-item-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-item-text strong { display: block; font-size: 0.85rem; font-weight: 700; color: var(--navy); margin-bottom: 0.2rem; }
.contact-item-text span { font-size: 0.85rem; color: var(--text-light); }
.tally-embed {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  min-height: 500px;
}

/* FAQ */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  background: var(--white);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  gap: 1rem;
}
.faq-question .faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--gold-dark);
}
.faq-item.open .faq-icon { background: var(--gold); color: var(--white); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* TRUST BAR */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 2.5rem 2rem;
  background: var(--navy);
}
.trust-item { text-align: center; }
.trust-item .trust-val {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.trust-item .trust-label { font-size: 0.78rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.25rem; }
.trust-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }

/* FOOTER */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 4rem 2rem 0;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.footer-logo strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 300px; }
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}
.footer-bottom p { color: rgba(255,255,255,0.4); }
.footer-bottom a { color: rgba(255,255,255,0.55); margin-left: 1.5rem; }
.footer-bottom a:hover { color: var(--gold); }

/* STICKY FOOTER */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 32px rgba(26,26,46,0.12);
  padding: 1rem 2rem;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.sticky-cta-text strong { display: block; font-size: 0.95rem; font-weight: 700; color: var(--navy); }
.sticky-cta-text span { font-size: 0.82rem; color: var(--text-light); }
.sticky-cta-actions { display: flex; gap: 1rem; align-items: center; }
.sticky-cta-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  font-size: 1.25rem;
  padding: 0.25rem;
  line-height: 1;
}
.sticky-cta-close:hover { color: var(--navy); }
.sticky-live {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: #10B981;
  font-weight: 600;
}
.sticky-live::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  animation: pulse 2s infinite;
}

/* EXIT POPUP */
.exit-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,26,46,0.7);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.exit-popup-overlay.show {
  opacity: 1;
  pointer-events: all;
}
.exit-popup {
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 540px;
  width: 100%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}
.exit-popup-overlay.show .exit-popup { transform: scale(1); }
.exit-popup-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 2.5rem 2.5rem 2rem;
  position: relative;
}
.exit-popup-header h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.exit-popup-header p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.exit-popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  color: var(--white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.exit-popup-close:hover { background: rgba(255,255,255,0.2); }
.exit-popup-body { padding: 2rem 2.5rem; }
.exit-popup-perks { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.exit-perk {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.exit-perk::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.6rem;
  flex-shrink: 0;
}
.exit-popup-cta { width: 100%; text-align: center; padding: 1rem; font-size: 1rem; }
.exit-popup-skip {
  display: block;
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-light);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.25rem;
  width: 100%;
}
.exit-popup-skip:hover { color: var(--navy); }

/* REVEAL ON SCROLL */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* PAGE HERO (inner pages) */
.page-hero {
  padding: 120px 2rem 60px;
  background: linear-gradient(135deg, var(--off-white), var(--cream));
  text-align: center;
}
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { font-size: 1.1rem; color: var(--text-light); max-width: 640px; margin: 0 auto; }

/* VERGLEICH / COMPARE */
.winner-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.9rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.company-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}
.company-card.featured {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  position: relative;
}
.company-card.featured::before {
  content: 'EMPFOHLEN';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  padding: 0.25rem 1rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

/* RATING STARS */
.stars { color: var(--gold); letter-spacing: 0.1em; }

/* FILTER BAR */
.filter-bar {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  align-items: center;
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.filter-search {
  margin-left: auto;
  padding: 0.5rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  transition: var(--transition);
  width: 220px;
}
.filter-search:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.1); }

/* PAGINATION */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
}
.page-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  transition: var(--transition);
  text-decoration: none;
}
.page-btn:hover, .page-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* SEARCH BAR */
.search-big {
  max-width: 560px;
  margin: 2rem auto 0;
  display: flex;
  gap: 0;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.search-big input {
  flex: 1;
  padding: 1rem 1.25rem;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--navy);
  background: transparent;
}
.search-big button {
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border: none;
  cursor: pointer;
  color: var(--white);
  font-weight: 600;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition);
}
.search-big button:hover { background: linear-gradient(135deg, var(--gold-light), var(--gold)); }

/* INFO BOX */
.info-box {
  background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(201,168,76,0.03));
  border: 1px solid rgba(201,168,76,0.25);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.info-box p { font-size: 0.9rem; color: var(--text-mid); margin: 0; }
.info-box strong { color: var(--navy); }

/* PRICE TICKER INLINE */
.price-ticker-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.8rem;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.8rem;
}
.price-ticker-inline .ptl { color: var(--text-light); }
.price-ticker-inline .ptv { font-weight: 700; color: var(--navy); }
.price-ticker-inline .pu { color: #10B981; font-weight: 600; }

/* 404 */
.page-404 { min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.page-404 h1 { font-size: 8rem; color: var(--mid-gray); line-height: 1; margin-bottom: 0; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { order: -1; }
  .gems-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .post-body .container { grid-template-columns: 1fr; }
  .post-sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .sim-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 1rem; gap: 0; box-shadow: var(--shadow-md); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; flex-direction: column; }
  .dropdown-menu { position: static; transform: none; box-shadow: none; border: none; padding-left: 1rem; display: block; }
  .gems-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .trust-divider { display: none; }
  .trust-bar { gap: 1.5rem; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .hero-stat-value { font-size: 1.4rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .sticky-cta-inner { flex-direction: column; text-align: center; }
  .compare-table { font-size: 0.82rem; }
  .compare-table th, .compare-table td { padding: 0.75rem; }
  .simulator-wrap { padding: 1.5rem; }
}
@media (max-width: 480px) {
  .section { padding: 50px 1.25rem; }
  .hero { padding: 100px 1.25rem 60px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
}