/* ============================================
   MoneyCryptoSchool - Alternative Investments
   Design: Banking Premium / Sans-Serif Modern
   ============================================ */

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

/* ---- CSS Variables ---- */
:root {
  --navy: #1A2B4A;
  --navy-light: #243860;
  --navy-dark: #0F1B30;
  --gold: #C9A84C;
  --gold-light: #E8C96B;
  --gold-dark: #A07830;
  --white: #FFFFFF;
  --off-white: #F8F9FC;
  --light-gray: #F0F2F7;
  --mid-gray: #E2E6EF;
  --text-dark: #1A2B4A;
  --text-mid: #4A5568;
  --text-light: #718096;
  --success: #27AE60;
  --danger: #E53E3E;
  --shadow-sm: 0 2px 8px rgba(26,43,74,0.08);
  --shadow-md: 0 4px 20px rgba(26,43,74,0.12);
  --shadow-lg: 0 8px 40px rgba(26,43,74,0.16);
  --shadow-gold: 0 4px 20px rgba(201,168,76,0.3);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition: 0.25s ease;
  --max-width: 1200px;
  --header-h: 72px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', 'DM Sans', -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 80px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { color: var(--text-mid); line-height: 1.75; }
.lead { font-size: 1.1rem; color: var(--text-mid); }

/* ---- Layout ---- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 120px 0; }

/* ---- Header ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(26, 43, 74, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-main { font-size: 13px; font-weight: 800; color: var(--white); letter-spacing: 0.02em; text-transform: uppercase; }
.logo-sub { font-size: 9px; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; margin-top: 2px; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > a, .main-nav > .nav-dropdown > a {
  color: rgba(255,255,255,0.85);
  font-size: 13px; font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.01em;
  display: flex; align-items: center; gap: 4px;
}
.main-nav > a:hover, .main-nav > .nav-dropdown > a:hover { color: var(--gold); background: rgba(201,168,76,0.1); }

.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border: 1px solid var(--mid-gray);
  border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  padding: 8px; min-width: 240px;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px); transition: var(--transition);
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-header { font-size: 10px; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.1em; padding: 6px 14px 4px; }
.dropdown-menu a {
  display: flex; align-items: center; gap: 10px;
  color: var(--text-dark) !important; padding: 10px 14px !important;
  border-radius: var(--radius-sm); font-size: 13px !important; font-weight: 500 !important;
}
.dropdown-menu a:hover { background: var(--light-gray) !important; color: var(--navy) !important; }
.dropdown-menu .stone-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.dropdown-menu .dd-return { margin-left: auto; font-size: 11px; font-weight: 700; color: var(--success); background: rgba(39,174,96,0.1); padding: 2px 8px; border-radius: 100px; }
.dropdown-menu .dd-all { border-top: 1px solid var(--mid-gray); margin-top: 4px; padding-top: 10px !important; font-size: 12px !important; color: var(--gold-dark) !important; font-weight: 600 !important; }
.dropdown-menu .dd-special { background: rgba(231,76,60,0.05); color: #c0392b !important; }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: var(--navy) !important; font-weight: 700 !important;
  padding: 10px 20px !important; border-radius: var(--radius-sm) !important;
  font-size: 13px !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-gold) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 15px; transition: var(--transition);
  white-space: nowrap; letter-spacing: 0.02em;
}
.btn-primary { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--navy); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-secondary { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.4); }
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { border: 2px solid var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-white { border: 2px solid rgba(255,255,255,0.5); color: var(--white); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: white; }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--navy); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-lg { padding: 18px 36px; font-size: 17px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* ---- Hero ---- */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding-top: var(--header-h); }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,27,48,0.93) 0%, rgba(26,43,74,0.87) 50%, rgba(26,43,74,0.72) 100%); }
.hero-content { position: relative; z-index: 1; max-width: var(--max-width); margin: 0 auto; padding: 80px 20px; width: 100%; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold); padding: 8px 16px; border-radius: 100px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 24px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero p { color: rgba(255,255,255,0.8); font-size: 1.15rem; max-width: 640px; margin-bottom: 36px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 64px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.1); }
.hero-stat { text-align: center; }
.hero-stat .stat-value { display: block; font-size: 2.2rem; font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.hero-stat .stat-label { font-size: 12px; color: rgba(255,255,255,0.6); letter-spacing: 0.05em; text-transform: uppercase; }

/* ---- Section Headers ---- */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .eyebrow { display: inline-block; color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 12px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--text-light); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }
.divider-gold { width: 48px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 2px; margin: 16px auto 0; }
.eyebrow { color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; display: block; margin-bottom: 8px; }

/* ---- CATEGORIES GRID (Homepage) ---- */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.category-card {
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.cat-card-header {
  padding: 28px 24px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.cat-card-icon { font-size: 36px; line-height: 1; }
.cat-card-return { background: rgba(255,255,255,0.2); color: white; padding: 6px 14px; border-radius: 100px; font-size: 13px; font-weight: 800; letter-spacing: 0.02em; }
.cat-card-body { padding: 20px 24px 24px; flex: 1; display: flex; flex-direction: column; }
.cat-card-name { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.cat-card-tagline { font-size: 13px; color: var(--text-light); margin-bottom: 20px; flex: 1; }
.cat-card-meta { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; padding-top: 16px; border-top: 1px solid var(--mid-gray); }
.cat-meta-row { display: flex; justify-content: space-between; font-size: 12px; }
.cm-label { color: var(--text-light); }
.cm-value { font-weight: 600; color: var(--navy); }
.cat-card-cta { display: flex; align-items: center; justify-content: space-between; font-size: 13px; font-weight: 700; color: var(--gold-dark); }

/* ---- POSITIONING STRIP ---- */
.positioning-strip { background: var(--off-white); border-top: 1px solid var(--mid-gray); border-bottom: 1px solid var(--mid-gray); padding: 64px 0; }
.positioning-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.pos-text .eyebrow { margin-bottom: 12px; }
.pos-text h2 { margin-bottom: 16px; }
.pos-text p { margin-bottom: 0; }
.pos-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pos-pillar { background: var(--white); border: 1px solid var(--mid-gray); border-radius: var(--radius-md); padding: 20px; text-align: center; transition: var(--transition); }
.pos-pillar:hover { border-color: var(--gold); }
.pp-icon { font-size: 28px; margin-bottom: 8px; }
.pp-title { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.pp-text { font-size: 12px; color: var(--text-light); }

/* ---- QUICK LINKS GRID ---- */
.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
}
.quick-link {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px;
  background: var(--off-white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.quick-link:hover { border-color: var(--gold); background: white; transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.ql-icon { font-size: 24px; line-height: 1; flex-shrink: 0; }
.ql-info { flex: 1; }
.ql-name { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.ql-return { font-size: 12px; color: var(--text-light); }
.ql-arrow { color: var(--gold); font-size: 18px; font-weight: 700; }

/* ---- STONE CARDS ---- */
.stones-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.stone-card { background: var(--white); border: 1px solid var(--mid-gray); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); box-shadow: var(--shadow-sm); }
.stone-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.stone-card-img { height: 200px; overflow: hidden; position: relative; }
.stone-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.stone-card:hover .stone-card-img img { transform: scale(1.05); }
.stone-badge { position: absolute; top: 12px; right: 12px; background: rgba(26,43,74,0.9); color: var(--gold); padding: 4px 12px; border-radius: 100px; font-size: 11px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.stone-card-body { padding: 24px; }
.stone-card-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 12px; }
.stone-name { font-size: 1.25rem; font-weight: 700; color: var(--navy); }
.stone-return { background: rgba(39,174,96,0.1); color: var(--success); padding: 4px 10px; border-radius: var(--radius-sm); font-size: 12px; font-weight: 700; white-space: nowrap; }
.stone-tagline { color: var(--text-light); font-size: 13px; margin-bottom: 16px; }
.stone-meta { display: flex; gap: 16px; margin-bottom: 16px; }
.stone-meta-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-light); }
.stone-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--mid-gray); }
.stone-price { font-size: 13px; color: var(--text-light); }
.stone-price strong { color: var(--navy); font-weight: 700; }

/* ---- SIMULATOR ---- */
.simulator-section { background: linear-gradient(135deg, var(--navy), var(--navy-light)); color: var(--white); }
.simulator-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(201,168,76,0.3); border-radius: var(--radius-lg); padding: 40px; }
.sim-controls { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; margin-bottom: 32px; }
.sim-field label { display: block; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.7); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px; }
.sim-field input[type="range"] { width: 100%; accent-color: var(--gold); height: 6px; border-radius: 3px; }
.sim-field select, .sim-field input[type="number"] { width: 100%; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: var(--white); padding: 12px 16px; border-radius: var(--radius-sm); font-size: 14px; font-family: 'Inter', sans-serif; }
.sim-field select option, .sim-field select optgroup { background: var(--navy); }
.sim-value-display { text-align: center; font-size: 1.8rem; font-weight: 800; color: var(--gold); margin-top: 8px; }
.sim-results { background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3); border-radius: var(--radius-md); padding: 28px; display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 20px; text-align: center; margin-bottom: 28px; }
.sim-result-label { font-size: 11px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.sim-result-value { font-size: 1.6rem; font-weight: 800; color: var(--gold); }
.sim-result-value.positive { color: #6EE7B7; }
.sim-result-value.small { font-size: 1.1rem; }
.sim-cta-row { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.sim-cta-row .btn { align-self: center; }
.sim-disclaimer { font-size: 11px; color: rgba(255,255,255,0.35); text-align: center; max-width: 500px; }

/* ---- WHY SECTION ---- */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-visual { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; }
.why-visual img { width: 100%; height: 100%; object-fit: cover; }
.why-visual-badge { position: absolute; bottom: 24px; left: 24px; right: 24px; background: rgba(26,43,74,0.95); border: 1px solid rgba(201,168,76,0.3); border-radius: var(--radius-md); padding: 16px 20px; display: flex; align-items: center; gap: 16px; }
.why-visual-badge .badge-icon { font-size: 28px; }
.why-visual-badge .badge-text strong { display: block; color: var(--white); font-size: 15px; font-weight: 700; }
.why-visual-badge .badge-text span { color: var(--gold); font-size: 12px; }
.why-list { display: flex; flex-direction: column; gap: 24px; }
.why-item { display: flex; gap: 20px; align-items: flex-start; }
.why-icon { width: 48px; height: 48px; background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05)); border: 1px solid rgba(201,168,76,0.3); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-item-title { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.why-item-text { font-size: 13px; color: var(--text-light); }

/* ---- TRUST BAR ---- */
.trust-bar { background: var(--navy); padding: 20px 0; }
.trust-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.8); font-size: 13px; font-weight: 500; }

/* ---- STATS ---- */
.stats-section { background: var(--navy); padding: 60px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.stat-number { font-size: 3rem; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.6); letter-spacing: 0.05em; }

/* ---- HIGHLIGHTS ---- */
.highlights-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.highlight-card { background: var(--off-white); border: 1px solid var(--mid-gray); border-radius: var(--radius-md); padding: 28px; text-align: center; transition: var(--transition); }
.highlight-card:hover { border-color: var(--gold); background: white; transform: translateY(-3px); }
.highlight-icon { font-size: 32px; margin-bottom: 14px; }
.highlight-title { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.highlight-text { font-size: 13px; color: var(--text-light); }
.highlights-list { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.highlight-item { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--text-mid); }

/* ---- CTA SECTION ---- */
.cta-section { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); text-align: center; padding: 100px 0; }
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.7); margin-bottom: 36px; font-size: 1.1rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- BREADCRUMB ---- */
.breadcrumb-bar { background: var(--off-white); border-bottom: 1px solid var(--mid-gray); padding: 12px 0; margin-top: var(--header-h); }
.breadcrumb-bar nav { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-size: 12px; }
.breadcrumb-bar a { color: var(--text-light); transition: var(--transition); }
.breadcrumb-bar a:hover { color: var(--gold-dark); }
.breadcrumb-bar span { color: var(--mid-gray); }
.breadcrumb-bar nav > span:last-child { color: var(--navy); font-weight: 600; }

/* ---- CATEGORY HUB (page-categorie.php) ---- */
.cat-hero { min-height: 60vh; display: flex; align-items: center; position: relative; overflow: hidden; margin-top: var(--header-h); }
.cat-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.cat-hero-overlay { position: absolute; inset: 0; z-index: 1; }
.cat-hero-content { position: relative; z-index: 2; padding: 80px 20px; max-width: var(--max-width); margin: 0 auto; }
.cat-hero-content h1 { color: white; margin-bottom: 16px; }
.cat-hero-content p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 32px; max-width: 640px; }
.cat-hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); color: white; padding: 8px 16px; border-radius: 100px; font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 24px; }
.cat-hero-meta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.cat-meta-pill { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); color: white; padding: 8px 16px; border-radius: 100px; font-size: 13px; font-weight: 500; }
.cat-hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.cat-layout { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.cat-main {}
.cat-sidebar {}
.cat-intro { margin-bottom: 48px; }
.cat-intro h2 { margin-bottom: 16px; }
.cat-intro .lead { margin-bottom: 24px; }

/* Category Simulator */
.cat-simulator { background: linear-gradient(135deg, var(--navy), var(--navy-light)); border-radius: var(--radius-lg); overflow: hidden; }
.simulator-header { padding: 32px 36px 0; }
.sim-body { padding: 28px 36px; }
.sim-controls-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.sim-controls-2 .sim-field label { color: rgba(255,255,255,0.7); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; display: block; }
.sim-controls-2 .sim-field input { width: 100%; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: white; padding: 12px 16px; border-radius: var(--radius-sm); font-size: 14px; font-family: 'Inter', sans-serif; }
.sim-controls-2 .sim-field input[type="range"] { background: none; border: none; padding: 0; margin-top: 8px; accent-color: var(--gold); }
.sim-scenario-btns { display: flex; gap: 8px; margin-bottom: 28px; flex-wrap: wrap; }
.sim-scenario-btn { padding: 10px 18px; border-radius: 100px; border: 1px solid rgba(255,255,255,0.25); background: transparent; color: rgba(255,255,255,0.65); font-size: 12px; font-weight: 600; cursor: pointer; transition: var(--transition); }
.sim-scenario-btn.active, .sim-scenario-btn:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.sim-visual { margin-bottom: 24px; display: flex; flex-direction: column; gap: 16px; }
.sim-bar-container { display: grid; grid-template-columns: 80px 1fr 120px; align-items: center; gap: 12px; }
.sim-bar-label { font-size: 11px; color: rgba(255,255,255,0.6); text-align: right; font-weight: 600; }
.sim-bar-wrap { background: rgba(255,255,255,0.1); border-radius: 100px; height: 24px; overflow: hidden; }
.sim-bar { height: 100%; border-radius: 100px; transition: width 0.8s cubic-bezier(0.4,0,0.2,1); }
.sim-bar-invest { background: rgba(255,255,255,0.3); }
.sim-bar-total { background: linear-gradient(90deg, #6EE7B7, #34D399); }
.sim-bar-profit { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.sim-bar-value { font-size: 13px; font-weight: 700; color: white; }
.sim-bar-value.positive { color: #6EE7B7; }
.sim-bar-value.gold { color: var(--gold); }
.sim-numbers-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 20px; background: rgba(201,168,76,0.08); border-radius: var(--radius-md); border: 1px solid rgba(201,168,76,0.2); margin-bottom: 8px; }
.sim-num { text-align: center; }
.sim-num-label { font-size: 10px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.sim-num-val { font-size: 1.3rem; font-weight: 800; color: white; }
.sim-num-val.positive { color: #6EE7B7; }
.sim-num-val.gold { color: var(--gold); }
.sim-cta-center { padding: 24px 36px 32px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; border-top: 1px solid rgba(255,255,255,0.08); }

/* Generic products grid */
.generic-products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.generic-product-card { background: var(--off-white); border: 1px solid var(--mid-gray); border-radius: var(--radius-md); padding: 24px; text-align: center; transition: var(--transition); }
.generic-product-card:hover { border-color: var(--gold); }
.gp-icon { font-size: 32px; margin-bottom: 10px; }
.gp-name { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.gp-return { font-size: 13px; font-weight: 600; color: var(--success); background: rgba(39,174,96,0.1); display: inline-block; padding: 3px 12px; border-radius: 100px; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--white); border: 1px solid var(--mid-gray); border-radius: var(--radius-md); overflow: hidden; transition: border-color var(--transition); }
.faq-item:hover { border-color: rgba(201,168,76,0.4); }
.faq-question { width: 100%; text-align: left; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; font-size: 15px; font-weight: 600; color: var(--navy); background: none; cursor: pointer; transition: var(--transition); gap: 16px; }
.faq-question:hover { background: var(--off-white); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer.open { max-height: 600px; }
.faq-answer > div { padding: 0 24px 20px; padding-top: 4px; border-top: 1px solid var(--light-gray); margin-top: 0; font-size: 14px; color: var(--text-mid); line-height: 1.8; }

/* Sidebar */
.sidebar-card { background: var(--off-white); border: 1px solid var(--mid-gray); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 20px; }
.sidebar-card h4 { margin-bottom: 16px; font-size: 14px; font-weight: 700; }
.sidebar-stats { display: flex; flex-direction: column; gap: 0; }
.sidebar-stat { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--mid-gray); font-size: 13px; }
.sidebar-stat:last-child { border-bottom: none; }
.ss-label { color: var(--text-light); }
.ss-value { font-weight: 700; color: var(--navy); text-align: right; }
.ss-value.gold { color: var(--gold-dark); }
.sidebar-cta-card { background: linear-gradient(135deg, var(--gold), var(--gold-light)); border-radius: var(--radius-lg); padding: 28px; margin-bottom: 20px; text-align: center; }
.sidebar-cta-icon { font-size: 36px; margin-bottom: 12px; }
.sidebar-cta-card h4 { color: var(--navy); margin-bottom: 10px; }
.sidebar-cta-card p { font-size: 13px; color: rgba(26,43,74,0.8); margin-bottom: 16px; }
.other-cats { display: flex; flex-direction: column; gap: 8px; }
.other-cat-link { display: flex; align-items: center; gap: 12px; padding: 12px; background: white; border: 1px solid var(--mid-gray); border-radius: var(--radius-sm); transition: var(--transition); }
.other-cat-link:hover { border-color: var(--gold); }
.oc-icon { font-size: 22px; }
.oc-name { font-size: 13px; font-weight: 600; color: var(--navy); }
.oc-return { font-size: 11px; color: var(--success); font-weight: 600; }

/* Cross assets */
.cross-assets { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }
.cross-asset-card { background: white; border: 1px solid var(--mid-gray); border-radius: var(--radius-md); padding: 24px; text-align: center; transition: var(--transition); display: flex; flex-direction: column; align-items: center; gap: 8px; }
.cross-asset-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.ca-icon { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 4px; }
.ca-name { font-size: 14px; font-weight: 700; color: var(--navy); }
.ca-return { font-size: 12px; font-weight: 700; color: var(--success); }
.ca-min { font-size: 11px; color: var(--text-light); }

/* ---- WARUM KEIN BITCOIN ---- */
.compare-table-wrap { overflow-x: auto; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.compare-table-full { width: 100%; border-collapse: collapse; font-size: 14px; }
.compare-table-full th { background: var(--navy); color: white; padding: 16px 20px; text-align: left; font-weight: 700; font-size: 13px; }
.compare-table-full th.col-btc { background: #F7931A; color: white; }
.compare-table-full th.col-alt { background: var(--gold-dark); color: white; }
.compare-table-full td { padding: 14px 20px; border-bottom: 1px solid var(--mid-gray); font-size: 13px; color: var(--text-mid); background: white; vertical-align: middle; }
.compare-table-full tr:last-child td { border-bottom: none; }
.compare-table-full td.good { color: var(--success); font-weight: 500; }
.compare-table-full td.bad { color: var(--danger); font-weight: 500; }
.compare-table-full td.neutral { color: #E67E22; font-weight: 500; }
.compare-table-full td.good i, .compare-table-full td.bad i { margin-right: 4px; display: inline-block; vertical-align: middle; }

/* Arguments grid */
.arguments-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 24px; }
.argument-card { background: white; border: 1px solid var(--mid-gray); border-radius: var(--radius-lg); padding: 32px; transition: var(--transition); }
.argument-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.arg-number { font-size: 3rem; font-weight: 900; color: var(--light-gray); line-height: 1; margin-bottom: 8px; }
.arg-icon { font-size: 28px; margin-bottom: 12px; }
.argument-card h3 { font-size: 1.1rem; margin-bottom: 12px; color: var(--navy); }
.argument-card p { font-size: 13px; color: var(--text-mid); line-height: 1.75; }
.arg-quote { background: var(--off-white); border-left: 3px solid var(--gold); padding: 12px 16px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-size: 12px; font-style: italic; color: var(--text-mid); margin-top: 16px; }
.arg-stat { display: flex; align-items: center; gap: 12px; margin-top: 16px; flex-wrap: wrap; }
.as-label { font-size: 12px; color: var(--text-light); }
.as-value { font-size: 1.2rem; font-weight: 800; }
.as-value.bad { color: var(--danger); }
.as-value.good { color: var(--success); }
.tax-comparison { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.tc-item { padding: 10px 16px; border-radius: var(--radius-sm); font-size: 13px; font-weight: 600; }
.tc-item.bad { background: rgba(229,57,53,0.1); color: var(--danger); }
.tc-item.good { background: rgba(39,174,96,0.1); color: var(--success); }

/* Alternatives grid */
.alts-grid { display: flex; flex-direction: column; gap: 12px; }
.alt-card { display: flex; align-items: center; gap: 20px; padding: 20px 24px; background: white; border: 1px solid var(--mid-gray); border-radius: var(--radius-md); transition: var(--transition); }
.alt-card:hover { border-color: var(--gold); transform: translateX(4px); box-shadow: var(--shadow-sm); }
.alt-icon { width: 56px; height: 56px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 26px; flex-shrink: 0; }
.alt-body { flex: 1; }
.alt-name { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.alt-tagline { font-size: 12px; color: var(--text-light); margin-bottom: 6px; }
.alt-meta { display: flex; gap: 16px; }
.alt-meta span { font-size: 12px; font-weight: 600; color: var(--success); background: rgba(39,174,96,0.1); padding: 2px 10px; border-radius: 100px; }

/* ---- INVESTIEREN.PHP ---- */
.inv-row { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 60px 0; border-bottom: 1px solid var(--mid-gray); }
.inv-row:last-child { border-bottom: none; }
.inv-row-reverse { direction: rtl; }
.inv-row-reverse > * { direction: ltr; }
.inv-row-image { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; }
.inv-row-image img { width: 100%; height: 100%; object-fit: cover; }
.inv-row-badge { position: absolute; bottom: 20px; left: 20px; display: flex; align-items: center; gap: 10px; color: white; padding: 10px 20px; border-radius: 100px; font-size: 14px; font-weight: 800; }
.inv-row-badge span:first-child { font-size: 20px; }
.inv-row-eyebrow { font-size: 11px; font-weight: 700; color: var(--gold-dark); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 12px; }
.inv-row-content h3 { font-size: 1.6rem; margin-bottom: 16px; }
.inv-row-content p { margin-bottom: 20px; }
.inv-highlights { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.inv-highlights li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text-mid); }
.inv-row-meta { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 24px; padding: 20px; background: var(--off-white); border-radius: var(--radius-md); }
.irm-item { }
.irm-label { font-size: 10px; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; display: block; }
.irm-val { font-size: 14px; font-weight: 700; color: var(--navy); }
.irm-val.gold { color: var(--gold-dark); }

/* ---- MARKET WIDGET ---- */
.market-widget-section { padding: 60px 0; background: var(--off-white); border-bottom: 1px solid var(--mid-gray); }
.market-widget { background: var(--white); border: 1px solid var(--mid-gray); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); margin-bottom: 32px; }
.market-widget-header { background: var(--navy); padding: 16px 28px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.market-live-badge { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 800; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; }
.live-dot { width: 8px; height: 8px; background: #6EE7B7; border-radius: 50%; flex-shrink: 0; animation: live-pulse 1.5s infinite; display: inline-block; }
@keyframes live-pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(110,231,183,0.6); } 50% { box-shadow: 0 0 0 5px rgba(110,231,183,0); } }
.market-source { font-size: 11px; color: rgba(255,255,255,0.5); font-style: italic; }
.market-data-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.market-data-card { padding: 24px 20px; text-align: center; border-right: 1px solid var(--mid-gray); border-bottom: 1px solid var(--mid-gray); transition: var(--transition); position: relative; }
.market-data-card:nth-child(4n) { border-right: none; }
.market-data-card:hover { background: var(--off-white); }
.mdc-label { font-size: 10px; font-weight: 700; color: var(--text-light); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px; }
.mdc-value { font-size: 1.4rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; line-height: 1.1; }
.mdc-value.gold { color: var(--gold-dark); }
.mdc-value.success { color: var(--success); }
.mdc-sub { font-size: 10px; color: var(--text-light); }
.market-widget-footer { background: var(--off-white); border-top: 1px solid var(--mid-gray); padding: 12px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.market-refresh-btn { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; color: var(--navy); background: var(--white); border: 1px solid var(--mid-gray); padding: 6px 14px; border-radius: var(--radius-sm); cursor: pointer; transition: var(--transition); }
.market-refresh-btn:hover { border-color: var(--gold); color: var(--gold-dark); }
.gold-comparison { background: var(--white); border: 1px solid var(--mid-gray); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); }
.gold-comparison h3 { margin-bottom: 28px; font-size: 1.1rem; }
.comp-bar-item { margin-bottom: 20px; }
.comp-bar-label { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.comp-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.comp-bar-track { background: var(--light-gray); border-radius: 100px; height: 28px; overflow: hidden; }
.comp-bar-fill { height: 100%; border-radius: 100px; display: flex; align-items: center; justify-content: flex-end; padding-right: 12px; font-size: 12px; font-weight: 700; color: var(--white); min-width: 60px; transition: width 1.2s cubic-bezier(0.4,0,0.2,1); }
.gia-info-box { background: linear-gradient(135deg, rgba(26,43,74,0.04), rgba(201,168,76,0.05)); border: 1px solid rgba(201,168,76,0.3); border-left: 4px solid var(--gold); border-radius: var(--radius-md); padding: 24px; display: flex; gap: 20px; align-items: flex-start; margin-top: 32px; }
.gia-content h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.gia-content p { font-size: 13px; color: var(--text-mid); margin-bottom: 12px; }
.gia-link { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--gold-dark); border-bottom: 1px solid rgba(201,168,76,0.3); transition: var(--transition); }
.gia-link:hover { color: var(--navy); }

/* ---- STONE HERO (page-stein.php) ---- */
.stone-hero { padding-top: calc(var(--header-h) + 80px); padding-bottom: 80px; position: relative; overflow: hidden; }
.stone-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.stone-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,20,40,0.93) 0%, rgba(26,43,74,0.88) 100%); }
.stone-hero-content { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 400px; gap: 60px; align-items: start; max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.stone-hero h1 { color: var(--white); margin-bottom: 16px; }
.stone-hero .lead { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 32px; }
.stone-quick-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 32px; }
.quick-fact { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-md); padding: 14px 16px; }
.quick-fact-label { font-size: 10px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.quick-fact-value { font-size: 14px; font-weight: 600; color: var(--white); }
.quick-fact-value.gold { color: var(--gold); }
.investment-box { background: rgba(255,255,255,0.97); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-lg); }
.investment-box h3 { color: var(--navy); margin-bottom: 8px; }
.investment-box .subtitle { color: var(--text-light); font-size: 13px; margin-bottom: 24px; }

/* ---- COMPARISON TABLE ---- */
.comparison-table-wrap { overflow-x: auto; }
.comparison-table { width: 100%; border-collapse: separate; border-spacing: 0; font-size: 14px; }
.comparison-table th { background: var(--navy); color: var(--white); padding: 20px 16px; text-align: left; font-weight: 700; font-size: 13px; }
.comparison-table th.highlight-col { background: var(--gold-dark); }
.comparison-table td { padding: 16px; border-bottom: 1px solid var(--mid-gray); color: var(--text-mid); vertical-align: middle; }
.comparison-table td.highlight-col { background: rgba(201,168,76,0.06); font-weight: 600; color: var(--navy); }
.comparison-table tr:hover td { background: var(--off-white); }
.check-yes { color: var(--success); }
.check-no { color: var(--danger); }

/* ---- FOOTER ---- */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.7); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { font-size: 13px; margin-top: 16px; line-height: 1.7; max-width: 280px; }
.footer-badges { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.footer-badge { display: flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6); padding: 5px 12px; border-radius: 100px; font-size: 11px; font-weight: 600; }
.footer-col h4 { color: var(--white); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.3); transition: var(--transition); }
.footer-legal a:hover { color: var(--gold); }

/* ---- STICKY CTA ---- */
.sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; background: linear-gradient(135deg, var(--navy), var(--navy-light)); border-top: 2px solid var(--gold); padding: 14px 20px; z-index: 500; transform: translateY(0); transition: transform 0.3s ease; }
.sticky-cta.hidden { transform: translateY(100%); }
.sticky-cta-inner { max-width: var(--max-width); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.sticky-cta-text { display: flex; align-items: center; gap: 12px; }
.sticky-cta-text .pulsing-dot { width: 10px; height: 10px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; flex-shrink: 0; }
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.4); opacity: 0.7; } }
.sticky-cta-text p { color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 500; margin: 0; }
.sticky-cta-text p strong { color: var(--gold); }
.sticky-cta-btns { display: flex; gap: 12px; align-items: center; }
.sticky-close { color: rgba(255,255,255,0.4); font-size: 22px; line-height: 1; padding: 4px; cursor: pointer; transition: color var(--transition); }
.sticky-close:hover { color: rgba(255,255,255,0.8); }

/* ---- EXIT POPUP ---- */
.exit-overlay { position: fixed; inset: 0; background: rgba(10,20,40,0.85); z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; backdrop-filter: blur(4px); }
.exit-overlay.active { opacity: 1; visibility: visible; }
.exit-popup { background: var(--white); border-radius: var(--radius-xl); max-width: 520px; width: 100%; padding: 48px 40px; position: relative; text-align: center; transform: scale(0.9); transition: transform 0.3s ease; overflow: hidden; }
.exit-overlay.active .exit-popup { transform: scale(1); }
.exit-popup-bg-stripe { position: absolute; top: 0; left: 0; right: 0; height: 6px; background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold)); }
.exit-close { position: absolute; top: 16px; right: 20px; font-size: 22px; color: var(--text-light); cursor: pointer; transition: color var(--transition); line-height: 1; }
.exit-close:hover { color: var(--navy); }
.exit-emoji { font-size: 52px; margin-bottom: 16px; }
.exit-popup h2 { font-size: 1.7rem; margin-bottom: 12px; }
.exit-popup p { color: var(--text-light); margin-bottom: 24px; font-size: 14px; }
.exit-offer { background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3); border-radius: var(--radius-md); padding: 16px; margin-bottom: 24px; font-size: 13px; color: var(--navy); font-weight: 500; }
.exit-offer strong { color: var(--gold-dark); }
.exit-popup .btn { width: 100%; }
.exit-skip { font-size: 12px; color: var(--text-light); cursor: pointer; text-decoration: underline; background: none; border: none; transition: color var(--transition); margin-top: 10px; display: block; }
.exit-skip:hover { color: var(--navy); }

/* ---- SCROLL REVEAL ---- */
.reveal-on-scroll { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-on-scroll.revealed { opacity: 1; transform: translateY(0); }
.reveal-on-scroll.delay-1 { transition-delay: 0.1s; }
.reveal-on-scroll.delay-2 { transition-delay: 0.2s; }
.reveal-on-scroll.delay-3 { transition-delay: 0.3s; }
.reveal-on-scroll.delay-4 { transition-delay: 0.4s; }

/* ---- BLOG ---- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
.blog-card { background: var(--white); border: 1px solid var(--mid-gray); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-img { height: 180px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 24px; }
.blog-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; font-size: 11px; color: var(--text-light); }
.blog-category { background: rgba(201,168,76,0.15); color: var(--gold-dark); padding: 3px 10px; border-radius: 100px; font-weight: 600; }
.blog-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.blog-card p { font-size: 13px; color: var(--text-light); }
.blog-read-more { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 13px; font-weight: 600; color: var(--navy); transition: var(--transition); }
.blog-read-more:hover { color: var(--gold-dark); }

/* ---- PAGE HERO ---- */
.page-hero { margin-top: var(--header-h); }

/* ---- UTILITY ---- */
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; } .mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; }
.bg-offwhite { background: var(--off-white); }
.bg-navy { background: var(--navy); }
.fw-700 { font-weight: 700; }
.positive { color: var(--success) !important; }
.gold { color: var(--gold) !important; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .stone-hero-content { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .positioning-inner { grid-template-columns: 1fr; }
  .market-data-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-layout { grid-template-columns: 1fr; }
  .inv-row { grid-template-columns: 1fr; gap: 32px; }
  .inv-row-reverse { direction: ltr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .main-nav.open { display: flex; flex-direction: column; position: fixed; top: var(--header-h); left: 0; right: 0; background: var(--navy); padding: 20px; gap: 4px; border-top: 1px solid rgba(201,168,76,0.2); z-index: 999; max-height: calc(100vh - var(--header-h)); overflow-y: auto; }
  .main-nav.open > a, .main-nav.open > .nav-dropdown > a { padding: 12px 16px; border-radius: var(--radius-sm); }
  .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); }
  .dropdown-menu a { color: rgba(255,255,255,0.8) !important; }
  .nav-toggle { display: flex; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stones-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stone-quick-facts { grid-template-columns: 1fr 1fr; }
  .sim-controls { grid-template-columns: 1fr; }
  .sim-results { grid-template-columns: repeat(2, 1fr); }
  .cta-btns { flex-direction: column; align-items: center; }
  .exit-popup { padding: 36px 24px; }
  .sticky-cta-inner { flex-direction: column; gap: 12px; text-align: center; }
  .hero-ctas { flex-direction: column; }
  .compare-table-full { font-size: 12px; }
  .compare-table-full th, .compare-table-full td { padding: 10px 12px; }
  .blog-grid { grid-template-columns: 1fr; }
  .market-data-grid { grid-template-columns: repeat(2, 1fr); }
  .arguments-grid { grid-template-columns: 1fr; }
  .sim-controls-2 { grid-template-columns: 1fr; }
  .sim-bar-container { grid-template-columns: 60px 1fr 100px; }
  .sim-numbers-row { grid-template-columns: 1fr; gap: 8px; }
  .cat-hero-meta { gap: 8px; }
  .cat-meta-pill { font-size: 12px; padding: 6px 12px; }
  .pos-pillars { grid-template-columns: 1fr 1fr; }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
  .section { padding: 56px 0; }
  .inv-row-meta { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .stone-quick-facts { grid-template-columns: 1fr; }
  .sim-results { grid-template-columns: 1fr; }
  .market-data-grid { grid-template-columns: 1fr 1fr; }
  .pos-pillars { grid-template-columns: 1fr; }
  .quick-links-grid { grid-template-columns: 1fr; }
  .exit-popup { padding: 28px 20px; }
  .arguments-grid { grid-template-columns: 1fr; }
}