@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Source+Serif+4:opsz,wght@8..60,600;8..60,700&display=swap');

:root, [data-theme="light"] {
  --bg: #f1f5f9;
  --bg-2: #ffffff;
  --surface: #ffffff;
  --line: rgba(15, 42, 68, .10);
  --gold: #0f2a44;
  --gold-2: #1e3a8a;
  --accent: #0f2a44;
  --teal: #2563eb;
  --text: #0f172a;
  --muted: #475569;
  --danger: #b42318;
  --ok: #157347;
  --shadow: 0 8px 40px rgba(15, 42, 68, .08);
  --radius: 16px;
  --input-bg: #ffffff;
  --header-bg: rgba(255, 255, 255, .97);
  --mark-fg: #ffffff;
}

[data-theme="dark"] {
  --bg: #0b1220;
  --bg-2: #111827;
  --surface: #1a2332;
  --line: rgba(255, 255, 255, .08);
  --gold: #60a5fa;
  --gold-2: #93c5fd;
  --accent: #60a5fa;
  --teal: #60a5fa;
  --text: #e2e8f0;
  --muted: #94a3b8;
  --danger: #f87171;
  --ok: #34d399;
  --shadow: 0 8px 40px rgba(0, 0, 0, .35);
  --radius: 16px;
  --input-bg: #111827;
  --header-bg: rgba(11, 18, 32, .95);
  --mark-fg: #0b1220;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Manrope', system-ui, sans-serif;
  background:
    radial-gradient(1100px 420px at 12% -8%, rgba(37, 99, 235, .14), transparent 58%),
    radial-gradient(900px 380px at 92% 8%, rgba(15, 42, 68, .08), transparent 52%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
  min-height: 100dvh;
  line-height: 1.55;
}
/* Sticky footer shell — keep overlays (cookie etc.) outside this flex tree */
.site-shell {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.site-shell > main {
  flex: 1 0 auto;
  width: 100%;
}
a { color: var(--gold-2); text-decoration: none; }
a:hover { color: var(--gold); }
img { max-width: 100%; }
h1,h2,h3,h4 { font-family: 'Source Serif 4', Georgia, serif; font-weight: 600; letter-spacing: -.02em; margin: 0 0 .45em; }

.wrap { width: min(1280px, calc(100% - 40px)); margin: 0 auto; }
.topbar {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(22px) saturate(1.2);
  background: var(--header-bg);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(15, 42, 68, .04);
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 14px 0; position: relative; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--text); }
.brand-mark {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--accent);
  display: grid; place-items: center; font-family: 'Source Serif 4', serif; font-weight: 700; color: var(--mark-fg);
  box-shadow: none;
}
.brand small { display: block; color: var(--muted); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; }
nav.main { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
nav.main .nav-item { position: relative; }
nav.main .nav-pill {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--text); font-weight: 700; font-size: 13px; line-height: 1;
  font-family: inherit;
  padding: 6px 11px; border-radius: 999px;
  border: 1.5px solid #0f2a44;
  background: #fff;
  box-shadow: none;
  transition: background .18s, color .18s, border-color .18s, box-shadow .18s, transform .16s;
  cursor: pointer; text-decoration: none;
}
nav.main a.nav-pill:hover,
nav.main button.nav-pill:hover,
nav.main a.nav-pill.active,
nav.main button.nav-pill.active,
nav.main .nav-item.is-active > .nav-pill,
nav.main .nav-item.has-mega:hover > .nav-pill,
nav.main .nav-item.has-mega:focus-within > .nav-pill,
nav.main .nav-item.is-open > .nav-pill {
  color: #fff;
  border-color: #0f2a44;
  background: linear-gradient(180deg, #1e3a8a, #0f2a44);
  box-shadow: 0 6px 14px rgba(15, 42, 68, .16);
}
nav.main .nav-pill.is-muted {
  opacity: .72; cursor: default;
}
nav.main .nav-pill-caret {
  font-size: 9px; opacity: .75; transition: transform .18s;
}
nav.main .nav-item.has-mega:hover > .nav-pill .nav-pill-caret,
nav.main .nav-item.has-mega:focus-within > .nav-pill .nav-pill-caret,
nav.main .nav-item.is-open > .nav-pill .nav-pill-caret {
  transform: rotate(180deg);
}
.nav-mega {
  position: absolute; top: calc(100% + 2px); left: 0; z-index: 40;
  min-width: 220px; padding: 8px;
  background: var(--surface, #fff);
  border: 1.5px solid #0f2a44;
  border-radius: 14px;
  box-shadow: 0 16px 36px rgba(15, 42, 68, .14);
  display: none;
  gap: 4px;
}
/* Invisible bridge so hover doesn't break between button and menu */
.nav-item.has-mega::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 100%;
  height: 10px;
  z-index: 39;
}
.nav-item.has-mega:hover > .nav-mega,
.nav-item.has-mega:focus-within > .nav-mega,
.nav-item.has-mega.is-open > .nav-mega {
  display: grid;
}
.nav-mega-link {
  display: flex; align-items: center; gap: 10px;
  width: 100%; text-align: left;
  padding: 10px 12px; border-radius: 10px;
  border: 0; background: transparent;
  color: var(--text); font: inherit; font-weight: 650; font-size: 13px;
  text-decoration: none; cursor: pointer;
}
.nav-mega-link:hover,
.nav-mega-link.active {
  background: rgba(15, 42, 68, .08);
  color: #0f2a44;
}
[data-theme="dark"] nav.main .nav-pill {
  background: #111827;
  border-color: #93c5fd;
  color: #e2e8f0;
}
[data-theme="dark"] nav.main a.nav-pill:hover,
[data-theme="dark"] nav.main button.nav-pill:hover,
[data-theme="dark"] nav.main a.nav-pill.active,
[data-theme="dark"] nav.main button.nav-pill.active,
[data-theme="dark"] nav.main .nav-item.is-active > .nav-pill,
[data-theme="dark"] nav.main .nav-item.has-mega:hover > .nav-pill,
[data-theme="dark"] nav.main .nav-item.has-mega:focus-within > .nav-pill,
[data-theme="dark"] nav.main .nav-item.is-open > .nav-pill {
  color: #fff;
  border-color: #2563eb;
  background: linear-gradient(180deg, #2563eb, #0f2a44);
}
[data-theme="dark"] .nav-mega {
  background: #0b1220;
  border-color: #93c5fd;
}
[data-theme="dark"] .nav-mega-link:hover,
[data-theme="dark"] .nav-mega-link.active {
  background: rgba(37, 99, 235, .18);
  color: #93c5fd;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 1px solid transparent; border-radius: 999px; padding: 11px 20px;
  font-weight: 700; cursor: pointer; font-family: inherit;
  transition: transform .16s ease, filter .16s ease, box-shadow .16s ease, background .16s ease;
}
.btn-gold { background: linear-gradient(180deg, #1e3a8a, var(--accent)); color: #fff; box-shadow: 0 8px 18px rgba(15, 42, 68, .18); }
.btn-gold:hover { color: #fff; filter: brightness(1.06); transform: translateY(-1px); }
.btn-ghost { border-color: var(--line); color: var(--text); background: transparent; }
.btn-ghost:hover { background: var(--bg); color: var(--text); }
.btn-teal { background: rgba(37,99,235,.10); color: var(--teal); border-color: rgba(37,99,235,.28); }
.btn-danger { background: rgba(180,35,24,.10); color: var(--danger); border: 1px solid rgba(180,35,24,.28); }
.theme-toggle {
  width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--line);
  background: var(--surface); color: var(--text); cursor: pointer; font: inherit;
}

.hero { padding: 48px 0 44px; }
.hero-copy { max-width: min(100%, 920px); margin-bottom: 0; }
.kicker { color: var(--gold); letter-spacing: .22em; text-transform: uppercase; font-size: 12px; font-weight: 700; }
.hero h1, .hero-title {
  font-size: clamp(36px, 5vw, 56px); line-height: 1.08; max-width: none;
  margin: 0 0 14px;
}
.hero p.lead, .hero-lead {
  max-width: 100%; width: max-content;
  color: var(--muted); font-size: 15px; line-height: 1.55; margin: 0 0 16px;
  white-space: nowrap;
}
.hero-panel {
  display: grid; grid-template-columns: 1.45fr .55fr; gap: 20px; align-items: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: 28px;
  padding: 36px 32px 32px; box-shadow: var(--shadow); margin-bottom: 18px;
  overflow: hidden;
}
@media (max-width: 980px) {
  .hero p.lead, .hero-lead { white-space: normal; width: auto; }
  .hero-panel { grid-template-columns: 1fr; }
}
.hero-badge {
  display: inline-flex; align-items: center; background: #0f2a44; color: #fff;
  border-radius: 999px; padding: 6px 12px; font-size: 11px; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 4px 0 16px; }
.btn-outline {
  background: #eff6ff; color: #1e3a8a; border: 1px solid #1e3a8a;
  border-radius: 999px;
}
.btn-outline:hover { background: #dbeafe; color: #0f2a44; }
.hero-checks { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 0; font-weight: 700; font-size: 14px; }
.hero-checks i { color: #2563eb; margin-right: 6px; }
.hero-art {
  position: relative; min-height: 280px; height: 100%;
  display: grid; place-items: center;
}
.hero-blob {
  position: absolute; width: 260px; height: 260px; right: 18px; top: 10px;
  border-radius: 50%; background: radial-gradient(circle at 35% 30%, #dbeafe, #93c5fd 55%, transparent 72%);
}
.hero-ring {
  position: absolute; width: 210px; height: 210px; right: 70px; top: 36px;
  border-radius: 50%; border: 18px solid rgba(37,99,235,.14);
}
.hero-frame {
  position: absolute; width: 168px; height: 168px; right: 28px; bottom: 18px;
  border-radius: 28px; border: 2px solid #1e3a8a; transform: rotate(12deg);
}
.hero-mini {
  position: absolute; width: 210px; background: #fff; border: 1px solid rgba(15,42,68,.10);
  border-radius: 18px; padding: 14px; box-shadow: 0 18px 40px rgba(15,42,68,.12);
  display: grid; grid-template-columns: 42px 1fr; gap: 8px 10px; align-items: center;
}
.hero-mini.is-back { right: 92px; top: 28px; transform: rotate(-8deg); opacity: .72; z-index: 1; }
.hero-mini.is-front { right: 18px; bottom: 22px; transform: rotate(6deg); z-index: 2; }
.hero-mini-logo { width: 42px; height: 42px; border-radius: 12px; background: linear-gradient(135deg, #93c5fd, #2563eb); grid-row: span 2; }
.hero-mini-line { height: 8px; border-radius: 999px; background: #e2e8f0; }
.hero-mini-line.is-short { width: 62%; }
.hero-eyes { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 22px; }
.hero-eye {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(15, 42, 68, .10);
  border-radius: 999px; padding: 8px 14px; font-size: 13px; font-weight: 700;
  box-shadow: 0 8px 20px rgba(15, 42, 68, .06);
  color: var(--text);
  background: linear-gradient(135deg, rgba(37, 99, 235, .10), rgba(255, 255, 255, .95) 55%);
}
.hero-eye:nth-child(1) {
  background: linear-gradient(135deg, rgba(37, 99, 235, .16), rgba(219, 234, 254, .55) 42%, rgba(255, 255, 255, .96));
  border-color: rgba(37, 99, 235, .18);
}
.hero-eye:nth-child(1) i { color: #1d4ed8; }
.hero-eye:nth-child(2) {
  background: linear-gradient(135deg, rgba(14, 165, 233, .16), rgba(224, 242, 254, .55) 42%, rgba(255, 255, 255, .96));
  border-color: rgba(14, 165, 233, .2);
}
.hero-eye:nth-child(2) i { color: #0284c7; }
.hero-eye:nth-child(3) {
  background: linear-gradient(135deg, rgba(20, 184, 166, .16), rgba(204, 251, 241, .55) 42%, rgba(255, 255, 255, .96));
  border-color: rgba(13, 148, 136, .2);
}
.hero-eye:nth-child(3) i { color: #0f766e; }
.hero-eye:nth-child(4) {
  background: linear-gradient(135deg, rgba(15, 42, 68, .14), rgba(226, 232, 240, .6) 42%, rgba(255, 255, 255, .96));
  border-color: rgba(15, 42, 68, .16);
}
.hero-eye:nth-child(4) i { color: #0f2a44; }
.hero-eye i { color: #2563eb; }
.hero-eye b { font-family: 'Source Serif 4', serif; font-size: 16px; }
[data-theme="dark"] .hero-eye:nth-child(1) {
  background: linear-gradient(135deg, rgba(37, 99, 235, .28), rgba(30, 58, 138, .18) 45%, rgba(26, 35, 50, .96));
}
[data-theme="dark"] .hero-eye:nth-child(2) {
  background: linear-gradient(135deg, rgba(14, 165, 233, .28), rgba(3, 105, 161, .16) 45%, rgba(26, 35, 50, .96));
}
[data-theme="dark"] .hero-eye:nth-child(3) {
  background: linear-gradient(135deg, rgba(20, 184, 166, .26), rgba(15, 118, 110, .16) 45%, rgba(26, 35, 50, .96));
}
[data-theme="dark"] .hero-eye:nth-child(4) {
  background: linear-gradient(135deg, rgba(96, 165, 250, .22), rgba(15, 42, 68, .35) 45%, rgba(26, 35, 50, .96));
}
[data-theme="dark"] .hero-eye:nth-child(4) i { color: #93c5fd; }
.search-card {
  margin-top: 32px; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow);
  display: grid; grid-template-columns: 1.4fr 1fr auto; gap: 12px;
}
input:not([type="checkbox"]):not([type="radio"]):not([type="file"]):not([type="hidden"]), select, textarea {
  width: 100%; background: var(--input-bg); border: 1px solid var(--line); color: var(--text);
  border-radius: 12px; padding: 13px 14px; font: inherit;
}
input[type="checkbox"], input[type="radio"] {
  width: 18px; height: 18px; flex: 0 0 18px; accent-color: #2563eb;
}
textarea { min-height: 120px; resize: vertical; }
label { display: block; font-size: 13px; color: var(--muted); margin-bottom: 6px; font-weight: 600; }

.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 20px;
  padding: 22px; box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
a.card { color: inherit; }
a.card:hover { color: inherit; transform: translateY(-4px); box-shadow: 0 18px 44px rgba(15, 42, 68, .12); border-color: rgba(37, 99, 235, .28); }
.listing-card { overflow: hidden; padding: 0; display: flex; flex-direction: column; position: relative; }
.listing-corner-badge {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  color: #fff !important;
  border: 0;
  padding: 7px 12px;
  box-shadow: 0 8px 18px rgba(15, 42, 68, .18);
  background: linear-gradient(135deg, #1e3a8a, #0f2a44);
}
.listing-corner-badge--orbit {
  /* Explorer */
  background: linear-gradient(135deg, #fb923c, #ea580c);
  box-shadow: 0 8px 18px rgba(234, 88, 12, .32);
}
.listing-corner-badge--hyperdrive {
  /* Business Light */
  background: linear-gradient(135deg, #f472b6, #db2777);
  box-shadow: 0 8px 18px rgba(219, 39, 119, .32);
}
.listing-corner-badge--quantum {
  /* Business Premium — Marken-Dunkelblau */
  background: linear-gradient(135deg, #1e3a8a, #0f2a44);
  box-shadow: 0 8px 18px rgba(15, 42, 68, .28);
}
[data-theme="dark"] .listing-corner-badge,
[data-theme="dark"] .badge.listing-corner-badge {
  color: #fff !important;
  border: 0;
}
[data-theme="dark"] .listing-corner-badge--orbit {
  background: linear-gradient(135deg, #fb923c, #c2410c);
}
[data-theme="dark"] .listing-corner-badge--hyperdrive {
  background: linear-gradient(135deg, #f472b6, #be185d);
}
[data-theme="dark"] .listing-corner-badge--quantum {
  background: linear-gradient(135deg, #2563eb, #0f2a44);
}
[data-theme="dark"] .hero-badge {
  background: rgba(37,99,235,.18);
  color: #93c5fd;
  border-color: rgba(96,165,250,.28);
}
[data-theme="dark"] .listing-tags span {
  background: rgba(37,99,235,.18); color: #93c5fd;
}
.listing-card-media { position: relative; background: #eef4fb; }
.listing-cover { width: 100%; height: 168px; object-fit: cover; display: block; }
.listing-brand-logo {
  width: 100%; max-width: 240px; min-height: 88px;
  border-radius: 16px; display: grid; place-items: center;
  padding: 14px 18px; margin: 0 0 12px;
}
.listing-brand-logo.is-dark-bg {
  background: linear-gradient(160deg, #0f2a44, #1e3a8a);
}
.listing-brand-logo.is-light-bg {
  background: linear-gradient(180deg, #ffffff, #eef4fb);
  border: 1px solid var(--line);
}
.listing-brand-logo img { max-width: 100%; max-height: 72px; width: auto; object-fit: contain; }
.listing-brand-fallback { font-size: 38px; font-weight: 800; color: #fff; }
.listing-card .body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.listing-brand-logo { width: 100%; max-width: 100%; min-height: 92px; margin-bottom: 4px; }
.listing-card h3 { margin: 0; font-size: 22px; }
.listing-card h3.account-company-name,
.fdt-left h3.account-company-name {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.listing-card .verified-seal,
.fdt-left .verified-seal {
  width: 1.35em;
  height: 1.35em;
  font-size: .75em;
}
.listing-meta { display: flex; gap: 8px; align-items: flex-start; margin: 0; font-size: 13px; }
.listing-meta i { margin-top: 3px; color: #2563eb; }
.listing-excerpt { margin: 4px 0 0; font-size: 14px; }
.listing-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.listing-card-tags { margin: 2px 0 4px; max-width: 100%; }
.listing-card-tags span {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.listing-tags span {
  font-size: 11px; font-weight: 800; letter-spacing: .04em;
  padding: 4px 9px; border-radius: 999px; background: #eff6ff; color: #1d4ed8;
}
.listing-card-foot { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-top: auto; padding-top: 12px; flex-wrap: wrap; }
.listing-cta { padding: 8px 14px; font-size: 13px; }

.section-link--premium {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  letter-spacing: .01em;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #eff6ff, #e0e7ff);
  color: #1e3a8a;
  border: 1px solid rgba(37, 99, 235, .18);
  box-shadow: 0 6px 16px rgba(37, 99, 235, .08);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.section-link--premium i { font-size: 12px; opacity: .85; }
.section-link--premium:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(37, 99, 235, .14);
  background: linear-gradient(135deg, #dbeafe, #e0e7ff);
}
[data-theme="dark"] .section-link--premium {
  background: linear-gradient(135deg, #1e293b, #1e3a5f);
  color: #bfdbfe;
  border-color: rgba(147, 197, 253, .2);
}
[data-theme="dark"] .section-link--premium:hover {
  background: linear-gradient(135deg, #243447, #234876);
}

.impersonation-banner {
  position: sticky; top: 0; z-index: 120;
  background: linear-gradient(90deg, #b91c1c, #dc2626);
  color: #fff; box-shadow: 0 6px 24px rgba(185, 28, 28, .35);
}
.impersonation-banner-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 12px 0; flex-wrap: wrap;
}
.impersonation-banner-text {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  font-size: 14px;
}
.impersonation-banner-text i { font-size: 18px; }
.impersonation-banner-meta { opacity: .92; font-size: 13px; }
.impersonation-banner-btn {
  flex-shrink: 0;
  background: #fff !important;
  color: #991b1b !important;
  border: 1.5px solid #fff !important;
  font-weight: 800 !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
}
.impersonation-banner-btn:hover {
  background: #fef2f2 !important;
  color: #7f1d1d !important;
  border-color: #fecaca !important;
  filter: none;
}
body.is-impersonating .topbar { top: 0; }
.listing-more { font-size: 13px; font-weight: 800; color: #2563eb; }
.rating-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff7ed; border: 1px solid rgba(217,119,6,.22);
  border-radius: 999px; padding: 6px 10px 6px 12px;
}
.rating-stars { color: #d97706; letter-spacing: 1px; font-size: 12px; }
.rating-pill b { font-size: 14px; color: #0f2a44; }
.rating-pill small { color: #7c2d12; font-weight: 700; font-size: 11px; }
.badge {
  display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px;
  border: 1px solid var(--line); color: var(--gold);
}
.badge.orbit { color: #ea580c; }
.badge.hyperdrive { color: #db2777; }
.badge.quantum { color: #0f2a44; }
.muted { color: var(--muted); }
.stars { color: var(--gold); letter-spacing: 2px; }

.section { padding: 56px 0; }
.section-title { display: flex; justify-content: space-between; align-items: end; margin-bottom: 22px; gap: 16px; }
.section-title h2 { font-size: clamp(26px, 3vw, 34px); margin: 0; }
.section-title a { font-weight: 800; font-size: 14px; }

.flash { border-radius: 14px; padding: 12px 16px; margin: 12px 0; }
.flash-success { background: rgba(125,190,138,.12); color: var(--ok); }
.flash-error { background: rgba(224,122,108,.12); color: var(--danger); }

.footer { margin-top: 80px; border-top: 1px solid var(--line); padding: 40px 0 28px; color: var(--muted); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 28px; }

/* —— Cookie consent (premium) —— */
.ck-gate {
  position: fixed; inset: 0; z-index: 10050;
  display: grid; place-items: end center;
  padding: 18px 16px 22px;
  pointer-events: auto;
}
.ck-gate-backdrop {
  position: absolute; inset: 0;
  background: rgba(15, 23, 42, .72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  pointer-events: auto;
}
.ck-banner {
  position: relative; z-index: 2;
  width: min(920px, 100%);
  display: flex; flex-wrap: wrap; gap: 20px 28px;
  align-items: center; justify-content: space-between;
  background: #f8fafc; color: #0f172a;
  border: 1px solid #e2e8f0; border-radius: 24px;
  padding: 22px 24px; box-shadow: 0 28px 60px rgba(15, 23, 42, .35);
  pointer-events: auto;
}
.ck-banner-actions,
.ck-banner-actions button {
  position: relative;
  z-index: 3;
  pointer-events: auto;
}
.ck-banner-copy { flex: 1 1 320px; max-width: 560px; }
.ck-banner-kicker {
  display: inline-flex; align-items: center;
  padding: 4px 12px; border-radius: 999px;
  background: #1e3a8a; color: #fff;
  font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
}
.ck-banner-copy h2 {
  margin: 10px 0 8px; font-size: clamp(20px, 2.4vw, 26px);
  color: #0f172a; letter-spacing: -.02em;
}
.ck-banner-copy p {
  margin: 0; color: #475569; font-size: 14px; line-height: 1.55;
}
.ck-banner-actions {
  display: flex; flex-direction: column; gap: 8px;
  align-items: stretch; min-width: 200px;
}
.ck-btn-adjust,
.ck-btn-essential,
.ck-btn-accept {
  border-radius: 12px; padding: 11px 16px; font: inherit; font-weight: 750;
  cursor: pointer; white-space: nowrap; width: 100%; text-align: center;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.ck-btn-adjust {
  background: #fff; color: #334155; border: 1px solid #cbd5e1;
}
.ck-btn-adjust:hover { border-color: #94a3b8; color: #0f172a; }
.ck-btn-essential {
  background: #fff; color: #1d4ed8; border: 1.5px solid #93c5fd;
}
.ck-btn-essential:hover { background: #eff6ff; border-color: #60a5fa; }
.ck-btn-accept {
  background: #1e3a8a; color: #fff; border: 1.5px solid #1e3a8a;
}
.ck-btn-accept:hover { background: #1d4ed8; border-color: #1d4ed8; }
.ck-badge {
  position: fixed; left: 18px; bottom: 18px; z-index: 10040;
  width: 48px; height: 48px; border-radius: 999px; border: 0;
  background: #1e3a8a; color: #fff; cursor: pointer;
  display: grid; place-items: center; font-size: 18px;
  box-shadow: 0 12px 28px rgba(30, 58, 138, .45);
}
.ck-badge.is-behind-gate { visibility: hidden; pointer-events: none; }
.ck-badge:hover { background: #1d4ed8; transform: translateY(-1px); }
html:has(.ck-gate),
body:has(.ck-gate) { overflow: hidden; }
@media (max-width: 720px) {
  .ck-gate { place-items: end stretch; }
  .ck-banner-actions { width: 100%; min-width: 0; }
}
.ck-modal[hidden] { display: none !important; }
.ck-modal { position: fixed; inset: 0; z-index: 10060; display: grid; place-items: center; padding: 16px; pointer-events: auto; }
.ck-modal-backdrop { position: absolute; inset: 0; background: rgba(15, 23, 42, .55); }
.ck-modal-card {
  position: relative; width: min(680px, 100%); max-height: min(90vh, 860px); overflow: auto;
  background: #fff; color: #0f172a; border-radius: 22px; padding: 22px 22px 18px;
  box-shadow: 0 28px 60px rgba(15, 23, 42, .28);
}
.ck-modal-head { display: flex; justify-content: space-between; gap: 12px; align-items: flex-start; }
.ck-modal-head h2 { margin: 0 0 4px; font-size: 22px; }
.ck-modal-sub { margin: 0; color: #64748b; font-size: 13px; }
.ck-modal-lead { margin: 14px 0 16px; color: #334155; font-size: 14px; line-height: 1.5; }
.ck-modal-x {
  width: 36px; height: 36px; border-radius: 10px; border: 1px solid #e2e8f0;
  background: #f8fafc; color: #64748b; cursor: pointer; font-size: 22px; line-height: 1;
}
.ck-form { display: grid; gap: 12px; }
.ck-cat {
  border: 1px solid #e2e8f0; border-radius: 16px; padding: 14px 14px 10px; background: #fff;
}
.ck-cat-head { display: flex; flex-wrap: wrap; gap: 12px; align-items: flex-start; }
.ck-cat-icon {
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  background: #eff6ff; color: #1d4ed8; flex-shrink: 0;
}
.ck-cat-copy { flex: 1 1 180px; }
.ck-cat-copy strong { display: block; font-size: 15px; }
.ck-cat-copy span { color: #64748b; font-size: 13px; }
.ck-switch { margin-left: auto; }
.ck-switch.is-locked { opacity: .85; pointer-events: none; }
.ck-cat-list {
  margin: 12px 0 4px; padding: 0 0 0 18px; color: #475569; font-size: 13px; line-height: 1.55;
}
.ck-cat-list code {
  font-size: 12px; background: #f1f5f9; padding: 1px 6px; border-radius: 6px;
}
.ck-modal-foot {
  display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px;
  margin-top: 8px; padding-top: 14px; border-top: 1px solid #e2e8f0;
}
.ck-btn-save {
  background: #1e3a8a !important; color: #fff !important; border: 0 !important;
  border-radius: 12px; padding: 10px 16px; font-weight: 800; cursor: pointer;
}
.ck-modal-foot .ck-btn-accept {
  background: #15803d; border-color: #15803d; color: #fff;
}
body.ck-modal-open { overflow: hidden; }
.ck-page { max-width: 760px; }
.ck-page-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 22px;
  padding: 22px; box-shadow: var(--shadow);
}
.ck-media-block {
  min-height: 220px; display: grid; place-content: center; gap: 10px; text-align: center;
  padding: 28px 18px; background: linear-gradient(180deg, #eff6ff, #f8fafc); color: #1e3a8a;
}
.ck-media-block i { font-size: 34px; }
.ck-media-block p { margin: 0; max-width: 420px; color: #334155; font-size: 14px; line-height: 1.5; justify-self: center; }
.ck-media-block--inline { min-height: 160px; border-radius: 16px; border: 1px solid #e2e8f0; }
[data-theme="dark"] .ck-banner,
[data-theme="dark"] .ck-modal-card,
[data-theme="dark"] .ck-cat { background: #151d2c; color: #e2e8f0; border-color: rgba(148,163,184,.2); }
[data-theme="dark"] .ck-banner-copy h2 { color: #f8fafc; }
[data-theme="dark"] .ck-banner-copy p,
[data-theme="dark"] .ck-modal-sub,
[data-theme="dark"] .ck-cat-copy span { color: #94a3b8; }
[data-theme="dark"] .ck-btn-adjust,
[data-theme="dark"] .ck-btn-essential { background: #0f172a; }
[data-theme="dark"] .ck-btn-adjust { color: #e2e8f0; border-color: rgba(148,163,184,.35); }
[data-theme="dark"] .ck-cat-list { color: #cbd5e1; }
[data-theme="dark"] .ck-cat-list code { background: #0f172a; }
[data-theme="dark"] .ck-cat-icon { background: #1e3a5f; color: #93c5fd; }
[data-theme="dark"] .ck-media-block { background: #151d2c; color: #93c5fd; }
[data-theme="dark"] .ck-media-block p { color: #cbd5e1; }

.a11y-widget { position: fixed; right: 18px; bottom: 18px; z-index: 40; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.a11y-fab {
  display: inline-flex; align-items: center; gap: 8px;
  background: #22c55e; color: #052e16; border: 0; border-radius: 999px;
  padding: 10px 16px; font: inherit; font-weight: 800; cursor: pointer;
  box-shadow: 0 10px 28px rgba(34, 197, 94, .38);
}
.a11y-fab i { font-size: 18px; }
.a11y-panel {
  width: min(320px, calc(100vw - 32px));
  background: #fff; color: #0f172a; border-radius: 20px;
  padding: 16px 16px 12px; box-shadow: 0 22px 50px rgba(15, 23, 42, .22);
}
.a11y-panel[hidden] { display: none !important; }
.a11y-panel-head {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 10px;
  margin-bottom: 10px;
}
.a11y-panel-head strong { display: block; font-size: 15px; }
.a11y-panel-head small { color: #334155; font-size: 12px; }
.a11y-close {
  width: 32px; height: 32px; border: 1px solid #e2e8f0; border-radius: 10px;
  background: #f8fafc; color: #334155; cursor: pointer; display: grid; place-items: center;
  flex-shrink: 0; font-size: 14px;
}
.a11y-close:hover { background: #eef2f7; color: #0f172a; }
.a11y-score-ring, .cert-score {
  --score: 100;
  width: 128px; height: 128px; margin: 8px auto 14px; border-radius: 50%;
  background: conic-gradient(#0f766e calc(var(--score) * 1%), #e2e8f0 0);
  display: grid; place-items: center; text-align: center;
  position: relative;
}
.a11y-score-ring::before, .cert-score::before {
  content: ""; position: absolute; inset: 10px; border-radius: 50%; background: #fff;
}
.a11y-score-inner,
.a11y-score-ring b, .a11y-score-ring span,
.cert-score b, .cert-score span { position: relative; z-index: 1; display: block; }
.a11y-score-inner {
  background: #fff; border-radius: 50%; width: 96px; height: 96px;
  display: grid; place-content: center; gap: 4px; padding: 8px;
  box-shadow: 0 0 0 1px rgba(15, 118, 110, .08);
}
.a11y-score-ring b, .cert-score b { font-size: 30px; font-family: 'Source Serif 4', serif; line-height: 1; color: #0f172a; }
.a11y-score-ring span, .cert-score span {
  font-size: 11px; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; color: #0f766e;
}
.a11y-metrics { margin: 0 0 12px; }
.a11y-metrics div { display: flex; justify-content: space-between; gap: 12px; padding: 6px 0; border-bottom: 1px dashed #e2e8f0; font-size: 13px; }
.a11y-metrics dt { color: #334155; }
.a11y-metrics dd { margin: 0; font-weight: 800; }
.a11y-cert-btn { width: 100%; margin: 0 0 12px; }
.a11y-tools { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.a11y-tools button {
  border: 1px solid #e2e8f0; background: #fff; color: #0f172a;
  border-radius: 12px; padding: 10px 8px; font: inherit; font-size: 12px; font-weight: 700; cursor: pointer;
}
.a11y-reset { display: block; width: 100%; margin-top: 8px; border: 0; background: none; color: #64748b; font: inherit; cursor: pointer; }
[data-contrast="high"] { filter: contrast(1.15); }
[data-contrast="high"] body { background: #fff; color: #000; }
[data-theme="dark"][data-contrast="high"] { filter: contrast(1.2); }
html[data-links="on"] a { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.nav-toggle { display: none; }

.layout-app { display: grid; grid-template-columns: 280px 1fr; min-height: 100vh; }
.sidebar {
  background: #0b1220; border-right: 1px solid rgba(255,255,255,.08); padding: 22px 18px;
  position: sticky; top: 0; height: 100vh; overflow: auto;
}
.brand-logo { max-height: 50px; height: 50px; width: auto; max-width: 260px; object-fit: contain; display: block; }
.grecaptcha-badge { visibility: hidden !important; opacity: 0 !important; pointer-events: none !important; width: 0 !important; height: 0 !important; overflow: hidden !important; }
.logo-for-dark { display: none !important; }
[data-theme="dark"] .logo-for-light { display: none !important; }
[data-theme="dark"] .logo-for-dark { display: block !important; }
.sidebar a, .sidebar button {
  display: block; width: 100%; text-align: left; color: var(--muted); padding: 10px 12px; border-radius: 12px;
  background: none; border: 1px solid transparent; font: inherit; cursor: pointer;
}
.sidebar a:hover, .sidebar a.active { background: rgba(96,165,250,.12); color: #fff; border-color: rgba(96,165,250,.28); }
.sidebar h6 { color: #60a5fa; letter-spacing: .16em; text-transform: uppercase; font-size: 11px; margin: 18px 8px 8px; }
.sidebar .nav-link.primary { color: #93c5fd; border-color: rgba(96,165,250,.18); }
.sidebar .nav-link.security { border-color: rgba(248,113,113,.18); }
.sidebar .nav-link.settings { border-color: rgba(147,197,253,.18); }
.sidebar-logo { max-height: 36px; max-width: 160px; object-fit: contain; }
.sidebar-user { padding: 10px 12px; margin: 4px 0 10px; border: 1px solid rgba(255,255,255,.08); border-radius: 12px; color: #e2e8f0; }
.sidebar-user small { display: block; color: #94a3b8; font-size: 12px; }
.sidebar-status {
  margin-top: 22px; padding: 14px; border-radius: 14px; background: #111827;
  border: 1px solid rgba(96,165,250,.2); color: #93c5fd; font-size: 13px;
}
.sidebar-status span { display: block; margin-top: 6px; }
.admin-top { display: flex; justify-content: space-between; gap: 16px; align-items: flex-start; margin-bottom: 18px; }
.admin-page-title { margin: 0; font-size: 32px; }
.admin-top-meta { display: flex; gap: 10px; align-items: center; }
.version-pill {
  background: linear-gradient(135deg, #0f2a44, #2563eb); color: #fff; padding: 6px 12px;
  border-radius: 999px; font-weight: 800; font-size: 12px;
}
.admin-welcome { display: flex; justify-content: space-between; gap: 16px; align-items: center; margin-bottom: 22px; }
.dash-kpis a.stat { color: inherit; }
.dash-kpis .stat.warn b { color: var(--danger); }
.health-card h3 { margin-bottom: 10px; }
.health-label { margin-bottom: 6px; }
.health-bar { height: 8px; background: rgba(255,255,255,.08); border-radius: 99px; overflow: hidden; margin: 8px 0 12px; }
.health-bar span { display: block; height: 100%; background: linear-gradient(90deg, #2563eb, #60a5fa); }
.settings-block { margin-bottom: 18px; }
.settings-checks { display: grid; gap: 10px; }
.settings-checks label { display: flex; align-items: center; gap: 8px; margin: 0; }
.ph-switch {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px; border-radius: 12px; background: var(--ph-canvas, var(--bg));
  margin: 0;
}
.ph-switch span { color: var(--ph-text, var(--text)); font-weight: 600; }
.ph-switch input[type="checkbox"] {
  appearance: none; width: 42px; height: 24px; flex: 0 0 42px;
  background: #cbd5e1; border-radius: 999px; position: relative; cursor: pointer; border: 0;
}
.ph-switch input[type="checkbox"]::after {
  content: ""; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px;
  background: #fff; border-radius: 50%; transition: left .15s;
}
.ph-switch input[type="checkbox"]:checked { background: #2563eb; }
.ph-switch input[type="checkbox"]:checked::after { left: 21px; }
[data-theme="dark"] .ph-switch {
  background: #0b1220;
  border: 1px solid rgba(148, 163, 184, .22);
}
[data-theme="dark"] .mega-geo-switch {
  background: #020617;
  border-color: rgba(96, 165, 250, .28);
}
[data-theme="dark"] .ph-switch input[type="checkbox"] {
  background: #1e293b;
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, .35);
}
[data-theme="dark"] .ph-switch input[type="checkbox"]:checked {
  background: #1d4ed8;
  box-shadow: none;
}
[data-theme="dark"] .ph-switch span { color: #cbd5e1; }
.tag-picker-grid, .tag-cloud {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.tag-chip {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid var(--ph-line, var(--line)); border-radius: 999px;
  padding: 6px 10px; margin: 0; background: var(--ph-card, var(--surface)); cursor: pointer;
}
.tag-chip input { margin: 0; }
.tag-chip span, .keyword {
  font-weight: 700; color: #2563eb; font-size: 13px;
}
a.keyword { text-decoration: none; }
.tag-admin-item {
  display: flex; flex-direction: column; gap: 4px;
  border: 1px solid var(--ph-line, var(--line)); border-radius: 12px; padding: 10px 12px;
  background: var(--ph-card, var(--surface)); min-width: 140px;
}
.hours-grid { display: grid; gap: 8px; }
.hours-row { display: grid; grid-template-columns: 120px 1fr 1fr 1fr; gap: 10px; align-items: center; }
.premium-form .card, .premium-form.card { width: 100%; }
.btn-gold { color: #fff; }
.drop-zone {
  min-height: 140px; border: 2px dashed rgba(96,165,250,.35); border-radius: 16px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  cursor: pointer; background: rgba(15,42,68,.25); padding: 12px; text-align: center;
}
.drop-zone.light { background: #f8fafc; color: #334155; }
.drop-zone.over { border-color: #60a5fa; box-shadow: 0 0 0 3px rgba(96,165,250,.2); }
.bb-editor.is-drop { outline: 2px dashed #2563eb; }
.bb-media-drop { margin: 12px 0 16px; min-height: 110px; }
.bb-media-drop i { font-size: 22px; color: #2563eb; }
.drop-preview.favicon { max-height: 48px; max-width: 48px; }
.otp-secret { display: block; padding: 10px; background: var(--bg-2); border-radius: 10px; margin: 8px 0; }
.admin-menu-toggle {
  display: none; position: fixed; top: 12px; right: 12px; z-index: 80;
  background: #0f2a44; color: #fff; border: 0; border-radius: 10px; padding: 10px 14px; font: inherit;
}
.sidebar-backdrop { display: none; }
.mainpad { padding: 28px 32px 60px; }
.table { width: 100%; border-collapse: collapse; }
.table th, .table td { padding: 12px 10px; border-bottom: 1px solid var(--line); text-align: left; font-size: 14px; }
.table th { color: var(--muted); font-weight: 700; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.stat { padding: 18px; }
.stat b { display: block; font-size: 28px; font-family: 'Source Serif 4', serif; }

.package { position: relative; overflow: hidden; }
.package:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(15, 42, 68, .12); }
.package.featured {
  border-color: transparent;
  box-shadow:
    0 0 0 2px #1d4ed8,
    0 24px 52px rgba(37, 99, 235, .2);
  background:
    linear-gradient(180deg, rgba(37, 99, 235, .10), var(--surface) 28%);
}
.package .btn { margin-top: 16px; width: 100%; }
.pkg-ribbon {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin: -22px -22px 20px;
  padding: 13px 18px;
  color: #fff;
  font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  background:
    linear-gradient(105deg, #0b3a8a 0%, #1d4ed8 38%, #2563eb 62%, #0284c7 100%);
  box-shadow: inset 0 -1px 0 rgba(255,255,255,.18), 0 10px 24px rgba(29, 78, 216, .22);
  position: relative;
}
.pkg-ribbon::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -8px; height: 8px;
  background: linear-gradient(180deg, rgba(29, 78, 216, .18), transparent);
  pointer-events: none;
}
.pkg-ribbon i {
  font-size: 14px; color: #fde68a;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.28));
}
.pkg-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px; margin-bottom: 10px;
}
.pkg-badge-featured { display: none; }
.price { font-size: 38px; font-family: 'Source Serif 4', serif; letter-spacing: -.03em; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .full { grid-column: 1 / -1; }
.listing-hero { display: grid; grid-template-columns: 1.4fr .8fr; gap: 24px; }
.map { height: 220px; border-radius: 18px; overflow: hidden; border: 1px solid var(--line); background: #10151f; }

.wrap-narrow { width: min(1000px, calc(100% - 40px)); margin-left: auto; margin-right: auto; }
.map-fullscreen { width: 100%; }
.map-fullscreen iframe, .video-frame iframe { width: 100%; height: 400px; border: 0; display: block; }
.listing-show-page .video-frame iframe,
.listing-show-page .listing-video { max-width: 420px; height: 236px; }
.listing-show-page .video-frame { max-width: 420px; border-radius: 12px; overflow: hidden; }
.video-frame { border-radius: 12px; overflow: hidden; }
.listing-video { width: 100%; border-radius: 12px; }
.business-header { padding: 28px 0 8px; }
.business-header-inner { width: min(1000px, calc(100% - 40px)); margin: 0 auto; display: flex; justify-content: space-between; gap: 24px; align-items: flex-start; }
.business-left { display: flex; flex-direction: column; gap: 8px; }
.business-logo { max-width: 250px; height: auto; border-radius: 10px; margin-bottom: 12px; background: #fff; padding: 8px; }
.business-name-wrapper { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.business-name { font-size: clamp(28px, 4vw, 42px); margin: 0; }
.entry-id { font-size: 13px; color: var(--teal); background: rgba(125,211,199,.1); padding: 4px 10px; border-radius: 8px; }
.star-form { display: inline; }
.business-rating { display: flex; align-items: center; gap: 10px; color: var(--text); }
.rating-value { font-size: 22px; font-family: 'Source Serif 4', serif; color: var(--accent); }
.business-status { font-weight: 700; padding: 10px 16px; border-radius: 10px; white-space: nowrap; }
.status-open { background: rgba(125,190,138,.18); color: var(--ok); }
.status-closed { background: rgba(224,122,108,.16); color: var(--danger); }
.status-neutral { background: rgba(255,255,255,.06); color: var(--muted); }
.business-address-wrapper { width: min(1000px, calc(100% - 40px)); margin: 0 auto 8px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.business-address-line { display: flex; gap: 8px; color: var(--muted); }
.business-actions { width: min(1000px, calc(100% - 40px)); margin: 16px auto 28px; display: flex; flex-wrap: wrap; gap: 10px; }
.galactic-gallery-box, .galactic-admin-box, .galactic-hours-box, .galactic-description-box, .galactic-review-box {
  margin: 28px auto; padding: 28px; background: var(--surface);
  border: 1px solid rgba(37, 99, 235, .16); border-radius: 18px;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, .06), 0 14px 42px rgba(37, 99, 235, .1);
  position: relative;
}
.gallery-floating-label, .hours-floating-label {
  position: absolute; top: -12px; left: 22px; background: var(--surface); color: var(--accent);
  padding: 4px 14px; border-radius: 999px; font-weight: 800; font-size: 13px; letter-spacing: .04em;
  border: 1px solid rgba(37, 99, 235, .14); box-shadow: 0 4px 14px rgba(37, 99, 235, .08);
}
.box-section-title {
  margin: 0 0 16px; color: var(--accent); font-size: 20px; display: flex; align-items: center; gap: 8px;
}
.gallery-scroll { display: flex; gap: 12px; overflow-x: auto; padding: 8px 0 4px; scrollbar-width: thin; }
.gallery-item {
  flex: 0 0 auto; border-radius: 10px; overflow: hidden; border: 1px solid var(--line);
  cursor: zoom-in; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.gallery-item:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, .35);
  box-shadow: 0 10px 24px rgba(37, 99, 235, .16);
}
.gallery-item img { display: block; height: 140px; width: auto; }
.admin-title, .hours-title, .description-title, .review-title { color: var(--accent); font-size: 22px; margin: 0 0 16px; }
.hours-open-badge {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px; padding: 8px 14px;
  border-radius: 10px; font-weight: 700; font-size: 14px;
}
.hours-open-badge.status-open { background: rgba(34, 197, 94, .12); color: #15803d; }
.hours-open-badge.status-closed { background: rgba(239, 68, 68, .12); color: #b91c1c; }
.hours-open-badge.status-soon { background: rgba(245, 158, 11, .14); color: #b45309; }
.hours-open-badge.status-neutral { background: rgba(148, 163, 184, .12); color: var(--muted); }
.admin-info-list { list-style: none; padding: 0; margin: 0; }
.admin-info-list li { padding: 10px 0; border-bottom: 1px solid var(--line); display: flex; gap: 10px; align-items: center; }
.glow-hr { border: 0; height: 2px; margin: 22px 0; background: linear-gradient(to right, var(--teal), var(--gold)); }
.admin-social-icons { display: flex; gap: 14px; justify-content: center; }
.social-icon { color: var(--teal); font-weight: 700; }
.description-text { line-height: 1.7; color: var(--text); }
.description-text p { margin: 0 0 12px; }
.review-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 22px; }
.review-card { background: var(--bg); border: 1px solid var(--line); border-radius: 14px; padding: 16px; }
.review-form, .report-box form { margin-top: 18px; }
.entry-footer-meta { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; align-items: center; padding: 18px 0 40px; color: var(--muted); font-size: 14px; }
.keyword { color: var(--teal); margin-left: 8px; }

/* Listing show – CI4-style */
.listing-show-page { position: relative; }
.listing-show-page--locked .listing-show-hero,
.listing-show-page--locked .listing-show-body {
  filter: blur(5px);
  pointer-events: none;
  user-select: none;
}
.listing-show-hero { padding: 24px 0 0; text-align: left; }
.listing-show-hero-inner { position: relative; }
.listing-show-head { position: relative; padding-top: 4px; min-height: 42px; }
.listing-show-identity { display: flex; align-items: flex-start; gap: 22px; flex-wrap: wrap; }
.listing-show-meta { flex: 1; min-width: min(100%, 280px); }
.listing-show-status.status-open { background: rgba(34, 197, 94, .14); color: #15803d; }
.listing-show-status.status-closed { background: rgba(239, 68, 68, .14); color: #b91c1c; }
.listing-show-status.status-soon { background: rgba(245, 158, 11, .16); color: #b45309; }
.listing-show-status.status-neutral { background: rgba(148, 163, 184, .14); color: var(--muted); }
.listing-show-logo {
  max-width: 180px; width: 180px; height: auto; border-radius: 12px; background: #fff; padding: 10px;
  box-shadow: 0 8px 24px rgba(15,42,68,.08); flex: 0 0 auto;
}
.listing-show-title-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: flex-start; }
.listing-show-title-row .business-name { margin: 0; font-size: clamp(26px, 4vw, 38px); }
.btn-star { padding: 6px 10px; min-height: auto; }
.listing-show-hero .business-rating { justify-content: flex-start; margin-top: 8px; }
.listing-show-hero .business-address-line { justify-content: flex-start; color: var(--muted); margin-top: 8px; }
.listing-show-hero .business-actions { justify-content: flex-start; margin: 18px auto 28px; }
.listing-admin-link {
  display: inline-flex; align-items: center; gap: 6px; margin-bottom: 12px; font-size: 13px; font-weight: 700;
  color: var(--accent); text-decoration: none;
}
.listing-admin-link:hover { text-decoration: underline; }
.btn-listing-action {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 18px; border-radius: 999px;
  background: #0f2a44; color: #fff; border: 0; font-weight: 700; font-size: 14px; text-decoration: none;
  box-shadow: 0 8px 20px rgba(15,42,68,.18);
}
.btn-listing-action:hover { filter: brightness(1.08); color: #fff; }
.btn-listing-action-primary { background: linear-gradient(135deg, #0f2a44, #2563eb); }
.map-fullscreen--dim iframe { filter: grayscale(.35) brightness(.72); }
.listing-show-body { padding-bottom: 24px; }

.listing-password-overlay {
  position: fixed; inset: 0; z-index: 120; display: flex; align-items: center; justify-content: center;
  padding: 24px; background: rgba(8, 12, 20, .55); backdrop-filter: blur(4px);
}
.listing-password-modal {
  width: min(520px, 100%); padding: 0; border-radius: 18px; overflow: hidden;
  background: var(--surface); border: 1px solid rgba(37, 99, 235, .16);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .06), 0 24px 60px rgba(15, 42, 68, .22);
  color: var(--text); text-align: left;
}
.listing-password-modal-head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 18px 22px; border-bottom: 1px solid var(--line); background: rgba(37, 99, 235, .05);
}
.listing-password-modal-head h2 {
  margin: 0; font-size: 20px; color: var(--accent); display: flex; align-items: center; gap: 10px;
}
.listing-password-modal-body { padding: 22px 22px 24px; }
.listing-password-lead { margin: 0 0 18px; line-height: 1.55; color: var(--muted); font-size: 15px; }
.listing-password-form { display: grid; gap: 12px; }
.listing-password-form input[type=password] {
  width: 100%; padding: 14px 16px; border-radius: 12px; border: 1px solid var(--line);
  background: var(--bg); color: var(--text); font-size: 16px;
}
.listing-password-error { margin: 0; color: var(--danger); font-size: 14px; font-weight: 600; }
.btn-listing-unlock {
  justify-self: end; min-width: 160px; padding: 12px 28px; border: 0; border-radius: 999px;
  background: linear-gradient(180deg, #fbbf24, #f59e0b); color: #1a1200; font-weight: 800; font-size: 15px; cursor: pointer;
}
.btn-listing-unlock:hover { filter: brightness(1.05); }

.ci4-modal {
  position: fixed; inset: 0; z-index: 130; display: flex; align-items: center; justify-content: center;
  padding: 24px; background: rgba(8, 12, 20, .55); backdrop-filter: blur(4px);
}
.ci4-modal[hidden] { display: none !important; }
body.ci4-modal-open { overflow: hidden; }
.ci4-modal-card {
  width: min(560px, 100%); max-height: min(90vh, 720px); overflow: auto;
  background: var(--surface); border: 1px solid rgba(37, 99, 235, .16); border-radius: 18px;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .06), 0 24px 60px rgba(15, 42, 68, .22);
}
.ci4-modal-head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 16px 20px; border-bottom: 1px solid var(--line); background: rgba(37, 99, 235, .05);
}
.ci4-modal-head h3 { margin: 0; font-size: 18px; color: var(--accent); display: flex; align-items: center; gap: 8px; }
.ci4-modal-close {
  border: 0; background: none; font-size: 22px; line-height: 1; cursor: pointer; color: var(--muted);
}
.ci4-modal-body { padding: 20px; display: grid; gap: 14px; }
.ci4-modal-body label { font-weight: 700; font-size: 14px; }
.ci4-modal-body input, .ci4-modal-body select, .ci4-modal-body textarea {
  width: 100%; padding: 12px 14px; border-radius: 12px; border: 1px solid var(--line);
  background: var(--bg); color: var(--text); font: inherit;
}
.ci4-modal-body textarea { min-height: 120px; resize: vertical; }
.ci4-modal-foot {
  display: flex; justify-content: flex-end; gap: 10px; padding: 0 20px 20px;
}
.ci4-star-prompt {
  margin: 0; text-align: center; font-weight: 700; font-size: 15px; color: var(--text);
}
.ci4-star-row {
  display: flex; justify-content: center; gap: 10px; line-height: 1; margin: 4px 0 8px;
}
.ci4-star-row .ci4-star-btn,
.ci4-star-row button[data-star] {
  width: 52px; height: 52px; border-radius: 12px;
  border: 2px solid #f2b131; background: #fff; color: #f2b131;
  display: inline-grid; place-items: center; cursor: pointer; padding: 0;
  font-size: 22px; transition: background .15s ease, color .15s ease, transform .12s ease, box-shadow .15s ease;
}
.ci4-star-row .ci4-star-btn i,
.ci4-star-row button[data-star] i { pointer-events: none; }
.ci4-star-row .ci4-star-btn.is-on,
.ci4-star-row .ci4-star-btn.is-preview,
.ci4-star-row button[data-star].is-on,
.ci4-star-row button[data-star].is-preview {
  background: #f2b131; color: #111827; box-shadow: 0 6px 14px rgba(242, 177, 49, .28);
}
.ci4-star-row .ci4-star-btn:hover,
.ci4-star-row button[data-star]:hover { transform: translateY(-1px); }
.ci4-toggle {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 10px 14px; border-radius: 12px; border: 1px solid var(--line); background: var(--bg);
}
.ci4-toggle input { width: auto; accent-color: var(--accent); }
.listing-entry-link-box h4 {
  display: inline-block; margin: 0 auto 8px; padding: 6px 14px; border-radius: 999px;
  background: rgba(37, 99, 235, .1); color: var(--accent); font-size: 13px;
}
.listing-entry-link-box a {
  display: inline-block; padding: 8px 16px; border-radius: 999px; border: 1px solid rgba(37, 99, 235, .2);
  background: var(--surface);
}

.hours-toggle { border: 1px solid rgba(37, 99, 235, .14); border-radius: 14px; overflow: hidden; background: var(--bg); }
.hours-toggle-btn {
  display: flex; align-items: center; justify-content: space-between; cursor: pointer;
  padding: 14px 16px; font-weight: 700; color: var(--accent); list-style: none; width: 100%;
  background: rgba(37, 99, 235, .04);
}
.hours-toggle-btn::after { content: '▾'; color: var(--muted); transition: transform .2s ease; }
.hours-toggle[open] .hours-toggle-btn::after { transform: rotate(180deg); }
.hours-toggle summary::-webkit-details-marker { display: none; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 11px 16px; border-top: 1px solid var(--line); font-size: 14px; }
.hours-table tr.hours-row-open td { color: #15803d; font-weight: 700; }
.hours-table tr.hours-row-soon td { color: #b45309; font-weight: 700; }
.hours-table tr.hours-row-closed td { color: #b91c1c; font-weight: 700; }
.hours-table tr.hours-row-planned td { color: var(--text); }
.hours-table tr.hours-row-other td { color: var(--muted); }
.hours-table tr.hours-row-none td { color: #94a3b8; font-style: italic; }
.hours-legend {
  display: flex; flex-wrap: wrap; gap: 12px 16px; margin-top: 16px; padding-top: 14px;
  border-top: 1px solid var(--line); font-size: 12px; color: var(--muted);
}
.hours-dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: 6px; vertical-align: middle; }
.hours-dot-open { background: #22c55e; }
.hours-dot-closed { background: #ef4444; }
.hours-dot-soon { background: #f59e0b; }
.hours-dot-none { background: #94a3b8; }
.hours-dot-other { background: #64748b; }
.hours-dot-planned { background: #1e293b; border: 1px solid #cbd5e1; }

.review-summary-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding: 18px 20px; margin-bottom: 20px; border-radius: 16px;
  background: linear-gradient(135deg, #fff9e8 0%, #fff3cc 55%, #ffe8b0 100%);
  border: 1px solid #f6e7b8;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}
.review-summary-main { display: flex; align-items: center; gap: 16px; min-width: 0; }
.review-summary-score { text-align: center; }
.review-summary-value {
  display: block; font-family: 'Source Serif 4', Georgia, serif;
  font-size: 36px; line-height: 1; font-weight: 700; color: #0f2a44;
}
.review-summary-stars-row { margin-top: 4px; font-size: 14px; letter-spacing: 1px; }
.review-summary-copy { display: grid; gap: 2px; }
.review-summary-copy strong { font-size: 15px; color: var(--accent); }
.review-summary-bar .stars-gold { color: #f2b131; }
.stars-gold { color: #f2b131; }
.stars-muted { color: #d1d5db; }
.review-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 8px; }
.review-card-premium {
  background: linear-gradient(180deg, #fff, #f8fafc);
  border: 1px solid rgba(37,99,235,.12);
  border-radius: 18px; padding: 20px;
  box-shadow: 0 10px 28px rgba(15,42,68,.06);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .16s ease, box-shadow .16s ease;
}
.review-card-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(15,42,68,.1);
}
.review-card-identity { display: flex; align-items: center; gap: 12px; min-width: 0; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 14px; flex: 0 0 44px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #0f2a44, #2563eb);
  color: #fff; font-weight: 800; font-size: 16px;
}
.review-card-user { display: block; color: var(--accent); font-weight: 800; font-size: 15px; }
.review-card-stars { margin-top: 4px; font-size: 15px; letter-spacing: 1px; }
.review-card-date {
  color: var(--muted); font-size: 12px; font-weight: 700;
  white-space: nowrap; letter-spacing: .02em;
}
.review-card-body {
  margin: 0; line-height: 1.7; color: var(--text); font-size: 15px;
  padding: 12px 14px; border-radius: 12px;
  background: rgba(37,99,235,.04); border: 1px solid rgba(37,99,235,.06);
}
.review-card-foot { display: flex; justify-content: flex-end; align-items: center; margin-top: auto; }
.review-report-btn {
  display: inline-flex; align-items: center; gap: 6px;
  border: 0; background: none; color: #dc2626; cursor: pointer;
  padding: 4px 8px; font-size: 12px; font-weight: 700; border-radius: 8px;
}
.review-report-btn:hover { background: rgba(220,38,38,.08); color: #991b1b; }
.review-empty-hint { margin: 8px 0 0; }
.btn-report-icon {
  border: 0; background: none; color: #dc2626; cursor: pointer; font-size: 18px; padding: 4px;
  line-height: 1;
}
.btn-report-icon:hover { color: #991b1b; transform: scale(1.06); }

.ci4-modal-head { background: linear-gradient(180deg, #fff9e8, #fff3cc); border-bottom: 1px solid #f6e7b8; }
.ci4-modal-body textarea.ci4-textarea-dark {
  background: #2b3038; color: #f8fafc; border-color: #3f4654;
}
.ci4-modal-body textarea.ci4-textarea-dark::placeholder { color: #94a3b8; }
.btn-ci4-send {
  border: 0; border-radius: 999px; padding: 11px 22px; font-weight: 800; cursor: pointer;
  background: linear-gradient(180deg, #ffd54a, #f2b131); color: #1a1200;
}
.btn-ci4-send:hover { filter: brightness(1.04); }
.review-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }
.review-head .review-title { margin: 0; }
.btn-review-toggle {
  border: 0; border-radius: 999px; padding: 10px 18px; font-weight: 800; cursor: pointer;
  background: linear-gradient(135deg, #ea580c, #f59e0b); color: #fff; white-space: nowrap;
}
.review-card-head {
  display: flex; justify-content: space-between; gap: 12px; align-items: flex-start; margin-bottom: 0;
}
.review-report { display: flex; gap: 8px; align-items: center; margin-top: 8px; flex-wrap: wrap; }
.review-report input { max-width: 180px; }
.admin-social-icons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.social-icon {
  width: 42px; height: 42px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  background: rgba(125,211,199,.12); color: var(--teal); font-size: 18px; text-decoration: none;
}
.social-icon:hover { background: rgba(37,99,235,.14); color: var(--accent); }
.entry-footer-tags { display: flex; flex-wrap: wrap; gap: 8px 12px; align-items: center; }
.listing-entry-links {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 0 auto 36px;
}
.listing-entry-link-box {
  background: rgba(37,99,235,.06); border: 1px solid rgba(37,99,235,.14); border-radius: 14px;
  padding: 16px; display: grid; gap: 8px; text-align: center;
}
.listing-entry-link-box h4 { margin: 0 0 4px; font-size: 14px; color: var(--accent); }
.listing-entry-link-box a { color: var(--text); font-weight: 650; font-size: 14px; text-decoration: none; }
.listing-entry-link-box a:hover { color: var(--accent); }
.listing-owner-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  margin-bottom: 32px; padding: 16px 20px; border-radius: 14px; background: rgba(34,197,94,.08); border: 1px solid rgba(34,197,94,.2);
}
.listing-owner-bar .flash { margin: 0; }

body.lightbox-open { overflow: hidden; }
.lightbox-overlay {
  position: fixed; inset: 0; z-index: 120; display: none; align-items: center; justify-content: center;
  background: rgba(8, 12, 20, .92); padding: 56px 72px 48px; gap: 12px;
}
.lightbox-overlay.open { display: flex; }
.lightbox-stage { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 12px; max-width: min(92vw, 1100px); }
.lightbox-overlay img {
  display: block; max-width: min(92vw, 1100px); max-height: calc(85vh - 48px);
  border-radius: 12px; box-shadow: 0 24px 64px rgba(0,0,0,.45); object-fit: contain;
}
.lightbox-caption {
  color: rgba(255,255,255,.88); font-size: 14px; font-weight: 600; text-align: center;
  max-width: 40rem; line-height: 1.4;
}
.lightbox-caption:empty { display: none; }
.lightbox-counter {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.78); font-size: 13px; font-weight: 700; letter-spacing: .04em;
}
.lightbox-close, .lightbox-nav {
  position: absolute; appearance: none; border: 0; cursor: pointer; color: #fff;
  background: rgba(255,255,255,.12); backdrop-filter: blur(8px);
  transition: background .15s ease, transform .15s ease;
}
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255,255,255,.22); }
.lightbox-close {
  top: 16px; right: 16px; width: 44px; height: 44px; border-radius: 999px;
  font-size: 28px; line-height: 1; display: grid; place-items: center;
}
.lightbox-nav {
  top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 999px;
  font-size: 32px; line-height: 1; display: grid; place-items: center;
}
.lightbox-nav:hover { transform: translateY(-50%) scale(1.04); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-nav[hidden] { display: none !important; }
@media (max-width: 700px) {
  .lightbox-overlay { padding: 64px 16px 56px; }
  .lightbox-nav { width: 40px; height: 40px; font-size: 26px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

.bb-toasts {
  position: fixed; top: 18px; right: 18px; z-index: 10100; display: flex; flex-direction: column; gap: 10px;
  width: min(380px, calc(100% - 24px)); pointer-events: none;
}
.bb-toast {
  pointer-events: auto; display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
  padding: 14px 16px; border-radius: 14px; color: #fff; font-weight: 650; font-size: 14px; line-height: 1.4;
  box-shadow: 0 18px 40px rgba(15, 42, 68, .22);
  animation: bb-toast-in .28s ease;
}
.bb-toast-success { background: linear-gradient(135deg, #0f2a44, #2563eb); }
.bb-toast-error { background: linear-gradient(135deg, #7f1d1d, #dc2626); }
.bb-toast-warn { background: linear-gradient(135deg, #92400e, #f59e0b); }
.bb-toast button {
  background: none; border: 0; color: inherit; font-size: 18px; line-height: 1; cursor: pointer; opacity: .75;
}
.bb-toast.out { animation: bb-toast-out .32s ease forwards; }
@keyframes bb-toast-in { from { transform: translateY(-10px); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes bb-toast-out { to { transform: translateY(-8px); opacity: 0; } }

.pkg-list { margin: 0 0 18px; padding: 0; list-style: none; color: var(--muted); }
.pkg-list li { margin: 6px 0; display: flex; gap: 8px; align-items: center; font-size: 14px; }
.pkg-list li.is-on { color: var(--text); }
.pkg-list li.is-off { opacity: .55; }
.pkg-list i { width: 16px; color: #16a34a; }
.pkg-list li.is-off i { color: #94a3b8; }
.package .badge { margin-bottom: 10px; }

.maint-page {
  min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 24px 16px;
  background:
    radial-gradient(90% 60% at 50% -10%, rgba(37,99,235,.28), transparent 58%),
    var(--bg);
}
.maint-theme { position: fixed; top: 18px; right: 18px; z-index: 5; }
.maint-shell { width: min(1200px, 100%); display: grid; gap: 32px; }
.maint-card {
  width: min(640px, 100%); margin: 0 auto; text-align: center; padding: 48px 36px 36px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 28px; box-shadow: var(--shadow);
}
.maint-card h1 { margin: 8px 0 12px; font-size: clamp(28px, 5vw, 42px); }
.maint-logo { max-height: 64px; margin: 0 auto 16px; }
.maint-logo.logo-for-dark { display: none; }
[data-theme="dark"] .maint-logo.logo-for-light { display: none; }
[data-theme="dark"] .maint-logo.logo-for-dark { display: block; }
.maint-copy { color: var(--muted); line-height: 1.7; font-size: 16px; }
.maint-count { margin-top: 22px; display: grid; gap: 12px; }
.maint-count strong { font-size: 15px; letter-spacing: 0; color: var(--muted); font-family: Manrope, sans-serif; font-weight: 600; }
.maint-boxes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.maint-boxes div {
  background: #e2e8f0; border: 1px solid var(--line); border-radius: 14px; padding: 12px 6px;
}
.maint-boxes b { display: block; font-size: 26px; color: #1d4ed8; font-family: Manrope, sans-serif; }
.maint-boxes small {
  color: #0f172a; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; font-weight: 700;
}
[data-theme="dark"] .maint-boxes div {
  background: #111827; border-color: rgba(148,163,184,.2);
}
[data-theme="dark"] .maint-boxes b { color: #93c5fd; }
[data-theme="dark"] .maint-boxes small { color: #e2e8f0; }
.maint-foot { margin-top: 28px; font-size: 13px; }
.maint-spotlight { padding: 0; }
.maint-spotlight .section-title { margin-bottom: 14px; }
.maint-spotlight .wrap { width: 100%; }

.topbar-tools { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }

/* Mein-Konto Dropdown (Frontend) */
.bb-user-menu { position: relative; }
.bb-user-menu-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 12px 6px 6px; border-radius: 999px;
  border: 1.5px solid #0f2a44; background: #fff; color: #0f2a44;
  font: inherit; cursor: pointer;
  box-shadow: 0 6px 14px rgba(15, 42, 68, .10);
  transition: background .18s, color .18s, transform .16s, box-shadow .18s;
}
.bb-user-menu-btn:hover,
.bb-user-menu.is-open .bb-user-menu-btn {
  background: linear-gradient(180deg, #1e3a8a, #0f2a44);
  color: #fff;
  box-shadow: 0 8px 18px rgba(15, 42, 68, .18);
}
.bb-user-avatar {
  width: 32px; height: 32px; border-radius: 999px;
  display: grid; place-items: center;
  background: #0f2a44; color: #fff;
  font-size: 11px; font-weight: 800; letter-spacing: .02em;
}
.bb-user-menu-btn:hover .bb-user-avatar,
.bb-user-menu.is-open .bb-user-menu-btn .bb-user-avatar {
  background: rgba(255,255,255,.18); color: #fff;
}
.bb-user-menu-label {
  display: flex; flex-direction: column; align-items: flex-start; line-height: 1.15; text-align: left;
}
.bb-user-menu-label strong { font-size: 12px; font-weight: 800; }
.bb-user-menu-label small { font-size: 11px; opacity: .78; max-width: 120px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.bb-user-caret { font-size: 10px; opacity: .75; transition: transform .18s; }
.bb-user-menu.is-open .bb-user-caret { transform: rotate(180deg); }
.bb-user-panel {
  position: absolute; right: 0; top: calc(100% + 10px); z-index: 50;
  width: min(280px, calc(100vw - 24px));
  padding: 8px;
  background: var(--surface, #fff);
  border: 1.5px solid #0f2a44;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(15, 42, 68, .16);
}
.bb-user-panel-head {
  padding: 10px 12px 12px; margin-bottom: 6px;
  border-bottom: 1px solid var(--line, #e2e8f0);
}
.bb-user-panel-head b { display: block; font-size: 14px; color: var(--text); }
.bb-user-panel-head small { color: var(--muted); font-size: 12px; word-break: break-all; }
.bb-user-panel a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 10px;
  color: var(--text); text-decoration: none; font-weight: 700; font-size: 13.5px;
}
.bb-user-panel a i { width: 18px; text-align: center; color: #64748b; }
.bb-user-panel a:hover { background: var(--bg, #f8fafc); }
.bb-user-panel a.danger { color: #dc2626; }
.bb-user-panel a.danger i { color: #dc2626; }
@media (max-width: 720px) {
  .bb-user-menu-label { display: none; }
  .bb-user-menu-btn { padding: 6px; }
  .bb-user-caret { display: none; }
}
[data-theme="dark"] .bb-user-menu-btn {
  background: #0b1220; border-color: #334155; color: #e2e8f0;
}
[data-theme="dark"] .bb-user-menu-btn:hover,
[data-theme="dark"] .bb-user-menu.is-open .bb-user-menu-btn {
  background: linear-gradient(180deg, #1e3a8a, #0f2a44); color: #fff; border-color: #0f2a44;
}
[data-theme="dark"] .bb-user-panel {
  background: #0b1220; border-color: #334155;
}
[data-theme="dark"] .bb-user-panel a:hover { background: #111827; }

.ph-langs {
  display: flex; border: 1px solid var(--line); border-radius: 999px; overflow: hidden;
  background: var(--surface);
}
.ph-langs a {
  padding: 8px 12px; font-size: 12px; font-weight: 800; color: var(--muted); text-decoration: none;
}
.ph-langs a.active { background: #0f2a44; color: #fff; }
[data-theme="dark"] .ph-langs a.active { background: #2563eb; }
.mega-open {
  border: 1px solid var(--line); background: var(--surface); color: var(--text);
  border-radius: 999px; padding: 9px 14px; font: inherit; font-weight: 700; cursor: pointer;
}
.lang-pill {
  font-size: 12px; font-weight: 800; color: var(--muted); padding: 6px 8px; border-radius: 8px;
}
.lang-pill.is-on { color: var(--text); background: var(--bg); }
.mega-header { padding: 0 0 16px; }
.mega-search {
  position: relative;
  margin-top: 28px; background: var(--surface); border: 1px solid var(--line);
  border-radius: 24px; padding: 18px; box-shadow: 0 18px 50px rgba(15, 42, 68, .10);
  display: grid; grid-template-columns: 1.5fr 1fr 140px auto; gap: 10px; align-items: end;
}
.mega-search-premium {
  display: flex; flex-direction: column; gap: 16px; align-items: stretch;
  border: 1.5px solid rgba(37, 99, 235, .35);
  border-radius: 28px; padding: 28px 28px 22px;
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  box-shadow: 0 22px 56px rgba(37, 99, 235, .10);
}
.mega-lead {
  margin: 0; text-align: center; color: var(--muted); font-size: 15px; font-weight: 600;
}
.mega-q-wrap {
  position: relative; display: flex; align-items: center;
}
.mega-q-wrap > i {
  position: absolute; left: 18px; top: 50%; transform: translateY(-50%);
  color: #2563eb; pointer-events: none; z-index: 2; font-size: 15px; line-height: 1;
}
.mega-search-premium .mega-q-wrap input[name="q"],
.mega-q-wrap input[name="q"] {
  padding: 15px 16px 15px 52px !important;
  border: 1.5px solid rgba(37, 99, 235, .45);
  border-radius: 16px; min-height: 54px; font-size: 16px; background: #fff;
  box-sizing: border-box;
}
.mega-tools {
  display: flex; flex-wrap: wrap; gap: 18px 28px; align-items: center; justify-content: space-between;
}
.mega-radius-wrap { flex: 1 1 240px; min-width: 200px; }
.mega-radius-wrap label {
  display: block; margin-bottom: 8px; color: var(--text); font-weight: 700; font-size: 14px;
}
.mega-radius-wrap input[type="range"] {
  width: 100%; accent-color: #2563eb; height: 6px; padding: 0; border: 0; background: transparent;
}
.mega-geo-switch { margin: 0; gap: 10px; white-space: nowrap; }
.mega-submit { align-self: center; min-width: 160px; }
.mega-header .mega-search { margin-top: 0; }
.mega-actions { display: flex; gap: 8px; align-items: end; }
.mega-geo { min-width: 46px; padding: 11px 12px; }
.mega-panel {
  grid-column: 1 / -1; background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 16px; padding: 14px; display: grid; grid-template-columns: 1.4fr .8fr; gap: 16px;
}
.mega-panel[hidden] { display: none !important; }
.mega-search-premium .mega-panel {
  margin-top: 4px; background: #fff; border-color: rgba(37, 99, 235, .18);
}
.mega-group[hidden] { display: none !important; }
.mega-group span { display: block; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 800; margin-bottom: 8px; }
.mega-group a { display: flex; flex-direction: column; padding: 8px 10px; border-radius: 10px; color: var(--text); }
.mega-group a:hover { background: var(--bg); }
[data-theme="dark"] .mega-search-premium {
  background: linear-gradient(180deg, #0f172a 0%, #111827 100%);
  border-color: rgba(96, 165, 250, .35);
}
[data-theme="dark"] .mega-q-wrap input[name="q"] {
  background: #0b1220; border-color: rgba(96, 165, 250, .4);
}
[data-theme="dark"] .mega-search-premium .mega-panel { background: #0b1220; }

.news-page { padding: 40px 0 72px; }
.news-hero {
  position: relative;
  margin-bottom: 28px;
  padding: 40px 36px 38px;
  overflow: hidden;
  border: 1px solid rgba(15, 42, 68, .12);
  background:
    radial-gradient(ellipse 80% 120% at 100% -10%, rgba(37, 99, 235, .14), transparent 55%),
    radial-gradient(ellipse 60% 80% at -5% 110%, rgba(15, 42, 68, .08), transparent 50%),
    linear-gradient(145deg, #ffffff 0%, #f4f8fc 48%, #eef4fb 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .8) inset,
    0 18px 40px rgba(15, 42, 68, .07);
}
.news-hero::before {
  content: "";
  position: absolute;
  left: 0; top: 18px; bottom: 18px;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(180deg, #0f2a44, #2563eb);
}
.news-hero::after {
  content: "";
  position: absolute;
  right: -40px; top: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  border: 1px solid rgba(15, 42, 68, .08);
  pointer-events: none;
}
.news-hero .kicker {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #0f2a44;
  letter-spacing: .2em;
}
.news-hero .kicker::before {
  content: "";
  width: 18px; height: 2px;
  border-radius: 2px;
  background: #2563eb;
}
.news-hero h1 {
  position: relative;
  margin: 12px 0 12px;
  font-size: clamp(34px, 4.2vw, 50px);
  color: #0b1f33;
  letter-spacing: -.02em;
}
.news-hero .lead {
  position: relative;
  margin: 0;
  max-width: 42rem;
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.55;
}
.news-grid {
  display: grid; gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.news-card {
  display: flex; flex-direction: column; overflow: hidden; padding: 0;
  border: 1.5px solid rgba(37, 99, 235, .16);
  min-height: 280px;
}
.news-card-media {
  aspect-ratio: 16 / 9; overflow: hidden; background: #e2e8f0;
}
.news-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.news-card-body {
  display: flex; flex-direction: column; gap: 10px; padding: 22px; flex: 1;
}
.news-card-body h2 { margin: 0; font-size: 24px; line-height: 1.25; }
.news-date,
.badge.news-date {
  align-self: flex-start;
  background: rgba(15, 42, 68, .08);
  color: #0f2a44 !important;
  border: 1px solid rgba(15, 42, 68, .16);
  font-weight: 800;
}
[data-theme="dark"] .news-date,
[data-theme="dark"] .badge.news-date {
  background: rgba(147, 197, 253, .12);
  color: #bfdbfe !important;
  border: 1px solid rgba(96, 165, 250, .35);
}
.news-cta { margin-top: auto; align-self: flex-start; }
.news-empty { grid-column: 1 / -1; text-align: center; padding: 40px; }
.news-article { padding: 36px 0 80px; max-width: 860px; }
.news-back { margin: 0 0 14px; }
.news-back a { font-weight: 700; color: #2563eb; text-decoration: none; }
.news-back a:hover { text-decoration: underline; }
.news-article-card {
  padding: 36px 34px; border: 1.5px solid rgba(37, 99, 235, .18);
}
.news-article-card h1 { margin: 12px 0 10px; font-size: clamp(30px, 4vw, 44px); }
.news-teaser { margin-bottom: 22px; }
.news-hero-image {
  margin: 0 0 28px; border-radius: 18px; overflow: hidden;
}
.news-hero-image img { width: 100%; display: block; }
.news-body { font-size: 17px; line-height: 1.7; }
.news-body p { margin: 0 0 1em; }
@media (max-width: 960px) {
  .news-grid { grid-template-columns: 1fr; }
  .news-hero { padding: 32px 24px; }
}
.spotlight-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(var(--spotlight, 6), minmax(0, 1fr));
}
.spotlight-card {
  display: flex; flex-direction: column; gap: 8px; min-height: 220px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 20px;
  padding: 18px; box-shadow: var(--shadow); color: inherit;
}
.spotlight-card:hover { border-color: #93c5fd; color: inherit; transform: translateY(-4px); box-shadow: 0 18px 40px rgba(15, 42, 68, .12); }
.spotlight-card.is-featured { border-color: #2563eb; background: linear-gradient(180deg, rgba(37,99,235,.10), var(--surface) 42%); }
.spotlight-logo {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: #dbeafe; color: #1d4ed8; font-weight: 800; overflow: hidden;
}
.spotlight-logo img { width: 100%; height: 100%; object-fit: contain; }
.spotlight-card h3 { font-size: 18px; margin: 0; }
.spotlight-cta { margin-top: auto; font-weight: 800; color: #2563eb; font-size: 13px; }

.premium-footer {
  margin-top: 96px; border-top: 1px solid var(--line); padding: 56px 0 28px;
  background:
    linear-gradient(180deg, rgba(15, 42, 68, .03), transparent 28%),
    var(--surface);
}
.premium-footer h4 {
  font-family: Manrope, sans-serif; font-size: 12px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--text); margin-bottom: 14px;
}
.site-footer {
  margin-top: auto; padding: 56px 0 22px;
  background: linear-gradient(180deg, #0f2a44 0%, #152a47 100%);
  color: rgba(255,255,255,.82);
  flex-shrink: 0;
}
.site-footer h4 {
  font-family: Manrope, sans-serif; font-size: 12px; letter-spacing: .16em;
  text-transform: uppercase; color: #fff; margin: 0 0 14px;
}
.site-footer-grid {
  display: grid; grid-template-columns: 1.7fr .85fr 1fr .85fr .8fr; gap: 28px;
}
.footer-brand { display: inline-block; margin-bottom: 12px; }
.footer-logo { max-height: 48px; max-width: 220px; object-fit: contain; mix-blend-mode: screen; }
.footer-logo.is-inverted { filter: brightness(0) invert(1); }
.footer-about p { margin: 0 0 16px; font-size: 14.5px; line-height: 1.65; max-width: 42ch; }
.footer-support {
  background: rgba(0,0,0,.22); border-radius: 16px; padding: 14px 14px 12px;
  display: flex; flex-direction: column; gap: 8px; font-size: 13px;
}
.footer-support-head {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  margin-bottom: 2px;
}
.footer-support-kicker {
  font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: #fff; font-size: 11px; display: inline-flex; align-items: center; gap: 8px;
}
.footer-support-kicker i { color: #5eead4; }
.footer-support-actions { display: flex; gap: 6px; }
.footer-support-action {
  width: 34px; height: 34px; border-radius: 10px;
  background: rgba(0,0,0,.28); color: #fff !important;
  display: grid; place-items: center; font-size: 14px;
}
.footer-support-action:hover { background: rgba(255,255,255,.12); color: #fff !important; }
.footer-support-line {
  display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.88);
}
.footer-support-line i { color: #5eead4; width: 16px; text-align: center; flex-shrink: 0; }
.footer-support a.footer-support-line:hover { color: #fff; }
.footer-support a, .site-footer .footer-links a { color: rgba(255,255,255,.82); }
.footer-support a:hover, .site-footer .footer-links a:hover { color: #fff; }
.footer-pills { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; margin-top: 10px; }
.footer-pill {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid rgba(255,255,255,.35); color: #fff !important;
  border-radius: 999px; padding: 6px 12px; font-size: 12px; font-weight: 700;
  width: fit-content; max-width: 100%;
}
.footer-pill:hover { background: rgba(255,255,255,.08); color: #fff !important; }
.footer-pill.is-news { border-color: rgba(0,162,177,.65); }
.pay-tiles { display: flex; flex-wrap: wrap; gap: 8px; }
.pay-tile {
  position: relative; width: 46px; height: 46px; border-radius: 12px;
  background: rgba(0,0,0,.28); color: #fff; display: grid; place-items: center; font-size: 18px;
  cursor: default;
}
.pay-tip {
  position: absolute; bottom: calc(100% + 10px); left: 50%; transform: translateX(-50%);
  background: #fff; color: #0f2a44; padding: 7px 11px; border-radius: 10px;
  font-size: 11px; font-weight: 800; white-space: nowrap; line-height: 1;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .16s ease, visibility .16s ease, transform .16s ease;
  box-shadow: 0 10px 24px rgba(0,0,0,.22); z-index: 5;
}
.pay-tip::after {
  content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  border: 6px solid transparent; border-top-color: #fff;
}
.pay-tile:hover .pay-tip,
.pay-tile:focus-visible .pay-tip {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(-2px);
}
.site-footer .footer-bottom {
  margin-top: 28px; justify-content: center; text-align: center;
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 16px; color: rgba(255,255,255,.55);
}

.cms-page {
  padding-top: 28px;
  padding-bottom: 48px;
}
.cms-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.cms-breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}
.cms-breadcrumb a:hover { color: #2563eb; }
.cms-shell {
  position: relative;
  overflow: hidden;
  padding: 0;
  max-width: 920px;
  margin: 0 auto;
  box-shadow: 0 18px 48px rgba(15, 42, 68, .08);
  border: 1px solid rgba(15, 42, 68, .08);
}
.cms-shell::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #0f2a44, #2563eb 55%, #38bdf8);
}
.cms-shell__head {
  padding: 36px 40px 22px;
  background:
    radial-gradient(680px 180px at 8% 0%, rgba(37, 99, 235, .10), transparent 60%),
    linear-gradient(180deg, rgba(248, 250, 252, .95), rgba(255, 255, 255, 0));
  border-bottom: 1px solid rgba(15, 42, 68, .06);
}
.cms-shell__kicker {
  display: inline-block;
  margin: 0 0 10px;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #1e3a8a;
  background: rgba(37, 99, 235, .1);
  border: 1px solid rgba(37, 99, 235, .16);
}
.cms-shell__title {
  margin: 0;
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(1.85rem, 3.2vw, 2.45rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.2;
  color: var(--text);
}
.cms-shell__body {
  padding: 28px 40px 40px;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text);
}
.cms-shell__body > *:first-child { margin-top: 0; }
.cms-shell__body > *:last-child { margin-bottom: 0; }
.cms-shell__body h2,
.cms-shell__body h3 {
  font-family: 'Source Serif 4', Georgia, serif;
  margin: 1.6em 0 .55em;
  line-height: 1.25;
}
.cms-shell__body h2 { font-size: 1.45rem; }
.cms-shell__body h3 { font-size: 1.2rem; }
.cms-shell__body p { margin: 0 0 1em; }
.cms-shell__body a { color: #1d4ed8; font-weight: 650; }
.cms-shell__body ul,
.cms-shell__body ol { margin: 0 0 1.1em; padding-left: 1.25em; }
.cms-shell__body li { margin: .35em 0; }
@media (max-width: 720px) {
  .cms-shell__head,
  .cms-shell__body { padding-left: 22px; padding-right: 22px; }
  .cms-shell__head { padding-top: 28px; }
  .cms-shell__body { padding-bottom: 28px; }
}
[data-theme="dark"] .cms-shell__head {
  background:
    radial-gradient(680px 180px at 8% 0%, rgba(37, 99, 235, .18), transparent 60%),
    linear-gradient(180deg, rgba(17, 24, 39, .9), rgba(26, 35, 50, 0));
}
[data-theme="dark"] .cms-shell__kicker {
  color: #93c5fd;
  background: rgba(37, 99, 235, .18);
  border-color: rgba(96, 165, 250, .28);
}

.cms-boxes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 40px auto 0;
}
.cms-box-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cms-box-card h4 { margin: 0 0 4px; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.cms-box-card a { color: var(--text); font-weight: 700; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 32px; }
.footer-links, .footer-tags { display: flex; flex-direction: column; gap: 8px; }
.footer-tags { flex-direction: row; flex-wrap: wrap; }
.footer-tags a, .footer-links a { color: var(--muted); }
.footer-tags a {
  border: 1px solid var(--line); border-radius: 999px; padding: 5px 10px; font-size: 13px; font-weight: 700;
}
.footer-bottom { margin-top: 28px; display: flex; justify-content: space-between; gap: 12px; font-size: 13px; color: var(--muted); }

.banner-row { display: grid; gap: 12px; width: min(1280px, calc(100% - 40px)); margin: 12px auto 0; }
.banner-row-large { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.banner-row-footer { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); margin-top: 28px; }
.banner-slot {
  display: grid; place-items: center; min-height: 90px; background: var(--bg);
  border: 1px solid var(--line); border-radius: 16px; overflow: hidden; padding: 8px;
}
.banner-slot img { max-height: 90px; width: auto; }
.banner-pixel { position: absolute; width: 1px; height: 1px; opacity: 0; }
.pkg-compare { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.pkg-compare .package { display: flex; flex-direction: column; min-height: 100%; }
.pkg-compare .btn { margin-top: auto; }
.pkg-vat { font-size: 13px; margin: -4px 0 10px; }
.pkg-highlight { margin: 0 0 12px; }
.pkg-meta {
  margin: 0 0 16px; padding: 0; border-radius: 14px; overflow: hidden;
  background:
    linear-gradient(180deg, rgba(37, 99, 235, .07), rgba(37, 99, 235, .03));
  border: 1px solid rgba(37, 99, 235, .16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55);
  display: grid;
}
.pkg-meta-head {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 10px 14px;
  background: linear-gradient(90deg, rgba(37, 99, 235, .12), rgba(37, 99, 235, .04));
  border-bottom: 1px solid rgba(37, 99, 235, .12);
  font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: #1d4ed8;
}
.pkg-meta-chip {
  display: inline-flex; align-items: center; padding: 4px 9px; border-radius: 999px;
  background: rgba(37, 99, 235, .12); color: #1e40af; font-size: 11px; font-weight: 800;
  letter-spacing: .02em; text-transform: none;
}
.pkg-meta-chip.is-free { background: rgba(20, 184, 166, .14); color: #0f766e; }
.pkg-meta-row {
  display: grid; grid-template-columns: 34px 1fr; gap: 10px; align-items: center;
  padding: 11px 14px; border-top: 1px solid rgba(37, 99, 235, .08);
}
.pkg-meta-head + .pkg-meta-row { border-top: 0; }
.pkg-meta-ico {
  width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center;
  background: #fff; border: 1px solid rgba(37, 99, 235, .14); color: #2563eb; font-size: 13px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, .08);
}
.pkg-meta-label { display: block; font-size: 12px; color: var(--muted); font-weight: 650; margin-bottom: 1px; }
.pkg-meta-value { display: block; font-size: 14px; color: var(--text); font-weight: 800; letter-spacing: -.01em; }
.paket-b2b-hint {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  margin: 10px auto 0; padding: 6px 10px; border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, .16); background: rgba(37, 99, 235, .05);
  color: var(--muted); font-size: 13px; font-weight: 700; cursor: help;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.paket-b2b-hint:hover, .paket-b2b-hint:focus-visible {
  color: #1d4ed8; border-color: rgba(37, 99, 235, .35); background: rgba(37, 99, 235, .1); outline: none;
}
.paket-b2b-hint i { color: #2563eb; }
.badge-free {
  background: linear-gradient(135deg, rgba(20, 184, 166, .18), rgba(13, 148, 136, .12));
  color: #0f766e; border: 1px solid rgba(13, 148, 136, .22);
}
[data-theme="dark"] .pkg-meta {
  background: linear-gradient(180deg, rgba(59, 130, 246, .14), rgba(15, 23, 42, .2));
  border-color: rgba(96, 165, 250, .22); box-shadow: none;
}
[data-theme="dark"] .pkg-meta-head { color: #93c5fd; border-bottom-color: rgba(96, 165, 250, .18); }
[data-theme="dark"] .pkg-meta-ico { background: rgba(15, 23, 42, .55); border-color: rgba(96, 165, 250, .22); color: #93c5fd; }
[data-theme="dark"] .pkg-meta-chip { background: rgba(59, 130, 246, .2); color: #bfdbfe; }
[data-theme="dark"] .paket-b2b-hint { background: rgba(59, 130, 246, .1); border-color: rgba(96, 165, 250, .22); }

.bb-tooltip {
  position: fixed; z-index: 9999; max-width: min(320px, calc(100vw - 20px));
  padding: 10px 12px; border-radius: 12px;
  background: linear-gradient(180deg, #0f2744, #0b1b30);
  color: #e8eef7; border: 1px solid rgba(125, 180, 255, .35);
  box-shadow: 0 16px 40px rgba(8, 18, 36, .35), 0 0 0 1px rgba(37, 99, 235, .08);
  font-size: 12.5px; font-weight: 600; line-height: 1.45; text-align: left;
  pointer-events: none; opacity: 0; visibility: hidden; transform: translateY(4px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s ease;
  display: block;
}
.bb-tooltip.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.bb-tooltip::after {
  content: ""; position: absolute; left: 50%; bottom: -6px;
  width: 10px; height: 10px; margin-left: -5px; transform: rotate(45deg);
  background: #0b1b30; border-right: 1px solid rgba(125, 180, 255, .35);
  border-bottom: 1px solid rgba(125, 180, 255, .35);
}
.bb-tooltip.is-below::after {
  bottom: auto; top: -6px;
  border-right: 0; border-bottom: 0;
  border-left: 1px solid rgba(125, 180, 255, .35);
  border-top: 1px solid rgba(125, 180, 255, .35);
  background: #0f2744;
}

.contact-form-wrap {
  max-width: 920px; margin: 0 auto; padding: 40px 0 72px;
  display: grid; gap: 22px;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr);
  align-items: start;
}
@media (max-width: 860px) {
  .contact-form-wrap { grid-template-columns: 1fr; }
  .contact-aside { position: static; top: auto; }
}
.contact-card h1 { margin: 0 0 8px; }
.contact-form { display: grid; gap: 6px; margin-top: 18px; }
.contact-form label { margin-top: 8px; font-weight: 650; }
.contact-dropzone { margin-top: 4px; }
.contact-form .account-file-list { margin-bottom: 4px; }
.contact-form .hp-field {
  position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important;
  opacity: 0 !important; pointer-events: none !important;
}
.contact-aside {
  position: sticky; top: 96px; overflow: hidden;
  padding: 28px 24px; border-radius: 18px;
  background:
    linear-gradient(165deg, rgba(15, 42, 68, .96), rgba(23, 58, 95, .92) 48%, rgba(15, 42, 68, .98)),
    radial-gradient(120% 80% at 100% 0%, rgba(37, 99, 235, .35), transparent 55%);
  color: #e8eef7;
  border: 1px solid rgba(148, 179, 214, .22);
  box-shadow: 0 18px 48px rgba(15, 42, 68, .22);
}
.contact-aside::before {
  content: ""; position: absolute; inset: auto -20% -40% auto; width: 220px; height: 220px;
  border-radius: 50%; background: rgba(96, 165, 250, .16); pointer-events: none;
}
.contact-aside-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 12px; padding: 6px 10px; border-radius: 999px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: #bfdbfe;
}
.contact-aside h3 {
  margin: 0 0 8px; font-size: 24px; color: #fff; letter-spacing: -.02em;
}
.contact-aside-lead {
  margin: 0 0 18px; color: rgba(226, 232, 240, .82); font-size: 14px; line-height: 1.5;
}
.contact-aside-mail {
  position: relative; z-index: 1;
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 14px; border-radius: 14px; text-decoration: none;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.contact-aside-mail:hover {
  background: rgba(255,255,255,.12); border-color: rgba(147, 197, 253, .45);
  transform: translateY(-1px);
}
.contact-aside-mail-ico {
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8); color: #fff; flex-shrink: 0;
}
.contact-aside-mail strong {
  display: block; color: #fff; font-size: 15px; font-weight: 750; word-break: break-all;
}
.contact-aside-mail small {
  display: block; margin-top: 4px; color: rgba(191, 219, 254, .9); font-size: 12px;
}
.contact-aside-note {
  position: relative; z-index: 1;
  margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(226, 232, 240, .78); font-size: 13px; line-height: 1.5;
}
.contact-privacy-box {
  margin-top: 14px; border-radius: 12px; padding: 14px 16px;
  border: 1px solid rgba(37, 99, 235, .22); border-left: 4px solid #2563eb;
  background: #f4f8ff; transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.contact-privacy-box.is-confirmed {
  border-color: rgba(25, 135, 84, .45); border-left-color: #198754;
  background: #edf8f1; box-shadow: 0 0 0 1px rgba(25, 135, 84, .12);
}
.contact-privacy-notice { margin: 0 0 12px; font-size: 14px; line-height: 1.5; color: var(--text); }
.contact-privacy-link { font-weight: 700; color: #2563eb; text-decoration: underline; }
.contact-privacy-switch {
  display: flex; align-items: flex-start; gap: 12px; cursor: pointer; font-size: 14px; line-height: 1.4; color: var(--text);
}
.contact-privacy-switch input[type="checkbox"] {
  appearance: none; -webkit-appearance: none; flex-shrink: 0; width: 2.75em; height: 1.4em; margin-top: .15em;
  border: 1px solid #ced4da; border-radius: 2em; background: #dee2e6; cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
  background-position: left center; background-repeat: no-repeat; background-size: contain;
  transition: background-position .15s ease, background-color .15s ease, border-color .15s ease;
}
.contact-privacy-switch input[type="checkbox"]:checked {
  background-color: #198754; border-color: #198754; background-position: right center;
}
#kontaktSubmitBtn:disabled,
[data-contact-submit]:disabled {
  opacity: .45; cursor: not-allowed; filter: grayscale(.25); pointer-events: none;
}
[data-theme="dark"] .contact-privacy-box {
  background: rgba(37, 99, 235, .12); border-color: rgba(125, 180, 255, .35);
}
[data-theme="dark"] .contact-privacy-box.is-confirmed {
  background: rgba(25, 135, 84, .16); border-color: rgba(25, 135, 84, .5);
}
[data-theme="dark"] .pkg-meta { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.08); }
.sitemap-grid { display: grid; grid-template-columns: 1fr 1fr 1.2fr; gap: 18px; }
.sitemap-listings .footer-links { max-height: 480px; overflow: auto; }

/* ── Premium HTML sitemap ─────────────────────────────────────── */
.sm-hero {
  position: relative;
  padding: 56px 0 42px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.sm-hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(900px 360px at 8% 0%, rgba(37, 99, 235, .18), transparent 60%),
    radial-gradient(700px 320px at 92% 20%, rgba(15, 42, 68, .10), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.55), transparent 70%);
}
[data-theme="dark"] .sm-hero-bg {
  background:
    radial-gradient(900px 360px at 8% 0%, rgba(96, 165, 250, .16), transparent 60%),
    radial-gradient(700px 320px at 92% 20%, rgba(37, 99, 235, .10), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.03), transparent 70%);
}
.sm-hero-inner { position: relative; max-width: 820px; }
.sm-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.08;
  margin: .2em 0 .35em;
}
.sm-hero .lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 54ch;
  margin: 0 0 1.4rem;
}
.sm-stats {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.sm-stat {
  display: grid; gap: 2px;
  min-width: 112px;
  padding: 12px 16px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.sm-stat b {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.1;
  color: var(--text);
}
.sm-stat span {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
}
.sm-page { padding-top: 28px; padding-bottom: 64px; }
.sm-toolbar {
  display: flex; flex-wrap: wrap; gap: 14px;
  align-items: center; justify-content: space-between;
  margin-bottom: 18px;
  position: sticky; top: 72px; z-index: 12;
  padding: 10px 0;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px);
}
.sm-jump {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.sm-jump a {
  display: inline-flex; align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease;
}
.sm-jump a:hover {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--teal) 45%, var(--line));
  color: var(--gold-2);
  box-shadow: 0 8px 20px rgba(15, 42, 68, .08);
}
.sm-search {
  display: flex; align-items: center; gap: 10px;
  min-width: min(360px, 100%);
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 6px 18px rgba(15, 42, 68, .04);
}
.sm-search i { color: var(--muted); }
.sm-search input {
  border: 0; outline: 0; background: transparent; width: 100%;
  color: var(--text); font: inherit; font-weight: 600;
}
.sm-filter-meta { margin: 0 0 16px; font-size: 13px; font-weight: 650; }
.sm-sections { display: grid; gap: 18px; }
.sm-panel {
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(165deg, color-mix(in srgb, var(--surface) 96%, #dbeafe), var(--surface));
  padding: 22px 22px 20px;
  box-shadow: 0 12px 36px rgba(15, 42, 68, .05);
}
[data-theme="dark"] .sm-panel {
  background: linear-gradient(165deg, rgba(96,165,250,.06), var(--surface));
}
.sm-panel-head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.sm-panel-head > div { display: flex; align-items: center; gap: 12px; }
.sm-panel-head h2 { margin: 0; font-size: 1.35rem; }
.sm-panel-ico {
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(145deg, #1e3a8a, #2563eb);
  color: #fff;
  box-shadow: 0 8px 18px rgba(37, 99, 235, .28);
}
[data-theme="dark"] .sm-panel-ico {
  background: linear-gradient(145deg, #2563eb, #60a5fa);
  color: #0b1220;
}
.sm-count {
  font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  background: color-mix(in srgb, var(--bg) 70%, transparent);
}
.sm-link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 8px;
}
.sm-link-grid-wide { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.sm-link-grid-listings { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.sm-link {
  display: flex; align-items: baseline; justify-content: space-between; gap: 10px;
  padding: 11px 13px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: color-mix(in srgb, var(--bg) 55%, transparent);
  color: var(--text);
  font-weight: 650;
  font-size: 14px;
  transition: background .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.sm-link span { min-width: 0; }
.sm-link em {
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}
.sm-link i {
  font-size: 11px;
  opacity: 0;
  transform: translate(-2px, 2px);
  transition: opacity .18s ease, transform .18s ease;
  color: var(--teal);
}
.sm-link:hover {
  background: var(--surface);
  border-color: color-mix(in srgb, var(--teal) 35%, var(--line));
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(15, 42, 68, .07);
  color: var(--gold-2);
}
.sm-link:hover i { opacity: 1; transform: none; }
.sm-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.sm-tag {
  display: inline-flex; align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  transition: transform .16s ease, border-color .16s ease, background .16s ease, color .16s ease;
}
.sm-tag:hover {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--teal) 40%, var(--line));
  background: color-mix(in srgb, #dbeafe 55%, var(--surface));
  color: var(--gold-2);
}
.sm-alpha {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 16px;
}
.sm-alpha a {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  transition: background .16s ease, color .16s ease, transform .16s ease;
}
.sm-alpha a:hover {
  background: #0f2a44; color: #fff; transform: translateY(-1px);
}
[data-theme="dark"] .sm-alpha a:hover { background: #60a5fa; color: #0b1220; }
.sm-az { display: grid; gap: 22px; }
.sm-letter-block h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  color: var(--gold);
  letter-spacing: .04em;
}
.sm-empty { margin-top: 12px; }
.sm-reveal {
  animation: smRise .55s ease both;
}
.sm-reveal-delay-1 { animation-delay: .06s; }
.sm-reveal-delay-2 { animation-delay: .12s; }
.sm-reveal-delay-3 { animation-delay: .18s; }
@keyframes smRise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .sm-reveal, .sm-reveal-delay-1, .sm-reveal-delay-2, .sm-reveal-delay-3 { animation: none; }
  .sm-link, .sm-jump a, .sm-tag, .sm-alpha a { transition: none; }
}
@media (max-width: 820px) {
  .sm-toolbar { position: static; }
  .sm-search { min-width: 100%; }
  .sm-hero { padding: 36px 0 28px; }
  .sm-panel { padding: 18px 16px 16px; border-radius: 18px; }
}
input.is-taken { border-color: var(--danger) !important; box-shadow: 0 0 0 3px rgba(224,122,108,.18); }
input.is-available { border-color: #16a34a !important; box-shadow: 0 0 0 3px rgba(22,163,74,.16); }
.field-availability {
  margin: 8px 0 0; font-size: 13px; font-weight: 650; line-height: 1.35;
  display: flex; align-items: center; gap: 6px;
}
.field-availability[hidden] { display: none !important; }
.field-availability.is-ok { color: #15803d; }
.field-availability.is-taken,
.field-availability.is-invalid { color: var(--danger); }
.field-availability.is-pending { color: var(--muted); font-weight: 600; }
[data-theme="dark"] .field-availability.is-ok { color: #86efac; }
.news-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 40; width: min(320px, calc(100% - 24px));
  background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 16px 18px 14px;
  box-shadow: 0 18px 40px rgba(15, 42, 68, .16);
}
.news-float-close {
  position: absolute; top: 8px; right: 10px; border: 0; background: none; color: var(--muted); font-size: 20px; cursor: pointer;
}
.news-float { overflow: visible; }

.bb-modal {
  position: fixed; inset: 0; z-index: 200; display: grid; place-items: center;
  background: rgba(11, 18, 32, .55); padding: 16px;
}
.bb-modal[hidden] { display: none !important; }
.bb-modal-card {
  width: min(440px, 100%); background: #fff; color: #0f172a;
  border-radius: 18px; padding: 22px 22px 18px; box-shadow: 0 24px 60px rgba(15,23,42,.28);
}
[data-theme="dark"] .bb-modal-card { background: #151d2c; color: #e2e8f0; }
.bb-modal-card h3 { margin: 0 0 8px; font-size: 18px; }
.bb-modal-card p { margin: 0 0 16px; color: #64748b; }
.bb-modal-prompt { display: grid; gap: 6px; margin: 0 0 16px; }
.bb-modal-prompt[hidden] { display: none !important; }
.bb-modal-actions { display: flex; justify-content: flex-end; gap: 8px; }
.bb-tabs {
  display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 16px;
  background: var(--ph-card, var(--surface, #fff));
  border: 1px solid var(--ph-line, var(--line)); border-radius: 14px; padding: 8px;
}
.bb-tabs button {
  border: 0; background: transparent; color: var(--ph-muted, #64748b);
  padding: 8px 12px; border-radius: 10px; font: inherit; font-weight: 700; cursor: pointer;
}
.bb-tabs button.is-on { background: #dbeafe; color: #1d4ed8; }
.bb-editor { border: 1px solid var(--ph-line, var(--line)); border-radius: 14px; overflow: hidden; background: #fff; }
.bb-editor-bar { display: flex; flex-wrap: wrap; gap: 4px; padding: 8px; border-bottom: 1px solid var(--ph-line, var(--line)); background: #f8fafc; align-items: center; }
.bb-editor-bar button { border: 0; background: #fff; border-radius: 8px; padding: 6px 10px; cursor: pointer; color: #0f172a; border: 1px solid transparent; }
.bb-editor-bar button:hover { border-color: #cbd5e1; background: #fff; }
.bb-editor-bar [data-mode].is-on { background: #dbeafe; color: #1d4ed8; font-weight: 800; }
.bb-editor-sep { width: 1px; align-self: stretch; background: var(--ph-line, var(--line)); margin: 0 6px; }
.bb-editor-area { min-height: 160px; padding: 12px 14px; outline: 0; }
.bb-editor textarea { width: 100%; min-height: 180px; border: 0; padding: 12px 14px; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.bb-editor-premium { border-radius: 16px; box-shadow: 0 10px 28px rgba(15, 42, 68, .06); }
.bb-editor-premium .bb-editor-bar {
  background: linear-gradient(180deg, #f8fafc, #eef2f7);
  padding: 10px 12px;
}
.bb-editor-premium .bb-editor-area { min-height: 220px; line-height: 1.65; }
.als-form-actions { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 10px; }

/* Account listing show (premium) */
.als-hero {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px;
  align-items: flex-start; margin: 0 0 22px;
}
.als-kicker {
  font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: #2563eb; margin-bottom: 8px;
}
.als-hero h1 {
  margin: 0 0 10px; font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.2rem); letter-spacing: -.02em;
}
.als-meta { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin: 0; }
.als-hero-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.als-grid {
  display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(260px, .85fr);
  gap: 18px; align-items: start;
}
.als-grid--premium {
  grid-template-columns: minmax(0, 1.65fr) minmax(240px, .7fr);
  gap: 22px;
}
.als-hero--premium {
  margin-bottom: 22px;
  padding: 22px 24px;
  border-radius: 22px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--surface) 88%, #dbeafe), var(--surface));
  border: 1px solid var(--line);
  box-shadow: 0 14px 36px rgba(15, 42, 68, .07);
  display: flex; flex-wrap: wrap; gap: 18px; justify-content: space-between; align-items: flex-start;
}
.als-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 999px; font-size: .82rem; font-weight: 650;
  background: color-mix(in srgb, var(--surface) 70%, #e2e8f0); border: 1px solid var(--line); color: var(--muted);
}
.als-social-row {
  list-style: none; margin: 12px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px;
}
.als-social-row a {
  width: 36px; height: 36px; border-radius: 12px; display: grid; place-items: center;
  border: 1px solid var(--line); background: var(--surface); color: #1d4ed8; font-size: 1rem;
}
.als-main-stack { display: grid; gap: 16px; }
.als-sections {
  display: grid; gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.als-sections--under-desc {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.als-card--tags { width: 100%; }
.als-side--compact { display: grid; gap: 14px; }

.als-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 20px;
  padding: 20px 22px; box-shadow: 0 12px 32px rgba(15, 42, 68, .06);
}
.als-card--overview {
  position: sticky; top: 1rem;
  background: linear-gradient(180deg, color-mix(in srgb, var(--surface) 92%, #eff6ff), var(--surface));
}
.als-card h2, .als-card h3 { margin: 0 0 12px; font-size: 1.05rem; }
.als-card-head { display: flex; gap: 14px; align-items: center; margin-bottom: 14px; }
.als-logo-wrap {
  width: min(220px, 48%);
  min-width: 140px;
  min-height: 88px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  padding: 12px 18px;
  flex: 0 0 auto;
  background: #0f172a;
}
.als-logo-wrap.is-dark-bg {
  background: linear-gradient(160deg, #0f172a, #1e3a8a);
  box-shadow: 0 10px 24px rgba(15, 42, 68, .16);
}
.als-logo-wrap.is-light-bg {
  background: linear-gradient(180deg, #ffffff, #eef4fb);
  border: 1px solid var(--line);
  box-shadow: 0 8px 20px rgba(15, 42, 68, .08);
}
.als-logo-wrap .als-logo {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 64px;
  border-radius: 0;
  object-fit: contain;
  background: none;
  border: 0;
  padding: 0;
}
.als-logo {
  width: 72px; height: 72px; border-radius: 16px; object-fit: contain;
  background: #f8fafc; border: 1px solid var(--line); padding: 6px;
}
.als-logo-fallback {
  display: grid; place-items: center; color: #2563eb; font-size: 28px;
  width: 88px; height: 88px; flex: 0 0 auto;
}
.als-body { line-height: 1.7; color: var(--text); }
.als-body > *:first-child { margin-top: 0; }
.als-gallery {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 8px; margin-top: 16px;
}
.als-gallery img {
  width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 12px;
  border: 1px solid var(--line);
}
.als-side { display: grid; gap: 14px; }
.als-side--compact { gap: 0; }
.als-dl { margin: 0; display: grid; gap: 8px; }
.als-dl > div { display: grid; grid-template-columns: 110px 1fr; gap: 8px; font-size: 14px; }
.als-dl dt { color: var(--muted); font-weight: 650; margin: 0; }
.als-dl dd { margin: 0; font-weight: 700; word-break: break-word; }
.als-vat-line { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.vies-badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 2px 8px; border-radius: 999px; font-size: .75rem; font-weight: 700;
}
.vies-badge--ok { background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; }
.vies-badge--bad { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
.vies-badge--pending { background: #f8fafc; color: #64748b; border: 1px solid var(--line); }
input.is-vies-ok { border-color: #10b981 !important; box-shadow: 0 0 0 3px rgba(16, 185, 129, .15); }
.als-overview-address, .als-overview-package {
  margin-top: 14px; padding-top: 12px; border-top: 1px dashed var(--line);
}
.als-overview-address p, .als-overview-package p { margin: 6px 0 0; font-size: .92rem; }
.als-social { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.als-social a { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; }
.als-hours { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.als-hours li {
  display: flex; justify-content: space-between; gap: 12px; align-items: baseline;
  font-size: 13px; padding: 6px 0; border-bottom: 1px dashed var(--line); color: var(--text);
}
.als-hours li span { color: var(--muted); font-weight: 650; }
.als-hours li strong { font-weight: 750; text-align: right; }
.als-hours li.is-open strong,
.als-hours li.hours-row-open strong,
.als-hours li.hours-row-planned strong { color: #15803d; }
.als-hours li.is-soon strong,
.als-hours li.hours-row-soon strong { color: #b45309; }
.als-hours li.is-closed strong,
.als-hours li.hours-row-closed strong { color: #b91c1c; }
.als-hours li.is-inactive strong,
.als-hours li.hours-row-none strong,
.als-hours li.hours-row-other strong { color: #94a3b8; font-weight: 600; }
.als-hours li.is-today span { color: var(--text); font-weight: 800; }
.als-hours li.is-today { background: color-mix(in srgb, var(--surface) 88%, #dbeafe); margin: 0 -8px; padding-left: 8px; padding-right: 8px; border-radius: 8px; }
.status-pending { background: #fff7ed; color: #c2410c; border: 1px solid rgba(194, 65, 12, .2); }
@media (max-width: 960px) {
  .als-grid, .als-grid--premium { grid-template-columns: 1fr; }
  .als-card--overview { position: static; }
  .als-logo-wrap { width: min(100%, 240px); }
}
.tag-search-label { display: block; margin: 14px 0 6px; }
.tag-picker input[type=search] { max-width: 420px; }
.tag-chip { display: inline-flex; align-items: center; gap: 6px; padding: 6px 10px; border-radius: 999px; border: 1px solid var(--line, #e2e8f0); cursor: pointer; }
.tag-chip.is-on, .tag-chip:has(input:checked) { background: #dbeafe; border-color: #2563eb; }
.tag-chip input { width: auto !important; margin: 0; }
.grid .full { grid-column: 1 / -1; }

.site-maint-banner {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 11px 20px;
  background: linear-gradient(90deg, #7f1d1d 0%, #991b1b 42%, #b91c1c 100%);
  color: #fff;
  font-size: 13px; font-weight: 700; letter-spacing: .02em;
  box-shadow: 0 8px 24px rgba(127, 29, 29, .28);
}
.site-maint-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #fecaca;
  box-shadow: 0 0 0 4px rgba(254, 202, 202, .22);
  animation: site-maint-pulse 1.8s ease-in-out infinite;
}
@keyframes site-maint-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .55; transform: scale(.85); }
}

[data-theme="dark"] body {
  background:
    radial-gradient(1100px 480px at 18% -10%, rgba(37, 99, 235, .22), transparent 58%),
    var(--bg);
}
[data-theme="dark"] .btn-gold {
  background: linear-gradient(180deg, #3b82f6, #1d4ed8);
  box-shadow: 0 8px 18px rgba(37, 99, 235, .28);
}
[data-theme="dark"] .site-maint-banner {
  background: linear-gradient(90deg, #450a0a, #7f1d1d 55%, #b91c1c);
}

.cms-box-card { box-shadow: var(--shadow); }
.cms-box-card a:hover { color: #2563eb; }
.cookie { border-radius: 22px; padding: 18px 20px; }
.lang-pill { transition: background .15s, color .15s; }
.lang-pill:hover { color: var(--text); }
.theme-toggle { transition: transform .16s ease; }
.theme-toggle:hover { transform: rotate(-12deg); }

.fdt-card {
  position: relative;
  background: var(--surface); border: 1px solid rgba(37,99,235,.28);
  border-radius: 24px; padding: 28px; box-shadow: 0 18px 44px rgba(15,42,68,.10);
  color: inherit; background-image: linear-gradient(135deg, rgba(37,99,235,.10), transparent 42%);
}
.fdt-card:hover { color: inherit; transform: translateY(-3px); box-shadow: 0 22px 50px rgba(15,42,68,.14); }
.fdt-grid {
  display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 24px 28px; align-items: stretch;
}
.fdt-left { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.fdt-right { display: flex; min-width: 0; min-height: 100%; }
.fdt-desc-box {
  flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 14px;
  background: linear-gradient(145deg, rgba(37,99,235,.07), rgba(255,255,255,.92) 52%, rgba(241,245,249,.95));
  border: 1px solid rgba(37,99,235,.16); border-radius: 20px; padding: 26px 28px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85);
}
.fdt-desc-kicker {
  font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: #2563eb;
}
.fdt-brand-logo { max-width: 260px; min-height: 100px; margin-bottom: 8px; }
.fdt-left h3 { font-size: 30px; margin: 0 0 4px; }
.fdt-left p { margin: 4px 0; }
.fdt-desc {
  font-size: 16px; line-height: 1.75; color: var(--text); margin: 0;
}
.fdt-tags { margin-top: auto; }
.fdt-foot {
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; flex-wrap: wrap; padding-top: 16px; margin-top: 16px;
  border-top: 1px solid var(--line);
}
.fdt-cta { margin-left: auto; }
.tag-premium {
  background: linear-gradient(180deg, rgba(37,99,235,.08), var(--surface) 46%);
  min-height: 210px;
}
.tag-hash {
  width: 42px; height: 42px; border-radius: 14px; display: grid; place-items: center;
  background: #1d4ed8; color: #fff; font-weight: 800; font-size: 20px;
}
.magazin-card { min-height: 220px; display: flex; flex-direction: column; }
.magazin-card.news-card { min-height: 280px; padding: 0; overflow: hidden; }
.magazin-card h3 { font-size: 24px; }
.magazin-cta { margin-top: auto; align-self: flex-end; padding: 8px 16px; font-size: 13px; }
.cert-page { padding: 48px 0 80px; }
.cert-card {
  background: #fff; border-radius: 28px; padding: 42px 40px 28px;
  box-shadow: 0 24px 60px rgba(15,42,68,.10); text-align: center;
}
.cert-score { width: 150px; height: 150px; margin: 0 auto 18px; background: conic-gradient(#0f766e calc(var(--score) * 1%), #e2e8f0 0); }
.cert-lead { max-width: 48ch; margin: 0 auto 28px; }
.cert-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; text-align: left; }
.cert-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.cert-stats div {
  background: var(--bg, #f8fafc); border-radius: 14px; padding: 16px;
  border: 1px solid var(--line);
}
.cert-stats b { display: block; font-size: 28px; color: var(--text); }
.cert-stats span { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); font-weight: 800; }
.cert-dl div { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px dashed var(--line); }
.cert-dl dt { color: var(--muted); }
.cert-dl dd { margin: 0; font-weight: 800; }
.cert-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; gap: 12px; }
.cert-seal {
  display: inline-flex; align-items: center; justify-content: center;
  width: 92px; height: 92px; border-radius: 50%; border: 3px solid #0f766e;
  color: #0f766e; font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; text-align: center;
}
[data-theme="dark"] .listing-card-media { background: #1a2332; }
[data-theme="dark"] .listing-brand-logo.is-light-bg { background: linear-gradient(180deg, #1a2332, #111827); }
[data-theme="dark"] .hero-mini { background: #151d2c; }
[data-theme="dark"] .hero-eye { background: rgba(37,99,235,.16); }
[data-theme="dark"] .btn-outline { background: transparent; color: #93c5fd; border-color: #60a5fa; }
[data-theme="dark"] .rating-pill { background: rgba(217,119,6,.12); }
[data-theme="dark"] .rating-pill b { color: #fde68a; }
[data-theme="dark"] .rating-pill small { color: #fdba74; }
[data-theme="dark"] .a11y-panel { background: #151d2c; color: #e2e8f0; }
[data-theme="dark"] .a11y-close { background: #1a2332; border-color: rgba(255,255,255,.12); color: #e2e8f0; }
[data-theme="dark"] .a11y-score-inner { background: #151d2c; box-shadow: 0 0 0 1px rgba(255,255,255,.08); }
[data-theme="dark"] .a11y-score-ring b { color: #f8fafc; }
[data-theme="dark"] .a11y-score-ring span { color: #5eead4; }
[data-theme="dark"] .fdt-desc-box {
  background: linear-gradient(145deg, rgba(37,99,235,.14), rgba(26,35,50,.95));
  border-color: rgba(96,165,250,.22);
}
[data-theme="dark"] .a11y-tools button { background: #1a2332; color: #e2e8f0; border-color: rgba(255,255,255,.12); }
[data-theme="dark"] .review-card-premium {
  background: linear-gradient(180deg, #151d2c, #111827);
  border-color: rgba(96,165,250,.16);
}
[data-theme="dark"] .review-card-body {
  background: rgba(37,99,235,.1);
  border-color: rgba(96,165,250,.12);
}
[data-theme="dark"] .review-summary-bar {
  background: linear-gradient(135deg, rgba(245,158,11,.18), rgba(21,29,44,.95));
  border-color: rgba(245,158,11,.28);
}
[data-theme="dark"] .review-summary-value { color: #fde68a; }
[data-theme="dark"] .cert-score b { color: #f8fafc; }
[data-theme="dark"] .cert-score span { color: #5eead4; }
[data-theme="dark"] .cert-card { background: var(--surface); color: var(--text); }
[data-theme="dark"] .cert-stats div {
  background: #111827;
  border-color: rgba(148,163,184,.18);
}
[data-theme="dark"] .cert-stats b { color: #f8fafc; }
[data-theme="dark"] .cert-stats span { color: #94a3b8; }
[data-theme="dark"] .cert-score {
  background: conic-gradient(#2dd4bf calc(var(--score) * 1%), #1e293b 0);
}
[data-theme="dark"] .cert-seal {
  border-color: #2dd4bf; color: #5eead4;
}
[data-theme="dark"] .a11y-score-ring::before, [data-theme="dark"] .cert-score::before { background: var(--surface); }

/* Account area – admin-style sidebar */
.account-app {
  font-family: Inter, system-ui, sans-serif;
  background: #eef2f6;
  color: var(--text);
  min-height: 100vh;
}
[data-theme="dark"] .account-app { background: #0b1220; }
.account-shell { display: grid; grid-template-columns: 268px 1fr; min-height: 100vh; }
.account-sidebar {
  position: sticky; top: 0; height: 100vh; overflow-x: hidden; overflow-y: auto;
  display: flex; flex-direction: column;
  background:
    radial-gradient(120% 70% at 0% 0%, rgba(37,99,235,.42), transparent 58%),
    linear-gradient(180deg, #102a4a 0%, #0b1b33 38%, #07111f 100%);
  color: #dbe7f5; padding: 18px 14px 16px;
}
.account-brand {
  display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
  color: #fff; padding: 8px 10px 20px; text-decoration: none;
}
.account-brand:hover { color: #fff; }
.account-brand-logo { height: 44px; max-width: 188px; object-fit: contain; display: block; }
.account-brand-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, #2563eb, #60a5fa);
  display: grid; place-items: center; font-weight: 800; color: #fff;
}
.account-brand strong { display: block; font-size: 15px; color: #fff; }
.account-brand small { color: #7dd3fc; font-size: 12px; font-weight: 700; }
.account-user {
  display: flex; align-items: center; gap: 12px; padding: 14px 14px; margin-bottom: 12px;
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(37,99,235,.22), rgba(8,18,36,.55) 55%),
    rgba(8, 18, 36, .55);
  border: 1px solid rgba(125, 180, 255, .28);
  box-shadow: 0 10px 28px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.06);
}
.account-user--premium .account-avatar {
  width: 44px; height: 44px; border-radius: 14px; flex: 0 0 44px; font-size: 15px;
  box-shadow: 0 0 0 2px rgba(96,165,250,.55), 0 8px 18px rgba(37,99,235,.35);
}
.account-avatar {
  width: 36px; height: 36px; border-radius: 10px; flex: 0 0 36px;
  background: linear-gradient(135deg, #2563eb, #60a5fa);
  display: grid; place-items: center; font-weight: 800; color: #fff; font-size: 13px;
  overflow: hidden;
}
.account-avatar--img, .bb-user-avatar--img { padding: 0; background: #e2e8f0; }
.account-avatar--img img, .bb-user-avatar--img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.account-avatar--icon, .bb-user-avatar--icon {
  font-size: 1rem; color: #fff;
}
.account-avatar--icon i, .bb-user-avatar--icon i { line-height: 1; }
.bb-user-avatar--img { overflow: hidden; }
.profile-avatar-row {
  display: flex; flex-wrap: wrap; gap: 16px; align-items: flex-end;
}
.profile-avatar-drop {
  max-width: 280px; text-align: center; padding: 18px;
}
.profile-avatar-preview {
  width: 96px; height: 96px; border-radius: 22px; object-fit: cover;
  border: 1px solid var(--line); display: block; margin: 0 auto;
  background: #f1f5f9;
}
.profile-avatar-preview[hidden] { display: none !important; }
.profile-avatar-fallback {
  width: 96px; height: 96px; border-radius: 22px; margin: 0 auto;
  display: grid; place-items: center; font-size: 2.2rem; color: #fff;
  background: linear-gradient(135deg, #2563eb, #60a5fa);
  border: 1px solid rgba(37, 99, 235, .25);
}
.profile-avatar-fallback i { line-height: 1; opacity: .95; }

.account-dropzone.is-drag, .account-dropzone.over {
  border-color: #2563eb; background: rgba(37,99,235,.1);
}
.account-user-meta { min-width: 0; display: grid; gap: 2px; }
.account-user b { display: block; color: #fff; font-size: 14.5px; letter-spacing: .01em; }
.account-user small { color: #94a3b8; font-size: 12px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.account-login-chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--line);
  box-shadow: 0 8px 20px rgba(15,23,42,.06);
  color: var(--muted); font-size: 12.5px; line-height: 1.25; max-width: min(420px, 52vw);
}
.account-login-chip i { color: #2563eb; font-size: 14px; }
.account-login-chip strong { display: block; color: var(--text); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; }
.account-login-chip em { font-style: normal; color: var(--muted); margin-left: 6px; opacity: .9; }
[data-theme="dark"] .account-login-chip { background: #151d2c; border-color: rgba(148,163,184,.22); }
.account-nav { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.account-nav-group { border: 0; }
.account-nav-group > summary {
  list-style: none; display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 10px; cursor: pointer;
  color: #c5d4e8; font-weight: 600; font-size: 14px;
}
.account-nav-group > summary::-webkit-details-marker { display: none; }
.account-nav-group > summary:hover { background: rgba(255,255,255,.06); color: #fff; }
.account-nav-group[open] > summary { color: #fff; }
.account-chevron { margin-left: auto; opacity: .55; font-size: 11px; transition: transform .2s; }
.account-nav-group[open] .account-chevron { transform: rotate(90deg); }
.account-nav-sub { display: flex; flex-direction: column; gap: 2px; padding: 4px 0 10px; }
.account-nav-top, .account-nav-sub a {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
}
.account-nav-top {
  padding: 10px 12px; border-radius: 10px; color: #c5d4e8; font-weight: 600; font-size: 14px;
}
.account-nav-top:hover { background: rgba(255,255,255,.06); color: #fff; }
.account-nav-top.active { background: rgba(37,99,235,.32); color: #fff; }
.account-nav-sub a {
  margin: 0 -14px; padding: 9px 16px 9px 34px; border-left: 3px solid transparent;
  color: #9fb3cc; font-size: 13.5px; font-weight: 500;
}
.account-nav-sub a:hover { background: rgba(255,255,255,.06); color: #fff; }
.account-nav-sub a.active {
  background: rgba(37,99,235,.32); color: #fff; border-left-color: #60a5fa;
}
.account-sidebar-foot { margin-top: auto; padding-top: 16px; display: grid; gap: 8px; }
.account-sidebar-foot a {
  display: flex; align-items: center; gap: 8px; color: #c5d4e8;
  padding: 8px 10px; border-radius: 10px; text-decoration: none; font-size: 13.5px;
}
.account-sidebar-foot a:hover { background: rgba(255,255,255,.06); color: #fff; }
.account-sidebar-foot a.danger { color: #fca5a5; }
.account-main { min-width: 0; padding: 0 32px 48px; }
.account-top {
  display: flex; align-items: center; justify-content: flex-end; gap: 12px;
  padding: 18px 0 8px; position: sticky; top: 0; z-index: 10;
  background: linear-gradient(180deg, #eef2f6 75%, rgba(238,242,246,0));
}
[data-theme="dark"] .account-top {
  background: linear-gradient(180deg, #0b1220 75%, rgba(11,18,32,0));
}
.account-top-tools { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.account-top-tools .ph-langs { margin: 0; }
.account-top-tools .theme-toggle {
  width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--line);
  background: var(--surface); color: var(--text); cursor: pointer; font: inherit; font-size: 18px;
}
.listing-show-head { position: relative; padding-top: 4px; min-height: 42px; }
.listing-show-status {
  position: absolute; top: 0; right: 0; z-index: 2;
  font-weight: 700; padding: 8px 14px; border-radius: 10px; font-size: 13px;
  max-width: min(100%, 320px); text-align: right;
}
.account-menu-toggle {
  display: none; position: fixed; top: 12px; left: 12px; z-index: 80;
  width: 44px; height: 44px; border-radius: 12px; border: 0;
  background: #0b1b33; color: #fff; font-size: 20px; cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}
.account-backdrop {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 65;
}
body.account-nav-open .account-backdrop { display: block; }
.account-hero { margin-bottom: 24px; }
.account-kicker {
  font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: #2563eb; margin-bottom: 8px;
}
.account-kpi-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-bottom: 24px;
}
.account-kpi {
  display: grid; gap: 4px; padding: 18px 20px; border-radius: 16px;
  background: var(--surface); border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(15,23,42,.06); text-decoration: none; color: inherit;
}
.account-kpi:hover { border-color: rgba(37,99,235,.24); transform: translateY(-1px); }
.account-kpi-label { font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.account-kpi strong { font-size: 28px; font-family: 'Source Serif 4', serif; color: var(--accent); }
.account-kpi small { color: var(--muted); font-size: 13px; }
.account-kpi.is-ok { border-color: rgba(34,197,94,.28); }
.account-kpi.is-warn { border-color: rgba(245,158,11,.35); }
.account-kpi.is-verified {
  background: linear-gradient(145deg, rgba(22,163,74,.14), rgba(34,197,94,.05));
  border-color: rgba(22,163,74,.42);
  box-shadow: 0 12px 28px rgba(22,163,74,.12);
}
.account-kpi.is-verified .account-kpi-label { color: #15803d; }
.account-kpi.is-verified strong {
  color: #15803d;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
}
.account-kpi.is-verified strong i {
  font-size: 22px;
  color: #16a34a;
  filter: drop-shadow(0 2px 4px rgba(22,163,74,.35));
}
.account-kpi.is-verified small { color: #166534; font-weight: 650; }
.account-kpi.is-verified:hover {
  border-color: rgba(22,163,74,.55);
  transform: translateY(-2px);
}
.account-company-name {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.verified-seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35em;
  height: 1.35em;
  border-radius: 999px;
  color: #16a34a;
  background: rgba(34,197,94,.14);
  border: 1px solid rgba(22,163,74,.28);
  font-size: .92em;
  line-height: 1;
  cursor: help;
  vertical-align: middle;
  flex-shrink: 0;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.verified-seal i { font-size: .78em; }
.verified-seal:hover {
  transform: scale(1.08);
  background: rgba(34,197,94,.22);
  box-shadow: 0 4px 12px rgba(22,163,74,.25);
}
h1.account-company-name .verified-seal,
.business-name .verified-seal {
  width: 1.55em;
  height: 1.55em;
  font-size: .72em;
  margin-left: 2px;
}
[data-theme="dark"] .account-kpi.is-verified {
  background: linear-gradient(145deg, rgba(34,197,94,.2), rgba(15,23,42,.4));
  border-color: rgba(74,222,128,.35);
}
[data-theme="dark"] .account-kpi.is-verified strong,
[data-theme="dark"] .account-kpi.is-verified .account-kpi-label { color: #4ade80; }
[data-theme="dark"] .account-kpi.is-verified small { color: #86efac; }
[data-theme="dark"] .verified-seal {
  color: #4ade80;
  background: rgba(34,197,94,.18);
  border-color: rgba(74,222,128,.35);
}
.account-dash-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px;
}
.account-panel {
  background: var(--surface); border: 1px solid var(--line); border-radius: 18px;
  padding: 20px 22px; box-shadow: 0 10px 30px rgba(15,23,42,.06);
}
.account-panel-head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px;
}
.account-panel-head h2 { margin: 0; font-size: 18px; display: flex; align-items: center; gap: 8px; }
.account-list-row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--line);
}
.account-list-row:last-child { border-bottom: 0; }
.account-note { padding: 12px 0; border-bottom: 1px solid var(--line); }
.account-note-actions { display: flex; gap: 8px; margin-top: 8px; flex-wrap: wrap; }
.btn-sm { padding: 6px 12px; font-size: 13px; min-height: auto; }
.account-hero--center { text-align: center; }
.account-cookies-wrap { display: flex; justify-content: center; }
.account-cookies-wrap .account-panel { width: min(640px, 100%); }
.account-toolbar {
  display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-bottom: 16px;
}
.account-search, .account-filter {
  border: 1px solid var(--line); border-radius: 12px; background: var(--surface);
  padding: 10px 14px; font: inherit; color: var(--text); min-height: 44px;
}
.account-search { flex: 1; min-width: 200px; }
.account-filter { min-width: 140px; }
.account-table { width: 100%; border-collapse: collapse; }
.account-table th, .account-table td {
  padding: 12px 14px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: middle;
}
.account-table th { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.account-panel--flush { padding: 0; overflow: hidden; }
.account-panel--flush .account-empty-state { padding: 36px 22px; }
.account-actions { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; justify-content: flex-end; }
.account-inline-form { display: inline-flex; gap: 6px; align-items: center; }
.account-pill {
  display: inline-flex; align-items: center; padding: 4px 10px; border-radius: 999px;
  font-size: 12px; font-weight: 700; background: rgba(37,99,235,.12); color: #1d4ed8;
}
.account-pill--published, .account-pill--paid, .account-pill--bezahlt, .account-pill--active, .account-pill--aktiv { background: rgba(34,197,94,.14); color: #15803d; }
.account-pill--pending, .account-pill--warn, .account-pill--offen, .account-pill--unbezahlt, .account-pill--draft { background: rgba(245,158,11,.16); color: #b45309; }
.account-pill--rejected, .account-pill--cancelled, .account-pill--storniert, .account-pill--expired { background: rgba(239,68,68,.14); color: #b91c1c; }
.account-pill--date {
  background: rgba(15, 42, 68, .08); color: #0f2a44; gap: 6px;
}
.account-pill--package {
  background: rgba(37, 99, 235, .12); color: #1d4ed8;
}
.account-pill--unlimited {
  background: rgba(14, 165, 233, .12); color: #0369a1;
}
.account-pill--muted {
  background: rgba(100, 116, 139, .12); color: #475569;
}
.account-list-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; align-items: center; }
.account-listing-name { display: grid; gap: 2px; color: inherit; text-decoration: none; }
.account-listing-name:hover strong { color: #1d4ed8; }
.account-table--premium th { padding-top: 14px; padding-bottom: 14px; }
.account-table--premium td { padding-top: 14px; padding-bottom: 14px; vertical-align: middle; }
.account-listings-panel .account-actions { gap: 8px; }
.account-cancel-form select {
  border: 1px solid var(--line); border-radius: 10px; background: var(--surface);
  padding: 6px 10px; font: inherit; font-size: 12px; font-weight: 650; color: var(--text); min-height: 34px;
}
.btn-edit {
  background: #fff; border: 1px solid rgba(37,99,235,.35); color: #1d4ed8;
}
.btn-edit:hover { background: rgba(37,99,235,.08); color: #1e3a8a; }
.btn-upgrade {
  background: linear-gradient(135deg, #0f2a44, #1e3a8a); border: 0; color: #fff;
}
.btn-upgrade:hover { filter: brightness(1.08); color: #fff; }
.btn-warn {
  background: #fff7ed; border: 1px solid rgba(245,158,11,.45); color: #b45309;
}
.btn-warn:hover { background: #ffedd5; color: #9a3412; }
.account-verified-badge {
  display: inline-flex; color: #16a34a; font-size: 14px; margin-left: 4px; vertical-align: middle;
}
.account-verified-label {
  display: inline-flex; align-items: center; gap: 4px; margin-top: 4px;
  font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  color: #15803d;
}
[data-theme="dark"] .account-pill--date { background: rgba(96,165,250,.14); color: #93c5fd; }
[data-theme="dark"] .btn-edit { background: transparent; color: #93c5fd; border-color: rgba(96,165,250,.35); }
[data-theme="dark"] .btn-warn { background: rgba(245,158,11,.12); color: #fbbf24; }
[data-theme="dark"] .account-verified-label { color: #4ade80; }
.account-empty-state {
  text-align: center; padding: 48px 24px; display: grid; gap: 8px; place-items: center; color: var(--muted);
}
.account-empty-state i { font-size: 28px; color: #2563eb; margin-bottom: 4px; }
.account-empty-state strong { color: var(--text); font-size: 17px; }
.account-empty-state p { margin: 0; max-width: 420px; }
.account-watch-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
.account-watch-card {
  display: flex; flex-direction: column; gap: 8px; padding: 12px;
  border-radius: 18px; background: var(--surface); border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(15,23,42,.05);
}
.account-watch-card-body { min-width: 0; }
.account-security-grid { display: grid; gap: 18px; }
.account-security-grid--premium {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.account-hero--premium h1 { letter-spacing: -.02em; }
.account-panel--premium {
  display: grid; gap: 22px;
  padding: 24px 26px;
  border-radius: 22px;
  box-shadow: 0 14px 36px rgba(15, 42, 68, .06);
}
.account-panel--hint {
  margin-bottom: 18px;
  border-color: rgba(37,99,235,.28);
}
.profile-section__title {
  margin: 0 0 12px; font-size: 1rem; letter-spacing: .02em; text-transform: uppercase; color: var(--muted);
}
.security-form { margin-top: 8px; }
.account-message-list { display: grid; gap: 14px; }
.account-message-card.is-unread { border-color: rgba(37,99,235,.3); }
.account-message-head { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 8px; }
.account-reply { background: rgba(37,99,235,.06); border-radius: 12px; padding: 10px 12px; }
.account-dropzone {
  margin-top: 8px; border: 2px dashed rgba(37,99,235,.35); border-radius: 16px;
  padding: 28px 18px; text-align: center; cursor: pointer; display: grid; gap: 6px; place-items: center;
  background: linear-gradient(180deg, rgba(37,99,235,.06), transparent);
  transition: border-color .15s, background .15s;
}
.account-dropzone.is-drag { border-color: #2563eb; background: rgba(37,99,235,.1); }
.account-dropzone i { font-size: 26px; color: #2563eb; }
.account-file-list { list-style: none; padding: 0; margin: 10px 0 0; display: grid; gap: 6px; }
.account-file-list li {
  display: flex; justify-content: space-between; gap: 10px; align-items: center;
  padding: 8px 10px; border-radius: 10px; border: 1px solid var(--line); background: var(--surface);
}
.account-file-list em { color: var(--muted); font-style: normal; font-size: 12px; }
.account-ticket-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.account-ticket-list li { padding: 12px 0; border-bottom: 1px solid var(--line); }
.account-ticket-list li:last-child { border-bottom: 0; }
.account-ticket-files { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.account-ticket-files a { font-size: 13px; }
.account-login-chip span { min-width: 0; overflow: hidden; text-overflow: ellipsis; }
@media (max-width: 960px) {
  .account-login-chip { max-width: min(100%, 70vw); }
  .account-actions { justify-content: flex-start; }
}

/* Listing stack layout + logo contrast */
.listing-show-stack {
  display: flex; flex-direction: column; align-items: flex-start; gap: 16px; width: 100%;
}
.listing-show-logo-wrap {
  width: min(300px, 100%); min-height: 100px; border-radius: 16px;
  display: grid; place-items: center; padding: 14px 22px;
}
.listing-show-logo-wrap.is-dark-bg {
  background: linear-gradient(160deg, #0f2a44, #1e3a8a);
  box-shadow: 0 10px 28px rgba(15,42,68,.16);
}
.listing-show-logo-wrap.is-light-bg {
  background: linear-gradient(180deg, #ffffff, #eef4fb);
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(15,42,68,.08);
}
.listing-show-logo-wrap .listing-show-logo {
  max-width: 100%; max-height: 72px; width: auto; height: auto;
  background: none; padding: 0; box-shadow: none; border-radius: 0;
}
.hours-box-head {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 14px;
}
.hours-box-head .box-section-title { margin: 0; flex: 1; }
.hours-box-head .hours-open-badge { margin: 0; flex-shrink: 0; white-space: nowrap; }
.description-text-premium {
  font-size: 16px; line-height: 1.78; color: var(--text);
  padding: 20px 22px; border-radius: 14px;
  background: linear-gradient(145deg, rgba(37,99,235,.05), rgba(248,250,252,.95));
  border: 1px solid rgba(37,99,235,.1);
}
.galactic-review-box { margin-bottom: 8px; }
.entry-footer-meta { margin-top: 0; padding: 8px 0 28px; align-items: center; }
.entry-footer-right {
  display: flex; align-items: center; gap: 12px; margin-left: auto;
}
.entry-date-line { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.listing-password-actions {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  margin-top: 4px;
}

/* Red report modals */
.ci4-modal-head-danger {
  background: linear-gradient(180deg, #fef2f2, #fee2e2) !important;
  border-bottom: 1px solid #fecaca !important;
}
.ci4-modal-head-danger h3 { color: #991b1b !important; }
.ci4-modal-head-danger .ci4-modal-close { color: #991b1b; }
.ci4-modal-danger .btn-danger {
  background: linear-gradient(180deg, #ef4444, #dc2626); color: #fff;
  border: 0; font-weight: 800; padding: 11px 22px; border-radius: 999px;
}
.ci4-modal-danger .btn-danger:hover { filter: brightness(1.05); }

/* Registration choice + form */
.register-choice-wrap { max-width: 960px; margin: 0 auto; padding: 48px 0 72px; }
.register-choice-head { text-align: center; margin-bottom: 32px; }
.register-choice-head h1 { margin: 8px 0 10px; }
.register-choice-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px;
}
.register-choice-card {
  display: grid; gap: 12px; padding: 28px 26px; border-radius: 20px;
  background: var(--surface); border: 1px solid rgba(37,99,235,.14);
  box-shadow: 0 14px 42px rgba(37,99,235,.08); text-decoration: none; color: inherit;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.register-choice-card:hover {
  transform: translateY(-3px); border-color: rgba(37,99,235,.28);
  box-shadow: 0 20px 50px rgba(37,99,235,.14);
}
.register-choice-card.is-private { border-top: 4px solid #2563eb; }
.register-choice-card.is-business { border-top: 4px solid #0f766e; }
.register-choice-icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: grid; place-items: center;
  background: rgba(37,99,235,.1); color: #2563eb;
  font-size: 24px; line-height: 1;
}
.register-choice-card.is-business .register-choice-icon {
  background: rgba(15,118,110,.12); color: #0f766e;
}
.register-choice-icon i { font-size: 24px; }
.stars-gold i { margin-right: 2px; }
.ci4-star-row button i { pointer-events: none; }
.register-choice-card h2 { margin: 0; font-size: 24px; }
.register-choice-features {
  list-style: none; padding: 0; margin: 4px 0 0; display: grid; gap: 8px;
}
.register-choice-features li {
  display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--muted);
}
.register-choice-features li::before { content: '✓'; color: #16a34a; font-weight: 800; }
.register-choice-cta {
  margin-top: 8px; font-weight: 800; color: var(--accent); display: inline-flex; align-items: center; gap: 8px;
}
.register-choice-login { text-align: center; margin-top: 24px; }
.register-form-wrap { max-width: 640px; margin: 0 auto; padding: 48px 0 72px; }
.register-card { padding: 32px 30px; border-radius: 20px; }
.register-form-head { margin-bottom: 26px; display: grid; gap: 0; }
.register-form-head h1 {
  margin: 10px 0 0; font-size: clamp(26px, 3.2vw, 32px); line-height: 1.2;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .register-form-head h1 { white-space: normal; }
}
.auth-back-link {
  display: inline-flex; align-items: center; gap: 10px; width: fit-content;
  margin: 0 0 18px;
  padding: 9px 14px 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, .18);
  background: linear-gradient(180deg, #fff, #f8fbff);
  color: #1e3a8a;
  font-size: 13px; font-weight: 700; letter-spacing: .01em;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(15, 42, 68, .04);
  transition: border-color .15s, background .15s, transform .15s, box-shadow .15s;
}
.auth-back-link i {
  width: 22px; height: 22px; border-radius: 999px;
  display: grid; place-items: center;
  background: #eff6ff; color: #2563eb; font-size: 11px;
}
.auth-back-link:hover {
  border-color: rgba(37, 99, 235, .35);
  background: #eff6ff;
  color: #0f2a44;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, .12);
}
.register-type-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 2px 0 0;
  padding: 6px 12px;
  width: fit-content;
  border-radius: 999px;
  background: rgba(15, 42, 68, .06);
  color: #0f2a44;
  letter-spacing: .16em;
}
.register-type-kicker i { color: #2563eb; font-size: 12px; }

.auth-page { max-width: 560px; margin: 0 auto; padding: 48px 0 72px; }
.auth-card { padding: 32px 30px; border-radius: 20px; }
.auth-card h1 { margin: 8px 0 18px; }
.auth-links {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 22px; padding-top: 18px;
  border-top: 1px solid var(--line);
}
.auth-links a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  font-size: 12.5px; font-weight: 700;
  text-decoration: none;
  transition: border-color .15s, background .15s, color .15s, transform .15s;
}
.auth-links a i { color: #2563eb; font-size: 12px; }
.auth-links a:hover {
  border-color: #93c5fd;
  background: #eff6ff;
  color: #1e3a8a;
  transform: translateY(-1px);
}
.auth-links a.auth-link-primary {
  border-color: rgba(30, 58, 138, .35);
  background: linear-gradient(180deg, #1e3a8a, #0f2a44);
  color: #fff;
}
.auth-links a.auth-link-primary i { color: #93c5fd; }
.auth-links a.auth-link-primary:hover {
  filter: brightness(1.06);
  color: #fff;
  background: linear-gradient(180deg, #1e3a8a, #0f2a44);
}
[data-theme="dark"] .auth-back-link {
  background: linear-gradient(180deg, #1a2333, #151d2c);
  border-color: rgba(147, 197, 253, .22);
  color: #e2e8f0;
}
[data-theme="dark"] .auth-back-link i { background: rgba(37,99,235,.22); }
[data-theme="dark"] .register-type-kicker {
  background: rgba(148,163,184,.12); color: #e2e8f0;
}
[data-theme="dark"] .auth-links a {
  background: #151d2c; border-color: rgba(148,163,184,.22); color: #e2e8f0;
}
[data-theme="dark"] .auth-links a:hover {
  background: rgba(37,99,235,.18); border-color: #3b82f6; color: #93c5fd;
}
.password-strength { margin-top: 10px; display: grid; gap: 8px; }
.password-strength-bar {
  height: 8px; border-radius: 999px; background: #e2e8f0; overflow: hidden;
}
.password-strength-bar span {
  display: block; height: 100%; width: 0; border-radius: inherit;
  background: #ef4444; transition: width .22s ease, background .22s ease;
}
.password-strength-bar span.is-weak { background: #ef4444; }
.password-strength-bar span.is-fair { background: #f59e0b; }
.password-strength-bar span.is-good { background: #84cc16; }
.password-strength-bar span.is-strong { background: #16a34a; }
.password-rules {
  list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; font-size: 13px; color: var(--muted);
}
.password-rules li {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 10px; border-radius: 10px; background: rgba(148,163,184,.08);
}
.password-rules li .rule-ico { width: 14px; color: #94a3b8; }
.password-rules li.is-ok {
  color: #166534; font-weight: 700;
  background: rgba(22,163,74,.12);
}
.password-rules li.is-ok .rule-ico { color: #16a34a; }
.password-rules li .field-tip { margin-left: auto; }
.field-tip, .recaptcha-tip {
  display: inline-flex; align-items: center; justify-content: center;
  border: 0; background: none; padding: 2px; cursor: help;
  color: var(--muted); font-size: 15px; line-height: 1;
  flex: 0 0 auto; position: relative; z-index: 2;
}
.field-tip:hover, .recaptcha-tip:hover,
.field-tip:focus-visible, .recaptcha-tip:focus-visible { color: var(--accent); outline: none; }
.recaptcha-block {
  display: flex; align-items: flex-start; gap: 8px;
  margin-top: 12px;
}
.recaptcha-note {
  flex: 1; min-width: 0;
  margin-top: 0; padding: 10px 12px; border-radius: 12px;
  background: rgba(37,99,235,.06); border: 1px solid rgba(37,99,235,.12);
  font-size: 13px;
}
.recaptcha-note-text {
  display: inline-flex; align-items: center; gap: 6px; flex-wrap: nowrap;
  white-space: nowrap; color: var(--muted);
}
.recaptcha-note .g-recaptcha { margin-bottom: 8px; }
[data-theme="dark"] .password-strength-bar { background: #1e293b; }
[data-theme="dark"] .password-rules li { background: rgba(148,163,184,.1); }
[data-theme="dark"] .password-rules li.is-ok { background: rgba(22,163,74,.18); color: #86efac; }
[data-theme="dark"] .recaptcha-note { background: rgba(37,99,235,.12); border-color: rgba(96,165,250,.2); }

@media (max-width: 960px) {
  .hero-art { display: none; }
  .search-card, .mega-search:not(.mega-search-premium), .grid-3, .grid-4, .grid-2, .listing-hero, .form-grid, .footer-grid, .site-footer-grid, .layout-app, .business-header-inner, .review-grid, .spotlight-grid, .mega-panel, .cms-boxes, .fdt-card, .cert-grid, .hero-panel {
    grid-template-columns: 1fr;
  }
  .mega-search-premium .mega-tools { flex-direction: column; align-items: stretch; }
  .mega-search-premium .mega-panel { grid-template-columns: 1fr; }
  .business-header-inner { flex-direction: column; }
  .listing-entry-links { grid-template-columns: 1fr 1fr; }
  .sidebar { position: relative; height: auto; }
  .admin-menu-toggle { display: block; }
  .admin-sidebar { position: fixed; left: -300px; top: 0; height: 100vh; z-index: 70; transition: left .25s ease; }
  body.sidebar-open .admin-sidebar { left: 0; }
  body.sidebar-open .sidebar-backdrop {
    display: block; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 60;
  }
  .admin-top { flex-direction: column; }
  nav.main { display: none; }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--line);
    background: var(--surface); color: var(--text); cursor: pointer; font: inherit;
  }
  body.nav-open nav.main {
    display: flex; flex-direction: column; align-items: stretch; position: absolute; top: 72px; left: 20px; right: 20px;
    background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 12px;
    z-index: 50; box-shadow: var(--shadow); gap: 8px;
  }
  body.nav-open nav.main .nav-pill { width: 100%; justify-content: flex-start; }
  body.nav-open nav.main .nav-item { width: 100%; }
  body.nav-open nav.main .nav-mega {
    position: static; margin-top: 6px; box-shadow: none;
  }
  .sitemap-grid { grid-template-columns: 1fr; }
  .sm-link-grid,
  .sm-link-grid-wide,
  .sm-link-grid-listings { grid-template-columns: 1fr; }
  .map-fullscreen iframe { height: 240px; }
  .listing-card-grid, .fdt-grid { grid-template-columns: 1fr; }
  .account-shell { grid-template-columns: 1fr; }
  .account-menu-toggle { display: grid; place-items: center; }
  .account-sidebar {
    position: fixed; left: -280px; top: 0; z-index: 70; width: 268px;
    transition: left .25s ease;
  }
  body.account-nav-open .account-sidebar { left: 0; }
  .account-main { padding: 72px 20px 40px; }
  .account-kpi-grid, .account-dash-grid, .register-choice-grid { grid-template-columns: 1fr; }
  .listing-show-status { position: static; margin: 0 0 12px auto; max-width: 100%; }
}

/* ── Account premium: B2B gate, verification, support, cookies ── */
.b2b-gate-wrap { margin-top: 18px; display: grid; gap: 14px; }
.b2b-gate {
  border-radius: 16px; padding: 18px 20px; border: 1px solid rgba(239, 68, 68, .35);
  background: linear-gradient(160deg, rgba(254, 226, 226, .95), rgba(255, 241, 242, .9));
  color: #7f1d1d; transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.b2b-gate.is-confirmed {
  border-color: rgba(34, 197, 94, .4);
  background: linear-gradient(160deg, rgba(220, 252, 231, .95), rgba(240, 253, 244, .9));
  color: #14532d;
}
.b2b-gate-head { display: flex; gap: 14px; align-items: flex-start; }
.b2b-gate-badge {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center; background: rgba(239, 68, 68, .14); color: #b91c1c;
}
.b2b-gate.is-confirmed .b2b-gate-badge { background: rgba(34, 197, 94, .16); color: #15803d; }
.b2b-gate-head strong {
  display: block; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 6px;
}
.b2b-gate-head p { margin: 0; font-size: 14px; line-height: 1.55; color: inherit; opacity: .92; }
.b2b-gate-toggle { margin-top: 14px; align-items: flex-start; }
.b2b-gate-toggle span { font-size: 14px; line-height: 1.45; }
.b2b-gate-hint { margin: 10px 0 0; font-size: 13px; display: flex; gap: 8px; align-items: center; }
.b2b-gate-wrap .btn-gold:disabled,
.b2b-gate-wrap .btn-gold[disabled] {
  opacity: .45; cursor: not-allowed; filter: grayscale(.2); transform: none; box-shadow: none;
}
[data-theme="dark"] .b2b-gate {
  background: linear-gradient(160deg, rgba(127, 29, 29, .35), rgba(69, 10, 10, .25));
  border-color: rgba(248, 113, 113, .35); color: #fecaca;
}
[data-theme="dark"] .b2b-gate.is-confirmed {
  background: linear-gradient(160deg, rgba(20, 83, 45, .4), rgba(6, 78, 59, .25));
  border-color: rgba(74, 222, 128, .35); color: #bbf7d0;
}

.verify-steps {
  list-style: none; margin: 0 0 22px; padding: 0;
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px;
}
.verify-step {
  display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center;
  padding: 14px 10px; border-radius: 999px; border: 1px solid var(--line);
  background: var(--surface); color: var(--muted); font-size: 12px; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
}
.verify-step-icon {
  width: 36px; height: 36px; border-radius: 999px; display: grid; place-items: center;
  background: rgba(37, 99, 235, .08); color: #2563eb; font-size: 14px;
}
.verify-step.is-done {
  border-color: rgba(34, 197, 94, .35); color: #15803d;
  background: rgba(34, 197, 94, .08);
}
.verify-step.is-done .verify-step-icon { background: rgba(34, 197, 94, .16); color: #15803d; }
.verify-step.is-active {
  border-color: rgba(37, 99, 235, .4); color: #1d4ed8;
  background: linear-gradient(180deg, rgba(37, 99, 235, .1), rgba(37, 99, 235, .04));
  box-shadow: 0 8px 22px rgba(37, 99, 235, .12);
}
.verify-step.is-active .verify-step-icon { background: #2563eb; color: #fff; }
.verify-step.is-reject {
  border-color: rgba(239, 68, 68, .4); color: #b91c1c;
  background: rgba(239, 68, 68, .08);
}
.verify-step.is-reject .verify-step-icon { background: rgba(239, 68, 68, .16); color: #b91c1c; }
.verify-step-label { line-height: 1.3; }
.verify-success {
  display: flex; gap: 18px; align-items: flex-start;
  border-color: rgba(34, 197, 94, .28);
  background: linear-gradient(145deg, rgba(34, 197, 94, .1), var(--surface));
}
.verify-success-icon {
  width: 56px; height: 56px; border-radius: 16px; flex: 0 0 auto;
  display: grid; place-items: center; font-size: 26px;
  background: rgba(34, 197, 94, .14); color: #15803d;
}
.verify-success h2 { margin: 0 0 6px; font-size: 22px; font-family: 'Source Serif 4', serif; }
.verify-reject-note { border-color: rgba(239, 68, 68, .28); background: rgba(254, 226, 226, .35); }
[data-theme="dark"] .verify-step { background: #151d2c; }
[data-theme="dark"] .verify-success { background: linear-gradient(145deg, rgba(34, 197, 94, .16), #151d2c); }
[data-theme="dark"] .verify-reject-note { background: rgba(127, 29, 29, .25); }

.support-kpi-grid { margin-bottom: 20px; }
.support-action-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-bottom: 22px;
}
.support-action-card {
  text-decoration: none; color: inherit; display: grid; gap: 8px;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.support-action-card:hover {
  transform: translateY(-2px); border-color: rgba(37, 99, 235, .28);
  box-shadow: 0 14px 36px rgba(37, 99, 235, .1);
}
.support-action-icon {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(37, 99, 235, .1); color: #2563eb; font-size: 18px;
}

.ck-account-actions {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; align-items: center;
}
.ck-account-actions .btn { border-radius: 999px; }
.btn-danger-ghost {
  border-color: rgba(180, 35, 24, .28); color: var(--danger, #b91c1c);
}
.btn-danger-ghost:hover { background: rgba(180, 35, 24, .08); }
.ck-btn-accept-like {
  border-color: rgba(37, 99, 235, .35); color: #1d4ed8; font-weight: 700;
}
@media (max-width: 960px) {
  .verify-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .verify-step { border-radius: 16px; }
  .support-action-grid { grid-template-columns: 1fr; }
  .verify-success { flex-direction: column; }
}

