/* ===========================
   Casino Ohne LUGAS – dbq325.de
   Clean Convert Design v1.0
   =========================== */

:root {
  --bg: #FFFFFF;
  --bg-alt: #F8F9FA;
  --border: #E5E7EB;
  --text: #111827;
  --text-muted: #6B7280;
  --accent: #16A34A;
  --accent2: #DC2626;
  --gold: #D97706;
  --shadow: 0 1px 3px rgba(0,0,0,.10);
  --radius: 8px;
  --font: 'Inter', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 16px; }

/* ========================
   HEADER / NAV
   ======================== */
.site-header {
  background: #0f172a;
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.site-logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: #f1f5f9;
  text-decoration: none;
}
.site-logo span { color: #16A34A; }
.nav-links { display: flex; gap: 24px; list-style: none; }
.nav-links a { color: #94a3b8; font-size: 0.9rem; font-weight: 500; }
.nav-links a:hover { color: #f1f5f9; text-decoration: none; }
.nav-cta-btn {
  background: linear-gradient(135deg, #16A34A, #15803d);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.85rem;
}

/* Mobile nav */
.mobile-nav { display: none; }
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #f1f5f9;
  margin: 5px 0;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .mobile-nav {
    position: fixed;
    top: 52px;
    left: 0;
    right: 0;
    background: #0f172a;
    z-index: 99;
    padding: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .mobile-nav.open { display: flex; flex-direction: column; gap: 12px; }
  .mobile-nav a { color: #94a3b8; font-size: 1rem; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav-cta-btn { display: none; }
}

/* ========================
   HERO
   ======================== */
.hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #fff;
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(22,163,74,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(22,163,74,0.2);
  border: 1px solid rgba(22,163,74,0.4);
  color: #86efac;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  line-height: 1.25;
  color: #f1f5f9;
  margin-bottom: 16px;
  max-width: 780px;
}
.hero-desc {
  font-size: 1.05rem;
  color: #cbd5e1;
  max-width: 680px;
  margin-bottom: 28px;
  line-height: 1.7;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.hero-stars { color: #FBBF24; font-size: 1.1rem; }
.hero-trust-text { color: #94a3b8; font-size: 0.85rem; }
.hero-cta-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #16A34A, #15803d);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(22,163,74,0.4);
  animation: pulse-btn 2.5s ease-in-out infinite;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(22,163,74,0.5); text-decoration: none; }
@keyframes pulse-btn {
  0%, 100% { box-shadow: 0 4px 15px rgba(22,163,74,0.4); }
  50% { box-shadow: 0 4px 25px rgba(22,163,74,0.7); }
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(148,163,184,0.3);
  padding: 12px 20px;
  border-radius: var(--radius);
  transition: all 0.2s;
}
.btn-secondary:hover { color: #f1f5f9; border-color: rgba(241,245,249,0.3); text-decoration: none; }
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-stat { text-align: center; }
.hero-stat-num { font-size: 1.5rem; font-weight: 800; color: #f1f5f9; }
.hero-stat-label { font-size: 0.72rem; color: #64748b; text-transform: uppercase; letter-spacing: 0.05em; }

/* Hero author block */
.hero-author-block {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-author-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.3);
}
.hero-author-info { display: flex; flex-direction: column; gap: 2px; }
.hero-author-name a { color: #f1f5f9; text-decoration: none; font-weight: 600; font-size: 0.9rem; }
.hero-author-name a:hover { text-decoration: underline; }
.hero-author-role { font-size: 0.72rem; color: #94a3b8; }
.hero-pub-date { font-size: 0.72rem; color: #64748b; }

/* ========================
   SHOWCASE / VITRINA
   ======================== */
.showcase-section {
  background: var(--bg);
  padding: 48px 0;
}
.showcase-section .section-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}
.showcase-section .section-subtitle { color: var(--text-muted); margin-bottom: 32px; font-size: 0.95rem; }

.casino-cards { display: flex; flex-direction: column; gap: 12px; }

.casino-card {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.casino-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); transform: translateY(-1px); }
.casino-card.rank-1 {
  border-color: #16A34A;
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  box-shadow: 0 2px 12px rgba(22,163,74,0.15);
}
.casino-card.rank-1::before {
  content: '🏆 Beste Wahl';
  position: absolute;
  top: 8px; right: 12px;
  background: linear-gradient(135deg, #D97706, #B45309);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.casino-rank {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: #475569;
  flex-shrink: 0;
}
.casino-card.rank-1 .casino-rank {
  background: linear-gradient(135deg, #16A34A, #15803d);
  color: #fff;
}
.casino-info { min-width: 0; }
.casino-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.casino-highlight { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 6px; }
.casino-meta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.casino-bonus {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(22,163,74,0.08);
  padding: 2px 8px;
  border-radius: 4px;
}
.casino-license { font-size: 0.72rem; color: #94a3b8; }
.casino-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #D97706;
}
.casino-rating-stars { color: #FBBF24; font-size: 0.75rem; }
.casino-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.casino-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #16A34A, #15803d);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
}
.casino-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(22,163,74,0.4); text-decoration: none; }
.casino-card.rank-1 .casino-btn { animation: pulse-btn 2.5s ease-in-out infinite; }
.casino-trust-mini { font-size: 0.7rem; color: #94a3b8; }

@media (max-width: 600px) {
  .casino-card {
    grid-template-columns: 36px 1fr;
    grid-template-rows: auto auto;
  }
  .casino-cta {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }
  .casino-card.rank-1::before { font-size: 0.62rem; top: 6px; right: 8px; }
}

/* ========================
   CONTENT SECTIONS
   ======================== */
.content-section {
  padding: 48px 0;
}
.content-section-alt { background: var(--bg-alt); }
.content-section-dark {
  background: #0f172a;
  color: #f1f5f9;
}
.content-section-dark h2 { color: #f1f5f9; }
.content-section-dark p { color: #cbd5e1; }

.content-section h2 {
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.3;
}
.content-section p {
  color: var(--text);
  margin-bottom: 16px;
  font-size: 0.97rem;
  line-height: 1.75;
}
.content-section p:last-child { margin-bottom: 0; }

/* H2 banners */
.h2-banner-wrap {
  display: block;
  width: calc(100% + 32px);
  margin-left: -16px;
  overflow: hidden;
  line-height: 0;
  margin-bottom: 28px;
  border-radius: 0;
}
@media (min-width: 769px) {
  .h2-banner-wrap { width: 100%; margin-left: 0; border-radius: var(--radius); }
}
.h2-banner-img {
  display: block;
  width: 100%;
  aspect-ratio: 3/1;
  object-fit: cover;
}
@media (max-width: 767px) {
  .h2-banner-img { aspect-ratio: 1/1; object-position: center top; }
}
.h2-banner-wrap figcaption {
  font-size: 11px;
  color: #6b7280;
  text-align: right;
  padding: 4px 8px 0;
  font-style: italic;
  line-height: 1.4;
}

/* Comparison table */
.comparison-table-wrap { overflow-x: auto; margin: 28px 0; }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.comparison-table caption {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 8px;
  text-align: left;
  padding: 0 0 8px;
}
.comparison-table th {
  background: #0f172a;
  color: #f1f5f9;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
  white-space: nowrap;
}
.comparison-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.comparison-table tr:nth-child(odd) td { background: #f8fafc; }
.comparison-table tr:nth-child(even) td { background: var(--bg); }
.comparison-table tr:hover td { background: #f0fdf4; }

/* Internal links */
.internal-links-section {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 32px 0;
}
.internal-links-section h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #15803d;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.internal-links-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  list-style: none;
}
.internal-links-list a {
  display: inline-block;
  background: #fff;
  border: 1px solid #86efac;
  color: #16A34A;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.15s;
}
.internal-links-list a:hover { background: #16A34A; color: #fff; text-decoration: none; }

/* ========================
   EEAT / AUTHOR
   ======================== */
.eeat-section {
  background: #0f172a;
  padding: 56px 0;
  color: #f1f5f9;
}
.eeat-section h2 { color: #f1f5f9; font-size: 1.5rem; margin-bottom: 8px; }
.eeat-section p { color: #94a3b8; font-size: 0.9rem; margin-bottom: 24px; }
.eeat-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.eeat-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 10px 16px;
  font-size: 0.82rem;
  color: #cbd5e1;
}
.eeat-badge-icon { font-size: 1.2rem; }

.author-card {
  display: flex;
  gap: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 28px;
  align-items: flex-start;
}
.author-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(22,163,74,0.5);
  flex-shrink: 0;
}
.author-details { flex: 1; min-width: 0; }
.author-name { font-size: 1.2rem; font-weight: 700; color: #f1f5f9; margin-bottom: 4px; }
.author-title { font-size: 0.82rem; color: #22c55e; font-weight: 600; margin-bottom: 12px; }
.author-bio { font-size: 0.88rem; color: #94a3b8; line-height: 1.65; margin-bottom: 16px; }
.author-expertise { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.expertise-tag {
  background: rgba(22,163,74,0.15);
  border: 1px solid rgba(22,163,74,0.3);
  color: #86efac;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 4px;
}
.author-social { display: flex; gap: 12px; }
.author-social a {
  color: #64748b;
  font-size: 0.82rem;
  transition: color 0.2s;
}
.author-social a:hover { color: #22c55e; text-decoration: none; }

@media (max-width: 600px) {
  .author-card { flex-direction: column; align-items: center; text-align: center; }
  .author-expertise { justify-content: center; }
  .author-social { justify-content: center; }
}

/* ========================
   REVIEWED BY
   ======================== */
.reviewed-by-section {
  background: #f0fdf4;
  padding: 48px 0;
}
.reviewed-by-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.reviewed-by-section > .container > p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 28px; }
.reviewed-by-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .reviewed-by-cards { grid-template-columns: 1fr; }
}
.reviewer-card {
  border: 1px solid #16A34A;
  border-radius: var(--radius);
  padding: 1.25rem;
  background: #fff;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.reviewer-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #86efac;
  flex-shrink: 0;
}
.reviewer-info { flex: 1; }
.reviewer-name { font-size: 0.92rem; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.reviewer-title { font-size: 0.75rem; color: #16A34A; font-weight: 600; margin-bottom: 8px; }
.reviewer-bio { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }
.review-stars { color: #FBBF24; font-size: 0.8rem; margin-top: 8px; }

/* ========================
   FAQ
   ======================== */
.faq-section {
  padding: 56px 0;
  background: var(--bg);
}
.faq-section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.faq-section > .container > p { color: var(--text-muted); margin-bottom: 32px; font-size: 0.92rem; }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 20px;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: var(--font);
  transition: background 0.15s;
}
.faq-question:hover { background: var(--bg-alt); }
.faq-question.active { background: #f0fdf4; color: #16A34A; }
.faq-icon {
  font-size: 1.2rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.2s;
  color: #94a3b8;
}
.faq-question.active .faq-icon { transform: rotate(45deg); color: #16A34A; }
.faq-answer {
  display: none;
  padding: 0 20px 16px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid #f0fdf4;
}
.faq-answer.open { display: block; }

/* ========================
   FOOTER
   ======================== */
.site-footer {
  background: #0f172a;
  color: #64748b;
  padding: 40px 0 24px;
  font-size: 0.82rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}
.footer-brand { }
.footer-logo { font-size: 1.1rem; font-weight: 700; color: #f1f5f9; margin-bottom: 10px; }
.footer-logo span { color: #16A34A; }
.footer-desc { color: #64748b; line-height: 1.6; font-size: 0.82rem; margin-bottom: 12px; }
.footer-disclaimer {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 12px;
  font-size: 0.75rem;
  color: #475569;
  line-height: 1.6;
}
.footer-disclaimer strong { color: #DC2626; }
.footer-links-col h4 { color: #94a3b8; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.footer-links-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links-col a { color: #64748b; font-size: 0.82rem; transition: color 0.15s; }
.footer-links-col a:hover { color: #94a3b8; text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copyright { color: #475569; font-size: 0.78rem; }
.footer-age { color: #DC2626; font-weight: 700; font-size: 0.85rem; }

/* ========================
   STICKY CTA (mobile)
   ======================== */
.sticky-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  border-top: 1px solid rgba(22,163,74,0.4);
  padding: 12px 16px;
  z-index: 200;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
.sticky-cta-bar.visible { display: flex; }
@media (min-width: 769px) { .sticky-cta-bar { display: none !important; } }
.sticky-cta-text { font-size: 0.82rem; color: #94a3b8; line-height: 1.3; }
.sticky-cta-text strong { color: #f1f5f9; display: block; font-size: 0.88rem; }
.sticky-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #16A34A, #15803d);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 18px;
  border-radius: var(--radius);
  white-space: nowrap;
  text-decoration: none;
  animation: pulse-btn 2.5s ease-in-out infinite;
}
.sticky-cta-btn:hover { text-decoration: none; }

/* ========================
   POPUP
   ======================== */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 300;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.popup-overlay.open { display: flex; }
.popup-box {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  max-width: 480px;
  width: 100%;
  position: relative;
  text-align: center;
}
.popup-close {
  position: absolute;
  top: 12px; right: 16px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #94a3b8;
  cursor: pointer;
}
.popup-badge {
  display: inline-block;
  background: linear-gradient(135deg, #D97706, #B45309);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.popup-title { font-size: 1.3rem; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.popup-desc { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 20px; line-height: 1.6; }
.popup-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #16A34A, #15803d);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  animation: pulse-btn 2.5s ease-in-out infinite;
  width: 100%;
  justify-content: center;
  margin-bottom: 10px;
}
.popup-trust { font-size: 0.75rem; color: #94a3b8; }

/* ========================
   UTILITY
   ======================== */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #16A34A;
  background: rgba(22,163,74,0.08);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.text-center { text-align: center; }
.mt-8 { margin-top: 32px; }
