/* ============================================================
   WhoisDE.de – Stylesheet
   Farbwelt nach Mockup: Petrol-Teal, dunkles Navy, helle Flächen
   ============================================================ */

:root {
  --teal:        #0e7a9b;   /* Hauptakzent, Hero-Hintergrund */
  --teal-deep:   #0a6480;   /* dunklere Teal-Variante */
  --teal-bright: #17aacb;   /* helles Teal für Hover/Links */
  --navy:        #1f4d63;   /* mittleres Blau (dunkle Content-Karte) */
  --navy-dark:   #15384a;   /* dunkler Band-Hintergrund */
  --ink:         #12303d;   /* Fließtext dunkel */
  --ink-soft:    #3e5964;   /* gedämpfter Text auf hell */
  --paper:       #ffffff;
  --paper-tint:  #f3f8fa;   /* ganz leicht getönte Fläche */
  --line:        #dbe7ec;   /* Trennlinien */
  --white-90:    #eaf4f8;   /* Text auf Teal */
  --white-70:    #cfe5ed;   /* gedämpfter Text auf Teal */
  --footer-bg:   #0a3040;
  --footer-text: #9cc4d2;

  --max-w: 1180px;
  --pad-x: clamp(1.25rem, 5vw, 3rem);
  --nav-h: 78px;
  --r: 10px;
  --r-lg: 16px;
  --shadow: 0 18px 50px rgba(15, 55, 74, 0.12);
  --shadow-soft: 0 6px 24px rgba(15, 55, 74, 0.08);
  --t: 0.22s ease;

  --f-display: 'Quicksand', system-ui, sans-serif;
  --f-body: 'Space Grotesk', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-inline: var(--pad-x);
}

a { color: var(--teal); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--teal-bright); }

h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 700; line-height: 1.15; color: var(--ink); }

img { max-width: 100%; display: block; }

/* ---------- Eyebrow / Kicker ---------- */
.kicker {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.9rem;
}
.kicker.on-teal { color: var(--white-70); }
.kicker.on-dark { color: var(--teal-bright); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-inline: var(--pad-x);
}
.nav-logo { display: flex; align-items: center; gap: 0.6rem; }
.nav-logo img { height: 40px; width: auto; }
.nav-logo .logo-txt {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--teal);
  letter-spacing: -0.01em;
}
.nav-menu { display: flex; align-items: center; gap: 2rem; }
.nav-menu a {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--teal); }
.nav-cta {
  background: var(--teal);
  color: #fff !important;
  padding: 0.6rem 1.3rem;
  border-radius: 40px;
  font-weight: 700;
  transition: background var(--t), transform var(--t);
}
.nav-cta:hover { background: var(--teal-deep); color: #fff !important; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 26px; height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--t);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background:
    radial-gradient(ellipse 120% 90% at 80% -10%, rgba(23,170,203,0.35) 0%, transparent 55%),
    linear-gradient(160deg, var(--teal) 0%, var(--teal-deep) 100%);
  color: #fff;
  padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
}
.hero .kicker { color: var(--white-70); }
.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5.2vw, 3.6rem);
  letter-spacing: -0.015em;
  max-width: 15ch;
  margin-bottom: 1.4rem;
}
.hero-lead {
  color: var(--white-90);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  max-width: 62ch;
  margin-bottom: 2.2rem;
}
.hero-search {
  display: flex;
  gap: 0.8rem;
  max-width: 640px;
  flex-wrap: wrap;
}
.hero-search input {
  flex: 1 1 320px;
  min-width: 0;
  padding: 1rem 1.2rem;
  border: 0;
  border-radius: 8px;
  border-left: 6px solid var(--teal-bright);
  font-family: var(--f-body);
  font-size: 1rem;
  background: #fff;
  color: var(--ink);
}
.hero-search input::placeholder { color: #7d97a1; }
.btn-white {
  background: #fff;
  color: var(--teal-deep);
  border: 0;
  padding: 1rem 1.8rem;
  border-radius: 40px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t);
  white-space: nowrap;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(0,0,0,0.18); }
.hero-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--white-70);
}

/* ============================================================
   FEATURE-LEISTE (drei Punkte + CTA-Kachel)
   ============================================================ */
.featurebar {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.featurebar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 0.9fr;
  gap: 0;
}
.feature {
  padding: 2.4rem 2rem;
  border-right: 1px solid var(--line);
}
.feature:first-child { padding-left: 0; }
.feature-ico {
  width: 40px; height: 40px;
  color: var(--teal);
  margin-bottom: 1rem;
}
.feature h2, .feature h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.feature p { color: var(--ink-soft); font-size: 0.96rem; }
.feature-cta {
  background: var(--teal-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.feature-cta a {
  background: #fff;
  color: var(--teal-deep) !important;
  padding: 0.85rem 1.5rem;
  border-radius: 40px;
  font-family: var(--f-display);
  font-weight: 700;
  text-align: center;
  transition: transform var(--t);
}
.feature-cta a:hover { transform: translateY(-2px); }

/* ============================================================
   SECTIONS – generisch
   ============================================================ */
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  letter-spacing: -0.01em;
  margin-bottom: 1.3rem;
}
.section p { margin-bottom: 1.15rem; color: var(--ink); }
.section p:last-child { margin-bottom: 0; }

.lead-block { max-width: none; }
.lead-block .btn-teal { margin-top: 0.6rem; }

.btn-teal {
  display: inline-block;
  background: var(--teal);
  color: #fff !important;
  padding: 0.85rem 1.7rem;
  border-radius: 40px;
  font-family: var(--f-display);
  font-weight: 700;
  transition: background var(--t), transform var(--t);
}
.btn-teal:hover { background: var(--teal-deep); transform: translateY(-2px); }

.btn-navy {
  display: inline-block;
  background: var(--navy);
  color: #fff !important;
  padding: 0.85rem 1.7rem;
  border-radius: 40px;
  font-family: var(--f-display);
  font-weight: 700;
  transition: background var(--t), transform var(--t);
}
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-2px); }

/* Card auf leicht getöntem Rahmen (Abschnitt "Ermitteln Sie…") */
.section-tint { background: var(--paper-tint); }
.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(2rem, 4vw, 3.2rem);
  box-shadow: var(--shadow-soft);
}

/* ============================================================
   DARK CONTENT BAND (Info über .de-Domains)
   ============================================================ */
.band-dark {
  background:
    radial-gradient(ellipse 90% 70% at 90% 100%, rgba(23,170,203,0.18) 0%, transparent 55%),
    var(--navy-dark);
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.band-dark .card-light {
  background: #fff;
  border-radius: var(--r-lg);
  padding: clamp(2.2rem, 5vw, 4rem);
  box-shadow: var(--shadow);
}
.band-dark .card-light .kicker { color: var(--teal); }

/* ============================================================
   PROZESS (3 Schritte, gestrichelter Rahmen)
   ============================================================ */
.process { padding: clamp(3rem, 6vw, 5rem) 0; }
.process-frame {
  border: 2px dashed var(--teal-bright);
  border-radius: var(--r-lg);
  padding: clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.7rem;
  color: var(--ink);
}
.step .step-num { color: var(--teal); }
.step p { color: var(--ink-soft); font-size: 0.96rem; }

/* ============================================================
   TEAL BAND (Einfach und schnell)
   ============================================================ */
.band-teal {
  background: linear-gradient(160deg, var(--teal) 0%, var(--teal-deep) 100%);
  color: #fff;
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}
.band-teal .kicker { color: var(--white-70); }
.band-teal h2 { color: #fff; }
.band-teal p { color: var(--white-90); }
.band-teal .two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.band-teal .btn-navy { margin-top: 1.2rem; background: var(--navy-dark); }
.band-teal .btn-navy:hover { background: #0d2733; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.faq-intro p { color: var(--ink-soft); }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--r);
  margin-bottom: 0.8rem;
  overflow: hidden;
  background: #fff;
}
.faq-item.open { border-color: var(--teal); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 1.15rem 1.3rem;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-q .plus { color: var(--teal); font-size: 1.5rem; line-height: 1; flex: 0 0 auto; transition: transform var(--t); }
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-a-inner { padding: 0 1.3rem 1.3rem; color: var(--ink-soft); font-size: 0.98rem; }
.faq-media {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--paper-tint);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-media img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   ABSCHLUSS-CTA
   ============================================================ */
.closer {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  border-top: 1px solid var(--line);
}
.closer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.closer h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
.closer p { color: var(--ink-soft); margin-bottom: 1.4rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 3rem 0 2rem;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-nav { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.footer-nav a { color: var(--footer-text); font-family: var(--f-display); font-weight: 600; font-size: 0.95rem; }
.footer-nav a:hover { color: #fff; }
.footer-brand { font-family: var(--f-display); font-weight: 700; color: #fff; font-size: 1.2rem; }
.footer-bottom {
  padding-top: 1.4rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.88rem;
}
.footer-bottom a { color: var(--footer-text); }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem var(--pad-x) 1.5rem;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    transform: translateY(-120%);
    transition: transform 0.3s ease;
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-menu a { padding: 0.9rem 0; border-bottom: 1px solid var(--line); }
  .nav-cta { text-align: center; margin-top: 0.6rem; border-bottom: 0 !important; }

  .featurebar-grid { grid-template-columns: 1fr 1fr; }
  .feature:first-child { padding-left: 2rem; }
  .feature:nth-child(2) { border-right: 0; }
  .feature-cta { grid-column: 1 / -1; }

  .band-teal .two-col { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-media { min-height: 240px; order: -1; }
  .closer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .featurebar-grid { grid-template-columns: 1fr; }
  .feature { border-right: 0; border-bottom: 1px solid var(--line); padding: 1.8rem 0; }
  .feature:first-child { padding-left: 0; }
  .process-frame { grid-template-columns: 1fr; gap: 1.8rem; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .hero-search { flex-direction: column; }
  .hero-search input { flex-basis: auto; }
  .btn-white { width: 100%; }
}

/* ============================================================
   DOMAIN-UNTERSEITE  (/domain/[slug]/)
   ============================================================ */
.domain-hero {
  background: linear-gradient(160deg, var(--teal) 0%, var(--teal-deep) 100%);
  color: #fff;
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(2rem, 5vw, 3rem);
}
.domain-hero .kicker { color: var(--white-70); }
.domain-hero h1 {
  color: #fff;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  letter-spacing: -0.01em;
  word-break: break-word;
}
.domain-hero .breadcrumb {
  font-size: 0.9rem;
  color: var(--white-70);
  margin-bottom: 1rem;
}
.domain-hero .breadcrumb a { color: var(--white-90); }
.domain-hero .breadcrumb a:hover { color: #fff; }

.domain-main { padding: clamp(2.5rem, 6vw, 4.5rem) 0; }

/* WHOIS-Tabelle */
.whois-table-wrap { margin-bottom: 2.5rem; }
.whois-table-wrap h2 {
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  margin-bottom: 1.2rem;
}
.whois-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.whois-table th,
.whois-table td {
  text-align: left;
  padding: 0.95rem 1.2rem;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
  vertical-align: top;
}
.whois-table tr:last-child th,
.whois-table tr:last-child td { border-bottom: 0; }
.whois-table th {
  width: 240px;
  background: var(--paper-tint);
  font-family: var(--f-display);
  font-weight: 600;
  color: var(--ink);
}
.whois-table td { color: var(--ink-soft); }
.whois-table td a { font-weight: 600; }
.status-badge {
  display: inline-block;
  background: rgba(14,122,155,0.1);
  color: var(--teal-deep);
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.25rem 0.7rem;
  border-radius: 40px;
}

/* Beschreibungstext (full width) */
.domain-desc h2 {
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  margin-bottom: 1rem;
}
.domain-desc p { margin-bottom: 1.1rem; color: var(--ink); }
.domain-desc p:last-child { margin-bottom: 0; }

.domain-note {
  background: var(--paper-tint);
  border-left: 5px solid var(--teal);
  border-radius: var(--r);
  padding: 1.3rem 1.5rem;
  margin: 2.5rem 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.domain-note strong { color: var(--ink); font-family: var(--f-display); }

/* Prev/Next */
.domain-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2.5rem 0;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.domain-nav a {
  font-family: var(--f-display);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* Erklär-Block Nameserver/IP */
.whois-explain {
  background: var(--navy-dark);
  color: var(--white-90);
  border-radius: var(--r-lg);
  padding: clamp(1.8rem, 4vw, 2.6rem);
}
.whois-explain h2 { color: #fff; font-size: 1.4rem; margin-bottom: 1.2rem; }
.whois-explain dt {
  font-family: var(--f-display);
  font-weight: 700;
  color: var(--teal-bright);
  margin-bottom: 0.3rem;
}
.whois-explain dd { margin: 0 0 1.3rem 0; color: var(--white-70); font-size: 0.97rem; }
.whois-explain dd:last-child { margin-bottom: 0; }

@media (max-width: 620px) {
  .whois-table th { width: 42%; }
  .whois-table th, .whois-table td { padding: 0.8rem 0.9rem; font-size: 0.94rem; }
}

/* ============================================================
   LIVE-CHECK ERGEBNIS (unter dem Hero-Suchfeld)
   ============================================================ */
.check-result {
  max-width: 760px;
  margin-top: 1.6rem;
  display: none;
}
.check-result.show { display: block; }

.check-card {
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  padding: clamp(1.4rem, 3vw, 2rem);
  color: var(--ink);
}
.check-card h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}
.badge {
  display: inline-block;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.25rem 0.75rem;
  border-radius: 40px;
}
.badge.ok   { background: rgba(26,127,75,0.12);  color: #1a7f4b; }
.badge.free { background: rgba(230,150,20,0.15); color: #9a6200; }
.badge.warn { background: rgba(179,38,30,0.12);  color: #b3261e; }

.check-table { width: 100%; border-collapse: collapse; }
.check-table th, .check-table td {
  text-align: left;
  padding: 0.7rem 0.4rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.96rem;
  vertical-align: top;
}
.check-table tr:last-child th, .check-table tr:last-child td { border-bottom: 0; }
.check-table th {
  width: 190px;
  font-family: var(--f-display);
  font-weight: 600;
  color: var(--ink);
}
.check-table td { color: var(--ink-soft); }

.check-note {
  margin-top: 1.2rem;
  padding: 0.9rem 1.1rem;
  background: var(--paper-tint);
  border-left: 4px solid var(--teal);
  border-radius: var(--r);
  font-size: 0.9rem;
  color: var(--ink);
}

/* Lade- und Fehlerzustand */
.check-loading, .check-error {
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  padding: 1.2rem 1.5rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.98rem;
}
.check-error { color: #b3261e; }
.spinner {
  width: 22px; height: 22px;
  border: 3px solid var(--line);
  border-top-color: var(--teal);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  flex: 0 0 auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

.btn-white:disabled { opacity: 0.6; cursor: wait; transform: none; }

@media (max-width: 620px) {
  .check-table th { width: 40%; }
}

/* ============================================================
   UNTERSEITEN: Archiv-Grid + Content-Seiten
   ============================================================ */
.page-hero {
  background: linear-gradient(160deg, var(--teal) 0%, var(--teal-deep) 100%);
  color: #fff;
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(2rem, 5vw, 3rem);
}
.page-hero .kicker { color: var(--white-70); }
.page-hero h1 {
  color: #fff;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  letter-spacing: -0.01em;
}
.page-hero p { color: var(--white-90); max-width: 70ch; margin-top: 1rem; }

.content-main { padding: clamp(2.5rem, 6vw, 4.5rem) 0; }
.content-main h2 { font-size: clamp(1.4rem, 2.8vw, 1.9rem); margin: 2.2rem 0 1rem; }
.content-main h2:first-child { margin-top: 0; }
.content-main h3 { font-size: 1.15rem; margin: 1.8rem 0 0.7rem; }
.content-main p { margin-bottom: 1.1rem; }
.content-main ul.check { list-style: none; margin: 0 0 1.1rem; }
.content-main ul.check li { padding-left: 1.6rem; position: relative; margin-bottom: 0.5rem; }
.content-main ul.check li::before { content: "\2192"; position: absolute; left: 0; color: var(--teal); font-weight: 700; }

.archiv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin: 1.5rem 0 2rem;
}
.archiv-grid a {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  border-radius: var(--r);
  padding: 0.75rem 1rem;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--ink);
  transition: transform var(--t), box-shadow var(--t), color var(--t);
  overflow-wrap: break-word;
}
.archiv-grid a:hover {
  color: var(--teal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}
@media (max-width: 900px) { .archiv-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .archiv-grid { grid-template-columns: 1fr; } }

.impressum-block {
  background: var(--paper-tint);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 2rem;
}
.impressum-block p { margin-bottom: 0.4rem; }

/* ============================================================
   V5 – DUNKLES THEME NACH MOCKUP (Header, Hero, Footer, Logo)
   Überschreibt gezielt die früheren hellen Regeln.
   ============================================================ */
:root {
  --page-dark:   #050d1c;   /* Hero/Header-Grund aus der Hero-Grafik */
  --header-bg:   rgba(6, 15, 30, 0.92);
  --cyan:        #2fd0f0;   /* Akzent aus dem Mockup (.de in der Lupe) */
}

/* Header dunkel */
.header {
  background: var(--header-bg);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-logo img { height: 36px; width: auto; display: block; }
.nav-menu a { color: #dfeef5; }
.nav-menu a:hover, .nav-menu a.active { color: var(--cyan); }
.nav-cta { background: var(--teal); }
.nav-cta:hover { background: var(--teal-bright); }
.nav-toggle span { background: #dfeef5; }
@media (max-width: 1000px) {
  .nav-menu { background: var(--page-dark); border-bottom-color: rgba(255,255,255,0.08); box-shadow: none; }
  .nav-menu a { border-bottom-color: rgba(255,255,255,0.08); }
}

/* Hero dunkel mit Lupen-Grafik rechts */
.hero {
  background:
    linear-gradient(90deg, var(--page-dark) 0%, var(--page-dark) 38%, rgba(5,13,28,0) 75%),
    var(--page-dark) url('/hero.webp') right center / auto 100% no-repeat;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(3rem, 6vw, 5rem);
}
.hero .kicker { color: var(--cyan); }
.hero h1 .cy { color: var(--cyan); }
.hero h1 .h1-sub {
  display: block;
  font-size: 0.62em;
  font-weight: 600;
  color: #eaf4f8;
  margin-top: 0.25em;
  letter-spacing: 0;
}
.hero-lead { max-width: 56ch; }
.hero-search input { border-left-color: var(--cyan); }
.btn-white { background: linear-gradient(135deg, var(--teal-bright), var(--teal)); color: #fff; }

.hero-badges {
  list-style: none;
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
  margin-top: 1.3rem;
  padding: 0;
}
.hero-badges li {
  color: var(--white-70);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.hero-badges li::before {
  content: "";
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 2px solid var(--cyan);
  background:
    linear-gradient(45deg, transparent 44%, var(--cyan) 44%, var(--cyan) 56%, transparent 56%) no-repeat 55% 60% / 8px 6px;
  flex: 0 0 auto;
  box-sizing: border-box;
}

/* Unterseiten-Heros an das dunkle Theme angleichen */
.page-hero, .domain-hero {
  background: linear-gradient(160deg, #0a1c33 0%, var(--page-dark) 100%);
}
.page-hero .kicker, .domain-hero .kicker { color: var(--cyan); }

/* Panel "Domaininhaber" mit Kreis-Grafik */
.panel-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.panel-grid img { width: 100%; height: auto; }
@media (max-width: 800px) {
  .panel-grid { grid-template-columns: 1fr; }
  .panel-grid img { max-width: 240px; margin: 0 auto; }
}

/* Footer mit Logo */
.footer { background: var(--page-dark); }
.footer-logo img { height: 30px; width: auto; }

@media (max-width: 900px) {
  .hero { background-size: cover; }
}

/* Fix: Texte in der Ergebnis-Karte bleiben dunkel, auch im dunklen Hero
   (schlägt .page-hero p / .hero p) */
.check-card p, .page-hero .check-card p, .hero .check-card p { color: var(--ink); }
.check-card .check-note, .page-hero .check-card .check-note { color: var(--ink); }
