/* ============================================================
   tageslichtlampen-check.de – Design System
   Thema: Sonnenaufgang · Amber + Midnight Navy + Sky Blue
   ============================================================ */

:root {
  --primary:        #1C2B4A;
  --primary-dark:   #0F1E38;
  --primary-mid:    #243356;
  --accent:         #D97706;
  --accent-hover:   #B45309;
  --accent-light:   #FEF3C7;
  --accent-muted:   #FDE68A;
  --sky:            #0284C7;
  --sky-light:      #E0F2FE;
  --warm-bg:        #FFFDF8;
  --white:          #ffffff;
  --gray-50:        #F8FAFC;
  --gray-100:       #F1F5F9;
  --gray-200:       #E2E8F0;
  --gray-400:       #94A3B8;
  --gray-500:       #64748B;
  --gray-600:       #475569;
  --gray-800:       #1E293B;
  --text:           #1E293B;
  --muted:          #64748B;
  --success:        #059669;
  --danger:         #DC2626;
  --radius:         12px;
  --radius-sm:      8px;
  --radius-lg:      20px;
  --shadow:         0 2px 16px rgba(28,43,74,.08);
  --shadow-md:      0 4px 24px rgba(28,43,74,.12);
  --shadow-lg:      0 8px 48px rgba(28,43,74,.16);
  --transition:     .2s ease;
}

/* ── Reset & Base ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--warm-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-hover); }
ul { list-style: none; }

/* ── Typography ───────────────────────────────── */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.2; color: var(--text); }
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
.lead { font-size: 1.15rem; line-height: 1.75; color: var(--muted); }

/* ── Layout ───────────────────────────────────── */
.container        { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.container--narrow{ max-width: 800px; margin: 0 auto; padding: 0 1.5rem; }
.container--wide  { max-width: 1380px; margin: 0 auto; padding: 0 1.5rem; }

.section      { padding: 5rem 0; }
.section--sm  { padding: 3rem 0; }
.section--lg  { padding: 7rem 0; }
.section--dark { background: var(--primary); color: var(--white); }
.section--dark h1,
.section--dark h2,
.section--dark h3 { color: var(--white); }
.section--dark .lead { color: rgba(255,255,255,.75); }
.section--warm { background: var(--accent-light); }
.section--sky  { background: var(--sky-light); }
.section--gray { background: var(--gray-50); }
.section--white{ background: var(--white); }

/* ── Grid ─────────────────────────────────────── */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

/* ── Buttons ──────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600; font-size: .95rem;
  cursor: pointer; border: 2px solid transparent;
  transition: all var(--transition); white-space: nowrap;
  text-decoration: none;
}
.btn-primary  { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-primary:hover {
  background: var(--accent-hover); border-color: var(--accent-hover);
  color: var(--white); transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(217,119,6,.35);
}
.btn-outline  { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn-outline:hover { background: var(--accent); color: var(--white); }
.btn-white    { background: var(--white); color: var(--primary); border-color: var(--white); }
.btn-white:hover { background: var(--gray-100); color: var(--primary); }
.btn-ghost    { background: rgba(255,255,255,.12); color: var(--white); border-color: rgba(255,255,255,.3); }
.btn-ghost:hover { background: rgba(255,255,255,.22); color: var(--white); }
.btn-amazon   {
  background: #F59E0B; color: var(--primary-dark); border-color: #F59E0B;
  font-weight: 700;
}
.btn-amazon:hover {
  background: #D97706; border-color: #D97706; color: var(--white);
  transform: translateY(-1px); box-shadow: 0 4px 14px rgba(217,119,6,.4);
}
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn-sm { padding: .5rem 1rem; font-size: .85rem; }
.btn-block { width: 100%; justify-content: center; }

/* ── Badges ───────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .25rem .75rem; border-radius: 99px;
  font-size: .78rem; font-weight: 700; letter-spacing: .02em;
}
.badge-amber  { background: var(--accent-light); color: var(--accent-hover); }
.badge-sky    { background: var(--sky-light); color: var(--sky); }
.badge-navy   { background: var(--primary); color: var(--white); }
.badge-gray   { background: var(--gray-100); color: var(--gray-600); }
.badge-success{ background: #D1FAE5; color: #065F46; }
.badge-top    {
  background: linear-gradient(90deg, #D97706, #F59E0B);
  color: var(--white);
}

/* ── Cards ────────────────────────────────────── */
.card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 1.75rem;
  border: 1px solid var(--gray-200);
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card--warm  { border-top: 3px solid var(--accent); }
.card--sky   { border-top: 3px solid var(--sky); }
.card--flat  { box-shadow: none; border: 1px solid var(--gray-200); }

/* ── Header / Navigation ──────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--primary-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 64px; gap: 1.5rem;
}
.site-logo {
  display: flex; align-items: center; gap: .6rem;
  font-size: 1.05rem; font-weight: 800;
  color: var(--white); white-space: nowrap; flex-shrink: 0;
}
.site-logo:hover { color: var(--accent-muted); }
.logo-icon {
  width: 30px; height: 30px;
  background: var(--accent);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { width: 17px; height: 17px; stroke-width: 2; color: var(--white); }

/* Nav */
.site-nav { display: flex; align-items: center; gap: .2rem; list-style: none; }
.site-nav > li { position: relative; }
.site-nav > li > a {
  display: flex; align-items: center; gap: .3rem;
  padding: .5rem .85rem;
  color: rgba(255,255,255,.82); font-size: .9rem; font-weight: 500;
  border-radius: var(--radius-sm); transition: all var(--transition);
}
.site-nav > li > a:hover,
.site-nav > li > a.active { color: var(--white); background: rgba(255,255,255,.1); }
.nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  padding: .45rem 1.1rem !important;
}
.nav-cta:hover { background: var(--accent-hover) !important; color: var(--white) !important; }
.dropdown-arrow { opacity: .7; display: inline-flex; align-items: center; }
.dropdown-arrow svg { width: 14px; height: 14px; stroke-width: 2.5; }

/* Dropdown mit Submenu-Verzögerung */
.has-dropdown { position: relative; }
.dropdown-menu {
  visibility: hidden; opacity: 0; pointer-events: none;
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: .5rem; min-width: 230px;
  z-index: 100; border: 1px solid var(--gray-200);
  transition: opacity .15s ease, visibility .15s ease;
  transition-delay: .3s;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  visibility: visible; opacity: 1; pointer-events: auto;
  transition-delay: 0s;
}
.dropdown-menu::before {
  content: ''; position: absolute; top: -10px; left: 0; right: 0; height: 10px;
}
.dropdown-menu li a {
  display: block; padding: .55rem 1rem;
  color: var(--text); font-size: .875rem;
  border-radius: var(--radius-sm); transition: all var(--transition);
}
.dropdown-menu li a:hover { background: var(--accent-light); color: var(--accent-hover); }

/* Mobile menu toggle */
.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .5rem;
}
.menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: all var(--transition);
}

/* Mobile nav */
@media (max-width: 900px) {
  .menu-toggle { display: flex; }
  nav {
    display: none; position: absolute; top: 64px; left: 0; right: 0;
    background: var(--primary); border-top: 1px solid rgba(255,255,255,.1);
    padding: 1rem 1.5rem 1.5rem;
  }
  nav.open { display: block; }
  .site-nav { flex-direction: column; align-items: flex-start; gap: 0; }
  .site-nav > li { width: 100%; }
  .site-nav > li > a { padding: .75rem 0; border-radius: 0; width: 100%; }
  .site-nav > li + li { border-top: 1px solid rgba(255,255,255,.08); }
  .dropdown-menu {
    position: static; visibility: visible; opacity: 1; pointer-events: auto;
    box-shadow: none; border: none; padding: 0 0 0 1rem;
    background: transparent; min-width: 0;
    transition: none;
  }
  .dropdown-menu li a { color: rgba(255,255,255,.7); padding: .5rem 0; }
  .dropdown-menu li a:hover { background: transparent; color: var(--accent-muted); }
  .has-dropdown { position: static; }
  .nav-cta {
    margin-top: .75rem;
    display: inline-flex !important;
    width: auto !important;
  }
}

/* ── Breadcrumb ───────────────────────────────── */
.breadcrumb-bar { background: var(--gray-50); border-bottom: 1px solid var(--gray-200); padding: .6rem 0; }
.breadcrumb { display: flex; align-items: center; gap: .35rem; list-style: none; flex-wrap: wrap; }
.breadcrumb li { display: flex; align-items: center; gap: .35rem; font-size: .8rem; color: var(--muted); }
.breadcrumb li a { color: var(--muted); }
.breadcrumb li a:hover { color: var(--accent); }
.breadcrumb-sep svg { width: 12px; height: 12px; stroke-width: 2; }

/* ── Hero ─────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-mid) 100%);
  padding: 5.5rem 0 4.5rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 30%, rgba(217,119,6,.22) 0%, transparent 65%),
              radial-gradient(ellipse at 20% 80%, rgba(2,132,199,.12) 0%, transparent 50%);
  pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.hero__tag {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(217,119,6,.18); color: var(--accent-muted);
  border: 1px solid rgba(217,119,6,.35);
  padding: .35rem .9rem; border-radius: 99px;
  font-size: .78rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase; margin-bottom: 1.25rem;
}
.hero__tag svg { width: 13px; height: 13px; }
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 em { color: var(--accent-muted); font-style: normal; }
.hero .lead { color: rgba(255,255,255,.78); margin-bottom: 2rem; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__visual {
  position: relative;
}
.hero__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  border: 1px solid rgba(255,255,255,.1);
}
.hero__img-wrap img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.hero__badge {
  position: absolute; bottom: -1rem; left: -1rem;
  background: var(--white); border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: .75rem;
  border: 1px solid var(--gray-200);
}
.hero__badge-icon {
  width: 40px; height: 40px; border-radius: 8px;
  background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.hero__badge-icon svg { width: 20px; height: 20px; }
.hero__badge-text strong { display: block; font-size: .95rem; color: var(--text); }
.hero__badge-text span  { font-size: .78rem; color: var(--muted); }

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 3.5rem 0;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 90% 50%, rgba(217,119,6,.18) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: .75rem; font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
.page-hero .lead { color: rgba(255,255,255,.78); max-width: 680px; }

/* ── Lux Scale ────────────────────────────────── */
.lux-scale {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2.5rem; box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}
.lux-scale__title { font-size: .8rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1.5rem; }
.lux-track {
  height: 14px; border-radius: 99px;
  background: linear-gradient(90deg, #1C2B4A 0%, #1e3a7a 15%, #0284C7 40%, #FCD34D 70%, #F59E0B 85%, #FBBF24 100%);
  position: relative; margin-bottom: 1.5rem;
}
.lux-items { display: grid; grid-template-columns: repeat(5, 1fr); gap: .5rem; }
.lux-item { text-align: center; }
.lux-item__dot {
  width: 8px; height: 8px; border-radius: 50%;
  margin: 0 auto .4rem; border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--gray-400);
}
.lux-item__val { font-size: .7rem; font-weight: 700; color: var(--primary); }
.lux-item__label { font-size: .65rem; color: var(--muted); margin-top: .2rem; }

/* ── Category Cards ───────────────────────────── */
.cat-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem; border: 1px solid var(--gray-200);
  box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: all var(--transition);
  text-decoration: none;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent-muted); color: var(--text); }
.cat-card__icon {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  background: var(--accent-light); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; flex-shrink: 0;
}
.cat-card__icon svg { width: 26px; height: 26px; stroke-width: 1.75; }
.cat-card--sky .cat-card__icon { background: var(--sky-light); color: var(--sky); }
.cat-card--navy .cat-card__icon { background: rgba(28,43,74,.1); color: var(--primary); }
.cat-card h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.cat-card p  { font-size: .9rem; color: var(--muted); flex: 1; }
.cat-card__link { display: inline-flex; align-items: center; gap: .3rem; font-size: .85rem; font-weight: 600; color: var(--accent); margin-top: 1rem; }
.cat-card__link svg { width: 14px; height: 14px; }

/* ── Product Cards ────────────────────────────── */
.product-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200); box-shadow: var(--shadow);
  overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.product-card--top { border: 2px solid var(--accent); }
.product-card__img {
  position: relative; background: var(--gray-50);
  aspect-ratio: 4/3; overflow: hidden;
}
.product-card__img img { width: 100%; height: 100%; object-fit: cover; }
.product-card__badge {
  position: absolute; top: .75rem; left: .75rem;
}
.product-card__body { padding: 1.5rem; flex: 1; }
.product-cat {
  font-size: .75rem; font-weight: 700;
  color: var(--accent); text-transform: uppercase;
  letter-spacing: .07em; margin-bottom: .5rem;
}
.product-card__title { font-size: 1.1rem; margin-bottom: .75rem; line-height: 1.35; }
.product-specs {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1rem;
}
.product-specs span {
  display: inline-flex; align-items: center; gap: .3rem;
  background: var(--gray-50); border: 1px solid var(--gray-200);
  padding: .25rem .65rem; border-radius: 99px;
  font-size: .78rem; color: var(--muted); font-weight: 500;
}
.product-specs span svg { width: 12px; height: 12px; stroke-width: 2; }
.product-desc { font-size: .88rem; color: var(--muted); margin-bottom: 1rem; }
.product-pros { list-style: none; margin-bottom: .75rem; }
.product-pros li {
  display: flex; align-items: flex-start; gap: .45rem;
  font-size: .85rem; color: var(--text); padding: .2rem 0;
}
.product-pros li svg { width: 14px; height: 14px; stroke-width: 2.5; color: var(--success); flex-shrink: 0; margin-top: .15rem; }
.product-card__footer { padding: 1.25rem 1.5rem; border-top: 1px solid var(--gray-100); background: var(--gray-50); }

/* ── Comparison Table ─────────────────────────── */
.table-wrap { overflow-x: auto; }
.compare-table {
  width: 100%; min-width: 700px;
  border-collapse: collapse; font-size: .88rem;
}
.compare-table th {
  background: var(--primary); color: var(--white);
  padding: .85rem 1rem; text-align: left;
  font-weight: 600; font-size: .82rem; white-space: nowrap;
}
.compare-table th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.compare-table th:last-child  { border-radius: 0 var(--radius-sm) 0 0; }
.compare-table td { padding: .85rem 1rem; border-bottom: 1px solid var(--gray-200); vertical-align: middle; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: var(--gray-50); }
.compare-table tr:hover td { background: var(--accent-light); }
.compare-table .top-row td { background: #FFFBEB !important; font-weight: 600; }
.compare-table .top-row td:first-child { border-left: 3px solid var(--accent); }
.icon-yes { color: var(--success); }
.icon-yes svg, .icon-no svg, .icon-part svg { width: 16px; height: 16px; stroke-width: 2.5; }
.icon-no  { color: var(--danger); }
.icon-part{ color: #D97706; }

/* ── Info Box ─────────────────────────────────── */
.info-box {
  display: flex; gap: 1rem; padding: 1.25rem 1.5rem;
  border-radius: var(--radius-sm); border: 1px solid;
}
.info-box--amber { background: var(--accent-light); border-color: var(--accent-muted); }
.info-box--sky   { background: var(--sky-light); border-color: #BAE6FD; }
.info-box__icon { flex-shrink: 0; }
.info-box__icon svg { width: 20px; height: 20px; stroke-width: 1.75; }
.info-box--amber .info-box__icon svg { color: var(--accent); }
.info-box--sky   .info-box__icon svg { color: var(--sky); }
.info-box__text p { font-size: .9rem; }

/* ── Feature List ─────────────────────────────── */
.feature-list { list-style: none; }
.feature-list li {
  display: flex; align-items: flex-start; gap: .75rem;
  padding: .75rem 0; border-bottom: 1px solid var(--gray-100);
  font-size: .95rem;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list__icon {
  width: 32px; height: 32px; border-radius: 7px;
  background: var(--accent-light); color: var(--accent);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.feature-list__icon svg { width: 16px; height: 16px; stroke-width: 2; }

/* ── Pros / Cons ──────────────────────────────── */
.pro-con { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.pro-con__title {
  font-size: .78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; margin-bottom: .75rem;
  display: flex; align-items: center; gap: .4rem;
}
.pro-con__title svg { width: 14px; height: 14px; }
.pro-con__pros .pro-con__title { color: var(--success); }
.pro-con__cons .pro-con__title { color: var(--danger); }
.pro-list, .con-list { list-style: none; }
.pro-list li, .con-list li {
  padding: .4rem 0 .4rem 1.4rem; position: relative;
  font-size: .88rem; border-bottom: 1px solid var(--gray-100);
}
.pro-list li:last-child, .con-list li:last-child { border-bottom: none; }
.pro-list li::before { content: '✓'; position: absolute; left: 0; color: var(--success); font-weight: 700; }
.con-list li::before { content: '✗'; position: absolute; left: 0; color: var(--danger); font-weight: 700; }

/* ── FAQ ──────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item { background: var(--white); border-radius: var(--radius-sm); border: 1px solid var(--gray-200); overflow: hidden; }
.faq-question {
  width: 100%; text-align: left; background: none; border: none;
  cursor: pointer; padding: 1.1rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-weight: 600; font-size: .95rem; color: var(--text);
  transition: background var(--transition);
}
.faq-question:hover { background: var(--gray-50); }
.faq-question.open  { background: var(--accent-light); color: var(--accent-hover); }
.faq-icon { flex-shrink: 0; transition: transform var(--transition); }
.faq-icon svg { width: 18px; height: 18px; stroke-width: 2; }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 1.25rem 1.1rem; font-size: .9rem; color: var(--muted); line-height: 1.7; }
.faq-answer.open { display: block; }

/* ── CTA Section ──────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  padding: 4rem 0; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(217,119,6,.2) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section h2 { color: var(--white); }
.cta-section p  { color: rgba(255,255,255,.78); }
.cta-section__inner { position: relative; z-index: 1; text-align: center; }

/* ── Article ──────────────────────────────────── */
.article-body h2 { margin: 2.25rem 0 1rem; }
.article-body h3 { margin: 1.75rem 0 .75rem; font-size: 1.25rem; }
.article-body h4 { margin: 1.25rem 0 .5rem; }
.article-body p  { margin-bottom: 1.1rem; font-size: .97rem; line-height: 1.75; }
.article-body ul, .article-body ol { margin: 0 0 1.1rem 1.5rem; }
.article-body ul li, .article-body ol li { margin-bottom: .4rem; font-size: .95rem; }
.article-body img { border-radius: var(--radius); box-shadow: var(--shadow-md); margin: 1.5rem 0; }

/* ── TOC ──────────────────────────────────────── */
.toc {
  background: var(--accent-light); border-radius: var(--radius);
  padding: 1.5rem; border: 1px solid var(--accent-muted);
  margin-bottom: 2rem;
}
.toc h4 { font-size: .85rem; color: var(--accent-hover); text-transform: uppercase; letter-spacing: .07em; margin-bottom: .75rem; }
.toc ol { margin: 0; padding-left: 1.25rem; }
.toc ol li { margin-bottom: .3rem; }
.toc ol li a { font-size: .88rem; color: var(--accent-hover); font-weight: 500; }
.toc ol li a:hover { color: var(--primary); }

/* ── Section Header ───────────────────────────── */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 3rem; }
.section-header h2 { margin-bottom: .75rem; }
.section-header p  { color: var(--muted); font-size: 1.05rem; }

/* ── Step Cards ───────────────────────────────── */
.step-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.step-card { text-align: center; padding: 2rem 1.5rem; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--accent); color: var(--white);
  font-size: 1.35rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.step-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.step-card p  { font-size: .88rem; color: var(--muted); }

/* ── Footer ───────────────────────────────────── */
.site-footer { background: var(--primary-dark); color: rgba(255,255,255,.7); padding: 3.5rem 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem; margin-bottom: 2.5rem;
}
.footer-about .footer-logo {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: 1rem; font-weight: 800; color: var(--white); margin-bottom: .85rem;
}
.footer-about p { font-size: .82rem; line-height: 1.65; }
.footer-nav h4 { color: rgba(255,255,255,.45); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .85rem; }
.footer-nav ul { list-style: none; }
.footer-nav ul li + li { margin-top: .4rem; }
.footer-nav ul li a { font-size: .85rem; color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-nav ul li a:hover { color: var(--accent-muted); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.4); }
.footer-legal { display: flex; gap: 1.25rem; }
.footer-legal a { font-size: .78rem; color: rgba(255,255,255,.4); transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,.7); }
.footer-affiliate {
  background: rgba(0,0,0,.2); padding: .9rem 0; margin-top: 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-affiliate p { font-size: .75rem; color: rgba(255,255,255,.35); text-align: center; }

/* ── Misc ─────────────────────────────────────── */
.text-center { text-align: center; }
.text-muted  { color: var(--muted); }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.gap-cta { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* ── Responsive ───────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .pro-con { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .lux-items { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .grid-4, .step-cards { grid-template-columns: 1fr; }
  .lux-items { grid-template-columns: repeat(3, 1fr); }
  .hero { padding: 3.5rem 0 3rem; }
}
