/* ================================================
   ABMAHN-SHIELD — Landing Page Styles v2
   Farben: Navy #1A2B4A, Grün #10B981, Weiß/Grau
   Fonts: Plus Jakarta Sans (Headlines), Inter (Body)
   Premium: Glassmorphism, Scroll-Animationen, Tiefe
   ================================================ */

:root {
  --navy: #1A2B4A;
  --navy-deep: #0F1A2E;
  --navy-light: #243B5C;
  --green: #10B981;
  --green-dark: #059669;
  --green-light: #ECFDF5;
  --red: #DC2626;
  --red-light: #FEF2F2;
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --font-display: 'Plus Jakarta Sans', -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, 'Segoe UI', sans-serif;
  --ease-premium: cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

::selection {
  background: var(--green);
  color: var(--white);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---- UTILITIES ---- */

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ---- SCROLL ANIMATIONS ---- */

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-premium), transform 0.7s var(--ease-premium);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- HEADER ---- */

.site-header {
  background: rgba(15, 26, 46, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo svg {
  width: 32px;
  height: 32px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.3px;
}

.logo-text .dot {
  color: var(--green);
}

.header-cta {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  background: var(--green);
  border: none;
  padding: 8px 20px;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s var(--ease-premium);
}

.header-cta:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* ---- HERO ---- */

.hero {
  background: var(--navy-deep);
  padding: 120px 0 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Layered background for depth */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(16, 185, 129, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 100%, rgba(26, 43, 74, 0.5) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 100%, rgba(26, 43, 74, 0.3) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

/* Threat badge above headline */
.threat-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(239, 68, 68, 0.15);
  border: 1.5px solid rgba(239, 68, 68, 0.5);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 28px;
  margin-bottom: 28px;
  animation: badge-pulse 3s ease-in-out infinite;
  letter-spacing: -0.1px;
}

.threat-badge .dot-live {
  width: 10px;
  height: 10px;
  background: #EF4444;
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
  box-shadow: 0 0 6px rgba(239, 68, 68, 0.6);
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
  50% { box-shadow: 0 0 0 6px rgba(220, 38, 38, 0.06); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5.5vw, 56px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero-divider {
  height: 12px;
}

.dashboard-divider {
  height: 20px;
}

.hero-h1-second {
  font-family: var(--font-display);
  font-size: clamp(34px, 5.5vw, 56px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero h1 .highlight,
.hero-h1-second .highlight {
  color: var(--green);
}

.hero h1 .highlight-red,
.hero-h1-second .highlight-red {
  /* Echtes Rot statt Rosa für maximale Dringlichkeit */
  color: #EF4444;
}

.hero .subtitle {
  font-size: clamp(16px, 2.5vw, 19px);
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
  margin: 0 auto 16px;
  line-height: 1.6;
}

.hero .subtitle .subtitle-line {
  display: block;
}

.hero .subtitle .subtitle-line-spaced {
  margin-top: 0.85em;
}

.hero-scan-promise {
  font-family: var(--font-display);
  font-size: clamp(17px, 2.5vw, 21px);
  font-weight: 700;
  color: var(--green);
  margin: 0 auto 24px;
  letter-spacing: -0.2px;
}

/* Scan Input */

.scan-form {
  max-width: 520px;
  margin: 0 auto 14px;
  display: flex;
  gap: 0;
  background: var(--white);
  border-radius: 10px;
  padding: 5px;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.scan-form input {
  flex: 1;
  border: none;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--gray-900);
  background: transparent;
  outline: none;
  border-radius: 8px 0 0 8px;
  min-width: 0;
}

.scan-form input::placeholder {
  color: var(--gray-400);
}

.scan-form button {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  background: var(--green);
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s var(--ease-premium);
  position: relative;
  animation: scan-pulse 2.5s ease-out infinite;
}

.scan-form button:hover {
  background: var(--green-dark);
  transform: scale(1.02);
}

@keyframes scan-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
}

.scan-confirm {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 520px;
  margin: 14px auto 10px;
  padding: 10px 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  line-height: 1.4;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  transition: border-color 0.3s;
}

.scan-confirm:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.scan-confirm input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--green);
  cursor: pointer;
}

.scan-trust {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

/* Hero stats bar */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 64px;
}

.hero-stat .number {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}

.hero-stat .number.green {
  color: var(--green);
}

.hero-stat .number.yellow {
  color: #FBBF24;
}

.hero-stat .number.red {
  color: #EF4444;
}

.hero-stat .label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
}

/* ---- PROBLEM SECTION ---- */

.problem {
  padding: 56px 0 48px;
  background: var(--white);
  position: relative;
}

.section-label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--green);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.4px;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--gray-500);
  max-width: 620px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.problem-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 28px 24px;
  transition: all 0.4s var(--ease-premium);
  position: relative;
}

.problem-card:hover {
  border-color: rgba(220, 38, 38, 0.2);
  box-shadow: 0 8px 32px rgba(220, 38, 38, 0.06);
  transform: translateY(-2px);
}

.problem-card .icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--red-light) 0%, #FEE2E2 100%);
  border: 1px solid rgba(220, 38, 38, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.problem-card .icon svg {
  width: 26px;
  height: 26px;
  color: var(--red);
}

.problem-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.problem-card p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.6;
}

.cost-highlight {
  text-align: center;
  margin-top: 28px;
  padding: 32px;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  border-radius: 14px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cost-highlight::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.3), rgba(220, 38, 38, 0.2));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: xor;
  -webkit-mask-composite: xor;
  pointer-events: none;
}

.cost-highlight .amount {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: #EF4444;
  letter-spacing: -1px;
}

.cost-highlight p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 4px;
}

.cost-source {
  font-size: 11px !important;
  color: rgba(255, 255, 255, 0.65) !important;
  margin-top: 12px !important;
  font-style: italic;
  line-height: 1.5;
}

/* ---- TRUST BAR (unter Hero) ---- */

.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 18px 0;
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1040px;
  margin: 0 auto;
}

.trust-bar-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
}

.trust-bar-item svg {
  width: 22px;
  height: 22px;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}

.trust-bar-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 2px;
}

.trust-bar-item strong span {
  display: inline;
  font-size: inherit;
  color: inherit;
  line-height: inherit;
}

.trust-bar-item > div > span {
  display: block;
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.4;
}

@media (max-width: 820px) {
  .trust-bar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .trust-bar-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- HOW IT WORKS ---- */

.how-it-works {
  padding: 56px 0 48px;
  background: var(--gray-50);
  position: relative;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 8px;
}

.step {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--gray-200);
  transition: all 0.4s var(--ease-premium);
}

.step:hover {
  border-color: rgba(16, 185, 129, 0.2);
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.06);
  transform: translateY(-2px);
}

.step-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

.step h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.step p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ---- DASHBOARD SECTION ---- */

.dashboard-section {
  padding: 56px 0 48px;
  background: var(--gray-50);
  overflow: hidden;
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px;
  align-items: center;
}

.dashboard-text {
  padding-right: 8px;
}

.dashboard-text .section-subtitle {
  margin-bottom: 32px;
}

.dashboard-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dashboard-features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.5;
  border-bottom: 1px solid var(--gray-100);
}

.dashboard-features li:last-child {
  border-bottom: none;
}

.dashboard-features li .feat-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--green-light) 0%, #D1FAE5 100%);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.dashboard-features li .feat-icon svg {
  width: 22px;
  height: 22px;
  color: var(--green-dark);
}

.dashboard-features li strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  font-size: 16px;
  margin-bottom: 4px;
}

.dashboard-features li span {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.5;
}

.mockup-intro {
  display: none;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-500);
  text-align: center;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .mockup-intro {
    display: block;
  }
}

/* Dashboard mockup */
.dashboard-mockup {
  background: var(--navy-deep);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 32px 64px rgba(15, 26, 46, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  position: relative;
}

.mockup-bar {
  background: rgba(255, 255, 255, 0.04);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.mockup-dot:first-child { background: #FF5F56; }
.mockup-dot:nth-child(2) { background: #FFBD2E; }
.mockup-dot:nth-child(3) { background: #27C93F; }

.mockup-url {
  flex: 1;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-body);
}

.mockup-content {
  padding: 20px;
}

/* Dashboard-style mockup header */
.mockup-dash-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mockup-ring-wrap {
  position: relative;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

.mockup-ring-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: #EF4444;
  transition: color 0.5s;
}

.mockup-dash-summary {
  display: flex;
  gap: 8px;
  flex: 1;
}

.mockup-mini-card {
  flex: 1;
  text-align: center;
  padding: 10px 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.mmc-num {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  display: block;
  line-height: 1;
  margin-bottom: 2px;
}

.mmc-num.ok { color: var(--green); }
.mmc-num.warning { color: #FBBF24; }
.mmc-num.critical { color: #EF4444; }

.mmc-label {
  font-size: 8px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

/* Dashboard-style mockup list */
.mockup-dash-list {
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  padding: 6px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}

.mockup-dash-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  margin-bottom: 2px;
  border-radius: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  border-left: 3px solid transparent;
  transition: all 0.4s var(--ease-premium);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.mockup-dash-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.mockup-dash-item.fail {
  border-left-color: #EF4444;
}

.mockup-dash-item.ok {
  border-left-color: var(--green);
  opacity: 0.5;
}

.mockup-dash-item .item-content {
  flex: 1;
  min-width: 0;
}

.mockup-dash-item .item-text {
  display: block;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  line-height: 1.3;
}

.mockup-dash-item .item-desc {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.4;
  margin-top: 2px;
}

.mockup-dash-item .check {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mockup-dash-item .check.fail {
  background: rgba(239, 68, 68, 0.15);
}

.mockup-dash-item .check.ok {
  background: rgba(16, 185, 129, 0.15);
}

.mockup-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 210px;
  padding: 20px 10px;
  text-align: center;
  animation: fadeIn 0.5s var(--ease-premium);
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.mockup-success-title {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  color: var(--green);
  margin-top: 10px;
}

.mockup-success-sub {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

.mockup-more {
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  padding: 8px 0 4px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.mockup-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mockup-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  margin-bottom: 4px;
  border-radius: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  transition: background 0.2s;
}

.mockup-checklist li:hover {
  background: rgba(255, 255, 255, 0.03);
}

.mockup-checklist .check {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mockup-checklist .check.ok {
  background: rgba(16, 185, 129, 0.15);
  color: var(--green);
}

.mockup-checklist .check.fail {
  background: rgba(220, 38, 38, 0.15);
  color: #EF4444;
}

.mockup-checklist .check svg {
  width: 14px;
  height: 14px;
}

.mockup-checklist li .item-text {
  flex: 1;
}

.mockup-checklist li .status-tag,
.mockup-dash-item .status-tag {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  padding: 2px 6px;
  border-radius: 3px;
  flex-shrink: 0;
}

.status-tag.critical {
  background: rgba(220, 38, 38, 0.12);
  color: #EF4444;
}

.status-tag.ok {
  background: rgba(16, 185, 129, 0.12);
  color: var(--green);
}

.mockup-actions {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mockup-btn {
  flex: 1;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-display);
}

.mockup-btn.primary {
  background: var(--green);
  color: var(--white);
}

.mockup-btn.secondary {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ---- MID CTA (between Dashboard and Preview) ---- */

.mid-cta {
  text-align: center;
  margin-top: 32px;
  padding: 24px 0 0;
  border-top: 1px solid var(--gray-200);
}

.mid-cta p {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.mid-cta-btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  background: var(--green);
  padding: 14px 36px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s var(--ease-premium);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

.mid-cta-btn:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
}

/* ---- PREVIEW SECTION ---- */

.preview {
  padding: 56px 0 48px;
  background: var(--white);
}

.preview-wrapper {
  max-width: 880px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0,0,0,0.03);
}

/* Preview Score Card (matches scan-result page) */
.preview-score-card {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.preview-score-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.preview-ring {
  position: relative;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

.preview-ring-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: #EF4444;
  margin-top: -6px;
}

.preview-ring-of {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.preview-verdict-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 4px;
  background: rgba(239, 68, 68, 0.15);
  color: #EF4444;
  margin-bottom: 6px;
}

.preview-verdict p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
  margin: 0;
  max-width: 220px;
}

.preview-score-right {
  display: flex;
  gap: 10px;
}

.preview-summary-item {
  text-align: center;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  min-width: 70px;
}

.preview-summary-num {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  display: block;
  line-height: 1;
  margin-bottom: 3px;
}

.preview-summary-item.critical .preview-summary-num { color: #EF4444; }
.preview-summary-item.warning .preview-summary-num { color: #FBBF24; }
.preview-summary-item.ok .preview-summary-num { color: var(--green); }

.preview-summary-label {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  font-weight: 600;
}

/* Scan-style elements in preview (mirrors scan-result.html) */
.scan-score-card {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 14px 14px 0 0;
}

.scan-score-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.scan-ring {
  width: 96px;
  height: 96px;
  position: relative;
  flex-shrink: 0;
}

.scan-ring svg { width: 100%; height: 100%; }

.scan-ring-value {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.scan-ring-num {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  color: #EF4444;
  line-height: 1;
}

.scan-ring-of {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.scan-verdict-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(239, 68, 68, 0.15);
  color: #EF4444;
  margin-bottom: 6px;
}

.scan-verdict p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
  margin: 0;
  max-width: 200px;
}

.scan-score-right {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.scan-summary-item {
  text-align: center;
  padding: 14px 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  min-width: 80px;
}

.scan-summary-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.scan-summary-item.critical .scan-summary-num { color: #EF4444; }
.scan-summary-item.warning .scan-summary-num { color: #FBBF24; }
.scan-summary-item.ok .scan-summary-num { color: var(--green); }

.scan-summary-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  font-weight: 600;
}

/* Risk warning */
.scan-risk-warning {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(239, 68, 68, 0.04);
  border: 1px solid rgba(239, 68, 68, 0.12);
  border-radius: 0;
}

.scan-risk-warning strong {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  display: block;
  margin-bottom: 2px;
}

.scan-risk-warning p {
  font-size: 14px;
  color: var(--gray-500);
  margin: 0;
}

/* Findings section */
.scan-meta-preview {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 20px;
  margin-bottom: 16px;
  background: var(--gray-50);
  border-radius: 8px;
}

.scan-meta-preview span {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-500);
}

.scan-findings-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.scan-passed {
  margin-bottom: 16px;
}

.scan-passed strong {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 6px;
}

.scan-passed-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-700);
  padding: 4px 0;
}

.scan-locked-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-500);
  margin: 16px 0 10px;
}

.scan-finding-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}

.scan-sev {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  padding: 3px 8px;
  border-radius: 3px;
  flex-shrink: 0;
}

.scan-sev.critical { background: rgba(239, 68, 68, 0.1); color: #EF4444; }
.scan-sev.warning { background: rgba(251, 191, 36, 0.1); color: #D97706; }

.scan-finding-row strong {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--navy);
  flex-shrink: 0;
}

.scan-finding-action {
  margin-left: auto;
  font-size: 14px;
  color: var(--gray-400);
  text-align: right;
  flex-shrink: 0;
}

/* Index locked card */
.idx-locked {
  border: 2px solid var(--green);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 16px;
}

.idx-locked-dark {
  padding: 20px;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
}

.idx-locked-layout {
  width: 100%;
  border-collapse: collapse;
}

.idx-locked-left {
  vertical-align: middle;
  white-space: nowrap;
  padding-right: 16px;
}

.idx-locked-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: #EF4444;
  line-height: 1;
  vertical-align: middle;
  padding-right: 8px;
}

.idx-locked-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
  vertical-align: middle;
}

.idx-locked-right {
  vertical-align: middle;
  width: 100%;
}

.idx-locked-sevs {
  display: flex;
  gap: 6px;
  margin-bottom: 6px;
}

.idx-locked-sevs .locked-sev {
  font-size: 13px;
  padding: 2px 10px;
}

.idx-locked-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
  margin: 0;
}

.idx-locked-light {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  background: var(--green-light);
}

.idx-locked-light span {
  font-size: 14px;
  color: var(--gray-500);
}

.preview-locked-btn {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  background: var(--green);
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s;
  flex-shrink: 0;
}

.preview-locked-btn:hover {
  background: var(--green-dark);
}

.preview-timestamp-bar {
  padding: 12px 20px;
  text-align: center;
}

.preview-timestamp-bar p {
  font-size: 13px;
  color: var(--gray-400);
  font-style: italic;
  margin: 0;
}

.preview-findings {
  padding: 24px 32px;
}

.preview-finding {
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.preview-finding:last-child {
  border-bottom: none;
}

.finding-icon {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.finding-icon.critical {
  background: var(--red-light);
  color: var(--red);
}

.finding-icon.ok {
  background: var(--green-light);
  color: var(--green);
}

.preview-finding .text {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.5;
}

.preview-finding .text strong {
  color: var(--navy);
}

.preview-finding.blurred .text {
  filter: blur(5px);
  user-select: none;
  pointer-events: none;
}

.preview-cta {
  padding: 24px;
  background: linear-gradient(135deg, var(--green-light) 0%, #D1FAE5 100%);
  text-align: center;
  border-top: 1px solid var(--gray-200);
}

.preview-cta a {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  background: var(--green);
  padding: 14px 36px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s var(--ease-premium);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

.preview-cta a:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
}

.preview-cta p {
  font-size: 14px;
  color: var(--gray-500);
  margin-top: 10px;
}

/* ---- PRICING ---- */

.pricing {
  padding: 56px 0 48px;
  background: var(--gray-50);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 920px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 44px 24px 32px;
  text-align: center;
  position: relative;
  transition: all 0.4s var(--ease-premium);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.pricing-card .pricing-ribbon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: 7px 8px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
}

.pricing-card .pricing-ribbon.neutral {
  background: linear-gradient(135deg, #6B7280 0%, #4B5563 100%);
}

.pricing-card .pricing-ribbon-spacer {
  height: 0;
}

.pricing-price-row {
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 6px;
}

.pricing-price-row .original {
  font-size: 15px;
  color: #EF4444;
  font-weight: 600;
  text-decoration: line-through;
  display: block;
  min-height: 20px;
}

.pricing-price-row .original.invisible {
  visibility: hidden;
}

.pricing-price-row .amount {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  color: #10B981;
  letter-spacing: -1px;
  line-height: 1;
  display: inline-block;
  margin-top: 2px;
}

.pricing-price-row .amount .currency {
  font-size: 22px;
  font-weight: 600;
  margin-left: 2px;
}

.pricing-price-row.soon .amount {
  opacity: 0.55;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin: 8px 0 20px;
  flex: 1;
  padding: 0;
}

.pricing-cta-wrap {
  margin-top: auto;
  padding-top: 8px;
}

.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.pricing-card.featured {
  border: 2px solid var(--green);
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.1);
}

.pricing-card.featured:hover {
  box-shadow: 0 16px 48px rgba(16, 185, 129, 0.15);
}

/* Legacy ::before Badge entfernt — neues Ribbon im Karten-Head wird als .pricing-ribbon gerendert */

.pricing-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.pricing-desc {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 20px;
}

.pricing-price {
  margin-bottom: 4px;
}

.pricing-price .original {
  font-size: 16px;
  color: #EF4444;
  font-weight: 600;
  text-decoration: line-through;
  display: block;
  margin-bottom: 2px;
}

.pricing-price .amount {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: #10B981;
  letter-spacing: -1px;
}

.pricing-price .currency {
  font-size: 20px;
  font-weight: 600;
}

.pricing-period {
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 24px;
}

.pricing-badge {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
  flex: 1;
}

.pricing-features li {
  font-size: 15px;
  color: var(--gray-700);
  padding: 7px 0 7px 26px;
  position: relative;
}

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 16px;
  height: 16px;
  background: var(--green);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E") no-repeat center;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E") no-repeat center;
}

.pricing-cta {
  display: block;
  width: 100%;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  padding: 14px;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s var(--ease-premium);
  border: none;
  cursor: pointer;
}

.pricing-cta.primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

.pricing-cta.primary:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
}

.pricing-cta.secondary {
  background: var(--gray-50);
  color: var(--navy);
  border: 1px solid var(--gray-200);
}

.pricing-cta.secondary:hover {
  border-color: var(--green);
  color: var(--green-dark);
  background: var(--green-light);
}

/* ---- TRUST ---- */

.trust {
  padding: 40px 0;
  background: var(--navy);
  text-align: center;
}

.trust-items {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 500;
}

.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--green);
  flex-shrink: 0;
}

/* ---- FAQ ---- */

.faq {
  padding: 56px 0 48px;
  background: var(--white);
}

.faq-list {
  max-width: 680px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  margin-bottom: 8px;
  background: var(--white);
  overflow: hidden;
  transition: border-color 0.3s var(--ease-premium);
}

.faq-item:hover {
  border-color: rgba(16, 185, 129, 0.2);
}

.faq-item.open {
  border-color: var(--green);
}

.faq-question {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 20px;
  line-height: 1.4;
  transition: color 0.2s;
}

.faq-question::after {
  content: '+';
  font-size: 20px;
  color: var(--gray-400);
  flex-shrink: 0;
  margin-left: 16px;
  transition: all 0.3s var(--ease-premium);
}

.faq-item.open .faq-question::after {
  content: '\2212';
  color: var(--green);
}

.faq-answer {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
  padding: 0 20px 18px;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ---- CTA FINAL ---- */

.cta-final {
  padding: 56px 0;
  background: var(--navy-deep);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-final .container {
  position: relative;
  z-index: 1;
}

.cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.cta-final p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 24px;
}

/* ---- FOOTER ---- */

.site-footer {
  background: var(--navy-deep);
  padding: 32px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-closer {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  letter-spacing: -0.2px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.footer-brand {
  max-width: 320px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 12px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s var(--ease-premium);
}

.footer-links a:hover {
  color: var(--green);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
}

/* ---- LEGAL LINKS ---- */

.legal-link {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(16, 185, 129, 0.3);
  transition: text-decoration-color 0.2s;
}

.legal-link:hover {
  text-decoration-color: var(--green);
}

.cost-source a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cost-source a:hover {
  color: var(--white);
}

/* ---- RED NUMBER (Section titles) ---- */

.red-number {
  color: var(--red);
  font-size: 1.15em;
}

/* ---- PRICING MICRO ---- */

.pricing-micro {
  text-align: center;
  font-size: 14px;
  color: var(--gray-400);
  margin-top: 24px;
}

/* ---- LEGAL PAGES ---- */

.legal-page {
  padding: 120px 0 80px;
  background: var(--white);
  min-height: 60vh;
}

.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
  margin-bottom: 40px;
}

.legal-content section {
  margin-bottom: 32px;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.legal-content p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.legal-content a:hover {
  color: var(--green);
}

.legal-content strong {
  color: var(--navy);
  font-weight: 600;
}

.legal-content ul {
  margin: 8px 0 12px 20px;
  padding: 0;
}

.legal-content li {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 4px;
}

/* ---- TRUST EXPANDED ---- */

.trust-headline {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.trust-statement {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ---- PRICING ANCHOR ---- */

.pricing-anchor {
  max-width: 520px;
  margin: 0 auto 28px;
}

.anchor-compare {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 20px 28px;
}

.anchor-item {
  text-align: center;
}

.anchor-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gray-500);
  margin-bottom: 4px;
}

.anchor-amount {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.anchor-item.danger .anchor-amount {
  color: var(--red);
}

.anchor-item.safe .anchor-amount {
  color: var(--green);
}

.anchor-vs {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-400);
  padding: 0 4px;
}

/* ---- PREVIEW LOSS / TIMESTAMP ---- */

.preview-loss {
  font-size: 14px;
  color: var(--red);
  margin-bottom: 14px;
  font-weight: 500;
}

.preview-loss strong {
  color: var(--red);
  font-weight: 700;
}

.preview-timestamp {
  font-size: 14px;
  color: var(--gray-400);
  margin-top: 10px;
  font-style: italic;
}

/* ---- BADGE PREVIEW ---- */

.badge-preview {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
  text-align: center;
}

.badge-mockup {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green-dark);
  letter-spacing: 0.2px;
}

.badge-hint {
  display: block;
  font-size: 13px;
  color: var(--gray-400);
  margin-top: 6px;
}

/* ---- RESPONSIVE ---- */

@media (max-width: 768px) {
  .hero {
    padding: 120px 0 72px;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .hero-stat .number {
    font-size: 22px;
  }

  .scan-form {
    flex-direction: column;
    gap: 0;
  }

  .scan-form input {
    border-radius: 8px 8px 0 0;
    border-bottom: 1px solid var(--gray-200);
  }

  .scan-form button {
    border-radius: 0 0 8px 8px;
    padding: 14px;
  }

  .problem-grid,
  .steps,
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pricing-card.featured {
    order: -1;
  }

  .dashboard-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .trust-items {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .footer-content {
    flex-direction: column;
    gap: 24px;
  }

  .header-cta {
    display: none;
  }

  .scan-confirm {
    max-width: 100%;
    font-size: 14px;
  }

  .scan-score-card {
    flex-direction: column;
    gap: 16px;
  }

  .scan-score-right {
    width: 100%;
    justify-content: center;
  }

  .scan-meta-preview {
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
  }

  .scan-meta-preview span {
    font-size: 13px;
  }

  .anchor-compare {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .anchor-vs {
    display: none;
  }

  .idx-locked-dark,
  .preview-locked-top {
    flex-direction: column !important;
    text-align: center;
  }

  .idx-locked-light,
  .preview-locked-bottom {
    flex-direction: column !important;
    text-align: center;
    gap: 12px !important;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero-h1-second {
    font-size: 28px;
  }

  .threat-badge {
    font-size: 14px;
    padding: 8px 14px;
  }

  .mid-cta {
    margin-top: 32px;
    padding-top: 24px;
  }
}
