/* ============================================================
   cms-checker.de – Design System
   Farbgebung: inspiriert von ammersee-media.de (#2AA292 Teal)
   ============================================================ */

:root {
  --primary:        #0d2d3d;
  --primary-dark:   #081f2b;
  --primary-mid:    #163d50;
  --accent:         #2AA292;
  --accent-hover:   #228878;
  --accent-light:   #e6f7f4;
  --accent-muted:   #b2e0d8;
  --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;
  --danger:         #ef4444;
  --success:        #22c55e;
  --warning:        #f59e0b;
  --radius:         12px;
  --radius-sm:      8px;
  --radius-lg:      20px;
  --shadow:         0 2px 16px rgba(13,45,61,.08);
  --shadow-md:      0 4px 24px rgba(13,45,61,.12);
  --shadow-lg:      0 8px 48px rgba(13,45,61,.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(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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.2rem; line-height: 1.7; color: var(--muted); }

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

.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,
.section--dark h4 { color: var(--white); }
.section--dark .lead { color: rgba(255,255,255,.75); }
.section--teal {
  background: var(--accent-light);
}
.section--gray { background: var(--gray-50); }

/* ── 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(260px, 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(42,162,146,.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-lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn-sm { padding: .5rem 1rem; font-size: .85rem; }
.btn-block { width: 100%; justify-content: center; }

/* ── 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--accent {
  border-top: 3px solid var(--accent);
}
.card--flat { box-shadow: none; border: 1px solid var(--gray-200); }

/* ── Badges / Tags ────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .25rem .75rem;
  border-radius: 99px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .01em;
}
.badge-teal    { background: var(--accent-light); color: var(--accent); }
.badge-navy    { background: var(--primary); color: var(--white); }
.badge-gray    { background: var(--gray-100); color: var(--gray-600); }
.badge-success { background: #dcfce7; color: #166534; }
.badge-warning { background: #fef9c3; color: #854d0e; }
.badge-danger  { background: #fee2e2; color: #991b1b; }

/* ── CMS Score Stars ──────────────────────────── */
.score-bar {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .5rem;
}
.score-bar__label {
  font-size: .85rem;
  color: var(--muted);
  min-width: 130px;
}
.score-bar__track {
  flex: 1;
  height: 8px;
  background: var(--gray-200);
  border-radius: 99px;
  overflow: hidden;
}
.score-bar__fill {
  height: 100%;
  background: var(--accent);
  border-radius: 99px;
  transition: width .6s ease;
}
.score-bar__val {
  font-size: .85rem;
  font-weight: 700;
  color: var(--accent);
  min-width: 28px;
  text-align: right;
}

/* ── Stars ────────────────────────────────────── */
.stars { color: #f59e0b; letter-spacing: .1em; }

/* ── Pros / Cons ──────────────────────────────── */
.pro-con { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.pro-list, .con-list { list-style: none; }
.pro-list li, .con-list li {
  padding: .45rem 0;
  padding-left: 1.6rem;
  position: relative;
  font-size: .95rem;
  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;
}
.pro-con__title {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .75rem;
}
.pro-con__pros .pro-con__title { color: var(--success); }
.pro-con__cons .pro-con__title { color: var(--danger); }

/* ── Comparison Table ─────────────────────────── */
.cms-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  font-size: .9rem;
  margin: 0 auto;
}
.cms-table th {
  background: var(--primary);
  color: var(--white);
  padding: .85rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: .85rem;
  white-space: nowrap;
}
.cms-table th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.cms-table th:last-child  { border-radius: 0 var(--radius-sm) 0 0; }
.cms-table td {
  padding: .85rem 1rem;
  border-bottom: 1px solid var(--gray-200);
  vertical-align: middle;
}
.cms-table tr:last-child td { border-bottom: none; }
.cms-table tr:nth-child(even) td { background: var(--gray-50); }
.cms-table tr:hover td { background: var(--accent-light); }
.cms-table .check { color: var(--success); font-size: 1.1rem; }
.cms-table .cross { color: var(--danger); font-size: 1.1rem; }
.cms-table .partial { color: var(--warning); font-size: 1.1rem; }
.cms-table .cms-name { font-weight: 700; color: var(--primary); }
.cms-table .highlight-row td { background: var(--accent-light) !important; font-weight: 600; }

/* ── Header / Navigation ──────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--primary);
  box-shadow: 0 2px 16px rgba(0,0,0,.2);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1.5rem;
}
.site-logo {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: .5rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.site-logo:hover { color: var(--accent); }
.logo-check {
  width: 28px; height: 28px;
  background: var(--accent);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}
.logo-check svg { width: 15px; height: 15px; stroke-width: 3; color: var(--white); }
.logo-check--sm { width: 22px; height: 22px; border-radius: 5px; }
.logo-check--sm svg { width: 12px; height: 12px; }

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: .25rem;
  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,.85);
  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: 600 !important;
  padding: .45rem 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 */
.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: 220px;
  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);
}

/* 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);
}

/* ── Hero Section ─────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-mid) 100%);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(42,162,146,.18) 0%, transparent 70%);
  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(42,162,146,.2);
  color: var(--accent);
  border: 1px solid rgba(42,162,146,.4);
  padding: .35rem .9rem;
  border-radius: 99px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 span { color: var(--accent); }
.hero .lead { color: rgba(255,255,255,.8); margin-bottom: 2rem; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero__card {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero__card-icon {
  width: 44px; height: 44px;
  background: var(--accent);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}
.hero__card-icon svg { width: 22px; height: 22px; stroke-width: 1.75; color: var(--white); }
.hero__card-text { color: var(--white); }
.hero__card-title { font-weight: 700; font-size: .95rem; }
.hero__card-sub   { font-size: .8rem; color: rgba(255,255,255,.65); }

/* ── Page Hero (inner pages) ──────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 3.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(42,162,146,.15) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero .lead { color: rgba(255,255,255,.75); margin-bottom: 0; }

/* ── 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;
  font-size: .83rem;
  color: var(--muted);
  list-style: none;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { color: var(--gray-400); display: inline-flex; align-items: center; }
.breadcrumb-sep svg { width: 14px; height: 14px; stroke-width: 2; }
.breadcrumb li:last-child { color: var(--text); font-weight: 500; }

/* ── CMS Quick Facts Box ──────────────────────── */
.cms-facts {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.cms-facts__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: .75rem;
}
.cms-fact { display: flex; flex-direction: column; gap: .2rem; }
.cms-fact__label { font-size: .75rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.cms-fact__value { font-size: .95rem; font-weight: 700; color: var(--text); }

/* ── CMS Card (Übersicht) ─────────────────────── */
.cms-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition);
  text-decoration: none;
}
.cms-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  color: var(--text);
}
.cms-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}
.cms-card__icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: var(--gray-100);
}
.cms-card__icon svg { width: 24px; height: 24px; stroke-width: 1.75; }
.cms-card__icon img { width: 26px; height: 26px; object-fit: contain; display: block; }
.cms-icon--wp-org  { background: #eff6ff; color: #3b82f6; }
.cms-icon--wp-com  { background: #e0f2fe; color: #0ea5e9; }
.cms-icon--wix     { background: #fefce8; color: #ca8a04; }
.cms-icon--ss      { background: #f1f5f9; color: #334155; }
.cms-icon--webflow { background: #f5f3ff; color: #7c3aed; }
.cms-icon--jimdo   { background: #f0fdf4; color: #16a34a; }
.cms-icon--typo3   { background: #fef2f2; color: #dc2626; }
.cms-icon--joomla  { background: #fff7ed; color: #ea580c; }
.cms-card__badges { display: flex; gap: .4rem; flex-wrap: wrap; }
.cms-card__name { font-weight: 800; font-size: 1.15rem; color: var(--primary); }
.cms-card__tagline { font-size: .88rem; color: var(--muted); }
.cms-card__scores { display: flex; flex-direction: column; gap: .3rem; }
.cms-card__score-row {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
}
.cms-card__score-label { color: var(--muted); min-width: 80px; }
.cms-card__dots { display: flex; gap: 3px; }
.cms-card__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gray-200);
}
.cms-card__dot.filled { background: var(--accent); }
.cms-card__cta { margin-top: auto; }

/* ── Checker Tool ─────────────────────────────── */
.checker-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}
.checker-header {
  background: var(--primary);
  padding: 2rem 2.5rem;
  text-align: center;
}
.checker-header h2 { color: var(--white); margin-bottom: .5rem; }
.checker-header p  { color: rgba(255,255,255,.75); font-size: .95rem; }

/* Progress */
.checker-progress {
  padding: 1.5rem 2.5rem 0;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}
.progress-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 1rem;
}
.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
}
.progress-step::before {
  content: '';
  position: absolute;
  top: 15px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: var(--gray-200);
  z-index: 0;
}
.progress-step:last-child::before { display: none; }
.progress-step.done::before,
.progress-step.active::before { background: var(--accent); }
.step-circle {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  color: var(--gray-400);
  z-index: 1;
  transition: all var(--transition);
  position: relative;
}
.progress-step.done .step-circle {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
.progress-step.active .step-circle {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}
.step-label {
  font-size: .72rem;
  color: var(--muted);
  margin-top: .35rem;
  text-align: center;
  white-space: nowrap;
}
.progress-step.active .step-label { color: var(--accent); font-weight: 600; }

/* Checker Body */
.checker-body { padding: 2.5rem; }
.checker-step { display: none; }
.checker-step.active { display: block; }
.checker-question {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: .5rem;
}
.checker-hint {
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: 2rem;
}
.checker-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.checker-option {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.25rem;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: .5rem;
  background: var(--white);
  text-align: left;
}
.checker-option:hover {
  border-color: var(--accent);
  background: var(--accent-light);
}
.checker-option.selected {
  border-color: var(--accent);
  background: var(--accent-light);
  box-shadow: 0 0 0 3px var(--accent-light);
}
.checker-option__icon { display: flex; align-items: center; margin-bottom: .5rem; color: var(--accent); }
.checker-option__icon svg { width: 28px; height: 28px; stroke-width: 1.75; }
.checker-option__label { font-weight: 700; font-size: .95rem; color: var(--text); }
.checker-option__desc  { font-size: .8rem; color: var(--muted); }

/* Checker Nav */
.checker-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2.5rem;
  border-top: 1px solid var(--gray-100);
  gap: 1rem;
}
.checker-nav__back {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: .9rem;
  font-weight: 500;
  transition: color var(--transition);
  padding: .5rem;
}
.checker-nav__back:hover { color: var(--text); }
.checker-nav__back:disabled { opacity: 0; pointer-events: none; }

/* Checker Results */
.checker-results { display: none; }
.checker-results.active { display: block; }
.results-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  padding: 2.5rem;
  text-align: center;
  color: var(--white);
}
.results-header h3 { color: var(--white); margin-bottom: .5rem; font-size: 1.5rem; }
.results-header p  { color: rgba(255,255,255,.75); }
.results-body { padding: 2.5rem; }
.result-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.result-card.result-top {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}
.result-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--gray-50);
}
.result-card.result-top .result-card__header { background: var(--accent-light); }
.result-rank {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: .95rem;
  flex-shrink: 0;
  color: var(--muted);
}
.result-card.result-top .result-rank {
  background: var(--accent);
  color: var(--white);
}
.result-card__body { padding: 1.25rem 1.5rem; }
.result-reasons { list-style: none; }
.result-reasons li {
  font-size: .9rem;
  padding: .35rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text);
  border-bottom: 1px solid var(--gray-100);
}
.result-reasons li:last-child { border-bottom: none; }
.result-reasons li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.result-card__actions {
  padding: 1rem 1.5rem;
  background: var(--gray-50);
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ── Trust Box ────────────────────────────────── */
.trustbox {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.trustbox--dark {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.15);
}
.trustbox__avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  color: var(--white);
}
.trustbox__avatar svg { width: 34px; height: 34px; stroke-width: 1.5; color: var(--white); }
.trustbox__avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.trustbox__body { flex: 1; }
.trustbox__name { font-weight: 800; font-size: 1rem; color: var(--text); margin-bottom: .15rem; }
.trustbox--dark .trustbox__name { color: var(--white); }
.trustbox__role { font-size: .83rem; color: var(--accent); font-weight: 600; margin-bottom: .75rem; }
.trustbox__text { font-size: .9rem; color: var(--muted); line-height: 1.6; margin-bottom: 1rem; }
.trustbox--dark .trustbox__text { color: rgba(255,255,255,.75); }
.trustbox__creds { display: flex; gap: .5rem; flex-wrap: wrap; }

/* ── Affiliate Box ────────────────────────────── */
.affiliate-box {
  background: var(--accent-light);
  border: 1px solid var(--accent-muted);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.affiliate-box__icon { font-size: 1.5rem; flex-shrink: 0; }
.affiliate-box__text { flex: 1; font-size: .9rem; }
.affiliate-box__text strong { color: var(--accent); }
.affiliate-note {
  font-size: .78rem;
  color: var(--muted);
  border-left: 3px solid var(--gray-200);
  padding-left: .75rem;
  margin: 1.5rem 0;
  font-style: italic;
}

/* ── FAQ ──────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: .5rem; }
.faq-item { border: 1px solid var(--gray-200); border-radius: var(--radius-sm); overflow: hidden; }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-weight: 600;
  font-size: .95rem;
  color: var(--text);
  gap: 1rem;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--gray-50); }
.faq-question.open { color: var(--accent); background: var(--accent-light); }
.faq-arrow { flex-shrink: 0; font-size: .8rem; transition: transform var(--transition); }
.faq-question.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}
.faq-answer.open { max-height: 500px; }
.faq-answer__inner { padding: 0 1.25rem 1.25rem; font-size: .93rem; color: var(--muted); line-height: 1.7; }

/* ── Feature List ─────────────────────────────── */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}
.feature-icon {
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.feature-body h4 { font-size: .95rem; margin-bottom: .3rem; }
.feature-body p  { font-size: .85rem; color: var(--muted); }

/* ── CTA Section ──────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(42,162,146,.2) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section__inner { position: relative; z-index: 1; }
.cta-section h2  { color: var(--white); margin-bottom: 1rem; }
.cta-section p   { color: rgba(255,255,255,.8); max-width: 600px; margin: 0 auto 2rem; }

/* ── Leadgen Box ──────────────────────────────── */
.leadgen-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}
.leadgen-box h3  { color: var(--white); margin-bottom: .5rem; }
.leadgen-box p   { color: rgba(255,255,255,.75); margin: 0; font-size: .95rem; }
.leadgen-box__cta { display: flex; flex-direction: column; gap: .75rem; align-items: center; }

/* ── Sticky CTA ───────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  transform: translateY(100%);
  transition: transform .3s ease;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-inner {
  background: var(--primary);
  border-top: 2px solid var(--accent);
  padding: .85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.sticky-cta-text { color: var(--white); font-size: .9rem; }

/* ── Article Body ─────────────────────────────── */
.article-body h2 { font-size: 1.5rem; margin: 2.5rem 0 .75rem; color: var(--primary); padding-bottom: .5rem; border-bottom: 2px solid var(--gray-100); }
.article-body h3 { font-size: 1.2rem; margin: 2rem 0 .6rem; color: var(--primary); }
.article-body h4 { font-size: 1rem; margin: 1.5rem 0 .5rem; }
.article-body p  { color: var(--gray-800); line-height: 1.75; margin-bottom: 1.1rem; }
.article-body ul, .article-body ol { padding-left: 1.5rem; margin-bottom: 1.1rem; }
.article-body li { line-height: 1.7; margin-bottom: .35rem; color: var(--gray-800); }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body a:not(.btn)  { color: var(--accent); text-decoration: underline; }
.article-body a.btn { text-decoration: none; }
.article-body table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: .9rem; }
.article-body table th { background: var(--primary); color: var(--white); padding: .7rem 1rem; text-align: left; }
.article-body table td { padding: .7rem 1rem; border-bottom: 1px solid var(--gray-200); }
.article-body table tr:nth-child(even) td { background: var(--gray-50); }

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

/* ── 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: 3rem;
}
.footer-logo {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .75rem;
}
.footer-logo:hover { color: var(--accent); }
.footer-about p   { font-size: .88rem; line-height: 1.7; }
.footer-nav h4    { color: var(--white); font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .75rem; }
.footer-nav ul    { list-style: none; display: flex; flex-direction: column; gap: .4rem; }
.footer-nav ul li a { font-size: .88rem; color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-nav ul li a:hover { color: var(--accent); }
.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;
  font-size: .83rem;
}
.footer-copy { color: rgba(255,255,255,.45); }
.footer-legal { display: flex; gap: 1.25rem; }
.footer-legal a { color: rgba(255,255,255,.45); }
.footer-legal a:hover { color: var(--accent); }

/* ── Utilities ────────────────────────────────── */
.text-center { text-align: center; }
.text-muted  { color: var(--muted); }
.text-accent { color: var(--accent); }
.text-white  { color: var(--white); }
.text-sm     { font-size: .875rem; }
.text-xs     { font-size: .78rem; }
.font-bold   { font-weight: 700; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }

/* ── Responsive ───────────────────────────────── */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__visual { max-width: 540px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .leadgen-box { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .hero { padding: 4rem 0 3rem; }
  .menu-toggle { display: flex; }
  nav { display: none; }
  nav.open { display: block; position: absolute; top: 64px; left: 0; right: 0; background: var(--primary); padding: 1rem; }
  nav.open .site-nav { flex-direction: column; gap: .25rem; }
  nav.open .has-dropdown .dropdown-menu { position: static; box-shadow: none; border: none; background: rgba(255,255,255,.06); margin-top: .25rem; visibility: visible; opacity: 1; pointer-events: auto; transition: none; }
  nav.open .dropdown-menu li a { color: rgba(255,255,255,.8); }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .pro-con { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .checker-body, .checker-nav { padding: 1.5rem; }
  .checker-progress { padding: 1rem 1.5rem 0; }
  .checker-options { grid-template-columns: 1fr; }
  .results-header, .results-body { padding: 1.5rem; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .trustbox { flex-direction: column; }
  .sticky-cta-inner { flex-direction: column; gap: .75rem; text-align: center; }
  .cms-table { font-size: .8rem; }
  .cms-table th, .cms-table td { padding: .6rem .6rem; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }
}

@media (max-width: 480px) {
  .hero { padding: 2.5rem 0 2rem; }
  .page-hero { padding: 2.5rem 0 2rem; }
  .progress-steps { gap: 0; }
  .step-label { display: none; }
  .step-circle { width: 28px; height: 28px; font-size: .75rem; }
}

/* ── Fineline Icons (Lucide) ──────────────────── */
.page-hero-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.page-hero-icon svg { width: 32px; height: 32px; stroke-width: 1.5; }
.page-hero-icon img { width: 36px; height: 36px; object-fit: contain; display: block; }

.icon-feature {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: var(--accent-light);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.icon-feature svg { width: 24px; height: 24px; stroke-width: 1.75; }

.icon-compare {
  display: flex; align-items: center; gap: .5rem;
  margin-bottom: .75rem;
}
.icon-compare-item {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.icon-compare-item svg { width: 18px; height: 18px; stroke-width: 1.75; }
.icon-compare-sep { color: var(--muted); font-size: .85rem; font-weight: 600; }
