@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@500;600;700&display=swap');

:root {
  --teal: #00b4a6;
  --teal-dark: #009688;
  --teal-soft: #e6faf8;
  --green: #2ecc71;
  --ink: #1a2332;
  --muted: #5b6b7c;
  --line: #e6ebf1;
  --bg: #e8edf3;
  --surface: #eef2f7;
  --white: #ffffff;
  --danger: #e74c3c;
  --warn: #f39c12;
  --purple: #8e44ad;
  --admin-navy: #0d1524;
  --admin-navy-2: #152033;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(26,35,50,.08);
  --font: "Manrope", system-ui, sans-serif;
  --display: "Sora", "Manrope", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
}
a { color: var(--teal-dark); text-decoration: none; }
a:hover { color: var(--teal); }
img { max-width: 100%; display: block; }
.container { width: min(1140px, calc(100% - 2rem)); margin: 0 auto; }

/* ===== FRONTEND ===== */
.topbar {
  background: #f0f3f7; font-size: .85rem; color: var(--muted);
  border-bottom: 1px solid var(--line);
}
.topbar .container { display:flex; justify-content:flex-end; gap:1.25rem; padding:.45rem 0; align-items:center; }
.topbar a { color: var(--muted); }
.site-header {
  background: var(--white); border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
}
.site-header .container {
  display:flex; align-items:center; justify-content:space-between; gap:1rem; padding:.85rem 0;
}
.logo { display:flex; align-items:center; gap:.65rem; font-family:var(--display); font-weight:700; color:var(--ink); font-size:1.25rem; }
.logo img { height: 44px; width:auto; }
.logo span { color: var(--teal); }
.nav-main { display:flex; gap:1.1rem; flex-wrap:wrap; align-items:center; }
.nav-main a { color: var(--ink); font-weight:600; font-size:.95rem; }
.nav-main a:hover { color: var(--teal); }
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:.4rem;
  border:0; border-radius:8px; padding:.7rem 1.2rem; font-weight:700; cursor:pointer;
  font-family: inherit; transition: .15s ease;
}
.btn-teal { background: var(--teal); color:#fff; }
.btn-teal:hover { background: var(--teal-dark); color:#fff; }
.btn-green { background: var(--green); color:#fff; }
.btn-green:hover { filter: brightness(.95); color:#fff; }
.btn-outline { background: transparent; border:1px solid var(--line); color: var(--ink); }
.btn-danger { background: var(--danger); color:#fff; }
.btn-sm { padding:.4rem .75rem; font-size:.85rem; }

.hero {
  position: relative; min-height: 62vh; display:flex; align-items:center;
  color: #fff; background: #0d1b2a center/cover no-repeat;
  isolation: isolate;
}
.hero::before {
  content:""; position:absolute; inset:0; z-index:-1;
  background: linear-gradient(90deg, rgba(8,18,32,.85) 10%, rgba(8,18,32,.45) 70%, rgba(8,18,32,.25));
}
.hero h1 {
  font-family: var(--display); font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin: 0 0 .6rem; font-weight:700; letter-spacing: -.02em;
}
.hero p { font-size: 1.15rem; max-width: 36rem; opacity:.92; margin: 0 0 1.4rem; }

.domain-box {
  margin-top: -2.5rem; position: relative; z-index: 2;
}
.domain-card {
  background: #fff; border-radius: 14px; box-shadow: var(--shadow);
  padding: 1.25rem 1.4rem 1.1rem; border: 1px solid var(--line);
}
.domain-form { display:flex; gap:.6rem; }
.domain-form input {
  flex:1; border:1px solid var(--line); border-radius:10px; padding:.9rem 1rem; font:inherit;
}
.tld-row {
  display:flex; flex-wrap:wrap; gap:.8rem 1.2rem; margin-top:1rem; color: var(--muted); font-size:.92rem;
}
.tld-row strong { color: var(--ink); }

.section { padding: 4rem 0; }
.section.alt { background: var(--bg); }
.section h2 {
  font-family: var(--display); font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin: 0 0 .5rem; text-align:center;
}
.section .lead { text-align:center; color: var(--muted); max-width: 40rem; margin: 0 auto 2rem; }

.pricing-grid {
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.price-card {
  background:#fff; border:1px solid var(--line); border-radius: 16px;
  padding: 1.5rem 1.35rem; box-shadow: 0 4px 16px rgba(26,35,50,.04);
  display:flex; flex-direction:column; position:relative;
}
.price-card.featured {
  border: 2px solid var(--teal); transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,180,166,.15);
}
.price-card .tag {
  position:absolute; top: 12px; right: 12px;
  background: var(--teal); color:#fff;
  font-size:.72rem; font-weight:800; padding:.25rem .55rem; border-radius:999px;
  z-index: 2;
}
.price-card h3 { padding-right: 5.5rem; }
.price-card h3 { margin:0 0 .35rem; font-family:var(--display); }
.price-card .price { font-size:2rem; font-weight:800; margin:.4rem 0 1rem; }
.price-card .price small { font-size:.95rem; color:var(--muted); font-weight:600; }
.price-card ul { list-style:none; padding:0; margin:0 0 1.25rem; flex:1; }
.price-card li { padding:.4rem 0; border-bottom:1px solid #f0f3f7; color:var(--muted); font-size:.94rem; }
.price-card li::before { content:"✓ "; color: var(--teal); font-weight:800; }

.why-grid {
  display:grid; grid-template-columns: repeat(3, 1fr); gap:1.25rem;
}
.why-item {
  background: rgba(255,255,255,.92); border-radius:14px; padding:1.25rem;
  border:1px solid rgba(255,255,255,.4);
}
.why-item .ico {
  width:42px; height:42px; border-radius:10px; background: var(--teal-soft); color: var(--teal-dark);
  display:flex; align-items:center; justify-content:center; font-weight:800; margin-bottom:.75rem;
}
.why-bg {
  background: linear-gradient(180deg, rgba(245,247,250,.92), rgba(245,247,250,.96)),
              url('/assets/img/section-bg.jpg') center/cover;
}

.soft-grid { display:grid; grid-template-columns: repeat(3,1fr); gap:1rem; }
.soft-card {
  background:#fff; border:1px solid var(--line); border-radius:14px; padding:1.2rem; text-align:center;
}
.soft-card .amt { font-size:1.4rem; font-weight:800; color: var(--teal-dark); margin:.5rem 0; }

.table-wrap { overflow:auto; background:#fff; border-radius:14px; border:1px solid var(--line); }
table.data { width:100%; border-collapse: collapse; }
table.data th, table.data td { padding:.85rem .9rem; text-align:left; border-bottom:1px solid var(--line); font-size:.92rem; }
table.data th { background:#f8fafc; color:var(--muted); font-weight:700; }
.badge {
  display:inline-block; padding:.15rem .55rem; border-radius:999px; font-size:.75rem; font-weight:700;
}
.badge-ok { background:#e8f8ef; color:#1e8e4a; }
.badge-warn { background:#fff4e0; color:#b7791f; }
.badge-danger { background:#fdecea; color:#c0392b; }
.badge-info { background: var(--teal-soft); color: var(--teal-dark); }

.partners { display:flex; flex-wrap:wrap; gap:1.5rem 2rem; justify-content:center; align-items:center; opacity:.7; }
.partners span { font-weight:800; letter-spacing:.04em; color: var(--muted); }

.site-footer {
  background: #141c2b; color: #c5d0de; padding: 3rem 0 1.5rem; margin-top: 2rem;
}
.site-footer a { color: #c5d0de; }
.site-footer h4 { color:#fff; margin:0 0 .8rem; }
.footer-grid { display:grid; grid-template-columns: 1.2fr repeat(3,1fr); gap:1.5rem; }
.footer-bottom { margin-top:2rem; padding-top:1rem; border-top:1px solid rgba(255,255,255,.08); display:grid; grid-template-columns:1fr auto 1fr; align-items:center; gap:1rem; font-size:.85rem; }

/* ===== CLIENT / ADMIN SHARED ===== */
.flash { padding:.8rem 1rem; border-radius:10px; margin-bottom:1rem; }
.flash.ok { background:#e8f8ef; color:#1e8e4a; }
.flash.err { background:#fdecea; color:#c0392b; }
input, select, textarea {
  width:100%; border:1px solid var(--line); border-radius:10px; padding:.7rem .8rem;
  font:inherit; background:#fff; margin:.3rem 0 .85rem;
}
label { font-size:.88rem; color:var(--muted); font-weight:600; display:block; }

/* ===== ADMIN ===== */
.admin-body { background: #eef2f7; min-height:100vh; }
.admin-top {
  background: var(--admin-navy); color:#fff;
  display:grid;
  grid-template-columns: 1fr minmax(240px, 460px) 1fr;
  align-items:center;
  gap:1rem;
  padding: .75rem 1.25rem; position:sticky; top:0; z-index:200;
  overflow: visible;
  width: 100%;
  box-sizing: border-box;
  border-bottom: 0 !important;
}
.admin-top .brand { justify-self: start; grid-column: 1; min-width: 0; }
.admin-search-wrap { justify-self: center; grid-column: 2; width: 100%; max-width: 460px; flex: unset; }
.admin-top-right {
  justify-self: end; grid-column: 3;
  display: flex; align-items: center; gap: .55rem;
  min-width: 0;
  max-width: 100%;
}
.admin-lang-switch {
  display: inline-flex;
  align-items: center;
  gap: .15rem;
  padding: .15rem .2rem;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
}
.admin-lang-switch .lang-switch {
  color: rgba(255,255,255,.7);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .04em;
  padding: .28rem .45rem;
  border-radius: 999px;
  text-decoration: none;
  line-height: 1;
}
.admin-lang-switch .lang-switch:hover { color: #fff; background: rgba(255,255,255,.08); }
.admin-lang-switch .lang-switch.is-active {
  color: #fff;
  background: rgba(45, 212, 191, .28);
  border: none;
}
.admin-profile-lang {
  border-top: 1px solid rgba(15, 23, 42, .08);
  margin-top: .25rem;
  padding-top: .25rem;
}
.admin-profile-menu a.is-active {
  background: var(--teal-soft, #e6faf6);
  color: var(--teal-dark, #0f766e);
  font-weight: 700;
}
.admin-top::after,
.admin-top::before { content: none !important; display: none !important; }
.admin-top .brand { color:#fff; font-family:var(--display); font-weight:700; display:flex; align-items:center; gap:.5rem; }
.admin-top .brand img { height:48px; }
.admin-search {
  flex:1; max-width:420px; background: rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.12);
  border-radius:999px; padding:.55rem 1rem; color:#fff;
}
.admin-search::placeholder { color: rgba(255,255,255,.55); }
.admin-nav {
  background: var(--admin-navy-2); display:flex; flex-wrap:wrap; gap:.2rem 0;
  padding: 0 1rem; border-bottom: 1px solid rgba(255,255,255,.06);
  overflow: visible;
  position: relative;
  z-index: 150;
}
.admin-nav a {
  color: rgba(255,255,255,.82); padding:.75rem .9rem; font-weight:600; font-size:.9rem;
  border-bottom: 2px solid transparent;
}
.admin-nav a:hover, .admin-nav a.active { color:#fff; border-bottom-color: var(--teal); }
.admin-wrap { width: min(1280px, calc(100% - 2rem)); margin: 1.25rem auto 2rem; }
.kpi-grid { display:grid; grid-template-columns: repeat(4, 1fr); gap:1rem; margin-bottom:1rem; }
.kpi {
  background:#fff; border-radius:12px; padding:1rem 1.1rem; border:1px solid var(--line);
  box-shadow: 0 2px 10px rgba(26,35,50,.04); display:flex; justify-content:space-between; gap:1rem;
}
.kpi .label { color:var(--muted); font-size:.85rem; font-weight:600; }
.kpi .value { font-size:1.45rem; font-weight:800; margin-top:.2rem; }
.kpi .ico {
  width:44px; height:44px; border-radius:12px; display:flex; align-items:center; justify-content:center;
  font-weight:800; color:#fff; flex-shrink:0;
}
.kpi .ico.g { background:#2ecc71; }
.kpi .ico.b { background:#3498db; }
.kpi .ico.o { background:#e67e22; }
.kpi .ico.p { background:#9b59b6; }
.alert-row { display:grid; grid-template-columns: repeat(4,1fr); gap:1rem; margin-bottom:1rem; }
.alert-card {
  display:flex;
  align-items:center;
  gap:.85rem;
  background:#fff;
  color:#0f172a;
  border-radius:12px;
  padding:.95rem 1.05rem;
  font-weight:700;
  border:2px solid transparent;
  box-shadow: 0 2px 10px rgba(26,35,50,.05);
  text-decoration:none;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.alert-card .alert-ico {
  flex-shrink:0;
  width:2.5rem;
  height:2.5rem;
  border-radius:10px;
  display:grid;
  place-items:center;
  font-size:1.05rem;
}
.alert-card .alert-body { min-width:0; display:flex; flex-direction:column; gap:.15rem; }
.alert-card .alert-body strong { font-size:1.2rem; line-height:1.15; font-weight:800; }
.alert-card small { display:block; font-weight:600; opacity:.75; margin:0; font-size:.82rem; color:#475569; }
.alert-card.red { border-color:#f87171; }
.alert-card.red .alert-ico { background:#fef2f2; color:#dc2626; }
.alert-card.purple { border-color:#c084fc; }
.alert-card.purple .alert-ico { background:#faf5ff; color:#9333ea; }
.alert-card.green { border-color:#4ade80; }
.alert-card.green .alert-ico { background:#ecfdf5; color:#059669; }
.alert-card.gray { border-color:#94a3b8; }
.alert-card.gray .alert-ico { background:#f1f5f9; color:#475569; }

.panel {
  background:#fff; border:1px solid var(--line); border-radius:12px; margin-bottom:1rem;
  box-shadow: 0 2px 10px rgba(26,35,50,.04); overflow:hidden;
}
.panel-h {
  padding:.85rem 1.1rem; border-bottom:1px solid var(--line);
  display:flex; justify-content:space-between; align-items:center; gap:1rem;
}
.panel-h h2, .panel-h h3 { margin:0; font-size:1.05rem; font-family:var(--display); }
.panel-b { padding:1.1rem; }
.widgets { display:grid; grid-template-columns: repeat(3,1fr); gap:1rem; }
.actions { display:flex; gap:.4rem; flex-wrap:wrap; }
.page-title { display:flex; justify-content:space-between; align-items:center; gap:1rem; margin:0 0 1rem; }
.page-title h1 { margin:0; font-family:var(--display); font-size:1.5rem; }

/* ===== CLIENT ===== */
.client-body { background: var(--bg); min-height:100vh; }
.client-top {
  background:#fff; border-bottom:1px solid var(--line);
  position:sticky; top:0; z-index:30;
}
.client-top .container {
  display:flex; justify-content:space-between; align-items:center; padding:.85rem 0; gap:1rem;
}
.client-nav { display:flex; gap:1rem; flex-wrap:wrap; }
.client-nav a { color:var(--ink); font-weight:600; }
.client-nav a:hover { color: var(--teal); }
.client-wrap { width: min(1100px, calc(100% - 2rem)); margin: 1.25rem auto 2rem; }

.auth-page {
  min-height:100vh; display:grid; place-items:center;
  background: radial-gradient(800px 400px at 20% 0%, rgba(0,180,166,.18), transparent),
              linear-gradient(180deg, #0f1c2e, #15263d);
  padding: 1.5rem;
}
.auth-card {
  width:min(420px, 100%); background:#fff; border-radius:16px; padding:1.6rem;
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
}
.auth-card h1 { margin:0 0 .4rem; font-family:var(--display); font-size:1.5rem; }

@media (max-width: 960px) {
  .pricing-grid, .why-grid, .soft-grid, .kpi-grid, .alert-row, .widgets, .footer-grid { grid-template-columns: 1fr 1fr; }
  .price-card.featured { transform:none; }
  .nav-main { display:none; }
}
@media (max-width: 640px) {
  .pricing-grid, .why-grid, .soft-grid, .kpi-grid, .alert-row, .widgets, .footer-grid { grid-template-columns: 1fr; }
  .domain-form { flex-direction:column; }
}

/* ===== MEGA MENU ===== */
.mega-nav { display:flex; gap:.25rem; align-items:stretch; }
.mega-item { position:relative; }
.mega-item > a {
  display:block; padding:.55rem .75rem; color:var(--ink); font-weight:700; border-radius:8px;
}
.mega-item > a:hover,
.mega-item.is-open > a { color:var(--teal); background:rgba(0,180,166,.08); }
.mega-panel {
  position:absolute; left:0; top: calc(100% + 14px); min-width:420px; display:none;
  background:#fff; border:1px solid var(--line); border-radius:14px;
  box-shadow:0 18px 40px rgba(15,28,46,.12); padding:1.1rem 1.2rem;
  grid-template-columns: repeat(2, minmax(160px, 1fr)); gap:1rem; z-index:50;
}
.mega-item.has-mega.is-open > .mega-panel { display:grid; }
.mega-title { font-size:.75rem; text-transform:uppercase; letter-spacing:.06em; color:var(--muted); font-weight:800; margin-bottom:.45rem; }
.mega-col a { display:block; padding:.4rem 0; color:var(--ink); font-weight:600; font-size:.92rem; }
.mega-col a:hover { color:var(--teal); }
.mega-panel.mega-info {
  grid-template-columns: minmax(180px, 1fr) auto;
  min-width: 300px;
  align-items: stretch;
}
.mega-info-aside {
  display: grid;
  place-items: center;
  padding: .35rem .15rem .35rem 1.1rem;
  margin-left: .25rem;
  border-left: 1px solid rgba(15, 28, 46, .08);
  color: var(--teal);
}
.mega-info-aside i {
  font-size: 2.85rem;
  line-height: 1;
  opacity: .92;
}
.cart-badge {
  display:inline-grid; place-items:center; min-width:1.2rem; height:1.2rem; padding:0 .3rem;
  border-radius:999px; background:var(--teal); color:#fff; font-size:.7rem; font-weight:800;
  line-height:1;
}

/* ===== HERO VIDEO / SLIDER ===== */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero > video.hero-video,
.hero .hero-slides,
.hero .hero-slide,
.hero .hero-slide > video {
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  z-index:0;
}
.hero-slide { background-size:cover; background-position:center; opacity:0; transition:opacity 1s ease; }
.hero-slide.is-active { opacity:1; }
.hero-overlay {
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(10,18,32,.78), rgba(10,18,32,.35));
}
.hero-content { position:relative; z-index:2; color:#fff; }
.hero-content h1 { color:#fff; }
.hero-content p { color:rgba(255,255,255,.88); max-width:36rem; }

/* ===== CART ===== */
.cart-wrap h1 { font-family:var(--display); margin:0 0 1.2rem; }
.cart-grid { display:grid; grid-template-columns: 1.6fr .9fr; gap:1.25rem; align-items:start; }
.cart-item {
  display:flex; justify-content:space-between; gap:1rem; padding:1rem 0;
  border-bottom:1px solid var(--line);
}
.cart-items, .cart-summary, .config-card {
  background:#fff; border:1px solid var(--line); border-radius:14px; padding:1.2rem;
}
.cart-summary h3 { margin:0 0 1rem; font-family:var(--display); }
.sum-row { display:flex; justify-content:space-between; margin:.45rem 0; color:var(--muted); }
.sum-row.total { color:var(--ink); font-weight:800; font-size:1.15rem; margin-top:1rem; padding-top:.8rem; border-top:1px solid var(--line); }
.btn-block { display:block; text-align:center; width:100%; margin-top:.6rem; }
.cart-empty { background:#fff; border:1px solid var(--line); border-radius:14px; padding:2rem; text-align:center; }

/* Premium empty cart */
.cart-section {
  background:
    radial-gradient(1200px 420px at 50% -10%, rgba(0, 180, 166, .08), transparent 60%),
    linear-gradient(180deg, #e8eef4 0%, #eef2f6 40%, #f4f7fb 100%);
  padding-bottom: 3.5rem;
}
.cart-empty {
  position: relative;
  overflow: hidden;
  max-width: 640px;
  margin: 0 auto;
  padding: 3rem 2.25rem 2.5rem;
  text-align: center;
  border: 1px solid rgba(15, 36, 56, .08);
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(15, 36, 56, .08);
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}
.cart-empty::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--teal, #00b4a6), transparent);
}
.cart-empty-visual {
  position: relative;
  width: 92px;
  height: 92px;
  margin: 0 auto 1.35rem;
  display: grid;
  place-items: center;
}
.cart-empty-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(0, 180, 166, .22), rgba(0, 180, 166, .06) 55%, transparent 70%);
  border: 1px solid rgba(0, 180, 166, .22);
  animation: cartEmptyPulse 2.8s ease-in-out infinite;
}
.cart-empty-visual i {
  position: relative;
  z-index: 1;
  font-size: 1.85rem;
  color: var(--teal-dark, #0e9a82);
}
.cart-empty-title {
  margin: 0 0 .55rem;
  font-family: var(--display, inherit);
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ink, #0f2438);
}
.cart-empty-lead {
  margin: 0 auto 1.5rem;
  max-width: 34rem;
  color: var(--muted, #6b7c8f);
  font-size: 1rem;
  line-height: 1.55;
}
.cart-empty-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .65rem;
  margin-bottom: 1.5rem;
}
.cart-empty-actions .btn {
  min-width: 10.5rem;
}
.cart-empty-links {
  list-style: none;
  margin: 0;
  padding: 1.15rem 0 0;
  border-top: 1px solid rgba(15, 36, 56, .08);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .55rem 1.25rem;
}
.cart-empty-links a {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: #4a5d72;
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  transition: color .15s;
}
.cart-empty-links a:hover { color: var(--teal-dark, #0e9a82); }
.cart-empty-links i { color: var(--teal, #00b4a6); font-size: .85rem; }
@keyframes cartEmptyPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.06); opacity: .85; }
}
@media (prefers-reduced-motion: reduce) {
  .cart-empty-ring { animation: none; }
}
.config-card label { margin-top:.8rem; }
.feature-list { margin:1rem 0; padding-left:1.1rem; }
.feature-list li { margin:.25rem 0; }
.grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
@media (max-width: 960px) {
  .cart-grid, .grid-2 { grid-template-columns:1fr; }
  .mega-nav { display:none; }
}

/* ===== DOMAIN CONFIG ===== */
.domain-results { display:flex; flex-direction:column; gap:.75rem; }
.domain-result {
  display:flex; justify-content:space-between; gap:1rem; flex-wrap:wrap;
  background:#fff; border:1px solid var(--line); border-radius:14px; padding:1rem 1.1rem;
}
.domain-result.is-free { border-color: rgba(30,142,74,.35); box-shadow: inset 3px 0 0 #1e8e4a; }
.domain-result.is-taken { border-color: rgba(192,57,43,.25); box-shadow: inset 3px 0 0 #c0392b; }
.domain-result-actions { min-width:220px; }
.price-tag { font-weight:800; margin-bottom:.4rem; }

/* ===== CHECKOUT GATEWAYS ===== */
.gateway-list { display:flex; flex-direction:column; gap:.45rem; margin:.6rem 0 0; }
.gateway-option {
  display:flex; gap:.6rem; align-items:center; padding:.65rem .75rem;
  border:1px solid var(--line); border-radius:10px; cursor:pointer; font-weight:600;
}
.gateway-option:has(input:checked) { border-color: var(--teal); background: rgba(0,180,166,.08); }
.gateway-option input { width:auto; }

/* ===== MEGA EDITOR ===== */
.mega-edit-item {
  border:1px solid var(--line); border-radius:12px; padding:1rem; margin-bottom:1rem; background:#fafbfc;
}
.mega-edit-head { display:flex; justify-content:space-between; align-items:center; margin-bottom:.6rem; }
.mega-edit-col {
  border:1px dashed #d0d5dd; border-radius:10px; padding:.8rem; margin:.6rem 0; background:#fff;
}
.mega-edit-link { margin:.35rem 0; }
.domain-result.is-unknown { border-color: rgba(180,140,20,.35); box-shadow: inset 3px 0 0 #c9a227; }


/* ===== PREMIUM ADDONS (logo, mega cards, order, footer, tips) ===== */
.logo-lg img { height: 68px; width: auto; max-width: 320px; object-fit: contain; }
.logo-lg .logo-text { font-size: 1.55rem; font-weight: 800; }
.logo-lg small { display: block; font-size: .72rem; opacity: .75; margin-top: .1rem; }
.lang-switch { color: rgba(255,255,255,.75); font-weight: 700; font-size: .78rem; padding: .15rem .35rem; border-radius: 4px; }
.lang-switch.is-active { background: rgba(255,255,255,.12); color: #fff; }
.cart-link {
  position: relative; color: #2ecc71; font-size: 1.1rem;
  display: inline-flex; align-items: center; padding: .15rem .35rem .15rem .2rem;
  overflow: visible;
}
.cart-link .cart-badge {
  position: absolute; top: -4px; right: -6px;
  min-width: 1.15rem; height: 1.15rem;
  box-shadow: 0 0 0 2px #111827;
}

.mega-panel.mega-cards {
  display: none; position: absolute; left: 50%; transform: translateX(-50%);
  top: calc(100% + .35rem); min-width: 720px; max-width: 920px; width: max-content;
  background: rgba(248,250,252,.97); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.35); border-radius: 14px;
  padding: 1.25rem 1.4rem 1rem; box-shadow: 0 18px 50px rgba(0,0,0,.28);
  grid-template-columns: 1fr; z-index: 40;
}
.mega-item.has-mega.is-open > .mega-panel.mega-cards { display: block; }
.mega-cards-grid { display: grid; grid-template-columns: repeat(3, minmax(180px, 1fr)); gap: 1rem; }
.mega-card {
  position: relative; display: flex; flex-direction: column; gap: .35rem;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 1.15rem 1.05rem 1.05rem; color: var(--ink); text-decoration: none;
  overflow: hidden;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease;
}
.mega-card:hover { transform: translateY(-2px); border-color: var(--teal); box-shadow: 0 10px 28px rgba(0,180,166,.15); }
.mega-ico {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, #e8f8f6, #f0f4ff); color: var(--teal); font-size: 1.15rem; margin-bottom: .2rem;
}
.mega-card strong { font-size: .98rem; }
.mega-card span { color: var(--muted); font-size: .86rem; }
.mega-badge {
  position: absolute; top: 12px; right: 12px;
  display: inline-flex; align-items: center;
  font-size: .62rem; font-weight: 800; letter-spacing: .07em; color: #fff;
  padding: .28rem .55rem; border-radius: 999px;
  box-shadow: 0 6px 14px rgba(0,0,0,.18);
  z-index: 2;
}
.mega-footer { margin-top: .95rem; text-align: center; color: var(--muted); font-size: .86rem; font-style: italic; }

.badge-green, .tag.badge-green, .mega-badge.badge-green { background: linear-gradient(135deg, #1f9d57, #2ecc71); }
.badge-teal, .tag.badge-teal, .mega-badge.badge-teal { background: linear-gradient(135deg, #0e9a82, #16c4a6); }
.badge-blue, .tag.badge-blue, .mega-badge.badge-blue,
.badge-cloud, .mega-badge.badge-cloud { background: linear-gradient(135deg, #1a6bb5, #3a8fd4); }
.badge-orange, .tag.badge-orange, .mega-badge.badge-orange { background: linear-gradient(135deg, #d35400, #e67e22); }
.badge-red, .tag.badge-red, .mega-badge.badge-red { background: linear-gradient(135deg, #c0392b, #e74c3c); }
.badge-managed, .mega-badge.badge-managed { background: linear-gradient(135deg, #0e9a82, #16c4a6); color: #fff !important; }
.badge-dedicated, .mega-badge.badge-dedicated { background: linear-gradient(135deg, #1a2f4a, #3a5688); color: #fff !important; }
.badge-cloud, .mega-badge.badge-cloud { color: #fff !important; }
.badge.badge-dedicated,
.badge.badge-managed,
.badge.badge-cloud,
.mini-badge.badge-dedicated,
.mini-badge.badge-managed,
.mini-badge.badge-cloud { color: #fff !important; }
.tag {
  position: absolute; top: 12px; right: 12px; font-size: .68rem; font-weight: 800;
  color: #fff; background: #27ae60; padding: .25rem .55rem; border-radius: 999px; letter-spacing: .04em;
}
.price-card { position: relative; }
.mini-badge {
  display: inline-flex; align-items: center; margin-left: .45rem;
  font-size: .62rem; font-weight: 800; letter-spacing: .06em;
  color: #fff; padding: .22rem .5rem; border-radius: 999px; vertical-align: middle;
}

.premium-domain {
  background: linear-gradient(180deg, #fff, #f7fbfb);
  border: 1px solid rgba(0,180,166,.2);
  box-shadow: 0 16px 40px rgba(16,40,60,.08);
  border-radius: 18px; padding: 1.6rem 1.5rem;
}
.premium-domain h2 { margin: 0 0 1rem; font-family: var(--display); color: var(--ink); }
.tld-chip {
  display: inline-flex; gap: .35rem; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: .35rem .7rem; font-size: .85rem; margin: .25rem .2rem 0 0;
}
.server-tabs { display: flex; gap: .5rem; margin: 0 0 1rem; }
.chip {
  display: inline-flex; padding: .4rem .85rem; border-radius: 999px;
  border: 1px solid var(--line); background: #fff; color: var(--ink); font-weight: 700; font-size: .86rem;
}
.cloud-grid .price-card { min-height: 180px; }

/* Tooltips – wrapper may host ::before/::after; keep FA icons on child <i> */
.tip { position: relative; cursor: help; display: inline-flex; align-items: center; }
.shop-vat-tip {
  margin-left: .2rem;
  vertical-align: middle;
  color: #94a3b8;
  font-size: .72em;
  line-height: 1;
}
.shop-vat-tip:hover,
.shop-vat-tip:focus {
  color: var(--teal, #0e9a82);
  outline: none;
}
.price small .shop-vat-tip,
.sw-price-note .shop-vat-tip {
  position: relative;
  top: -0.05em;
}
.tip::after {
  content: attr(data-tip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%) translateY(4px);
  width: max-content;
  min-width: 220px;
  max-width: min(360px, 92vw);
  white-space: normal;
  text-align: left;
  line-height: 1.35;
  background: #1a2332;
  color: #fff;
  font-family: var(--font, "Manrope", system-ui, sans-serif) !important;
  font-size: .78rem !important;
  font-weight: 600 !important;
  font-style: normal !important;
  letter-spacing: .01em !important;
  text-transform: none !important;
  padding: .55rem .75rem;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s ease, transform .15s ease;
  z-index: 200;
  box-shadow: 0 8px 20px rgba(15, 23, 42, .22);
}
/* Arrow on tip bubble – only when tip is NOT the FA icon itself */
.tip:not([class*="fa-"])::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(100% + 4px);
  transform: translateX(-50%) translateY(4px);
  border: 6px solid transparent;
  border-top-color: #1a2332;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s ease, transform .15s ease;
  z-index: 81;
}
.tip:hover::after,
.tip:focus::after,
.tip:focus-visible::after { opacity: 1; transform: translateX(-50%) translateY(0); }
.tip:not([class*="fa-"]):hover::before,
.tip:not([class*="fa-"]):focus::before,
.tip:not([class*="fa-"]):focus-visible::before { opacity: 1; transform: translateX(-50%) translateY(0); }
/* Legacy: tip class directly on FA icon – no arrow (FA owns ::before) */
i.tip.fa-circle-info::after { bottom: calc(100% + 8px); }
.pay-icons { display: flex; gap: .85rem; align-items: center; margin-top: .8rem; font-size: 1.55rem; color: #4b5b6e; }
.pay-icons.compact { font-size: 1.25rem; margin: 0; }
.pay-icons .tip:hover { color: var(--teal); }
.pay-icons.trust-row { margin-top: 1.4rem; font-size: 1.6rem; color: #5b6b7c; flex-wrap: wrap; }
.pay-brand {
  display: inline-flex; align-items: center; justify-content: center;
  line-height: 1; min-width: 0;
  width: auto; flex: 0 0 auto;
}
.pay-brand-svg { height: .95em; width: auto; display: block; }
.pay-brand-img {
  min-width: 0;
}
.pay-brand-img img {
  height: .85em; width: auto; display: block; max-width: 2.6rem;
  filter: grayscale(1) opacity(.85);
}
.pay-brand-img:hover img { filter: none; opacity: 1; }
.premium-footer .pay-brand-img img { filter: brightness(0) invert(1) opacity(.85); }
.pay-brand-stripe { font-size: 1.05em; }
.pay-brand-mollie i { font-size: .92em; }
.pay-brand-bank i { font-size: .92em; }

.premium-footer { background: #1a2332; color: rgba(255,255,255,.82); margin-top: 3rem; }
.premium-footer a { color: rgba(255,255,255,.82); }
.premium-footer a:hover { color: #fff; }
.premium-footer h4 { color: #fff; margin: 0 0 .7rem; }
.footer-cta {
  background: #243447; text-align: center; padding: 1rem;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 18px 18px;
}
.footer-logo { max-height: 52px; margin-bottom: .6rem; }
.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1rem 0 1.4rem;
  font-size: .86rem;
  color: rgba(255,255,255,.65);
}
.footer-bottom-left { justify-self: start; min-width: 0; }
.footer-bottom-center {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-bottom-right { justify-self: end; }
.footer-trustseal-wrap,
.footer-trustseal {
  line-height: 0;
  text-align: center;
}
.footer-trustseal img {
  max-height: 56px; width: auto; height: auto;
}
@media (max-width: 768px) {
  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .footer-bottom-left,
  .footer-bottom-center,
  .footer-bottom-right { justify-self: center; }
  .footer-trustseal-wrap,
  .footer-trustseal {
    margin-left: 0 !important;
    width: 100% !important;
    display: block !important;
  }
  .footer-trustseal img {
    max-width: 200px !important;
    height: auto !important;
  }
}

/* Order wizard */
.order-hero {
  background: linear-gradient(120deg, rgba(10,18,32,.85), rgba(10,18,32,.45)), url('/assets/img/hero.jpg') center/cover;
  color: #fff; padding: 2.2rem 0 1.6rem;
}
.order-hero h1 { margin: .2rem 0 0; color: #fff; font-size: 1.6rem; }
.order-crumb { opacity: .8; font-size: .85rem; }
.order-steps {
  list-style: none; display: flex; justify-content: space-between; gap: .5rem;
  padding: 0; margin: 0 0 2rem; position: relative;
}
.order-steps::before {
  content: ''; position: absolute; left: 8%; right: 8%; top: 18px; height: 2px; background: #dce3ea; z-index: 0;
}
.order-steps li {
  position: relative; z-index: 1; flex: 1; text-align: center; color: #8a97a8; font-size: .82rem; font-weight: 600;
}
.order-steps .num {
  display: grid; place-items: center; width: 36px; height: 36px; margin: 0 auto .45rem;
  border-radius: 50%; background: #e8eef4; color: #6b7a8d; font-weight: 800;
}
.order-steps li.is-active .num, .order-steps li.is-done .num { background: var(--teal); color: #fff; }
.order-steps li.is-active { color: var(--teal); font-weight: 800; }
.order-h { color: var(--teal); font-family: var(--display); margin: 0 0 .4rem; }
.order-lead { color: var(--muted); margin: 0 0 1.4rem; }
.period-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; justify-content: center; max-width: 920px; margin: 0 auto 1.5rem; }
.period-card {
  position: relative; display: block; background: #fff; border: 2px solid var(--line);
  border-radius: 16px; padding: 1.6rem 1.2rem 1.4rem; text-align: center; cursor: pointer;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.period-card:has(input:checked),
.period-card.is-checked { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,180,166,.12); }
.period-card input { position: absolute; opacity: 0; }
.period-name { font-weight: 700; color: var(--muted); margin-bottom: .4rem; }
.period-price { font-size: 2rem; font-weight: 800; color: var(--ink); }
.period-card .check {
  display: none; width: 28px; height: 28px; margin: .9rem auto 0; border-radius: 50%;
  background: var(--teal); box-shadow: inset 0 0 0 6px #fff;
}
.period-card:has(input:checked) .check,
.period-card.is-checked .check { display: block; }
.ribbon {
  position: absolute; top: 12px; left: -6px; background: var(--teal); color: #fff;
  font-size: .68rem; font-weight: 800; padding: .28rem .7rem; border-radius: 4px;
}
.domain-modes { display: flex; flex-direction: column; gap: .7rem; max-width: 720px; margin: 0 auto 1rem; }
.domain-mode {
  display: flex; align-items: center; gap: .95rem;
  background: #fff; border-radius: 14px; padding: 1.05rem 1.15rem; cursor: pointer; font-weight: 700;
  border: 1.5px solid #e3e9f0; color: #243447;
}
.domain-mode:has(input:checked) {
  background: linear-gradient(180deg, #f4fcfa, #fff); color: #0b1c33; border-color: #12b89a;
}
.domain-mode input { display: none; }
.domain-input-row { display: flex; gap: .6rem; justify-content: center; max-width: 520px; margin: 1rem auto; }
.domain-input-row input { flex: 1; border-radius: 999px; padding: .75rem 1.1rem; border: 1px solid var(--line); }
.addons-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 12px; overflow: hidden; }
.addons-table th, .addons-table td { padding: 1rem; border-bottom: 1px solid var(--line); vertical-align: top; text-align: left; }
.addons-table th { background: #f4f7fa; }
.addon-opts { display: flex; flex-direction: column; gap: .45rem; }
.addon-opts label { display: flex; gap: .5rem; align-items: center; font-weight: 600; }
.order-actions { margin-top: 1.6rem; }
.order-actions.center { text-align: center; }
.btn-green { background: #2ecc71; color: #fff; border: none; }
.btn-green:hover { background: #27ae60; color: #fff; }
.btn-lg { padding: .85rem 2.2rem; font-size: 1.05rem; border-radius: 999px; }
.btn-outline-light {
  display: inline-flex; align-items: center; justify-content: center;
  border: 1.5px solid rgba(255,255,255,.85); color: #fff; background: transparent;
  border-radius: 999px; padding: .7rem 1.5rem; font-weight: 700;
}
.btn-outline-light:hover { background: rgba(255,255,255,.1); color: #fff; }

.page-hero {
  background: linear-gradient(120deg, rgba(10,18,32,.8), rgba(10,18,32,.4)), url('/assets/img/hero.jpg') center/cover;
  color: #fff; padding: 2.4rem 0;
}
.page-hero-sm { padding: 1.8rem 0; }
.page-hero-inner h1 { margin: 0; color: #fff; }
.page-hero-inner p { margin: .35rem 0 0; opacity: .85; }

.cart-table-head, .cart-row {
  display: grid; grid-template-columns: minmax(0, 1fr) 132px 168px; gap: 1rem; align-items: start;
}
.cart-table-head {
  background: #2c3e50; color: #fff; padding: .85rem 1rem; border-radius: 10px 10px 0 0; font-weight: 700; font-size: .9rem;
}
.cart-table-wrap { padding: 0; overflow: hidden; }
.cart-table-wrap .cart-row { padding: 1rem; border-bottom: 1px solid var(--line); }
.cart-table-wrap .btn-ghost { margin: 1rem; }
.cart-name { color: #1a6bb5; }
.sum-red { color: #c0392b; font-weight: 700; }
.sum-green { color: #2ecc71; font-weight: 800; font-size: 1.35rem; }
.icon-btn { background: transparent; border: none; color: #7a8796; cursor: pointer; font-size: 1rem; }
.icon-btn:hover { color: #c0392b; }
.trust-row { display: flex; gap: .9rem; align-items: center; margin-top: 1.4rem; font-size: 1.6rem; color: #5b6b7c; flex-wrap: wrap; }
.panel-box { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 1.4rem; }
.acct-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; margin-bottom: 1rem; }
.acct-btn {
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  border: 1px solid var(--line); border-radius: 10px; padding: .85rem; font-weight: 700; cursor: pointer; background: #f7f9fb;
}
.acct-btn:has(input:checked) { border-color: var(--teal); background: rgba(0,180,166,.08); }
.acct-btn input { display: none; }
.acct-type { display: flex; gap: 1rem; margin-bottom: 1rem; }
.accept-line { display: flex; gap: .55rem; align-items: flex-start; margin: 1.1rem 0; font-size: .9rem; }
.accept-line input { width: auto; margin-top: .2rem; }
.gateway-option i,
.gateway-option .pay-select-mollie {
  font-size: 1.25rem; width: 1.5rem; text-align: center; color: #2c3e50;
}
.gateway-option .pay-select-mollie { font-size: .72rem; font-weight: 800; }
.input-sm { margin-top: .4rem; padding: .4rem .6rem; border: 1px solid var(--line); border-radius: 8px; width: 100%; max-width: 220px; }

.why-bg { background: linear-gradient(180deg, #f7fafc, #eef5f4); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.why-item { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 1.2rem; }
.why-item .ico { color: var(--teal); font-size: 1.3rem; margin-bottom: .5rem; }
.why-item h3 { margin: 0 0 .35rem; font-size: 1rem; }
.why-item p { margin: 0; color: var(--muted); font-size: .9rem; }

@media (max-width: 960px) {
  .mega-cards-grid, .period-grid, .why-grid, .acct-toggle, .cart-table-head, .cart-row { grid-template-columns: 1fr; }
  .mega-panel.mega-cards { min-width: 0; width: calc(100vw - 2rem); left: 0; transform: none; }
  .cart-table-head { display: none; }
  .logo-lg img { height: 54px; }
}


/* ===== LAYOUT FIX: cohesive premium homepage ===== */
body.frontend,
body { background: var(--surface); }

/* Sticky footer: always at bottom of viewport on short pages (desktop) */
html { height: 100%; }
body.sticky-footer-page,
body.frontend {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body.frontend > .site-main,
body.frontend .site-main {
  flex: 1 0 auto;
}
body.frontend > .site-footer,
body.frontend .site-footer {
  margin-top: auto;
  flex-shrink: 0;
}
/*
 * Mobile (iPhone Firefox/Safari = WebKit): flex + 100vh/dvh sticky footer
 * fights the collapsing browser chrome and causes footer “shake” at the bottom.
 * Use normal document flow on touch devices instead.
 */
@media (hover: none) and (pointer: coarse) {
  html { height: auto; scroll-behavior: auto; }
  body.sticky-footer-page,
  body.frontend {
    display: block;
    min-height: 0;
  }
  body.frontend > .site-main,
  body.frontend .site-main {
    flex: none;
  }
  body.frontend > .site-footer,
  body.frontend .site-footer {
    margin-top: 3rem;
  }
}
body.admin-body.sticky-footer-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body.admin-body .admin-wrap { flex: 1 0 auto; }
body.admin-body .admin-footer { margin-top: auto; flex-shrink: 0; }
body.client-body.sticky-footer-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body.client-body .client-wrap { flex: 1 0 auto; }
body.client-body .client-footer {
  margin-top: auto;
  flex-shrink: 0;
  width: 100%;
  max-width: none;
  background: #0d1524;
  color: rgba(255,255,255,.72);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 1.1rem 1.5rem;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
body.client-body .client-footer a { color: rgba(255,255,255,.78); }
body.client-body .client-footer a:hover { color: #fff; }

.topbar {
  background: #111827;
  color: rgba(255,255,255,.78);
  border-bottom: 0;
  position: relative;
  z-index: 60;
  overflow: visible;
}
.topbar a, .topbar .muted { color: rgba(255,255,255,.78); }
.topbar a:hover { color: #fff; }
.topbar .container.topbar-inner,
.topbar-inner {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: .45rem 0;
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto;
}
.topbar-left, .topbar-right {
  display: flex; align-items: center; gap: .9rem; flex-wrap: wrap;
  overflow: visible;
}
.topbar-right { padding-right: .15rem; }
.lang-switch {
  color: rgba(255,255,255,.75); font-weight:700; font-size:.78rem;
  padding:.15rem .4rem; border-radius:4px; border:1px solid transparent;
}
.lang-switch.is-active { color:#fff; border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.08); }
.currency-switch { display:inline-flex; align-items:center; gap:.15rem; margin-left:.15rem; }

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 55;
  box-shadow: 0 1px 0 rgba(15,23,42,.04);
  overflow: visible;
}
.site-header .header-inner,
.site-header .container {
  display:flex; align-items:center; justify-content:space-between; gap:1rem; padding:.75rem 0;
}
.logo-lg img { height: 68px; width: auto; max-width: 320px; object-fit: contain; }
.mega-item > a { color: var(--ink); }
.mega-item > a .fa-chevron-down { font-size: .65rem; opacity: .55; margin-left: .15rem; }

/* Hero: only one full-bleed stage, never absolute on the section itself */
.hero,
.hero.hero-mode-video,
.hero.hero-mode-image,
.hero.hero-mode-slider {
  position: relative !important;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  min-height: min(68vh, 620px);
  margin: 0;
  padding: 4.5rem 0 6.5rem;
  color: #fff;
  background: #0b1524;
  isolation: auto;
  inset: auto;
  width: auto;
  height: auto;
  object-fit: unset;
  z-index: auto;
}
.hero::before { display: none !important; content: none !important; }

.hero > video.hero-video,
.hero .hero-slides,
.hero .hero-slide,
.hero .hero-slide > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, rgba(8,16,30,.88) 8%, rgba(8,16,30,.55) 55%, rgba(8,16,30,.28) 100%);
}
.hero-content,
.hero > .container.hero-content {
  position: relative;
  z-index: 2;
  width: min(42rem, calc(100% - 2rem));
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  text-align: center;
}
.hero-content h1 {
  color: #fff;
  font-family: var(--display);
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  line-height: 1.15;
  margin: 0 0 .75rem;
  font-weight: 700;
}
.hero-content h1 .hero-title-line2 {
  display: block;
  margin-top: .12em;
}
.hero-content p {
  color: rgba(255,255,255,.9);
  font-size: 1.1rem;
  margin: 0 auto 1.4rem;
  max-width: 34rem;
}

/* Homepage domain finder: pull up into hero so the full card stays visible */
.domain-box {
  margin: -3.25rem auto 0;
  position: relative;
  z-index: 3;
  width: min(1140px, calc(100% - 2rem));
}
.domain-copy {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  flex-wrap: wrap;
  margin: 0 0 .9rem;
}
.domain-copy h2 {
  margin: 0 !important;
  flex: 0 1 auto;
}
.domain-copy-aside,
.domain-copy .muted {
  margin: 0;
  text-align: right;
  flex: 0 1 auto;
  font-size: .88rem;
  line-height: 1.35;
  white-space: nowrap;
  max-width: none;
  margin-left: auto;
}
@media (max-width: 900px) {
  .domain-copy-aside,
  .domain-copy .muted {
    white-space: normal;
    text-align: left;
    margin-left: 0;
  }
}
.premium-domain,
.domain-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(15,23,42,.1);
  padding: 1.4rem 1.5rem 1.2rem;
}
.premium-domain h2,
.domain-card h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.35rem;
  color: var(--ink);
  text-align: left;
}

/* Test: hero fullscreen – domain box sits inside the video/hero stage */
.home-hero-stage {
  position: relative;
}
body.home-hero-fullscreen .home-hero-stage.is-fullscreen,
.home-hero-stage.is-fullscreen {
  --home-chrome: 7.25rem; /* topbar + header approx */
  position: relative;
  min-height: calc(100svh - var(--home-chrome));
  min-height: calc(100dvh - var(--home-chrome));
  display: flex;
  flex-direction: column;
}
body.home-hero-fullscreen .home-hero-stage.is-fullscreen .hero,
body.home-hero-fullscreen .hero,
body.home-hero-fullscreen .hero.hero-mode-video,
body.home-hero-fullscreen .hero.hero-mode-image,
body.home-hero-fullscreen .hero.hero-mode-slider {
  flex: 1 1 auto;
  min-height: calc(100svh - var(--home-chrome, 7.25rem));
  min-height: calc(100dvh - var(--home-chrome, 7.25rem));
  padding: 4.5rem 0 12.5rem;
  width: 100%;
}
body.home-hero-fullscreen .home-hero-stage.is-fullscreen .domain-box,
body.home-hero-fullscreen .domain-box {
  position: absolute;
  left: 50%;
  bottom: calc(1.35rem + 15px);
  transform: translateX(-50%);
  margin: 0;
  width: min(1140px, calc(100% - 2rem));
  z-index: 6;
}
body.home-hero-fullscreen .home-hero-stage.is-fullscreen .hero-content {
  padding-bottom: .5rem;
}
@media (max-width: 720px) {
  body.home-hero-fullscreen .home-hero-stage.is-fullscreen .hero,
  body.home-hero-fullscreen .hero {
    padding-bottom: 14rem;
    min-height: calc(100svh - 6rem);
  }
  body.home-hero-fullscreen .domain-box {
    bottom: calc(.85rem + 15px);
  }
}

/* Domain box scroll-in */
body.home-domain-scroll-in .domain-box {
  opacity: 0 !important;
  pointer-events: none;
  transition: opacity .55s ease, transform .55s cubic-bezier(.22, 1, .36, 1);
}
body.home-domain-scroll-in:not(.home-hero-fullscreen) .domain-box {
  transform: translateY(36px);
}
body.home-domain-scroll-in.home-hero-fullscreen:not(.home-domain-flow) .domain-box,
body.home-domain-scroll-in.home-hero-fullscreen:not(.home-domain-flow) .home-hero-stage.is-fullscreen .domain-box {
  transform: translateX(-50%) translateY(36px);
}
body.home-domain-scroll-in .domain-box.is-in {
  opacity: 1 !important;
  pointer-events: auto;
}
body.home-domain-scroll-in:not(.home-hero-fullscreen) .domain-box.is-in {
  transform: translateY(0);
}
body.home-domain-scroll-in.home-hero-fullscreen:not(.home-domain-flow) .domain-box.is-in,
body.home-domain-scroll-in.home-hero-fullscreen:not(.home-domain-flow) .home-hero-stage.is-fullscreen .domain-box.is-in {
  transform: translateX(-50%) translateY(0);
}

/*
 * Sauberer Flow (fullscreen + scroll-in + .home-domain-flow):
 * 1) Hero Vollbild  2) Domain-Card  3) Webhosting
 */
body.home-hero-fullscreen.home-domain-scroll-in {
  --home-topbar-h: 2.55rem;
}
body.home-hero-fullscreen.home-domain-scroll-in.home-domain-flow .home-hero-stage.is-fullscreen,
body.home-hero-fullscreen.home-domain-scroll-in.home-domain-flow .home-hero-stage {
  --home-chrome: 0px;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding-bottom: 0 !important;
}
body.home-hero-fullscreen.home-domain-scroll-in.home-domain-flow .home-hero-stage.is-fullscreen .hero,
body.home-hero-fullscreen.home-domain-scroll-in.home-domain-flow .hero,
body.home-hero-fullscreen.home-domain-scroll-in.home-domain-flow .hero.hero-mode-video,
body.home-hero-fullscreen.home-domain-scroll-in.home-domain-flow .hero.hero-mode-image,
body.home-hero-fullscreen.home-domain-scroll-in.home-domain-flow .hero.hero-mode-slider {
  flex: 0 0 auto;
  width: 100%;
  min-height: 100svh !important;
  min-height: 100dvh !important;
  padding-top: calc(var(--home-topbar-h) + 5.75rem);
  padding-bottom: 5.5rem;
}
body.home-hero-fullscreen.home-domain-scroll-in.home-domain-flow .home-hero-stage.is-fullscreen .domain-box,
body.home-hero-fullscreen.home-domain-scroll-in.home-domain-flow .domain-box {
  position: relative !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  top: auto !important;
  transform: translateY(28px);
  margin: -2.5rem auto 1.25rem !important;
  width: min(1140px, calc(100% - 2rem));
  z-index: 6;
  max-height: none;
  overflow: visible;
  scroll-margin-top: calc(var(--home-topbar-h, 0px) + 5.25rem + 30px);
}
body.home-hero-fullscreen.home-domain-scroll-in.home-domain-flow .domain-box.is-in {
  transform: translateY(0) !important;
}
body.home-hero-fullscreen.home-domain-scroll-in.home-domain-flow .home-hero-stage + .section,
body.home-hero-fullscreen.home-domain-scroll-in.home-domain-flow #hosting.section {
  padding-top: 2.75rem;
}

body.home-hero-fullscreen.home-domain-scroll-in .topbar,
body.home-hero-fullscreen.home-domain-scroll-in.frontend .topbar,
body.frontend.home-hero-fullscreen.home-domain-scroll-in .topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: transparent !important;
  border-bottom: 0 !important;
  transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}
body.home-hero-fullscreen.home-domain-scroll-in .site-header,
body.home-hero-fullscreen.home-domain-scroll-in .site-header--dark {
  position: fixed;
  top: var(--home-topbar-h);
  left: 0;
  right: 0;
  z-index: 89;
  background: transparent !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  transition: background .35s ease, box-shadow .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}
body.home-hero-fullscreen.home-domain-scroll-in .site-header--dark::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: calc(var(--home-topbar-h) * -1);
  height: calc(100% + var(--home-topbar-h) + 3.5rem);
  background: linear-gradient(180deg, rgba(4,10,20,.62) 0%, rgba(4,10,20,.28) 55%, transparent 100%);
  pointer-events: none;
  z-index: -1;
  opacity: 1;
  transition: opacity .35s ease;
}
body.home-hero-fullscreen.home-domain-scroll-in.is-home-scrolled .site-header--dark::before {
  opacity: 0;
}
body.home-hero-fullscreen.home-domain-scroll-in.is-home-scrolled .topbar,
body.home-hero-fullscreen.home-domain-scroll-in.is-home-scrolled.frontend .topbar,
body.frontend.home-hero-fullscreen.home-domain-scroll-in.is-home-scrolled .topbar {
  background: rgba(7, 17, 31, .92) !important;
  border-bottom: 1px solid rgba(255,255,255,.06) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
body.home-hero-fullscreen.home-domain-scroll-in.is-home-scrolled .site-header,
body.home-hero-fullscreen.home-domain-scroll-in.is-home-scrolled .site-header--dark {
  background: rgba(13, 33, 58, .94) !important;
  border-bottom: 1px solid rgba(255,255,255,.08) !important;
  box-shadow: 0 8px 28px rgba(0,0,0,.28) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Legacy absolute overlay when fullscreen+scroll-in without flow class */
body.home-hero-fullscreen.home-domain-scroll-in:not(.home-domain-flow) .home-hero-stage.is-fullscreen,
body.home-hero-fullscreen.home-domain-scroll-in:not(.home-domain-flow) .home-hero-stage {
  --home-chrome: 0px;
  min-height: 100svh;
  min-height: 100dvh;
}
body.home-hero-fullscreen.home-domain-scroll-in:not(.home-domain-flow) .home-hero-stage.is-fullscreen .hero,
body.home-hero-fullscreen.home-domain-scroll-in:not(.home-domain-flow) .hero {
  min-height: 100svh !important;
  min-height: 100dvh !important;
  padding-top: calc(var(--home-topbar-h) + 5.75rem);
  padding-bottom: 7rem;
}

@media (max-width: 720px) {
  body.home-hero-fullscreen.home-domain-scroll-in {
    --home-topbar-h: 0px;
  }
  body.home-hero-fullscreen.home-domain-scroll-in.home-domain-flow .home-hero-stage.is-fullscreen .hero,
  body.home-hero-fullscreen.home-domain-scroll-in.home-domain-flow .hero {
    padding-top: 5.5rem;
    padding-bottom: 4.5rem;
  }
  body.home-hero-fullscreen.home-domain-scroll-in.home-domain-flow .domain-box {
    margin-top: calc(-1.75rem + 30px) !important;
    margin-bottom: 1rem !important;
    width: calc(100% - 1.25rem);
    scroll-margin-top: calc(5.25rem + 30px);
  }
}

@media (max-width: 430px) {
  body.home-hero-fullscreen.home-domain-flow .domain-box .domain-card,
  body.home-hero-fullscreen.home-domain-flow .domain-box .premium-domain {
    padding: 1.05rem 1rem .95rem;
    border-radius: 14px;
  }
  body.home-hero-fullscreen.home-domain-flow .domain-box .domain-card h2 {
    font-size: 1.15rem;
  }
  body.home-hero-fullscreen.home-domain-flow .domain-box .domain-copy-aside {
    font-size: .8rem;
  }
}

/* Soft scroll cue – only when fullscreen + scroll-in are both on */
.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: max(1.75rem, env(safe-area-inset-bottom, 0px) + 1.25rem);
  transform: translateX(-50%);
  z-index: 7;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.88);
  cursor: pointer;
  padding: .5rem .75rem;
  opacity: 1;
  transition: opacity .45s ease, transform .45s ease;
  pointer-events: auto;
}
.hero-scroll-cue.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(10px);
}
.hero-scroll-cue-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .8;
}
.hero-scroll-cue i {
  font-size: 1.15rem;
  animation: hero-scroll-bounce 1.7s ease-in-out infinite;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.35));
}
@keyframes hero-scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: .75; }
  50% { transform: translateY(8px); opacity: 1; }
}
/* Keep cue above domain box while domain is hidden */
body.home-hero-fullscreen.home-domain-scroll-in .hero-scroll-cue {
  bottom: max(1.75rem, env(safe-area-inset-bottom, 0px) + 1.25rem);
}
@media (max-width: 720px) {
  .hero-scroll-cue-label { display: none; }
  body.home-hero-fullscreen.home-domain-scroll-in .hero-scroll-cue {
    bottom: 1.1rem;
  }
}

@media (max-width: 720px) {
  .domain-copy {
    flex-direction: column;
    align-items: flex-start;
    gap: .35rem;
  }
  .domain-copy-aside,
  .domain-copy .muted {
    text-align: left;
    margin-left: 0;
    max-width: none;
  }
}

/* Content sections: muted surface (less harsh white) */
.section {
  padding: 4.25rem 0;
  background: var(--surface);
  position: relative;
  z-index: 1;
}
.section.alt { background: var(--bg); }
.section.why-bg,
.why-bg {
  background: #e4eaf1 !important;
  background-image: none !important;
}
.section h2 { text-align: center; color: var(--ink); }
.section .lead { text-align: center; color: var(--muted); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.price-card {
  background: #f7f9fc;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.5rem 1.35rem;
  box-shadow: 0 8px 24px rgba(15,23,42,.05);
  position: relative;
  overflow: hidden;
}
.price-card .tag {
  position: absolute;
  top: 12px;
  right: 12px;
  left: auto;
  transform: none;
  font-size: .68rem;
  font-weight: 800;
  color: #fff;
  padding: .28rem .55rem;
  border-radius: 999px;
  letter-spacing: .04em;
  z-index: 2;
  max-width: 42%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
}
.price-card h3 {
  padding-right: 5.75rem;
  margin-right: 0;
  line-height: 1.25;
  word-break: break-word;
}
.catalog-card h3,
.premium-cards .price-card h3 {
  padding-right: 5.75rem;
}
.price-card.featured {
  border: 2px solid var(--teal);
  transform: none;
  box-shadow: 0 14px 34px rgba(0,180,166,.14);
}
.price-card.featured .tag {
  letter-spacing: .04em;
  text-transform: uppercase;
}

.table-wrap {
  background: #f7f9fc;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: auto;
}
.server-table { width: 100%; border-collapse: collapse; }
.server-table th, .server-table td {
  padding: .85rem 1rem; border-bottom: 1px solid var(--line); text-align: left;
}
.server-table th { background: #f8fafc; color: var(--muted); font-size: .85rem; }

.why-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1rem; }
.why-item {
  background: #f7f9fc;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.2rem;
}

/* Warum EGhosting – premium marketing block */
.why-premium {
  padding: 4.75rem 0 5rem;
  background:
    radial-gradient(ellipse 80% 55% at 50% -10%, rgba(0, 180, 166, .12), transparent 55%),
    linear-gradient(180deg, #e8eef5 0%, #dde5ef 100%) !important;
}
.why-premium .why-eyebrow {
  text-align: center;
  margin: 0 0 .55rem;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #0a7d6e;
}
.why-premium h2 {
  margin-bottom: .55rem;
}
.why-premium > .container > .lead {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.25rem;
  line-height: 1.55;
}
.why-premium .why-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}
.why-premium .why-item {
  background: #fff;
  border: 1px solid rgba(15, 36, 61, .08);
  border-radius: 18px;
  padding: 1.45rem 1.35rem 1.35rem;
  box-shadow: 0 12px 32px rgba(11, 28, 51, .06);
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease, border-color .35s ease;
}
.why-premium .why-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(11, 28, 51, .1);
  border-color: rgba(0, 180, 166, .28);
}
.why-premium .why-item .ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: .85rem;
  border-radius: 12px;
  background: rgba(0, 180, 166, .12);
  color: #0a7d6e;
  font-size: 1.15rem;
}
.why-premium .why-item h3 {
  margin: 0 0 .45rem;
  font-size: 1.08rem;
  color: var(--ink);
  font-family: var(--display);
}
.why-premium .why-item p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.5;
}
.why-premium .why-cta {
  margin-top: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding: 1.35rem 1.5rem;
  border-radius: 18px;
  background: linear-gradient(135deg, #0e2038 0%, #143252 55%, #0f2f3a 100%);
  color: #fff;
  box-shadow: 0 18px 44px rgba(5, 16, 32, .28);
}
.why-premium .why-cta-copy strong {
  display: block;
  font-size: 1.15rem;
  font-family: var(--display);
  margin-bottom: .25rem;
}
.why-premium .why-cta-copy p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: .92rem;
}
.why-premium .why-cta-actions {
  display: flex;
  gap: .65rem;
  flex-wrap: wrap;
}
.why-premium .why-cta-actions .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,.35);
  background: transparent;
}
.why-premium .why-cta-actions .btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.55);
  color: #fff;
}
@media (max-width: 900px) {
  .why-premium .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .why-premium .why-grid {
    grid-template-columns: 1fr;
  }
  .why-premium .why-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Footer always solid and readable */
.site-footer.premium-footer,
.premium-footer {
  background: #152033;
  color: rgba(255,255,255,.82);
  margin-top: 0;
  padding: 0 0 1.5rem;
  position: relative;
  z-index: 2;
}
.premium-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 1.5rem;
  padding: 2.5rem 0 1.5rem;
}
.premium-footer h4 { color: #fff; }
.premium-footer a { color: rgba(255,255,255,.8); }
.premium-footer a:hover { color: #fff; }
.premium-footer .muted,
.premium-footer p { color: rgba(255,255,255,.7); }
.premium-footer .pay-icons { color: rgba(255,255,255,.85); }

/* Footer support box (replaces duplicate payment icons under logo) */
.footer-support-box {
  margin-top: 1.05rem;
  padding: .85rem .95rem .9rem;
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(0, 180, 166, .22) 0%, rgba(13, 42, 48, .92) 55%, rgba(15, 32, 51, .75) 100%);
  border: 1px solid rgba(0, 180, 166, .32);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .18), inset 0 1px 0 rgba(255,255,255,.06);
  max-width: 20rem;
}
.footer-support-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .65rem;
  margin-bottom: .65rem;
}
.footer-support-title {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: #e8fffb;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.footer-support-title i { color: var(--teal, #00b4a6); font-size: .95rem; }
.footer-support-actions { display: inline-flex; gap: .35rem; flex-shrink: 0; }
.footer-support-btn {
  width: 2rem; height: 2rem; border-radius: 9px;
  display: grid; place-items: center;
  background: rgba(7, 18, 28, .45);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.88) !important;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.footer-support-btn:hover {
  background: rgba(0, 180, 166, .28);
  color: #fff !important;
  border-color: rgba(0, 180, 166, .45);
}
.footer-support-btn i { font-size: .82rem; }
.footer-support-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: .4rem;
}
.footer-support-list li {
  display: flex; align-items: flex-start; gap: .55rem;
  color: rgba(255,255,255,.82);
  font-size: .86rem; line-height: 1.35;
}
.footer-support-list li > i {
  width: 1rem; text-align: center; margin-top: .15rem;
  color: rgba(126, 240, 214, .9); font-size: .82rem; flex-shrink: 0;
}
.footer-support-list a {
  color: rgba(232, 255, 251, .95) !important;
  text-decoration: none !important;
}
.footer-support-list a:hover { color: #fff !important; text-decoration: none !important; }

.footer-pill-wrap { margin: .45rem 0 0 !important; }
.premium-footer .footer-cookie-pill,
.premium-footer .footer-action-pill,
.footer-cookie-pill,
.footer-action-pill {
  display: inline-flex !important;
  align-items: center;
  gap: .4rem;
  margin-top: .25rem;
  padding: .45rem .95rem !important;
  border-radius: 999px !important;
  background: rgba(0, 180, 166, .16) !important;
  border: 1px solid rgba(0, 180, 166, .45) !important;
  color: #e8fffb !important;
  font-size: .82rem !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  text-decoration: none !important;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
  box-shadow: none !important;
}
.premium-footer .footer-cookie-pill:hover,
.premium-footer .footer-action-pill:hover,
.footer-cookie-pill:hover,
.footer-action-pill:hover {
  background: rgba(0, 180, 166, .28) !important;
  border-color: rgba(0, 180, 166, .7) !important;
  color: #fff !important;
}
.premium-footer .footer-cookie-pill i,
.premium-footer .footer-action-pill i,
.footer-cookie-pill i,
.footer-action-pill i { font-size: .85rem; color: var(--teal, #00b4a6) !important; }

.footer-cta {
  background: #1c2a42;
  color: rgba(255,255,255,.9);
  text-align: center;
  padding: 1rem;
  font-size: .95rem;
  line-height: 1.45;
}
.footer-cta .container {
  max-width: 52rem;
}
.footer-cta a.footer-tel,
.footer-cta a.footer-mail {
  color: #7ef0d6;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid rgba(126, 240, 214, .35);
}
.footer-cta a.footer-tel:hover,
.footer-cta a.footer-mail:hover {
  color: #fff;
  border-bottom-color: rgba(255,255,255,.55);
}
@media (max-width: 720px) {
  .footer-cta {
    padding: .85rem .75rem;
    font-size: .78rem;
    line-height: 1.4;
    letter-spacing: -.01em;
  }
  .footer-cta a.footer-tel {
    display: inline;
    padding: .1rem 0;
    /* larger tap target without breaking the 2-line layout */
    border-bottom-width: 1.5px;
  }
}
@media (max-width: 380px) {
  .footer-cta { font-size: .72rem; }
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.6);
  padding: 1rem 0 0;
}

@media (max-width: 960px) {
  .pricing-grid, .why-grid, .premium-footer .footer-grid { grid-template-columns: 1fr; }
  .hero, .hero.hero-mode-video { min-height: 52vh; padding: 3rem 0 5rem; }
  .domain-box { margin-top: -2.25rem; }
  .nav-main { display: none; }
  .logo-lg img { height: 52px; }
}


/* ===== CHECKOUT / ORDER WIZARD POLISH ===== */
input[type="radio"],
input[type="checkbox"] {
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  display: inline-block;
  accent-color: var(--teal);
}

.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff; color: var(--ink); border: 1px solid #cfd6df;
  border-radius: 999px; padding: .7rem 1.35rem; font-weight: 700;
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); background: #fff; }

.order-hero {
  background: linear-gradient(120deg, rgba(10,18,32,.88), rgba(10,18,32,.5)), url('/assets/img/hero.jpg') center/cover !important;
  color: #fff;
  padding: 2.4rem 0 2rem !important;
  min-height: 0 !important;
  position: relative;
}
.order-hero-inner { position: relative; z-index: 1; }
.order-hero h1 { margin: .35rem 0 0; color: #fff !important; font-size: clamp(1.5rem, 3vw, 2rem); font-family: var(--display); }
.order-crumb { opacity: .85; font-size: .88rem; color: rgba(255,255,255,.85); }

.order-wrap {
  background: #eef2f6;
  padding: 2rem 0 3.5rem;
}
.order-panel {
  background: #fff;
  border: 1px solid #e5eaf0;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(15,23,42,.06);
  padding: 1.75rem 1.75rem 2rem;
}
.order-block { max-width: 920px; margin: 0 auto; }

.order-hint {
  display: flex; align-items: flex-start; gap: .65rem;
  max-width: 720px; margin: 0 auto 1.1rem;
  padding: .85rem 1rem;
  border-radius: 12px;
  background: #eefbf9;
  border: 1px solid rgba(0, 180, 166, .28);
  color: #1f4a52;
  font-size: .92rem; line-height: 1.45;
}
.order-hint i { margin-top: .15rem; color: var(--teal); flex-shrink: 0; }
.order-hint.is-soft {
  background: #f4f7fa;
  border-color: #d9e2ec;
  color: #3d4f63;
}
.order-hint.is-soft i { color: #5b6f86; }

.order-steps {
  list-style: none; display: flex; justify-content: space-between; gap: .4rem;
  padding: 0 0 1.75rem; margin: 0 0 1.5rem; position: relative;
  border-bottom: 1px solid #eef1f5;
}
.order-steps::before {
  content: ''; position: absolute; left: 10%; right: 10%; top: 18px; height: 2px;
  background: #e1e7ee; z-index: 0;
}
.order-steps li {
  position: relative; z-index: 1; flex: 1; text-align: center; min-width: 0;
  color: #8a97a8; font-size: .82rem; font-weight: 600;
}
.order-steps .num {
  display: grid; place-items: center; width: 36px; height: 36px; margin: 0 auto .45rem;
  border-radius: 50%; background: #e8eef4; color: #6b7a8d; font-weight: 800;
  border: 3px solid #fff; box-shadow: 0 0 0 1px #e1e7ee;
}
.order-steps li.is-active .num,
.order-steps li.is-done .num { background: var(--teal); color: #fff; box-shadow: 0 0 0 1px var(--teal); }
.order-steps li.is-active { color: var(--teal); font-weight: 800; }
.order-steps li.is-done { color: #4b5b6e; }
.order-steps .lab-short { display: none; }
.order-steps .lab-full { display: block; }

.order-h {
  color: var(--teal) !important;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  margin: 0 0 .45rem;
  text-align: left !important;
}
.order-lead {
  color: var(--muted);
  margin: 0 0 1.6rem;
  text-align: left !important;
  max-width: none !important;
}

.period-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 920px;
  margin: 0 auto 1.5rem;
}
.period-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 0;
  min-width: 0;
  background: #fff;
  border: 2px solid #e4e9f0;
  border-radius: 14px;
  padding: 1.2rem .75rem 1rem;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(15,23,42,.04);
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.period-card:hover { border-color: #b7e6e1; transform: translateY(-2px); }
.period-card:has(input:checked),
.period-card.is-checked {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(0,180,166,.12), 0 14px 30px rgba(0,180,166,.12);
}
.period-card input { position: absolute; opacity: 0; pointer-events: none; }
.period-name { font-weight: 700; color: #7b8898; margin-bottom: .25rem; letter-spacing: .01em; font-size: .95rem; }
.period-price {
  font-size: 1.85rem; font-weight: 800; color: var(--ink); line-height: 1.1;
  font-family: var(--display);
}
.period-price span { font-size: 1rem; margin-right: .1rem; }
.period-hint { font-size: .75rem; margin: 0 0 .4rem; line-height: 1.3; }
.period-equiv { font-size: .78rem; margin-top: .35rem; }
.price-periods {
  margin: -.55rem 0 1rem;
  font-size: .78rem;
  letter-spacing: .01em;
}
.period-card .check {
  display: none; width: 26px; height: 26px; margin: .75rem auto 0; border-radius: 50%;
  background: var(--teal); color: #fff; place-items: center; font-size: .75rem;
}
.period-card:has(input:checked) .check,
.period-card.is-checked .check { display: grid; }
.ribbon {
  position: absolute; top: 14px; left: -2px;
  background: var(--teal); color: #fff;
  font-size: .68rem; font-weight: 800; padding: .3rem .75rem;
  border-radius: 0 6px 6px 0; letter-spacing: .03em;
}

.domain-modes {
  display: flex; flex-direction: column; gap: .7rem;
  max-width: 720px; margin: 0 auto 1.25rem;
}
.domain-mode {
  display: flex; align-items: center; gap: .95rem;
  background: #fff;
  border: 1.5px solid #e3e9f0;
  border-radius: 14px;
  padding: 1.05rem 1.15rem;
  cursor: pointer;
  color: #243447;
  font-weight: 700;
}
.domain-mode input { display: none !important; }
.domain-mode.is-active,
.domain-mode:has(input:checked) {
  border-color: #12b89a;
  background: linear-gradient(180deg, #f4fcfa, #fff);
  color: #0b1c33;
}
.domain-mode i { opacity: .85; font-size: .85rem; }
.domain-use-row {
  display: flex; gap: .65rem; justify-content: center; align-items: center;
  max-width: 720px; margin: 1.1rem auto 0; width: 100%;
}
.domain-use-row input {
  flex: 1; border-radius: 999px !important; padding: .85rem 1.2rem !important;
  border: 1px solid #d5dbe3 !important; margin: 0 !important; width: auto !important;
  background: #fff;
}

/* Addons – card rows card layout */
.addons-list {
  border: 1px solid #e5eaf0;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}
.addons-head {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1rem;
  background: #f3f6f9;
  padding: .9rem 1.2rem;
  font-weight: 800;
  font-size: .9rem;
  color: #4b5b6e;
}
.addon-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.25rem;
  padding: 1.25rem 1.2rem;
  border-top: 1px solid #eef1f5;
  align-items: start;
}
.addon-info strong {
  display: block;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: .35rem;
}
.addon-info p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.45;
}
.addon-options {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.addon-opt {
  display: flex !important;
  align-items: center;
  gap: .65rem;
  margin: 0;
  padding: .65rem .8rem;
  border: 1px solid #e5eaf0;
  border-radius: 10px;
  background: #fafbfc;
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  transition: border-color .15s ease, background .15s ease;
}
.addon-opt input {
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
}
.addon-radio {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid #b7c0cc; flex: 0 0 18px;
  position: relative; background: #fff;
}
.addon-opt.is-checked,
.addon-opt:has(input:checked) {
  border-color: var(--teal);
  background: rgba(0,180,166,.08);
}
.addon-opt.is-checked .addon-radio,
.addon-opt:has(input:checked) .addon-radio {
  border-color: var(--teal);
  background: var(--teal);
  box-shadow: inset 0 0 0 3px #fff;
}
.addon-opt-label { line-height: 1.3; font-size: .92rem; }
.addon-empty {
  background: #f7f9fb; border: 1px dashed #d5dbe3; border-radius: 12px;
  padding: 1.2rem; color: var(--muted); text-align: center;
}

.order-actions {
  display: flex; align-items: center; gap: .75rem; margin-top: 1.75rem;
}
.order-actions.center { justify-content: center; }
.order-actions.between { justify-content: space-between; }
.order-actions .btn-lg { min-width: 160px; }

@media (max-width: 800px) {
  .period-grid {
    grid-template-columns: 1fr;
  }
  .addons-head,
  .addon-row { grid-template-columns: 1fr; }
  .addons-head span:last-child { display: none; }
  .order-panel {
    padding: 1.05rem .95rem 1.35rem;
    overflow-x: clip;
    max-width: 100%;
    box-sizing: border-box;
  }
  .order-block { max-width: 100%; min-width: 0; }
  .order-actions.between { flex-direction: column-reverse; align-items: stretch; }
  .order-actions .btn-lg,
  .order-actions .btn-order-checkout { width: 100%; min-width: 0; }

  /* Compact 4-step progress on phones */
  .order-steps {
    gap: .2rem;
    padding: 0 0 1.15rem;
    margin: 0 0 1.15rem;
  }
  .order-steps::before {
    left: 12%;
    right: 12%;
    top: 16px;
  }
  .order-steps .num {
    width: 32px;
    height: 32px;
    margin-bottom: .35rem;
    font-size: .85rem;
  }
  .order-steps .lab-full { display: none; }
  .order-steps .lab-short {
    display: block;
    font-size: .68rem;
    line-height: 1.2;
    letter-spacing: 0;
    padding: 0 .1rem;
    overflow-wrap: anywhere;
  }
  .order-h { font-size: clamp(1.25rem, 6vw, 1.55rem); }
  .order-lead { margin-bottom: 1.1rem; font-size: .92rem; }

  /* Domain step: stack input + action, no edge bleed */
  .domain-modes,
  .domain-use-row,
  .domain-auth-block,
  .order-hint {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }
  .domain-mode {
    padding: .9rem .85rem;
    gap: .7rem;
  }
  .domain-mode-ico { width: 38px; height: 38px; flex-basis: 38px; border-radius: 10px; }
  .domain-mode-label { font-size: .92rem; line-height: 1.3; }
  .domain-use-row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: .65rem;
    margin: 1rem 0 0;
  }
  .domain-use-row input {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    flex: none;
    border-radius: 14px !important;
    padding: .85rem 1rem !important;
    box-sizing: border-box;
  }
  .domain-use-row #domain-use-btn,
  .domain-use-row .btn-order-checkout {
    display: none; /* „Weiter“ unten reicht auf Mobile */
  }
  .domain-auth-block {
    margin-top: .85rem;
    padding: .9rem .95rem;
  }
}


/* ===== ADMIN DROPZONES + FOOTER DARK LOGO ===== */
.logo-upload-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.dropzone {
  border: 2px dashed #c9d3de;
  border-radius: 14px;
  padding: 1rem;
  background: #fafbfc;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.dropzone:hover, .dropzone.is-drag {
  border-color: var(--teal);
  background: rgba(0,180,166,.06);
  box-shadow: 0 0 0 3px rgba(0,180,166,.1);
}
.dropzone-preview {
  min-height: 92px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: .75rem;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
}
.dropzone-preview img {
  max-height: 72px;
  width: auto;
  max-width: 90%;
  object-fit: contain;
}
.dz-placeholder { color: #8a97a8; font-weight: 700; font-size: .9rem; }
.dropzone strong { display:block; margin-bottom: .2rem; }
.footer-logo {
  max-height: 56px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  margin-bottom: .7rem;
  filter: none;
}
.footer-logo-fallback {
  /* if only light logo exists, brighten for dark footer */
  filter: brightness(0) invert(1);
}
@media (max-width: 800px) {
  .logo-upload-grid { grid-template-columns: 1fr; }
}


/* ===== CHECKOUT PREMIUM + LEGAL SWITCHES + STICKY ===== */
.checkout-section { background: #eef2f6; padding-top: 2rem; }
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, .9fr);
  gap: 1.25rem;
  align-items: start;
}
.premium-card {
  background: #fff;
  border: 1px solid #e5eaf0;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(15,23,42,.06);
  padding: 1.4rem 1.5rem;
}
.checkout-sidebar {
  position: sticky;
  top: 96px;
}
.acct-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .55rem;
  margin: 0 0 1.1rem;
}
.acct-tab {
  border: 1px solid #d7dee7;
  background: #f7f9fb;
  border-radius: 12px;
  padding: .85rem 1rem;
  font-weight: 800;
  cursor: pointer;
  color: #334155;
}
.acct-tab.is-active {
  border-color: var(--teal);
  background: rgba(0,180,166,.1);
  color: var(--teal-dark);
  box-shadow: inset 0 0 0 1px rgba(0,180,166,.25);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem 1rem;
}
.vat-row { display:flex; gap:.5rem; align-items:center; }
.vat-row input { margin:0 !important; }
.vies-msg { margin-top:.35rem; font-size:.88rem; font-weight:700; }
.vies-msg.ok { color:#1e8e4a; }
.vies-msg.err { color:#c0392b; }

.legal-switches { display:flex; flex-direction:column; gap:.7rem; margin:1.4rem 0 1.2rem; }
.legal-switch {
  display:flex; align-items:flex-start; gap:.75rem;
  padding:.85rem 1rem; border-radius:12px; border:1px solid #e5eaf0;
  background:#fafbfc; cursor:pointer; transition:.15s ease;
}
.legal-switch input { position:absolute; opacity:0; pointer-events:none; width:0;height:0;margin:0; }
.switch-ui {
  width:46px; height:26px; border-radius:999px; background:#c9d3de; position:relative; flex:0 0 46px; margin-top:.1rem;
  transition: background .15s ease;
}
.switch-ui::after {
  content:""; position:absolute; top:3px; left:3px; width:20px; height:20px; border-radius:50%;
  background:#fff; box-shadow:0 1px 3px rgba(0,0,0,.2); transition: transform .15s ease;
}
.legal-switch.is-on { border-color:#27ae60; background:rgba(39,174,96,.08); }
.legal-switch.is-on .switch-text { color:#1e8e4a; font-weight:700; }
.legal-switch.is-on .switch-ui { background:#27ae60; }
.legal-switch.is-on .switch-ui::after { transform: translateX(20px); }
.switch-text { font-size:.92rem; line-height:1.4; color:#5b6b7c; }
.switch-text a { font-weight:800; }
#pay-btn:disabled { opacity:.45; cursor:not-allowed; filter:grayscale(.2); }

/* Admin modal + premium badges */
.eg-modal[hidden] { display:none !important; }
.eg-modal { position:fixed; inset:0; z-index:400; display:grid; place-items:center; }
.eg-modal-backdrop { position:absolute; inset:0; background:rgba(15,23,42,.55); backdrop-filter:blur(2px); }
.eg-modal-card {
  position:relative; z-index:1; width:min(440px, calc(100% - 2rem));
  background:#fff; border-radius:16px; padding:1.4rem 1.4rem 1.2rem;
  box-shadow:0 24px 60px rgba(0,0,0,.28);
}
.eg-modal-card h3 { margin:0 0 .5rem; font-family:var(--display); }
.eg-modal-card p { margin:0 0 1.2rem; color:var(--muted); }
.eg-modal-actions { display:flex; justify-content:flex-end; gap:.6rem; align-items:center; }
.eg-modal-actions form { margin:0; }
body.modal-open { overflow:hidden; }
.badge { display:inline-flex; align-items:center; padding:.2rem .55rem; border-radius:999px; font-size:.72rem; font-weight:800; letter-spacing:.02em; }
.badge-ok { background:#e8f8ef; color:#1e8e4a; }
.badge-warn { background:#fff4e0; color:#b7791f; }
.badge-danger { background:#fdecea; color:#c0392b; }
.badge-info { background:#e8f4fc; color:#1a6bb5; }
/* Control panel / provider badges – always readable contrast */
.badge.panel-badge {
  gap: .35rem;
  letter-spacing: .03em;
  font-weight: 800;
  border: 0;
  box-shadow: 0 2px 8px rgba(15, 23, 42, .12);
}
.badge.panel-badge i { font-size: .78em; opacity: .95; }
.badge-plesk {
  background: linear-gradient(135deg, #e85d04 0%, #f48c06 55%, #ffba08 100%);
  color: #fff !important;
}
.badge-keyhelp {
  background: linear-gradient(135deg, #0b7285 0%, #0f9b8e 50%, #12b886 100%);
  color: #fff !important;
}
.badge-cpanel {
  background: linear-gradient(135deg, #ff6c2c 0%, #ff8f5a 100%);
  color: #fff !important;
}
.badge-directadmin {
  background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%);
  color: #fff !important;
}
.badge-hetzner,
.badge-hetzner-cloud {
  background: linear-gradient(135deg, #d50c2d 0%, #ef233c 55%, #ff4d6d 100%);
  color: #fff !important;
}
.badge-internetx {
  background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
  color: #fff !important;
}
.badge-vpn {
  background: linear-gradient(135deg, #5b21b6 0%, #7c3aed 100%);
  color: #fff !important;
}
.badge-https {
  background: linear-gradient(135deg, #047857 0%, #10b981 100%);
  color: #fff !important;
}
.badge-http {
  background: linear-gradient(135deg, #b45309 0%, #f59e0b 100%);
  color: #fff !important;
}
.badge-webhosting {
  background: linear-gradient(135deg, #0e7490 0%, #0891b2 55%, #22d3ee 100%);
  color: #fff !important;
}
.badge-customer-server {
  background: linear-gradient(135deg, #334155 0%, #64748b 100%);
  color: #fff !important;
}
.badge-panel-none {
  background: linear-gradient(135deg, #64748b 0%, #94a3b8 100%);
  color: #fff !important;
}
.mini-badge.badge-plesk,
.mini-badge.badge-keyhelp,
.mini-badge.badge-cpanel,
.mini-badge.badge-directadmin,
.mini-badge.badge-hetzner,
.mini-badge.badge-hetzner-cloud { color: #fff; }
.quill-box { min-height:280px; background:#fff; }
.cms-content h1,.cms-content h2,.cms-content h3 { font-family:var(--display); }
.cms-content p { line-height:1.7; color:#334155; }

@media (max-width: 960px) {
  .checkout-layout, .form-grid { grid-template-columns:1fr; }
  .checkout-sidebar { position:static; }
}


/* ===== ADMIN CHROME v2 ===== */
:root {
  --admin-navy: #0d1524;
  --admin-navy-2: #152033;
  --admin-navy-3: #1a2740;
}
.admin-top {
  background: linear-gradient(180deg, #0a1220 0%, #0d1524 100%);
  border-bottom: 0 !important;
  box-shadow: 0 4px 20px rgba(0,0,0,.35);
}
.admin-top .brand small { display:block; font-size:.65rem; font-weight:600; opacity:.65; letter-spacing:.06em; text-transform:uppercase; margin-top:-2px; }
.admin-search-form { flex:1; max-width:440px; position:relative; display:flex; align-items:center; }
.admin-search-form i { position:absolute; left:.95rem; color:rgba(255,255,255,.45); font-size:.85rem; pointer-events:none; }
.admin-search-form .admin-search { width:100%; padding-left:2.35rem; background:rgba(255,255,255,.06); }
.admin-nav { background: var(--admin-navy-2); }
.admin-profile { position:relative; }
.admin-profile-btn {
  display:flex; align-items:center; gap:.65rem; background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1); border-radius:999px; padding:.35rem .7rem .35rem .35rem;
  color:#fff; cursor:pointer; font:inherit;
}
.admin-profile-btn:hover { background:rgba(255,255,255,.1); }
.admin-avatar {
  width:34px; height:34px; border-radius:50%; background:linear-gradient(135deg,var(--teal),#1a6bb5);
  display:grid; place-items:center; color:#fff; font-size:.85rem; flex-shrink:0;
  overflow:hidden;
}
.admin-avatar.has-img { background:transparent; padding:0; }
.admin-avatar img { width:100%; height:100%; object-fit:cover; display:block; }
.admin-avatar.lg { width:42px; height:42px; font-size:1rem; }
.admin-profile-meta { text-align:left; line-height:1.15; }
.admin-profile-meta strong { display:block; font-size:.82rem; }
.admin-profile-meta small { display:block; font-size:.7rem; opacity:.65; max-width:160px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.admin-profile-menu {
  position:absolute; right:0; top:calc(100% + .45rem); width:260px;
  background:#fff; border:1px solid var(--line); border-radius:14px;
  box-shadow:0 18px 40px rgba(0,0,0,.22); padding:.5rem; z-index:60; color:var(--ink);
}
.admin-profile-head {
  display:flex; gap:.7rem; align-items:center; padding:.65rem .55rem .85rem;
  border-bottom:1px solid var(--line); margin-bottom:.35rem;
}
.admin-profile-head strong { display:block; font-size:.9rem; }
.admin-profile-head small { display:block; color:var(--muted); font-size:.72rem; }
.admin-profile-menu a {
  display:flex; align-items:center; gap:.55rem; padding:.55rem .65rem; border-radius:8px;
  color:var(--ink); font-weight:600; font-size:.88rem;
}
.admin-profile-menu a:hover { background:var(--teal-soft); color:var(--teal-dark); }
.admin-profile-menu a.danger { color:#c0392b; }
.admin-profile-menu a.danger:hover { background:#fdecea; }
.admin-footer {
  width:min(1280px, calc(100% - 2rem)); margin:0 auto 1.5rem;
  display:flex; justify-content:space-between; gap:1rem; flex-wrap:wrap;
  color:var(--muted); font-size:.8rem; padding-top:.5rem; border-top:1px solid var(--line);
}
.kpi-link, a.alert-card { color:inherit; transition: transform .15s ease, box-shadow .15s ease; }
.kpi-link:hover { transform:translateY(-2px); box-shadow:0 8px 22px rgba(26,35,50,.1); color:inherit; }
a.alert-card:hover { transform:translateY(-2px); color:inherit; box-shadow:0 8px 22px rgba(26,35,50,.1); }

/* Toasts — premium */
.toast-stack {
  position:fixed; top:4.75rem; right:1.1rem; z-index:10050;
  display:flex; flex-direction:column; gap:.65rem; width:min(380px, calc(100% - 2rem));
  pointer-events:none;
}
.toast {
  pointer-events:auto; display:flex; align-items:flex-start; gap:.85rem;
  background:linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
  border-radius:16px; padding:1rem 1.05rem;
  box-shadow:0 18px 40px rgba(15,23,42,.16), 0 2px 0 rgba(255,255,255,.8) inset;
  border:1px solid rgba(148,163,184,.35);
  animation: toastIn .32s cubic-bezier(.22,1,.36,1);
  backdrop-filter: blur(8px);
}
.toast.hide { opacity:0; transform:translateX(14px) scale(.98); transition: .28s ease; }
.toast-ico {
  flex-shrink:0; width:2.35rem; height:2.35rem; border-radius:12px;
  display:grid; place-items:center; font-size:1.05rem; color:#fff;
  box-shadow:0 8px 16px rgba(15,23,42,.12);
}
.toast-ok .toast-ico { background:linear-gradient(145deg, #10b981, #047857); }
.toast-warn .toast-ico { background:linear-gradient(145deg, #f43f5e, #be123c); }
.toast-err .toast-ico { background:linear-gradient(145deg, #f43f5e, #be123c); }
.toast-body { flex:1; min-width:0; padding-top:.1rem; }
.toast-title { display:block; font-size:.72rem; font-weight:800; letter-spacing:.06em; text-transform:uppercase; color:#64748b; margin-bottom:.15rem; }
.toast-ok .toast-title { color:#047857; }
.toast-warn .toast-title { color:#be123c; }
.toast-err .toast-title { color:#be123c; }
.toast-warn {
  border-color: rgba(244, 63, 94, .28);
  background: linear-gradient(165deg, #fff5f7 0%, #fff 100%);
}
.toast-ok {
  border-color: rgba(16, 185, 129, .28);
}
.toast-msg { display:block; font-size:.92rem; font-weight:650; line-height:1.35; color:#0f172a; }
.toast-close {
  border:0; background:transparent; cursor:pointer; color:#94a3b8;
  width:1.6rem; height:1.6rem; border-radius:8px; display:grid; place-items:center;
  flex-shrink:0; transition:.15s ease;
}
.toast-close:hover { background:#f1f5f9; color:#0f172a; }
@keyframes toastIn { from { opacity:0; transform:translateX(18px) translateY(-6px); } to { opacity:1; transform:none; } }

/* Role badges */
.role-badge {
  display:inline-flex; align-items:center; gap:.35rem;
  font-size:.68rem; font-weight:800; letter-spacing:.04em; text-transform:uppercase;
  padding:.22rem .55rem; border-radius:999px; line-height:1.2;
}
.role-badge i { font-size:.72rem; }
.role-badge-admin {
  color:#fff;
  background:linear-gradient(135deg, #0f766e 0%, #115e59 55%, #134e4a 100%);
  box-shadow:0 4px 12px rgba(15,118,110,.35);
}
.role-badge-staff {
  color:#1e3a8a; background:#dbeafe; border:1px solid #93c5fd;
}
.role-badge-user {
  color:#334155; background:#f1f5f9; border:1px solid #e2e8f0;
}

/* ===== CLIENT PREMIUM ===== */
.client-body { background: #eef2f7; }
.client-top {
  background: linear-gradient(180deg, #0a1220 0%, #0d1524 100%);
  border-bottom: 0 !important;
  box-shadow:0 4px 18px rgba(0,0,0,.25);
}
.client-top .container { width:min(1100px, calc(100% - 2rem)); margin:0 auto; }
.client-top .logo { color:#fff; font-family:var(--display); font-weight:800; }
.client-top .logo span { color:var(--teal); }
.client-top .logo small { color:rgba(255,255,255,.55); }
.client-nav a { color:rgba(255,255,255,.78); font-size:.9rem; }
.client-nav a:hover, .client-nav a.active { color:#fff; }
.client-nav a.active { border-bottom:2px solid var(--teal); }
.client-profile {
  display:flex; align-items:center; gap:.55rem; color:#fff; font-size:.82rem; font-weight:600;
}
.client-profile .admin-avatar { width:30px; height:30px; font-size:.75rem; }
.client-footer {
  width:min(1100px, calc(100% - 2rem)); margin:0 auto 1.5rem;
  display:flex; justify-content:space-between; gap:1rem; flex-wrap:wrap;
  color:var(--muted); font-size:.8rem; padding-top:.75rem; border-top:1px solid var(--line);
}
.impersonation-banner {
  background: linear-gradient(90deg, #b7791f, #c0392b); color:#fff;
  text-align:center; padding:.65rem 1rem; font-weight:700; font-size:.9rem;
}
.impersonation-banner a,
.impersonation-banner a.impersonation-exit,
.impersonation-banner button {
  color:#fff; margin-left:.75rem; text-decoration:none; background:transparent; border:1px solid rgba(255,255,255,.5);
  border-radius:999px; padding:.2rem .75rem; cursor:pointer; font:inherit; font-weight:700;
  display:inline-block;
}
.impersonation-banner a:hover,
.impersonation-banner a.impersonation-exit:hover { background:rgba(255,255,255,.12); color:#fff; }
.ticket-thread { display:flex; flex-direction:column; gap:.75rem; margin-bottom:1rem; }
.ticket-bubble {
  background:#fff; border:1px solid var(--line); border-radius:12px; padding:1rem 1.1rem;
}
.ticket-bubble.staff { border-left:4px solid var(--teal); background:#f7fffe; }
.ticket-bubble.client { border-left:4px solid #1a6bb5; }
.ticket-bubble .meta { color:var(--muted); font-size:.8rem; font-weight:600; margin-bottom:.4rem; }
.card {
  background:#fff; border:1px solid var(--line); border-radius:12px; padding:1.1rem;
  box-shadow:0 2px 10px rgba(26,35,50,.04); margin-bottom:1rem;
}
@media (max-width: 720px) {
  .admin-profile-meta { display:none; }
  .admin-top .admin-profile-btn .fa-chevron-down { display: none; }
  .client-nav { gap:.55rem; }
}

/* ===== ADMIN MOBILE: search under logo, nav in hamburger ===== */
.admin-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: .55rem .5rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  cursor: pointer;
  color: #fff;
  flex-shrink: 0;
}
.admin-nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  background: #fff;
  transition: transform .2s ease, opacity .2s ease;
}
.admin-nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.admin-nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.admin-nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.admin-mobile-backdrop {
  position: fixed;
  inset: 0;
  z-index: 280;
  background: rgba(4, 12, 24, .55);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  display: block !important;
  visibility: hidden;
}
.admin-mobile-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.admin-mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 290;
  width: min(22rem, 90vw);
  height: 100%;
  height: 100dvh;
  background: linear-gradient(180deg, #0d1524 0%, #152033 100%);
  color: #fff;
  box-shadow: -12px 0 40px rgba(0,0,0,.4);
  transform: translateX(105%);
  transition: transform .28s cubic-bezier(.22,.9,.25,1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 0 1.5rem;
  display: block !important;
  visibility: hidden;
  pointer-events: none;
}
.admin-mobile-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}
.admin-mobile-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  position: sticky;
  top: 0;
  background: #0d1524;
  z-index: 1;
}
.admin-mobile-close {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.08);
  color: #fff;
  cursor: pointer;
  font-size: 1.1rem;
}
.admin-mobile-nav {
  padding: .35rem 0 1rem;
}
.admin-mobile-group {
  padding: .55rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.admin-mobile-group-label {
  padding: .45rem 1.15rem .25rem;
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
}
.admin-mobile-nav a {
  display: block;
  padding: .75rem 1.15rem;
  color: rgba(255,255,255,.9);
  font-weight: 650;
  font-size: .98rem;
  text-decoration: none;
  border: 0;
  border-bottom: 0;
}
.admin-mobile-nav a:hover,
.admin-mobile-nav a.is-active {
  background: rgba(20,184,166,.14);
  color: #fff;
}
.admin-mobile-nav a.is-active {
  box-shadow: inset 3px 0 0 var(--teal, #14b8a6);
}
body.admin-nav-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  body.admin-body .admin-top,
  .admin-top {
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    grid-template-areas:
      "brand actions"
      "search search";
    align-items: center;
    gap: .65rem 0;
    padding: .7rem 0 .75rem;
  }
  body.admin-body .admin-top .brand,
  .admin-top .brand {
    grid-area: brand;
    justify-self: start;
    grid-column: auto;
    padding-left: 1rem;
  }
  body.admin-body .admin-top .admin-search-wrap,
  .admin-top .admin-search-wrap {
    grid-area: search;
    justify-self: stretch;
    grid-column: 1 / -1 !important;
    max-width: none !important;
    width: 100% !important;
    padding: 0 1rem;
    box-sizing: border-box;
  }
  body.admin-body .admin-top .admin-search-form,
  .admin-top .admin-search-form,
  body.admin-body .admin-top .admin-search-form .admin-search,
  .admin-top .admin-search-form .admin-search,
  body.admin-body .admin-top .admin-search,
  .admin-top .admin-search {
    max-width: none !important;
    width: 100% !important;
    flex: 1 1 auto !important;
    box-sizing: border-box;
  }
  body.admin-body .admin-top .admin-top-right,
  .admin-top .admin-top-right {
    grid-area: actions;
    justify-self: end;
    grid-column: auto;
    padding-right: 1rem;
  }
  .admin-top .brand img {
    height: 42px;
    max-width: min(200px, 52vw);
  }
  .admin-nav-toggle {
    display: inline-flex !important;
  }
  .admin-nav--desk,
  nav.admin-nav.admin-nav-grouped {
    display: none !important;
  }
  .admin-cron-alert span { display: none; }
  .admin-profile-btn {
    padding: .28rem;
    border-radius: 12px;
  }
}
@media (min-width: 981px) {
  .admin-nav-toggle,
  .admin-mobile-backdrop,
  .admin-mobile-drawer {
    display: none !important;
  }
}


/* ===== ADMIN CHROME v3: logo, search, dark footer, products, invoices ===== */
.admin-top .brand img { height: 48px; width: auto; max-width: 260px; object-fit: contain; }
.admin-top .brand.has-logo .brand-text { display: none; }
.admin-footer {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 1.1rem 1.5rem;
  background: #0d1524;
  color: rgba(255,255,255,.72);
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .82rem;
}
.admin-wrap { margin-bottom: 0; padding-bottom: 2rem; }
.admin-search-wrap { position: relative; width: 100%; max-width: 460px; flex: unset; }
.admin-search-form { width: 100%; max-width: none; }
@media (max-width: 980px) {
  body.admin-body .admin-top .admin-search-wrap,
  .admin-top .admin-search-wrap {
    max-width: none !important;
    width: 100% !important;
  }
  body.admin-body .admin-top .admin-search-form,
  .admin-top .admin-search-form,
  body.admin-body .admin-top .admin-search,
  .admin-top .admin-search {
    max-width: none !important;
    width: 100% !important;
  }
}
.admin-search-results {
  position: absolute; left: 0; right: 0; top: calc(100% + .4rem);
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,.18); z-index: 80; max-height: 420px; overflow: auto;
  padding: .4rem;
}
.asr-section { padding: .25rem 0 .4rem; }
.asr-title {
  font-size: .7rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted); padding: .35rem .65rem;
}
.admin-search-results a {
  display: flex; flex-direction: column; gap: .1rem;
  padding: .55rem .7rem; border-radius: 8px; color: var(--ink);
}
.admin-search-results a:hover { background: var(--teal-soft); color: var(--teal-dark); }
.admin-search-results a small { color: var(--muted); font-size: .75rem; }
.asr-empty { padding: 1rem; color: var(--muted); text-align: center; font-weight: 600; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem 1rem; }
.product-layout { display: grid; grid-template-columns: minmax(0,1fr) 280px; gap: 1.1rem; align-items: start; }
.media-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.switch-stack { display: flex; flex-direction: column; gap: .55rem; justify-content: end; }
.switch-row { display: flex; align-items: center; gap: .55rem; font-weight: 600; color: var(--ink); }
.form-actions-bar { display: flex; gap: .6rem; flex-wrap: wrap; margin: .25rem 0 1rem; }
.sticky-side { position: sticky; top: 5.5rem; }
.product-preview-card { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: #fff; }
.ppc-media { height: 120px; background: #f3f6f9; display: grid; place-items: center; }
.ppc-media img { width: 100%; height: 120px; object-fit: cover; }
.ppc-empty { color: #98a6b8; font-size: 1.6rem; }
.ppc-body { padding: .85rem 1rem; }
.prod-cell { display: flex; align-items: center; gap: .7rem; }
.prod-thumb { width: 42px; height: 42px; border-radius: 10px; object-fit: cover; background: #eef2f7; display: grid; place-items: center; color: #8a97a8; }
.prod-thumb.empty { border: 1px solid var(--line); }

.eg-switch { position: relative; display: inline-block; width: 46px; height: 26px; }
.eg-switch input { opacity: 0; width: 0; height: 0; }
.eg-slider {
  position: absolute; cursor: pointer; inset: 0; background: #c5ced9; border-radius: 999px; transition: .2s;
}
.eg-slider:before {
  content: ""; position: absolute; height: 20px; width: 20px; left: 3px; top: 3px;
  background: #fff; border-radius: 50%; transition: .2s; box-shadow: 0 1px 4px rgba(0,0,0,.2);
}
.eg-switch input:checked + .eg-slider { background: var(--teal); }
.eg-switch input:checked + .eg-slider:before { transform: translateX(20px); }

.invoice-layout { display: grid; grid-template-columns: minmax(0,1fr) 300px; gap: 1.1rem; align-items: start; }
.invoice-sheet { padding: 1.4rem 1.5rem 1.6rem; }
.invoice-sheet.panel { overflow: visible; }
.invoice-head { display: flex; justify-content: space-between; gap: 1.5rem; margin-bottom: 1.4rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.invoice-brand { font-family: var(--display); font-size: 1.45rem; font-weight: 800; margin-bottom: .35rem; }
.invoice-meta { display: grid; gap: .45rem; min-width: 200px; }
.invoice-meta div { display: flex; justify-content: space-between; gap: 1rem; font-size: .9rem; }
.invoice-meta span { color: var(--muted); }
.invoice-parties { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
.invoice-parties h3 { margin: 0 0 .45rem; font-size: .95rem; font-family: var(--display); }
.invoice-items { margin: 0 0 1rem; }
.invoice-totals { margin-left: auto; width: min(320px, 100%); }
.invoice-totals .sum-row { display: flex; justify-content: space-between; padding: .35rem 0; font-weight: 600; }
.invoice-totals .sum-row.total { border-top: 2px solid var(--ink); margin-top: .35rem; padding-top: .65rem; font-size: 1.15rem; }
.invoice-notes { margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.invoice-aside .panel { position: sticky; top: 5.5rem; }

@media (max-width: 960px) {
  .product-layout, .invoice-layout, .media-grid, .invoice-parties, .grid-2 { grid-template-columns: 1fr; }
  .sticky-side, .invoice-aside .panel { position: static; }
}


/* ===== FRONTEND PREMIUM DARK v4 ===== */
:root {
  --biz-blue: #0b1c33;
  --biz-blue-2: #122845;
  --biz-green: #12b89a;
  --biz-green-2: #0e9a82;
  --teal: #12b89a;
  --teal-dark: #0e9a82;
  --teal-soft: rgba(18,184,154,.12);
}

.frontend .topbar {
  background: linear-gradient(180deg, #07111f 0%, #0b1c33 100%);
  color: rgba(255,255,255,.72);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.frontend .topbar a { color: rgba(255,255,255,.78); }
.frontend .topbar a:hover { color: #fff; }
.frontend .topbar .muted { color: rgba(255,255,255,.45); }
.frontend .topbar-inner { display:flex; justify-content:space-between; align-items:center; padding:.5rem 0; gap:1rem; }
.frontend .topbar-left, .frontend .topbar-right { display:flex; align-items:center; gap:1rem; }
.frontend .fe-account { position:relative; }
.frontend .fe-account-btn {
  display:inline-flex; align-items:center; gap:.45rem;
  background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.14);
  border-radius:999px; padding:.2rem .65rem .2rem .25rem;
  color:#fff; font:inherit; font-size:.82rem; font-weight:600; cursor:pointer;
}
.frontend .fe-account-btn:hover { background:rgba(255,255,255,.14); color:#fff; }
.frontend .fe-account-label {
  max-width:140px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap;
}
.frontend .fe-account-menu { z-index:80; color: var(--ink, #1a2332); }
/* Menü-Links brauchen dunklen Text auf weißem Grund (auch im dunklen Header) */
.frontend .fe-account-menu a,
.frontend .fe-account-menu a:visited,
.frontend .topbar .fe-account-menu a,
.frontend .topbar .fe-account-menu a:visited {
  color: var(--ink, #1a2332) !important;
}
.frontend .fe-account-menu a:hover,
.frontend .topbar .fe-account-menu a:hover {
  color: var(--teal-dark, #0e7a68) !important;
  background: var(--teal-soft, #e6f7f4);
}
.frontend .fe-account-menu a.danger,
.frontend .fe-account-menu a.danger:visited,
.frontend .topbar .fe-account-menu a.danger,
.frontend .topbar .fe-account-menu a.danger:visited {
  color: #c0392b !important;
}
.frontend .fe-account-menu a.danger:hover,
.frontend .topbar .fe-account-menu a.danger:hover {
  background: #fdecea;
  color: #c0392b !important;
}
.frontend .fe-account-menu .admin-profile-head strong,
.frontend .topbar .fe-account-menu .admin-profile-head strong { color: var(--ink, #1a2332); }
.frontend .fe-account-menu .admin-profile-head small,
.frontend .topbar .fe-account-menu .admin-profile-head small { color: var(--muted, #6b7a90); }
.frontend .header-profile-avatar {
  width: 30px !important;
  height: 30px !important;
  font-size: .78rem !important;
  color: #fff;
  background: linear-gradient(145deg, #12b89a, #1a6bb5);
  overflow: hidden;
}
.frontend .header-profile-avatar.has-img,
.frontend .fe-account-menu .admin-avatar.has-img {
  background: transparent !important;
  padding: 0;
}
.frontend .header-profile-avatar img,
.frontend .fe-account-menu .admin-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.frontend .header-account-chevron {
  font-size: .65rem;
  opacity: .7;
}
@media (max-width: 960px) {
  .frontend .fe-account-label,
  .frontend .header-account-chevron { display:none; }
  .frontend .header-account-btn {
    padding: .2rem;
    border-radius: 10px;
  }
}

.site-header--dark {
  background: linear-gradient(180deg, #0d213a 0%, #102744 100%);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 8px 28px rgba(0,0,0,.28);
  overflow: visible;
}
.site-header--dark .logo { color: #fff; }
.site-header--dark .logo-lg img { height: 72px; max-width: 340px; }
.site-header--dark .mega-item > a {
  color: rgba(255,255,255,.88);
}
.site-header--dark .mega-item > a:hover,
.site-header--dark .mega-item.is-open > a {
  color: #fff;
  background: rgba(18,184,154,.16);
}

/* Dark mega panels for ALL dropdowns (cards + links: Domain, Informationen, …) */
.site-header--dark .mega-panel {
  top: calc(100% + 14px) !important;
  margin-top: 0;
  background: #0f243d !important;
  border: 1px solid rgba(255,255,255,.1) !important;
  box-shadow: 0 22px 55px rgba(0,0,0,.45) !important;
  color: rgba(255,255,255,.85);
}
.site-header--dark .mega-panel .mega-title {
  color: rgba(255,255,255,.45) !important;
}
.site-header--dark .mega-panel .mega-col a {
  color: rgba(255,255,255,.88) !important;
}
.site-header--dark .mega-panel .mega-col a:hover {
  color: #7ef0d6 !important;
}
.site-header--dark .mega-panel::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: -18px;
  height: 20px;
}

/* Mega menu bridge + open state (JS .is-open only — no :hover race) */
.mega-panel.mega-cards {
  top: calc(100% + 14px) !important;
  padding-top: 1.1rem;
  margin-top: 0;
  background: #0f243d !important;
  border: 1px solid rgba(255,255,255,.1) !important;
  box-shadow: 0 22px 55px rgba(0,0,0,.45) !important;
}
.mega-panel.mega-cards::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: -18px;
  height: 20px;
}
.mega-item.has-mega.is-open > .mega-panel { display: grid; }
.mega-item.has-mega.is-open > .mega-panel.mega-cards { display: block; }

.mega-card {
  background: rgba(255,255,255,.04) !important;
  border-color: rgba(255,255,255,.1) !important;
  color: #fff !important;
}
.mega-card span { color: rgba(255,255,255,.62) !important; }
.mega-card:hover { border-color: var(--biz-green) !important; background: rgba(18,184,154,.1) !important; }
.mega-ico {
  background: linear-gradient(135deg, rgba(18,184,154,.25), rgba(40,120,200,.25)) !important;
  color: #7ef0d6 !important;
  font-size: 1.25rem !important;
}
.mega-footer { color: rgba(255,255,255,.65); border-top: 1px solid rgba(255,255,255,.08); margin-top: .8rem; padding-top: .7rem; }

/* Distinct mega card tones */
.mega-card.mega-tone-managed {
  background: linear-gradient(160deg, rgba(14,154,130,.18), rgba(255,255,255,.03)) !important;
  border-color: rgba(18,184,154,.28) !important;
}
.mega-card.mega-tone-managed:hover { border-color: #16c4a6 !important; background: rgba(14,154,130,.22) !important; }
.mega-card.mega-tone-managed .mega-ico {
  background: linear-gradient(135deg, rgba(14,154,130,.35), rgba(22,196,166,.2)) !important;
  color: #7ef0d6 !important;
}
.mega-card.mega-tone-dedicated {
  background: linear-gradient(160deg, rgba(58,86,136,.28), rgba(255,255,255,.03)) !important;
  border-color: rgba(120,150,200,.28) !important;
}
.mega-card.mega-tone-dedicated:hover { border-color: #8eacd8 !important; background: rgba(58,86,136,.34) !important; }
.mega-card.mega-tone-dedicated .mega-ico {
  background: linear-gradient(135deg, rgba(58,86,136,.45), rgba(90,120,170,.25)) !important;
  color: #c5d4ef !important;
}
.mega-card.mega-tone-cloud {
  background: linear-gradient(160deg, rgba(26,107,181,.24), rgba(255,255,255,.03)) !important;
  border-color: rgba(90,160,220,.3) !important;
}
.mega-card.mega-tone-cloud:hover { border-color: #5aa0dc !important; background: rgba(26,107,181,.3) !important; }
.mega-card.mega-tone-cloud .mega-ico {
  background: linear-gradient(135deg, rgba(26,107,181,.4), rgba(58,143,212,.22)) !important;
  color: #9fd0ff !important;
}

/* Domain mega featured TLDs */
.mega-panel.mega-domain {
  min-width: 520px;
  grid-template-columns: 1.1fr 1fr;
}
.mega-tld-chips {
  display: flex; flex-direction: column; gap: .45rem; margin: .15rem 0 .7rem;
}
.mega-tld-chip {
  display: flex !important; align-items: center; justify-content: space-between; gap: .6rem;
  padding: .65rem .8rem !important;
  border-radius: 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: #fff !important;
  font-weight: 700;
  transition: border-color .15s ease, background .15s ease, transform .15s ease;
}
.mega-tld-chip:hover {
  background: rgba(18,184,154,.12) !important;
  border-color: rgba(18,184,154,.45) !important;
  color: #7ef0d6 !important;
  transform: translateY(-1px);
}
.mega-tld-chip.is-offer {
  background: linear-gradient(135deg, rgba(14,154,130,.18), rgba(255,255,255,.04));
  border-color: rgba(18,184,154,.35);
}
.mega-tld-name { font-size: 1.02rem; letter-spacing: -.01em; }
.mega-tld-tag {
  font-size: .62rem; font-weight: 800; letter-spacing: .06em;
  color: #fff; background: linear-gradient(135deg, #0e9a82, #16c4a6);
  padding: .2rem .45rem; border-radius: 999px;
}
.mega-tld-more {
  display: inline-block !important;
  margin-top: .15rem;
  font-size: .86rem !important;
  font-weight: 700 !important;
  color: #7ef0d6 !important;
}

/* Domain search darker */
.domain-card.dark-domain {
  background: linear-gradient(135deg, #0e2038 0%, #143252 55%, #0f2f3a 100%);
  border: 1px solid rgba(255,255,255,.1);
  color: #fff;
  box-shadow: 0 20px 50px rgba(5,16,32,.45);
}
.domain-card.dark-domain h2 { color: #fff; margin: 0; font-family: var(--display); }
.domain-card.dark-domain .muted { color: rgba(255,255,255,.65); }
.domain-card.dark-domain .domain-copy-aside { color: rgba(255,255,255,.7); }
.domain-input-wrap {
  flex: 1; display: flex; align-items: center; gap: .65rem;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px; padding: 0 .9rem;
  min-width: 0;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.domain-input-wrap:focus-within {
  border-color: rgba(18, 184, 154, .7);
  box-shadow: 0 0 0 3px rgba(18, 184, 154, .2);
}
.domain-input-wrap i { color: rgba(255,255,255,.55); flex-shrink: 0; }
/* Kill nested/global input border inside the wrap (was causing double border) */
.domain-input-wrap input,
.domain-card.dark-domain .domain-form input,
.domain-form.dark-inline input {
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
  color: #fff !important;
  margin: 0 !important;
  padding: .95rem 0 !important;
  border-radius: 0 !important;
  width: 100% !important;
  min-width: 0;
  flex: 1;
}
.domain-input-wrap input:focus,
.domain-card.dark-domain .domain-form input:focus,
.domain-form.dark-inline input:focus {
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
}
.domain-card.dark-domain .domain-form input::placeholder,
.domain-form.dark-inline input::placeholder,
.domain-input-wrap input::placeholder { color: rgba(255,255,255,.45); }
.domain-card.dark-domain .tld-chip {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px; padding: .35rem .75rem; color: rgba(255,255,255,.8);
  display: inline-flex; align-items: center; gap: .35rem; flex-wrap: wrap;
}
.domain-card.dark-domain .tld-chip strong { color: #7ef0d6; }
.domain-card.dark-domain .tld-chip.is-offer {
  border-color: rgba(230,126,34,.55);
  background: rgba(230,126,34,.14);
}
.domain-card.dark-domain .tld-chip .sale-list { color: rgba(255,255,255,.45); }
.domain-card.dark-domain .tld-chip .sale-badge {
  margin-left: .1rem;
}
.domain-card.dark-domain {
  position: relative;
}
.domain-card.dark-domain.has-offer {
  border-color: rgba(230,126,34,.35);
}
.domain-offer-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .04em;
  color: #fff;
  background: linear-gradient(135deg, #d35400, #e67e22);
  padding: .28rem .6rem;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(211,84,0,.35);
}
.domain-card.dark-domain.has-offer .domain-copy {
  padding-right: 5.5rem;
}

/* Premium product cards */
.premium-cards .price-card {
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%);
  border: 1px solid rgba(15,36,61,.08);
  box-shadow: 0 10px 28px rgba(11,28,51,.08);
  overflow: hidden;
}
.premium-cards .price-card.featured {
  border: 2px solid var(--biz-green);
  background: linear-gradient(180deg, #ffffff 0%, #eefaf7 100%);
  box-shadow: 0 18px 40px rgba(18,184,154,.18);
}
.premium-cards .price-card .tag {
  background: linear-gradient(135deg, #1a6bb5, #12b89a);
}
.premium-cards .price-card .price { color: #0b1c33; }
.premium-cards .price-card li {
  display: flex; gap: .5rem; align-items: flex-start;
  border-bottom-color: rgba(15,36,61,.06);
  color: #3d5168;
}
.premium-cards .price-card li::before { content: none; }
.premium-cards .price-card li i { color: var(--biz-green); margin-top: .2rem; }
.premium-cards .price-card li.feature-vip {
  color: #0f766e;
  font-weight: 650;
}
.premium-cards .price-card li.feature-vip i {
  color: #d4a017;
  filter: drop-shadow(0 0 0.35rem rgba(212, 160, 23, .35));
}
.premium-cards .btn-teal,
.premium-cards .btn-green {
  background: linear-gradient(135deg, #12b89a, #0e9a82);
  border: 0; color: #fff;
}
.premium-cards .card-ico {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(18,184,154,.18), rgba(26,107,181,.18));
  color: #0e9a82; font-size: 1.2rem; margin-bottom: .5rem;
}
.card-media { margin: -.4rem -.2rem 1rem; border-radius: 12px; overflow: hidden; height: 110px; background: #e8eef5; }
.card-media img { width: 100%; height: 110px; object-fit: cover; }

.section-more { text-align: center; margin-top: 1.5rem; }
.btn-outline-lightish {
  background: transparent; border: 1px solid rgba(11,28,51,.18); color: #0b1c33; border-radius: 999px;
}
.btn-outline-lightish:hover { border-color: var(--biz-green); color: var(--biz-green); }
.server-block { margin-top: 1.75rem; }
.server-block-h { display:flex; justify-content:space-between; align-items:end; gap:1rem; margin-bottom: .8rem; }
.server-block-h h3 { margin: 0; font-family: var(--display); }
.server-block-h a { font-weight: 700; color: var(--biz-green); }
.premium-table { border: 1px solid rgba(15,36,61,.08); box-shadow: 0 8px 24px rgba(11,28,51,.06); }
.server-tabs .chip {
  display: inline-flex; align-items: center; gap: .4rem;
  background: #0f243d; color: #fff; border-radius: 999px; padding: .45rem .9rem; font-weight: 700;
  border: 1px solid transparent; transition: background .15s ease, box-shadow .15s ease, transform .15s ease;
}
.server-tabs .chip:hover { background: #163456; color: #7ef0d6; }
.server-tabs .chip-managed { background: linear-gradient(135deg, #0e9a82, #12b89a); }
.server-tabs .chip-managed:hover { color: #fff; filter: brightness(1.05); }
.server-tabs .chip-dedicated { background: linear-gradient(135deg, #1a2f4a, #2a4570); }
.server-tabs .chip-dedicated:hover { color: #c5d4ef; }
.server-tabs .chip-cloud { background: linear-gradient(135deg, #1a6bb5, #2980b9); }
.server-tabs .chip-cloud:hover { color: #d6ecff; }

/* Distinct product-type badges */
.mini-badge {
  display: inline-flex; align-items: center; margin-left: .45rem;
  font-size: .62rem; font-weight: 800; letter-spacing: .06em;
  color: #fff; padding: .22rem .5rem; border-radius: 999px; vertical-align: middle;
  box-shadow: 0 4px 10px rgba(15, 36, 61, .12);
}
.badge-managed {
  background: linear-gradient(135deg, #0e9a82, #18c4a8);
  box-shadow: 0 4px 12px rgba(14, 154, 130, .28);
  color: #fff !important;
}
.badge-dedicated {
  background: linear-gradient(135deg, #1a2f4a, #3a5688);
  box-shadow: 0 4px 12px rgba(26, 47, 74, .28);
  color: #fff !important;
}
.badge-blue, .mini-badge.badge-blue {
  background: linear-gradient(135deg, #1a6bb5, #3a8fd4);
}

.srv-name {
  display: block;
  line-height: 1.35;
}
.srv-name strong {
  font-size: .98rem;
  letter-spacing: -.01em;
  display: inline;
  margin-right: .35rem;
}
.srv-name .mini-badge {
  display: inline-flex;
  vertical-align: middle;
  margin-left: .15rem;
  margin-bottom: .1rem;
  white-space: nowrap;
  position: relative;
  top: -.08em;
}
.srv-specs-cell { width: 42%; vertical-align: middle; }
.srv-specs {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem .55rem;
  align-items: center;
}
.srv-spec {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .28rem .55rem;
  border-radius: 999px;
  background: #f1f5f9;
  border: 1px solid rgba(15, 36, 61, .06);
  color: #334155;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.2;
  max-width: 100%;
}
.srv-spec i {
  color: #0a7d6e;
  font-size: .82rem;
  flex-shrink: 0;
}
.server-table th.th-specs {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #6b7c8f;
}
.why-premium .why-lead-line,
.why-premium > .container > .lead.why-lead-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  max-width: none;
  width: 100%;
  white-space: nowrap;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  font-size: .95rem;
}
.why-premium .why-lead-line i {
  color: #0a7d6e;
  font-size: 1.05rem;
  flex-shrink: 0;
}
@media (max-width: 1100px) {
  .why-premium .why-lead-line,
  .why-premium > .container > .lead.why-lead-line {
    white-space: normal;
    flex-wrap: wrap;
    text-align: center;
  }
}
@media (max-width: 720px) {
  .srv-specs-cell { width: auto; }
  .server-table thead .th-specs { display: none; }
}
body:not(.home-section-steps) .srv-from {
  display: none !important;
}
body:not(.home-section-steps) #server .server-table th.th-price {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
.srv-cta { text-align: right; width: 1%; white-space: nowrap; }

.premium-table {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(15,36,61,.07);
  box-shadow: 0 12px 32px rgba(11,28,51,.07);
}
.premium-table .server-table { background: #fff; }
.premium-table .server-table thead th {
  background: linear-gradient(180deg, #f7f9fc, #eef2f7);
  font-size: .78rem; text-transform: uppercase; letter-spacing: .05em;
  color: #6b7c8f; font-weight: 700; border-bottom: 1px solid rgba(15,36,61,.06);
}
.premium-table .server-table tbody tr {
  transition: background .15s ease;
}
.premium-table .server-table tbody tr:hover {
  background: #f6faf9;
}
.premium-table .server-table tbody tr:last-child td { border-bottom: 0; }
.premium-table .server-table td {
  padding: 1rem 1.15rem;
  border-bottom: 1px solid rgba(15,36,61,.05);
  vertical-align: middle;
}

/* Premium order CTAs */
.btn-order {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .55rem 1.15rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .86rem;
  letter-spacing: .02em;
  border: 0;
  color: #fff !important;
  box-shadow: 0 8px 18px rgba(15, 36, 61, .12);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.btn-order:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  color: #fff !important;
}
.btn-order-managed {
  background: linear-gradient(135deg, #0e9a82, #16c4a6);
  box-shadow: 0 8px 18px rgba(14, 154, 130, .28);
}
.btn-order-dedicated {
  background: linear-gradient(135deg, #1a2f4a, #35507c);
  box-shadow: 0 8px 18px rgba(26, 47, 74, .28);
}
.btn-order-cloud {
  background: linear-gradient(135deg, #1a6bb5, #3a8fd4);
  box-shadow: 0 8px 18px rgba(26, 107, 181, .28);
}
.server-block-managed .server-block-h a { color: #0e9a82; }
.server-block-dedicated .server-block-h a { color: #35507c; }
.server-block-cloud .server-block-h a { color: #1a6bb5; }

/* Checkout premium */
.btn-order-checkout {
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #0e9a82, #16c4a6);
  color: #fff !important;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .02em;
  padding: .75rem 1.6rem;
  box-shadow: 0 10px 24px rgba(14, 154, 130, .28);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.btn-order-checkout:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  color: #fff !important;
  box-shadow: 0 14px 28px rgba(14, 154, 130, .34);
}
.btn-order-checkout.btn-lg { padding: .9rem 2.2rem; min-width: 168px; }
.btn-order-back {
  border-radius: 999px !important;
  padding: .7rem 1.35rem !important;
  border: 1px solid #d5dde7 !important;
  background: #fff !important;
  color: #3d4f63 !important;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(15, 36, 61, .04);
}
.btn-order-back:hover {
  border-color: #b7c4d4 !important;
  color: #0b1c33 !important;
}

.order-panel {
  border-radius: 22px !important;
  box-shadow: 0 22px 50px rgba(15, 23, 42, .08) !important;
  border: 1px solid rgba(15, 36, 61, .06) !important;
}
.domain-modes {
  display: flex; flex-direction: column; gap: .7rem;
  max-width: 720px; margin: 0 auto 1.25rem;
}
.domain-mode {
  display: flex; align-items: center; gap: .95rem;
  background: #fff;
  border: 1.5px solid #e3e9f0;
  border-radius: 14px;
  padding: 1.05rem 1.15rem;
  cursor: pointer;
  color: #243447;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(15, 36, 61, .04);
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease, transform .15s ease;
}
.domain-mode:hover {
  border-color: #c9d6e4;
  transform: translateY(-1px);
}
.domain-mode input { display: none !important; }
.domain-mode-ico {
  width: 42px; height: 42px; border-radius: 12px; flex: 0 0 42px;
  display: grid; place-items: center;
  background: #f2f5f9; color: #5b6f86; font-size: 1rem;
  transition: background .15s ease, color .15s ease;
}
.domain-mode-body { flex: 1; min-width: 0; }
.domain-mode-label { display: block; font-size: .98rem; letter-spacing: -.01em; }
.domain-mode-check {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid #d5dde7; color: transparent;
  display: grid; place-items: center; font-size: .75rem;
  flex: 0 0 28px; transition: all .15s ease;
}
.domain-mode.is-active,
.domain-mode:has(input:checked) {
  background: linear-gradient(180deg, #f4fcfa, #fff);
  border-color: #12b89a;
  box-shadow: 0 0 0 4px rgba(18, 184, 154, .12), 0 10px 24px rgba(14, 154, 130, .1);
  color: #0b1c33;
}
.domain-mode.is-active .domain-mode-ico,
.domain-mode:has(input:checked) .domain-mode-ico {
  background: linear-gradient(135deg, #0e9a82, #16c4a6);
  color: #fff;
}
.domain-mode.is-active .domain-mode-check,
.domain-mode:has(input:checked) .domain-mode-check {
  background: #12b89a;
  border-color: #12b89a;
  color: #fff;
}
.domain-use-row {
  display: flex; gap: .7rem; justify-content: center; align-items: center;
  max-width: 720px; margin: 1.15rem auto 0; width: 100%;
  box-sizing: border-box;
  min-width: 0;
}
.domain-use-row input {
  flex: 1 1 auto; min-width: 0; border-radius: 999px !important; padding: .9rem 1.25rem !important;
  border: 1.5px solid #dce3eb !important; margin: 0 !important; width: auto !important;
  background: #fff; box-shadow: inset 0 1px 2px rgba(15,36,61,.03);
  box-sizing: border-box;
}
.domain-use-row .btn-order-checkout {
  flex: 0 0 auto;
  box-shadow: 0 6px 16px rgba(14, 154, 130, .22);
}
.domain-use-row input:focus {
  outline: none; border-color: #12b89a !important;
  box-shadow: 0 0 0 4px rgba(18,184,154,.12);
}
.domain-auth-block {
  max-width: 720px;
  width: 100%;
  margin: .9rem auto 0;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}
.domain-auth-block[hidden] { display: none !important; }
.domain-auth-label {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  font-weight: 700;
  font-size: .9rem;
  color: var(--ink, #0f172a);
}
.domain-auth-label input {
  width: 100% !important;
  margin: 0 !important;
  border-radius: 12px !important;
  padding: .85rem 1rem !important;
  border: 1.5px solid #dce3eb !important;
  background: #fff;
  font: inherit;
  font-weight: 600;
}
.domain-auth-label input:focus {
  outline: none;
  border-color: #12b89a !important;
  box-shadow: 0 0 0 4px rgba(18,184,154,.12);
}
.domain-auth-hint {
  margin: .65rem 0 0;
  font-size: .84rem;
  color: #475569;
  line-height: 1.4;
  font-weight: 600;
}
.domain-auth-hint i { color: #0d9488; margin-right: .25rem; }
.order-hint {
  display: flex; align-items: flex-start; gap: .65rem;
  max-width: 720px; margin: 0 auto 1.15rem;
  padding: .95rem 1.1rem;
  border-radius: 14px;
  background: linear-gradient(180deg, #eefbf9, #f7fcfb);
  border: 1px solid rgba(0, 180, 166, .22);
  color: #1f4a52;
  font-size: .92rem; line-height: 1.45;
  box-shadow: 0 6px 16px rgba(14, 154, 130, .06);
}
.order-hint i { margin-top: .15rem; color: var(--teal); flex-shrink: 0; }
.order-hint.is-soft {
  background: linear-gradient(180deg, #f5f7fa, #fafbfc);
  border-color: #d9e2ec;
  color: #3d4f63;
  box-shadow: 0 6px 16px rgba(15, 36, 61, .04);
}
.order-hint.is-soft i { color: #5b6f86; }

.catalog-hero {
  background: linear-gradient(135deg, #0b1c33, #143252 55%, #0f3a34);
  color: #fff; padding: 3rem 0 2.2rem;
}
.catalog-hero h1 { margin: .3rem 0 .5rem; font-family: var(--display); color: #fff; }
.catalog-hero .lead { color: rgba(255,255,255,.75); text-align: left; margin: 0; max-width: 42rem; }
.catalog-hero .eyebrow { color: rgba(255,255,255,.55); font-size: .85rem; }
.catalog-hero .eyebrow a { color: #7ef0d6; }
.catalog-hero-points {
  display:flex; flex-wrap:wrap; gap:.55rem .9rem; margin: 1.15rem 0 0; padding:0; list-style:none;
}
.catalog-hero-points li {
  display:inline-flex; align-items:center; gap:.4rem;
  background: rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.12);
  border-radius:999px; padding:.35rem .75rem; font-size:.82rem; font-weight:650;
  color: rgba(255,255,255,.88);
}
.catalog-hero-points i { color:#7ef0d6; }

.catalog-toolbar {
  display:flex; flex-wrap:wrap; gap:.85rem 1rem; align-items:center;
  background:#fff; border:1px solid rgba(15,36,61,.08); border-radius:16px;
  padding:.85rem 1rem; margin:0 0 1.25rem;
  box-shadow: 0 10px 28px rgba(11,28,51,.06);
}
.catalog-search {
  position:relative; flex:1 1 220px; min-width:200px;
}
.catalog-search i {
  position:absolute; left:.85rem; top:50%; transform:translateY(-50%);
  color:#94a3b8; pointer-events:none;
}
.catalog-search input {
  width:100%; border:1px solid #e2e8f0; border-radius:12px;
  padding:.7rem .9rem .7rem 2.35rem; font:inherit; background:#f8fafc;
}
.catalog-search input:focus { outline:2px solid rgba(15,118,110,.25); border-color:#0f766e; background:#fff; }
.catalog-filters { display:flex; flex-wrap:wrap; gap:.65rem; }
.catalog-filter { display:flex; flex-direction:column; gap:.2rem; font-size:.72rem; font-weight:700; color:#64748b; text-transform:uppercase; letter-spacing:.04em; }
.catalog-filter select {
  border:1px solid #e2e8f0; border-radius:10px; padding:.55rem .7rem;
  font:inherit; font-size:.9rem; font-weight:650; color:#0f172a; background:#fff; min-width:150px;
}
.catalog-count { margin:0 0 0 auto; font-size:.88rem; font-weight:650; }
/* display:flex auf .price-card überschreibt sonst das hidden-Attribut */
.catalog-card[hidden],
.price-card[hidden] {
  display: none !important;
}
.catalog-intro-grid {
  display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:1rem; margin:0 0 1.5rem;
}
.catalog-intro-grid article {
  background:#fff; border:1px solid rgba(15,36,61,.07); border-radius:14px;
  padding:1rem 1.1rem; box-shadow: 0 8px 22px rgba(11,28,51,.04);
}
.catalog-intro-grid i { color:#0f766e; font-size:1.15rem; margin-bottom:.45rem; display:inline-block; }
.catalog-intro-grid h3 { margin:0 0 .35rem; font-size:1rem; }
.catalog-intro-grid p { margin:0; color:#64748b; font-size:.9rem; line-height:1.45; }
.card-blurb {
  margin: .15rem 0 .75rem;
  color: #64748b;
  font-size: .88rem;
  line-height: 1.45;
  min-height: 2.6em;
}
.catalog-tip-banner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem 1.25rem;
  align-items: center;
  margin: 1.75rem 0 0;
  padding: 1.15rem 1.35rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #f0fdfa 0%, #ecfeff 55%, #f8fafc 100%);
  border: 1px solid rgba(15,118,110,.18);
  box-shadow: 0 10px 28px rgba(15,23,42,.05);
}
.catalog-tip-banner--compact { margin-top: 1.25rem; }
.catalog-tip-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  background: #ccfbf1; color: #0f766e; font-size: 1.15rem;
}
.catalog-tip-body strong {
  display: block; margin-bottom: .25rem; color: #0f172a; font-size: 1rem;
}
.catalog-tip-body p {
  margin: 0; color: #475569; font-size: .9rem; line-height: 1.45; max-width: 46rem;
}
.catalog-tip-actions {
  display: flex; flex-wrap: wrap; gap: .55rem; justify-content: flex-end;
}
.catalog-tip-actions .btn { white-space: nowrap; }
@media (max-width: 800px) {
  .catalog-tip-banner {
    grid-template-columns: auto 1fr;
  }
  .catalog-tip-actions {
    grid-column: 1 / -1;
    justify-content: stretch;
  }
  .catalog-tip-actions .btn { flex: 1; text-align: center; }
}
.catalog-type { margin:-.15rem 0 .55rem; font-size:.78rem; }
.catalog-type code {
  background:#f1f5f9; color:#0f766e; padding:.15rem .45rem; border-radius:6px; font-weight:700;
}
.catalog-specs {
  list-style:none; margin:.35rem 0 .5rem; padding:0; display:grid; gap:.35rem;
}
.catalog-specs li {
  display:flex; align-items:center; gap:.55rem;
  padding:.35rem 0; border-bottom:1px solid #eef2f7;
  font-size:.9rem; color:#334155;
}
.catalog-specs li:last-child { border-bottom:0; }
.catalog-specs i { width:1.1rem; text-align:center; color:#0f766e; opacity:.9; }
.catalog-specs strong { color:#0f172a; font-weight:800; margin-right:.15rem; }
.catalog-feature-list {
  list-style: none; padding: 0; margin: .35rem 0 1rem;
  font-size: .86rem; color: var(--muted);
}
.catalog-feature-list li {
  padding: .28rem 0; border-bottom: 1px solid #eef2f6;
}
.catalog-feature-list li:last-child { border-bottom: 0; }
.catalog-type { margin: -.35rem 0 .55rem; font-size: .82rem; }
.catalog-type i { margin-right: .25rem; opacity: .7; }
.catalog-spec-note { margin:0 0 .85rem; font-size:.78rem; }
.catalog-empty { text-align:center; padding:1.5rem; }
@media (max-width: 900px) {
  .catalog-intro-grid { grid-template-columns: 1fr; }
  .catalog-count { margin-left:0; width:100%; }
}

/* Admin product editor extras */
.feature-presets { display:flex; flex-wrap:wrap; gap:.4rem; margin: .4rem 0 .7rem; }
.chip-btn {
  border: 1px solid var(--line); background: #f5f8fb; border-radius: 999px;
  padding: .3rem .7rem; font-size: .8rem; font-weight: 700; cursor: pointer;
}
.chip-btn:hover { border-color: var(--teal); color: var(--teal-dark); }
.feature-chips { display:flex; flex-wrap:wrap; gap:.45rem; margin-bottom: .7rem; min-height: 2rem; }
.fchip {
  display:inline-flex; align-items:center; gap:.35rem;
  background: rgba(18,184,154,.12); color: #0b6b5c; border-radius: 999px;
  padding: .3rem .65rem; font-size: .82rem; font-weight: 700;
}
.fchip button { border:0; background:transparent; cursor:pointer; font-size:1rem; line-height:1; color:inherit; }
.feature-add-row { display:flex; gap:.5rem; }
.feature-add-row input { margin: 0; }
.quill-box { min-height: 220px; background: #fff; border-radius: 10px; }


/* ===== DOMAIN PAGE PREMIUM v1 ===== */
.domain-hero { padding-bottom: 3.5rem; }
.domain-page {
  padding-top: 1.75rem;
  margin-top: 0;
  background: var(--surface);
}
.domain-search-panel {
  background: linear-gradient(135deg, #0e2038 0%, #143252 55%, #0f2f3a 100%);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: 1.35rem 1.4rem 1.1rem;
  box-shadow: 0 22px 50px rgba(5,16,32,.35);
  margin: 0 0 1.5rem;
}
.domain-form.dark-inline { display:flex; gap:.7rem; align-items:stretch; margin:0; }
.domain-form.dark-inline .domain-input-wrap { flex:1; }
.domain-trust {
  display:flex; flex-wrap:wrap; gap:.8rem 1.2rem; margin-top:.9rem;
  color: rgba(255,255,255,.7); font-size:.85rem; font-weight:600;
}
.domain-trust i { color: #7ef0d6; margin-right:.35rem; }

.premium-domain-results { display:flex; flex-direction:column; gap:.75rem; margin-top:1.25rem; }
.domain-result {
  display:grid;
  grid-template-columns: minmax(0, 1.35fr) auto minmax(300px, 1.15fr);
  align-items: center;
  gap: 1rem 1.35rem;
  background: #fff;
  border: 1px solid rgba(15,36,61,.08);
  border-radius: 18px;
  padding: 1rem 1.15rem;
  box-shadow: 0 12px 30px rgba(11,28,51,.07);
}
.domain-result.is-free { box-shadow: inset 4px 0 0 #12b89a, 0 12px 30px rgba(11,28,51,.07); }
.domain-result.is-taken { box-shadow: inset 4px 0 0 #c0392b, 0 12px 30px rgba(11,28,51,.07); }
.domain-result.is-unknown { box-shadow: inset 4px 0 0 #c9a227, 0 12px 30px rgba(11,28,51,.07); }

.domain-result-identity {
  display:flex; align-items:center; gap:.85rem; min-width:0;
}
.domain-result-ico {
  width: 46px; height: 46px; border-radius: 14px; flex: 0 0 46px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(18,184,154,.18), rgba(26,107,181,.12));
  color: #0e9a82; font-size: 1.15rem;
}
.domain-result.is-taken .domain-result-ico {
  background: linear-gradient(135deg, rgba(192,57,43,.14), rgba(192,57,43,.06));
  color: #c0392b;
}
.domain-result.is-unknown .domain-result-ico {
  background: linear-gradient(135deg, rgba(201,162,39,.18), rgba(201,162,39,.08));
  color: #b7791f;
}
.domain-result-copy { min-width:0; }
.domain-result-title {
  display:flex; flex-wrap:wrap; align-items:center; gap:.45rem .5rem; margin:0;
}
.domain-result-title strong {
  font-size:1.18rem; font-family:var(--display); color:#0b1c33; letter-spacing:-.02em;
  line-height:1.2;
}
.domain-result-meta {
  margin: .28rem 0 0;
  color: #6b7c8f;
  font-size: .86rem;
  font-weight: 600;
}
.domain-status-pill {
  display:inline-flex; padding:.18rem .55rem; border-radius:999px; font-size:.7rem; font-weight:800;
  letter-spacing:.04em; background: rgba(18,184,154,.12); color:#0e9a82;
}
.domain-result.is-taken .domain-status-pill { background:#fdecea; color:#c0392b; }
.domain-result.is-unknown .domain-status-pill { background:#fff4e0; color:#b7791f; }
.domain-status-pill.premium { background: rgba(26,107,181,.12); color:#1a6bb5; }

.domain-result-price {
  display:flex; flex-direction:column; align-items:flex-end; justify-content:center;
  text-align:right; white-space:nowrap; padding: 0 .25rem;
}
.domain-result-price strong {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 800;
  color: #0b1c33;
  line-height: 1.1;
}
.domain-result-price small {
  color: #6b7c8f;
  font-size: .78rem;
  font-weight: 700;
  margin-top: .15rem;
}
.domain-result-price .sale-list {
  font-size: .82rem;
  margin-bottom: .1rem;
}

.domain-order-form.domain-order-inline {
  display:flex; align-items:end; gap:.65rem; flex-wrap:wrap;
  justify-content: flex-end;
  background: #f4f7fb;
  border: 1px solid rgba(15,36,61,.06);
  border-radius: 14px;
  padding: .7rem .8rem;
}
.domain-order-inline .domain-field {
  display:flex; flex-direction:column; gap:.25rem;
  margin:0; font-size:.72rem; font-weight:700; color:#6b7c8f;
  text-transform: uppercase; letter-spacing:.04em;
}
.domain-order-inline .domain-field select,
.domain-order-inline .domain-field input {
  margin:0 !important;
  min-width: 72px;
  border-radius: 10px !important;
  border: 1px solid #d5dde7 !important;
  padding: .55rem .7rem !important;
  background:#fff !important;
  font-weight: 700;
  color: #0b1c33;
}
.domain-order-inline .domain-field-grow { flex: 1 1 140px; min-width: 140px; }
.domain-order-inline .domain-field-grow input { width: 100%; min-width: 0; }
.domain-order-inline .domain-privacy {
  margin: 0 0 .15rem !important;
  padding: .45rem .55rem;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #d5dde7;
  font-size: .8rem !important;
  color: #3d4f63 !important;
  white-space: nowrap;
}
.domain-order-inline .btn-order-checkout {
  padding: .7rem 1.15rem;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(14,154,130,.25);
}
.domain-order-inline .btn-order-checkout i { margin-right: .35rem; }

@media (max-width: 980px) {
  .domain-result {
    grid-template-columns: 1fr auto;
  }
  .domain-order-form.domain-order-inline {
    grid-column: 1 / -1;
    justify-content: stretch;
  }
  .domain-order-inline .btn-order-checkout { margin-left: auto; }
}
@media (max-width: 720px) {
  .domain-form.dark-inline { flex-direction:column; }
  .domain-result {
    grid-template-columns: 1fr;
    gap: .85rem;
  }
  .domain-result-price { align-items:flex-start; text-align:left; }
  .domain-order-form.domain-order-inline {
    flex-direction: column;
    align-items: stretch;
  }
  .domain-order-inline .btn-order-checkout {
    width: 100%;
    margin-left: 0;
    justify-content: center;
  }
}

.tld-price-panel { margin-top: 2.5rem; }
.tld-price-head {
  display:flex; justify-content:space-between; align-items:end; gap:1rem; flex-wrap:wrap;
  margin-bottom: 1rem;
}
.tld-price-head h2 { margin:0 0 .35rem; font-family:var(--display); color:#0b1c33; text-align:left; }
.tld-price-tools { display:flex; align-items:center; gap:.75rem; }
.tld-filter-label {
  display:flex; align-items:center; gap:.5rem;
  background:#fff; border:1px solid rgba(15,36,61,.12); border-radius:999px;
  padding:.45rem .9rem; margin:0;
}
.tld-filter-label i { color:#6b7c8f; }
.tld-filter-label input {
  border:0 !important; outline:none !important; box-shadow:none !important;
  margin:0 !important; padding:0 !important; background:transparent !important;
  min-width:140px; font-weight:600;
}
.tld-count { font-size:.86rem; font-weight:700; white-space:nowrap; }
.premium-tld-panel .tld-price-grid {
  display:grid; grid-template-columns: repeat(auto-fill, minmax(148px, 1fr)); gap:.75rem;
}
.tld-price-card[hidden] { display:none !important; }
.tld-empty { text-align:center; padding:1.5rem; }
.tld-price-card {
  position:relative;
  display:flex; flex-direction:column; gap:.15rem;
  background:#f7f9fc; border:1px solid rgba(15,36,61,.08); border-radius:14px;
  padding:.9rem 1rem; color:#0b1c33; box-shadow: 0 6px 18px rgba(11,28,51,.05);
  transition: transform .15s ease, border-color .15s ease;
}
.tld-price-card:hover { transform: translateY(-2px); border-color: var(--teal); color:#0b1c33; }
.tld-price-card.is-selected {
  border-color: var(--teal);
  box-shadow: 0 0 0 2px rgba(0,180,166,.25), 0 6px 18px rgba(11,28,51,.08);
}
.tld-price-card.is-offer {
  background: linear-gradient(180deg, #fff8f1, #fff);
  border-color: rgba(230,126,34,.35);
}
.tld-price-card .tld-name { font-weight:800; font-size:1.05rem; color:#122845; }
.tld-price-card strong,
.tld-price-card .sale-now { font-size:1.05rem; color:#0e9a82; }
.tld-price-card small { color:var(--muted); }

/* Sale / Aktion badges & prices */
.sale-badge {
  display:inline-flex; align-items:center;
  font-size:.62rem; font-weight:800; letter-spacing:.05em;
  color:#fff; background: linear-gradient(135deg, #d35400, #e67e22);
  padding:.2rem .45rem; border-radius:999px;
  box-shadow: 0 4px 10px rgba(211,84,0,.25);
}
.tld-price-card .sale-badge {
  position:absolute; top:8px; right:8px;
}
.sale-list {
  text-decoration: line-through;
  color: #8a97a8;
  font-weight: 600;
  font-size: .86em;
}
.sale-now { color: #0e9a82; }
.price .sale-list { display:block; margin-bottom:.15rem; font-size:.85rem; }
.tld-chip.is-offer {
  border-color: rgba(230,126,34,.4);
  background: #fff8f1;
}
.tld-chip .sale-badge { margin-left:.25rem; }
.ribbon-sale { background: linear-gradient(135deg, #d35400, #e67e22) !important; }
.badge-orange, .tag.badge-orange, .mega-badge.badge-orange, .mini-badge.badge-orange {
  background: linear-gradient(135deg, #d35400, #e67e22);
}
.price-card.has-sale .tag.sale-tag { top: 44px; }
.price-tag .sale-badge { margin-right:.35rem; vertical-align:middle; }
.price-tag .sale-list { margin-right:.35rem; }

.cms-sheet {
  background:#f7f9fc; border:1px solid rgba(15,36,61,.08); border-radius:18px;
  box-shadow: 0 14px 36px rgba(11,28,51,.07); padding: 2rem 2.2rem; max-width: 920px; margin: 0 auto;
}
.cms-content h1,.cms-content h2,.cms-content h3 { font-family:var(--display); color:#0b1c33; }
.cms-content p, .cms-content li { line-height:1.75; color:#334155; }
.page-hero-sm { padding: 2.4rem 0 2rem; }

@media (max-width: 720px) {
  .domain-form.dark-inline { flex-direction:column; }
}

/* ===== Domain premium price list ===== */
.prices-hero {
  background: linear-gradient(145deg, #0b1c33 0%, #14304f 55%, #0e3a34 100%);
  color: #fff;
  padding: 3.2rem 0 2.6rem;
  position: relative;
  overflow: hidden;
}
.prices-hero::after {
  content: "";
  position: absolute; inset: auto -10% -40% 40%;
  height: 280px;
  background: radial-gradient(circle, rgba(18,184,154,.28), transparent 65%);
  pointer-events: none;
}
.prices-hero-inner { position: relative; z-index: 1; max-width: 820px; }
.prices-kicker {
  margin: 0 0 .55rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .72rem;
  font-weight: 800;
  color: rgba(126,240,214,.9);
}
.prices-hero h1 {
  margin: 0 0 .65rem;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: #fff;
}
.prices-lead {
  margin: 0 0 1.4rem;
  color: rgba(255,255,255,.72);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 540px;
}
.prices-kpis {
  display: flex; flex-wrap: wrap; gap: .75rem;
}
.prices-kpis > div {
  min-width: 110px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: .7rem .95rem;
}
.prices-kpis strong {
  display: block;
  font-size: 1.35rem;
  font-family: var(--display);
  color: #7ef0d6;
}
.prices-kpis span {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255,255,255,.55);
  font-weight: 800;
}
.prices-section { padding-top: 1.6rem; }
.prices-toolbar {
  display: flex; flex-wrap: wrap; gap: .85rem;
  align-items: center; justify-content: space-between;
  margin-bottom: 1.1rem;
}
.prices-search {
  position: relative;
  display: flex; align-items: center; gap: .55rem;
  flex: 1; min-width: min(100%, 320px); max-width: 480px;
  margin: 0;
  background: #fff;
  border: 1px solid rgba(15,36,61,.12);
  border-radius: 999px;
  padding: .55rem 1rem;
  box-shadow: 0 8px 22px rgba(15,23,42,.05);
}
.prices-search i { color: #7b8ba0; }
.prices-search input {
  flex: 1; border: 0 !important; outline: none !important; box-shadow: none !important;
  margin: 0 !important; padding: 0 !important; background: transparent !important;
  font-weight: 700; font-size: .98rem;
}
.prices-clear {
  border: 0; background: #eef2f7; color: #475569; width: 26px; height: 26px;
  border-radius: 999px; cursor: pointer; font-size: 1.1rem; line-height: 1;
}
.prices-filters { display: flex; flex-wrap: wrap; gap: .55rem; align-items: center; }
.prices-chip {
  display: inline-flex; align-items: center; gap: .4rem;
  margin: 0; padding: .45rem .8rem;
  background: #fff; border: 1px solid rgba(15,36,61,.1);
  border-radius: 999px; font-weight: 700; font-size: .86rem; cursor: pointer;
}
.prices-filters select {
  margin: 0; border-radius: 999px; padding: .45rem .85rem; font-weight: 700;
  border: 1px solid rgba(15,36,61,.1); background: #fff;
}
.prices-table-wrap {
  background: #fff;
  border: 1px solid rgba(15,36,61,.08);
  border-radius: 18px;
  box-shadow: 0 14px 36px rgba(11,28,51,.06);
  overflow: hidden;
  position: relative;
}
.prices-table-head,
.prices-row {
  display: grid;
  grid-template-columns: minmax(120px, 1.2fr) repeat(3, minmax(90px, 1fr)) 110px;
  gap: .75rem;
  align-items: center;
  padding: .85rem 1.15rem;
}
.prices-table-head {
  background: #f3f6fa;
  color: #64748b;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  border-bottom: 1px solid #e8eef5;
}
.prices-row {
  border-bottom: 1px solid #eef2f7;
  transition: background .12s ease;
}
.prices-row:last-child { border-bottom: 0; }
.prices-row:hover { background: #f8fbfa; }
.prices-row.is-offer { background: linear-gradient(90deg, #fff8f1, #fff); }
.prices-row.is-featured .prices-tld strong { color: #0e9a82; }
.prices-tld { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.prices-tld strong { font-size: 1.08rem; color: #0b1c33; }
.prices-col { display: flex; flex-direction: column; gap: .05rem; }
.prices-col strong, .prices-col .sale-now { font-size: 1rem; color: #0e9a82; }
.prices-col small { color: #94a3b8; font-size: .72rem; font-weight: 700; }
.prices-action { text-align: right; }
.prices-empty, .prices-loading {
  display: flex; align-items: center; justify-content: center; gap: .65rem;
  padding: 2.4rem 1rem; color: #64748b; font-weight: 700;
}
.prices-empty[hidden], .prices-loading[hidden] { display: none !important; }
.prices-spinner {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid #dbe4ef; border-top-color: #12b89a;
  animation: prices-spin .7s linear infinite;
}
@keyframes prices-spin { to { transform: rotate(360deg); } }
.prices-rows { transition: opacity .15s ease; min-height: 120px; }
.prices-pager {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: .75rem; padding: .9rem 1.1rem; border-top: 1px solid #eef2f7;
}
.prices-pager-summary { color: #64748b; font-size: .84rem; font-weight: 700; }
.prices-pager-nav { display: inline-flex; flex-wrap: wrap; gap: .3rem; margin-left: auto; }
.prices-pager-btn {
  display: inline-grid; place-items: center; min-width: 34px; height: 34px;
  padding: 0 .55rem; border-radius: 10px; border: 1px solid #e2e8f0;
  background: #fff; color: #334155; font-weight: 700; font-size: .84rem; cursor: pointer;
}
button.prices-pager-btn:hover { border-color: #12b89a; color: #0e9a82; }
.prices-pager-btn.is-active { background: #0f243d; border-color: #0f243d; color: #fff; }
.prices-pager-btn.is-disabled { opacity: .35; cursor: default; }
@media (max-width: 800px) {
  .prices-table-head { display: none; }
  .prices-row {
    grid-template-columns: 1fr 1fr;
    gap: .55rem .85rem;
    padding: 1rem;
  }
  .prices-tld { grid-column: 1 / -1; }
  .prices-action { grid-column: 1 / -1; text-align: left; }
}

/* Dashboard blocks CSS: /assets/css/admin-dashboard.css */

/* ===== Help Center + Widget (light frontend theme) ===== */
.help-wrap { padding-bottom: 2rem; color: var(--ink); }
.help-search { display:flex; gap:.6rem; margin-bottom:1.25rem; flex-wrap:wrap; }
.help-search input[type=search] {
  flex:1; min-width:200px; padding:.7rem 1rem; border-radius:10px;
  border:1px solid var(--line); background:#fff; color: var(--ink);
}
.help-search input[type=search]::placeholder { color: var(--muted); }
.help-actions { display:flex; flex-wrap:wrap; gap:.6rem; margin-bottom:1.5rem; }
.help-layout { display:grid; grid-template-columns:240px 1fr; gap:1.5rem; align-items:start; }
@media (max-width:900px){ .help-layout { grid-template-columns:1fr; } }
.help-cats {
  display:flex; flex-direction:column; gap:.2rem;
  background:#fff; border:1px solid var(--line); border-radius:14px; padding:.55rem;
  position:sticky; top:1rem;
}
.help-cats a {
  display:flex; align-items:center; gap:.5rem; padding:.55rem .75rem; border-radius:8px;
  color: var(--ink); text-decoration:none; font-size:.9rem; font-weight:600;
}
.help-cats a i { color: var(--teal); width:1.1rem; text-align:center; }
.help-cats a:hover { background: var(--teal-soft); color: var(--ink); }
.help-cats a.is-active {
  background: rgba(0,180,166,.16); color: var(--ink);
  box-shadow: inset 3px 0 0 var(--teal);
}
.help-list { display:flex; flex-direction:column; gap:.55rem; }
.help-item {
  display:block; padding:1rem 1.15rem; border-radius:12px;
  background:#fff; border:1px solid var(--line);
  text-decoration:none; color: var(--ink);
  transition:border-color .15s, box-shadow .15s, background .15s;
}
.help-item:hover {
  border-color: rgba(0,180,166,.45);
  background: #f7fffe;
  box-shadow: 0 6px 18px rgba(26,35,50,.06);
  color: var(--ink);
}
.help-item strong { display:block; margin-bottom:.35rem; color: var(--ink); font-size:1rem; }
.help-item span { color: var(--muted); font-size:.9rem; line-height:1.45; }
.help-article { max-width:760px; padding:2rem 0 3rem; color: var(--ink); }
.help-article h1 { color: var(--ink); }
.help-answer { margin:1.25rem 0 1.75rem; line-height:1.65; color: var(--ink); }
.help-vote { display:flex; align-items:center; gap:.6rem; flex-wrap:wrap; color: var(--muted); }
.help-recommend-form, .help-ticket-form {
  display:grid; gap:1rem; max-width:520px; margin:1.25rem 0;
}
.help-recommend-form label, .help-ticket-form label {
  display:grid; gap:.35rem; font-weight:600; color: var(--ink);
}
.help-recommend-form select, .help-recommend-form input,
.help-ticket-form input, .help-ticket-form textarea {
  padding:.65rem .8rem; border-radius:8px; border:1px solid var(--line);
  background:#fff; color: var(--ink); font: inherit;
}
.help-rec-card {
  margin-top:1.5rem; padding:1.25rem 1.4rem; border-radius:14px;
  background: var(--teal-soft); border:1px solid rgba(0,180,166,.35); color: var(--ink);
}
.help-rec-card h2 { color: var(--ink); margin-top:0; }

.help-widget {
  position: fixed;
  /* Clear campaign side tab (~40–48px) on the right edge */
  right: max(3.75rem, calc(env(safe-area-inset-right, 0px) + 3.25rem));
  bottom: max(1.1rem, env(safe-area-inset-bottom, 0px));
  z-index: 1200;
}
/* Keep chat above accessibility FAB stacking; a11y sits on the left */
.help-widget-toggle {
  width:56px; height:56px; border-radius:50%; border:none; cursor:pointer;
  background:linear-gradient(145deg,#00b4a6,#0a7f96); color:#fff; font-size:1.25rem;
  box-shadow:0 8px 24px rgba(0,0,0,.28);
  display: inline-grid;
  place-items: center;
}
@media (max-width: 960px) {
  .help-widget {
    right: max(3.25rem, calc(env(safe-area-inset-right, 0px) + 2.75rem));
    /* Sit near the bottom edge (was raised and covered content) */
    bottom: max(.55rem, env(safe-area-inset-bottom, 0px) + .25rem);
  }
  .help-widget-toggle {
    width: 50px;
    height: 50px;
  }
  .help-widget-panel.is-open {
    bottom: 62px;
  }
}
.help-widget-toggle[aria-expanded="true"] { transform: scale(.96); }
/* Closed by default — display:flex must NOT override [hidden] */
.help-widget-panel[hidden],
.help-widget-panel:not(.is-open) {
  display: none !important;
}
.help-widget-panel.is-open {
  display:flex !important; flex-direction:column;
  position:absolute; right:0; bottom:68px; width:min(360px,calc(100vw - 2rem));
  background:#132033; border:1px solid rgba(255,255,255,.12); border-radius:16px;
  box-shadow:0 16px 40px rgba(0,0,0,.45); overflow:hidden;
}
.help-widget-panel header {
  display:flex; justify-content:space-between; align-items:center;
  padding:.75rem 1rem; background:rgba(0,180,166,.18); color:#fff;
}
.help-widget-panel header button { background:none; border:none; color:#fff; cursor:pointer; font-size:1.1rem; }
.help-widget-body { height:280px; overflow:auto; padding:.85rem; display:flex; flex-direction:column; gap:.55rem; }
.help-bubble {
  max-width:90%; padding:.55rem .75rem; border-radius:12px; font-size:.88rem; line-height:1.45;
  white-space: normal;
}
.help-bubble.bot { background:rgba(255,255,255,.1); color:rgba(255,255,255,.95); align-self:flex-start; }
.help-bubble.user { background:rgba(0,180,166,.4); color:#fff; align-self:flex-end; white-space: pre-wrap; }
.help-bubble.bot p { margin: 0 0 .45em; }
.help-bubble.bot p:last-child { margin-bottom: 0; }
.help-bubble.bot ol,
.help-bubble.bot ul { margin: .35em 0 .45em 1.15em; padding: 0; }
.help-bubble.bot li { margin: .2em 0; }
.help-bubble.bot strong { font-weight: 700; color: #fff; }
.help-bubble.bot code {
  font-size: .82em; padding: .1em .35em; border-radius: 4px;
  background: rgba(0,0,0,.35); color: #9ef0e8;
}
.help-bubble.bot a { color: #7de8de; text-decoration: underline; }
#help-widget-form { display:flex; gap:.4rem; padding:.65rem; border-top:1px solid rgba(255,255,255,.08); }
#help-widget-form input {
  flex:1; padding:.55rem .7rem; border-radius:8px; border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.28); color:#fff;
}
.help-widget-links { padding:0 .85rem .7rem; font-size:.78rem; color:rgba(255,255,255,.55); }
.help-widget-links a { color:#7de8de; }

/* ===== Cart / Checkout premium 2026-08 ===== */
.cart-table-wrap { padding: 0; overflow: hidden; }
.cart-table-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px 168px;
  gap: .75rem;
  padding: .85rem 1.2rem;
  background: #f4f7fb;
  border-bottom: 1px solid var(--line);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--muted);
  align-items: center;
}
.cart-table-head > span:nth-child(2),
.cart-table-head > span:nth-child(3) {
  text-align: right;
}
.cart-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px 168px;
  gap: .75rem;
  align-items: start;
  padding: 1.1rem 1.2rem;
  border-bottom: 1px solid var(--line);
  margin: 0;
}
.cart-row:last-of-type { border-bottom: none; }
.cart-item-main { min-width: 0; }
.cart-name { font-size: 1.05rem; color: var(--ink); }
.cart-domain-tag {
  display: inline-flex; align-items: center; gap: .35rem; margin-top: .35rem;
  font-size: .85rem; color: var(--teal-dark); font-weight: 700;
  padding: .2rem .35rem .2rem .55rem;
  border-radius: 999px;
  background: rgba(0, 180, 166, .08);
  border: 1px solid rgba(0, 180, 166, .2);
}
.cart-domain-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  margin: 0; padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #8a9aac;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.cart-domain-remove:hover {
  background: #fee2e2;
  color: #b91c1c;
}
.cart-domain-box { margin-top: .65rem; }
.domain-want-label {
  display: inline-flex; align-items: center; gap: .45rem; cursor: pointer;
  font-weight: 700; color: var(--ink); font-size: .9rem; margin-bottom: .4rem;
}
.domain-want-label input { width: auto; margin: 0; }
.domain-input[hidden] { display: none !important; }
.domain-input { max-width: 260px; margin-top: .25rem; }

/* Premium cart domain panel */
.cart-domain-panel {
  margin-top: .75rem;
  max-width: 520px;
  width: 100%;
}
.cart-domain-panel.is-full,
.cart-domain-span {
  max-width: none !important;
  width: 100%;
}
.cart-domain-span {
  grid-column: 1 / -1;
  margin-top: .15rem;
}
.cart-domain-span .cart-domain-body {
  width: 100%;
}
.cart-domain-span .cart-domain-search {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  gap: .65rem;
}
.cart-domain-span .cart-domain-input-wrap {
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
}
.cart-domain-span .cart-domain-check {
  flex: 0 0 auto;
}
.cart-domain-span .cart-domain-result {
  width: 100%;
}
.cart-domain-configured {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-top: .7rem;
  padding: .95rem 1.1rem;
  border-radius: 12px;
  background: linear-gradient(180deg, #f0fdfa, #f8fffe);
  border: 1px solid rgba(0, 180, 166, .28);
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}
.cart-domain-configured.cart-domain-span {
  margin-top: .15rem;
}
.cart-domain-configured-ico {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 180, 166, .14);
  color: #0d9488;
  flex-shrink: 0;
}
.cart-domain-configured-body { min-width: 0; flex: 1 1 auto; width: 100%; }
.cart-domain-configured-body strong {
  display: block;
  font-size: .98rem;
  color: var(--ink);
}
.cart-domain-configured-body p {
  margin: .3rem 0 0;
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.4;
  font-weight: 600;
}
.cart-domain-configured-body .text-warn { color: #b45309; }
.cart-domain-auth-form {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  align-items: flex-end;
  margin-top: .75rem;
  width: 100%;
}
.cart-domain-auth-form label {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin: 0;
  font-weight: 700;
  font-size: .84rem;
  color: var(--ink);
  min-width: 0;
}
.cart-domain-auth-form input[type="text"] {
  width: 100%;
  margin: 0;
  padding: .7rem .85rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  font: inherit;
  font-weight: 600;
}
.cart-domain-auth-form .btn {
  flex: 0 0 auto;
  min-height: 44px;
  white-space: nowrap;
}
.cart-domain-switch {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  cursor: pointer;
  user-select: none;
  margin: 0;
  padding: .45rem .7rem .45rem .5rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #f8fafb;
  transition: border-color .2s, background .2s;
}
.cart-domain-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0; height: 0; margin: 0;
}
.cart-domain-switch .switch-ui {
  flex: 0 0 auto;
  width: 42px; height: 24px;
  border-radius: 999px;
  background: #c5ced8;
  position: relative;
  transition: background .2s;
}
.cart-domain-switch .switch-ui::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, .2);
  transition: transform .2s;
}
.cart-domain-switch.is-on {
  border-color: rgba(0, 180, 166, .35);
  background: rgba(0, 180, 166, .08);
}
.cart-domain-switch.is-on .switch-ui { background: var(--teal, #00b4a6); }
.cart-domain-switch.is-on .switch-ui::after { transform: translateX(18px); }
.cart-domain-switch .switch-text {
  font-weight: 700;
  font-size: .9rem;
  color: var(--ink);
}
.cart-domain-body {
  margin-top: .7rem;
  padding: .95rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(0, 180, 166, .22);
  background: linear-gradient(165deg, #f7fffe 0%, #f4f8fb 100%);
}
.cart-domain-body[hidden] { display: none !important; }
.cart-domain-search {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  align-items: stretch;
}
.cart-domain-input-wrap {
  flex: 1 1 200px;
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: 0 .85rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  min-height: 44px;
}
.cart-domain-input-wrap i { color: var(--teal-dark, #0f766e); opacity: .85; }
.cart-domain-input-wrap .domain-input {
  flex: 1;
  border: 0;
  outline: none;
  background: transparent;
  margin: 0;
  max-width: none;
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink);
  min-width: 0;
}
.cart-domain-check {
  flex: 0 0 auto;
  white-space: nowrap;
  min-height: 44px;
}
.cart-domain-check.is-loading { opacity: .75; pointer-events: none; }
.cart-domain-result { margin-top: .75rem; }
.cart-domain-loading,
.cart-domain-err {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  padding: .7rem .8rem;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 600;
}
.cart-domain-loading { background: #fff; border: 1px dashed var(--line); color: var(--muted); }
.cart-domain-err { background: #fff5f5; border: 1px solid #fecaca; color: #b91c1c; }
.cart-domain-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.cart-domain-card.is-free { border-color: rgba(39, 174, 96, .35); }
.cart-domain-card.is-taken { border-color: rgba(245, 158, 11, .4); }
.cart-domain-card-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .75rem;
  align-items: flex-start;
}
.cart-domain-card-id {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
}
.cart-domain-card-id > i {
  margin-top: .15rem;
  font-size: 1.15rem;
}
.cart-domain-card.is-free .cart-domain-card-id > i { color: #27ae60; }
.cart-domain-card.is-taken .cart-domain-card-id > i { color: #d97706; }
.cart-domain-card-id strong {
  display: block;
  font-size: 1.02rem;
  color: var(--ink);
}
.cart-domain-status {
  display: inline-block;
  margin-top: .2rem;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--muted);
}
.cart-domain-card-price {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .1rem;
}
.cart-domain-card-price strong {
  font-size: 1.2rem;
  color: #1e8e4a;
  font-weight: 800;
}
.cart-domain-card-price small { color: var(--muted); font-weight: 600; }
.cart-domain-modes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
}
.cart-domain-mode {
  display: flex;
  align-items: center;
  gap: .45rem;
  margin: 0;
  padding: .65rem .7rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #f8fafb;
  cursor: pointer;
  font-weight: 700;
  font-size: .86rem;
  color: var(--ink);
  transition: border-color .15s, background .15s;
}
.cart-domain-mode input { position: absolute; opacity: 0; width: 0; height: 0; }
.cart-domain-mode span { display: inline-flex; align-items: center; gap: .4rem; }
.cart-domain-mode.is-active {
  border-color: var(--teal, #00b4a6);
  background: rgba(0, 180, 166, .1);
  color: var(--teal-dark, #0f766e);
}
.cart-domain-mode:has(input:disabled) {
  opacity: .45;
  cursor: not-allowed;
}
.cart-domain-auth label {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  font-weight: 700;
  font-size: .84rem;
  color: var(--ink);
  margin-bottom: .65rem;
}
.cart-domain-auth input {
  width: 100%;
  max-width: 100%;
  min-height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line);
  padding: .55rem .75rem;
  font-weight: 600;
}
.cart-domain-add { width: 100%; min-height: 44px; }
.cart-domain-done {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  align-items: center;
  padding: .15rem 0;
}
.cart-domain-done > i { color: #27ae60; font-size: 1.2rem; margin-top: .1rem; flex: 0 0 auto; }
.cart-domain-done-copy { flex: 1 1 160px; min-width: 0; }
.cart-domain-done-copy strong { display: block; color: var(--ink); }
.cart-domain-done-copy p { margin: .2rem 0 0; font-size: .86rem; color: var(--muted); line-height: 1.4; }
.cart-domain-detach {
  flex: 0 0 auto;
  min-height: 38px;
  padding: .45rem .85rem;
  font-size: .84rem;
  border-radius: 10px;
  color: #b91c1c;
  border-color: #fecaca;
  background: #fff;
}
.cart-domain-detach:hover {
  background: #fef2f2;
  border-color: #fca5a5;
  color: #991b1b;
}
.cart-domain-meta { margin-top: .35rem; font-size: .82rem; font-weight: 600; }
.sum-preview {
  background: rgba(0, 180, 166, .07);
  border: 1px dashed rgba(0, 180, 166, .35) !important;
  border-radius: 10px;
  padding: .65rem .75rem !important;
  margin-bottom: .55rem;
}
.sum-preview-note {
  font-size: .78rem;
  color: var(--teal-dark, #0f766e);
  font-weight: 700;
  margin-top: .25rem;
}
@media (max-width: 640px) {
  .cart-domain-modes { grid-template-columns: 1fr; }
  .cart-domain-card-price { text-align: left; align-items: flex-start; }
}
.period-pill {
  display: inline-block; padding: .25rem .55rem; border-radius: 999px;
  background: var(--teal-soft); color: var(--teal-dark); font-weight: 800; font-size: .8rem;
}
.cart-period {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  align-items: flex-end;
  text-align: right;
  justify-self: stretch;
}
.cart-price-cell {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .45rem;
  justify-self: stretch;
  min-height: 1.4rem;
}
.cart-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: .15rem;
  font-weight: 800;
  color: var(--ink);
  text-align: right;
  white-space: nowrap;
  line-height: 1.2;
}
.cart-price strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.2;
}
.cart-price .sale-list { font-size: .82rem; color: var(--muted); text-decoration: line-through; font-weight: 600; }
.cart-price-cell .icon-btn {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  margin: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  line-height: 1;
}
.cart-price-cell .icon-btn:hover { background: #fef2f2; }
.cart-foot-actions {
  display: flex; flex-wrap: wrap; gap: .7rem; padding: 1.05rem 1.2rem 1.25rem;
  border-top: 1px solid var(--line); background: #fafbfc;
  align-items: stretch;
}
.cart-foot-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: .75rem 1.35rem !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  font-size: .92rem !important;
  line-height: 1.2;
  box-sizing: border-box;
  text-decoration: none;
  transition: background .15s, border-color .15s, color .15s, box-shadow .15s;
}
.cart-foot-btn-primary {
  background: #fff;
  border: 1.5px solid #cfd8e3;
  color: var(--ink);
}
.cart-foot-btn-primary:hover {
  border-color: var(--teal, #00b4a6);
  color: var(--teal-dark, #0f766e);
  background: #f4fffd;
}
.cart-foot-btn-secondary {
  background: #f3f6f9;
  border: 1.5px solid #cfd8e3;
  color: #4b5c6e;
}
.cart-foot-btn-secondary:hover {
  border-color: #aebccb;
  color: var(--ink);
  background: #eef2f6;
}
.cart-continue-btn.btn-green,
.cart-summary .cart-continue-btn {
  background: #1e8e4a !important;
  border: none;
  color: #fff !important;
  box-shadow: 0 6px 16px rgba(30, 142, 74, .22);
}
.cart-continue-btn.btn-green:hover,
.cart-summary .cart-continue-btn:hover {
  background: #176b38 !important;
  color: #fff !important;
  filter: none;
}
.sum-block { padding: .35rem 0 .55rem; border-bottom: 1px dashed var(--line); margin-bottom: .45rem; }
.sum-block:last-of-type { border-bottom: none; }
.sum-product { font-weight: 800; color: var(--ink); }
.sum-divider { height: 1px; background: var(--line); margin: .75rem 0; }
.sum-renew {
  margin-top: .85rem; padding: .7rem .8rem; border-radius: 10px;
  background: #f0faf8; border: 1px solid rgba(0,180,166,.25);
  color: var(--ink); font-size: .88rem; font-weight: 600;
}
.sum-fx-note { margin: .7rem 0 0; font-size: .78rem; color: var(--muted); line-height: 1.35; }
.sum-green { color: #1e8e4a !important; font-weight: 800; }
.cart-summary.premium-card { position: sticky; top: 96px; }

.checkout-no-guest {
  display: flex; align-items: center; gap: .55rem; margin: 0 0 1.1rem;
  padding: .7rem .9rem; border-radius: 10px; background: #fff8e8; border: 1px solid #f0d9a0;
  color: #8a6d1d; font-weight: 700; font-size: .9rem;
}
.checkout-steps {
  list-style: none; display: flex; flex-wrap: wrap; gap: .45rem; padding: 0; margin: 0 0 1.35rem;
}
.checkout-steps li {
  display: inline-flex; align-items: center; gap: .4rem; padding: .35rem .65rem;
  border-radius: 999px; background: #f1f5f9; color: #64748b; font-size: .82rem; font-weight: 700;
}
.checkout-steps li .num {
  width: 1.4rem; height: 1.4rem; border-radius: 50%; display: grid; place-items: center;
  background: #cbd5e1; color: #fff; font-size: .75rem;
}
.checkout-steps li.is-active { background: rgba(0,180,166,.14); color: var(--teal-dark); }
.checkout-steps li.is-active .num { background: var(--teal); }
.checkout-steps li.is-done { color: #475569; }
.checkout-steps li.is-done .num { background: #64748b; }
.co-step[hidden] { display: none !important; }
.co-nav { display: flex; justify-content: space-between; gap: .75rem; margin-top: 1.4rem; align-items: center; }
.form-grid .span-2 { grid-column: 1 / -1; }
.save-address-opt {
  display: flex; align-items: flex-start; gap: .55rem; margin-top: 1rem;
  padding: .75rem .9rem; border-radius: 10px; background: #f7fafc; border: 1px solid var(--line);
  cursor: pointer; font-weight: 600; color: var(--ink);
}
.save-address-opt input { width: auto; margin: .15rem 0 0; }
@media (max-width: 960px) {
  .cart-table-head { display: none; }
  .cart-row {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "main price"
      "period period"
      "domain domain";
    gap: .55rem .85rem;
    padding: 1rem 1rem 1.05rem;
    align-items: start;
  }
  .cart-item-main {
    grid-area: main;
    min-width: 0;
  }
  .cart-name {
    font-size: 1rem;
    line-height: 1.25;
    display: block;
  }
  .cart-period {
    grid-area: period;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    gap: .45rem;
  }
  /* Netto sits under the pill on desktop; on mobile the price cell is enough */
  .cart-period small.muted { display: none; }
  .cart-price-cell {
    grid-area: price;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    gap: .4rem;
    width: auto;
    min-height: 0;
  }
  .cart-price {
    align-items: flex-end;
    text-align: right;
    white-space: normal;
  }
  .cart-price strong { font-size: 1.08rem; }
  .cart-price-cell .icon-btn {
    order: -1;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #f5f7fa;
    border: 1px solid #e5eaf0;
  }
  .cart-domain-span {
    grid-area: domain;
    margin-top: .25rem;
  }
  .cart-domain-switch {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    padding: .7rem .8rem;
    border-radius: 12px;
    background: #f7fafb;
  }
  .cart-domain-switch .switch-text {
    font-size: .88rem;
    line-height: 1.3;
  }
  .cart-domain-body {
    margin-top: .55rem;
    padding: .8rem .85rem;
  }
  .cart-foot-actions {
    flex-direction: column;
    gap: .5rem;
    padding: .9rem 1rem 1.05rem;
  }
  .cart-foot-btn {
    width: 100%;
    min-height: 44px;
    padding: .7rem 1rem !important;
    font-size: .9rem !important;
    border-radius: 12px !important;
  }
  .cart-summary.premium-card {
    position: static;
    padding: 1.1rem 1rem 1.2rem;
  }
  .cart-summary h3 {
    font-size: 1.15rem;
    margin-bottom: .85rem;
  }
  .cart-coupon-form > div {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: .45rem !important;
  }
  .cart-coupon-form input[type="text"] {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    width: auto !important;
  }
  .cart-continue-btn {
    margin-top: .85rem;
    border-radius: 12px !important;
  }
}

@media (max-width: 560px) {
  .cart-section .container.cart-wrap {
    width: min(1140px, calc(100% - 1.1rem));
  }
  .cart-items.premium-card,
  .cart-summary.premium-card {
    border-radius: 16px;
  }
  .cart-row {
    padding: .95rem .9rem 1rem;
  }
}

/* cart icons + password rules + help next */
.cart-type-ico { color: var(--teal); margin-right: .4rem; }
.form-grid-account .span-2 { grid-column: 1 / -1; }
.password-rules-box {
  background: #f7fafc; border: 1px solid var(--line); border-radius: 10px; padding: .75rem 1rem;
}
.password-rules-box strong { display:block; margin-bottom: .45rem; color: var(--ink); }
.password-rules {
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: .88rem;
}
.password-rules li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  margin: .35rem 0;
  font-weight: 600;
  transition: color .15s;
}
.password-rules .rule-ico {
  flex: 0 0 auto;
  margin-top: .12rem;
  width: 1rem;
  text-align: center;
  color: #94a3b8;
  transition: color .15s;
}
.password-rules li.is-met {
  color: #1e8e4a;
}
.password-rules li.is-met .rule-ico {
  color: #1e8e4a;
}
.help-article.premium-card { padding: 1.5rem 1.6rem 2rem; margin: 1.5rem auto; max-width: 820px; }
.help-answer-rich { font-size: 1.02rem; line-height: 1.7; color: var(--ink); }
.help-next-steps { margin-top: 2rem; padding-top: 1.25rem; border-top: 1px solid var(--line); }
.help-next-steps h2 { margin: 0 0 .35rem; font-size: 1.15rem; }
.help-next-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: .75rem; margin-top: 1rem;
}
@media (max-width:700px){ .help-next-grid { grid-template-columns: 1fr; } }
.help-next-card {
  display: flex; flex-direction: column; gap: .25rem; text-align: left;
  padding: 1rem 1.1rem; border-radius: 12px; border: 1px solid var(--line);
  background: #fff; color: var(--ink); text-decoration: none; cursor: pointer; font: inherit;
}
.help-next-card:hover { border-color: rgba(0,180,166,.45); background: #f7fffe; }
.help-next-card i { color: var(--teal); font-size: 1.15rem; margin-bottom: .2rem; }
.help-next-card strong { font-size: .95rem; }
.help-next-card span { font-size: .82rem; color: var(--muted); }
.help-widget-panel header { gap: .5rem; }
.help-online-dot {
  width: .55rem; height: .55rem; border-radius: 50%; background: #27ae60;
  box-shadow: 0 0 0 3px rgba(39,174,96,.25); margin-right: auto;
}
.help-widget[data-online="0"] .help-online-dot { background: #95a5a6; box-shadow: none; }
.help-escalate {
  padding: .65rem .85rem; border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.15); color: rgba(255,255,255,.9); font-size: .82rem;
}
.help-escalate p { margin: 0; }
.help-escalate-btns { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .45rem; }
.help-escalate-btns .btn { font-size: .75rem; }
/* Outline buttons on dark widget must stay readable */
.help-escalate-btns .btn-outline {
  border: 1px solid rgba(255,255,255,.55) !important;
  color: #fff !important;
  background: rgba(255,255,255,.08) !important;
}
.help-escalate-btns .btn-outline:hover {
  border-color: #7de8de !important;
  color: #fff !important;
  background: rgba(0,180,166,.22) !important;
}
.help-widget.is-live .help-online-dot {
  background: #27ae60;
  box-shadow: 0 0 0 3px rgba(39,174,96,.35);
}

/* Recommend wizard premium split */
.help-recommend-section { background: #eef2f6; padding-top: 2rem; }
.help-recommend-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 1.25rem;
  align-items: stretch;
}
@media (max-width: 900px) {
  .help-recommend-layout { grid-template-columns: 1fr; }
}
.help-recommend-form-card, .help-recommend-result-card {
  padding: 1.5rem 1.6rem 1.7rem;
}
.help-rec-kicker {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .78rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  color: var(--teal-dark); margin-bottom: .55rem;
}
.help-recommend-form-card h2 { margin: 0 0 .35rem; font-family: var(--display); }
.help-recommend-form { max-width: none; margin-top: 1.1rem; }
.help-recommend-result-card {
  background: linear-gradient(165deg, #f4fffd 0%, #ffffff 45%, #f7fafc 100%);
  border: 1px solid rgba(0,180,166,.28);
  display: flex; flex-direction: column; justify-content: center;
  min-height: 320px;
}
.help-recommend-result-card.is-empty {
  background: #fff;
  border-style: dashed;
  border-color: #d5dee8;
}
.help-rec-badge {
  align-self: flex-start; margin-bottom: .75rem;
  padding: .28rem .65rem; border-radius: 999px; font-size: .72rem; font-weight: 800;
  background: rgba(0,180,166,.14); color: var(--teal-dark);
}
.help-rec-icon {
  width: 3.2rem; height: 3.2rem; border-radius: 14px; display: grid; place-items: center;
  background: rgba(0,180,166,.12); color: var(--teal); font-size: 1.35rem; margin-bottom: .85rem;
}
.help-recommend-result-card h2 { margin: 0 0 .55rem; font-family: var(--display); color: var(--ink); }
.help-recommend-result-card p { color: var(--muted); line-height: 1.55; margin: 0 0 1rem; }
.help-rec-points { list-style: none; padding: 0; margin: 0 0 1.2rem; }
.help-rec-points li { display: flex; gap: .5rem; align-items: flex-start; margin: .35rem 0; color: var(--ink); font-size: .92rem; }
.help-rec-points i { color: var(--teal); margin-top: .2rem; }
.help-recommend-result-card .btn { margin-top: .35rem; width: 100%; text-align: center; }
.help-rec-placeholder {
  text-align: center; display: flex; flex-direction: column; align-items: center; gap: .55rem; padding: 1rem;
}
.help-rec-placeholder i { font-size: 2rem; color: var(--teal); opacity: .7; }

/* ===== Help Center TrustFair-style (EG colors) ===== */
.hc-section { background: #f3f6fa; padding: 2.25rem 0 3.5rem; }
.hc-wrap { max-width: 1080px; }
.hc-hero {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 1.5rem; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 1.75rem 1.85rem; box-shadow: 0 14px 36px rgba(15,23,42,.05);
  margin-bottom: 1rem;
}
@media (max-width: 860px) { .hc-hero { grid-template-columns: 1fr; } }
.hc-pill {
  display: inline-flex; padding: .28rem .7rem; border-radius: 999px; font-size: .72rem; font-weight: 800;
  letter-spacing: .04em; text-transform: uppercase;
  background: rgba(0,180,166,.14); color: var(--teal-dark); margin-bottom: .65rem;
}
.hc-hero-copy h1 { margin: 0 0 .45rem; font-family: var(--display); font-size: clamp(1.7rem, 3vw, 2.15rem); color: var(--ink); }
.hc-hero-copy p { margin: 0; color: var(--muted); line-height: 1.55; max-width: 36rem; }
.hc-search {
  display: flex; align-items: center; gap: .65rem;
  background: #f4f7fb; border: 1px solid #e2e8f0; border-radius: 999px;
  padding: .85rem 1.1rem; width: 100%;
}
.hc-search:focus-within { border-color: rgba(0,180,166,.55); box-shadow: 0 0 0 3px rgba(0,180,166,.12); background: #fff; }
.hc-search i { color: #94a3b8; }
.hc-search input {
  border: 0 !important; background: transparent !important; margin: 0 !important; padding: 0 !important;
  width: 100%; font: inherit; color: var(--ink); outline: none; box-shadow: none !important;
}
.hc-search-wide { margin: .75rem 0 1.1rem; }
.hc-quick { display: flex; flex-wrap: wrap; gap: .5rem; margin: 0 0 1.5rem; }
.hc-quick a {
  display: inline-flex; align-items: center; gap: .4rem; padding: .45rem .8rem; border-radius: 999px;
  background: #fff; border: 1px solid var(--line); color: var(--ink); font-size: .86rem; font-weight: 700;
  text-decoration: none;
}
.hc-quick a:hover { border-color: rgba(0,180,166,.45); color: var(--teal-dark); }
.hc-quick a i { color: var(--teal); }

.hc-cat-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: .9rem; margin-bottom: 2.25rem;
}
@media (max-width: 960px) { .hc-cat-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 620px) { .hc-cat-grid { grid-template-columns: 1fr; } }
.hc-cat-card {
  display: flex; flex-direction: column; gap: .45rem; text-decoration: none; color: inherit;
  background: #eef2f7; border-radius: 16px; padding: 1.15rem 1.2rem 1.1rem;
  border: 1px solid transparent; min-height: 168px; transition: background .15s, border-color .15s, transform .15s;
}
.hc-cat-card:hover { background: #fff; border-color: rgba(0,180,166,.35); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(15,23,42,.06); }
.hc-cat-ico {
  width: 2.4rem; height: 2.4rem; border-radius: 10px; display: grid; place-items: center;
  background: #fff; color: var(--teal); font-size: 1rem; border: 1px solid rgba(0,180,166,.2);
}
.hc-cat-card strong { color: var(--ink); font-size: 1.02rem; }
.hc-cat-desc { color: var(--muted); font-size: .88rem; line-height: 1.45; flex: 1; }
.hc-cat-link { color: var(--teal-dark); font-weight: 800; font-size: .88rem; margin-top: .25rem; }
.hc-cat-link em { font-style: normal; color: var(--muted); font-weight: 600; margin-left: .25rem; }

.hc-popular h2 { margin: 0 0 0.85rem; font-family: var(--display); color: var(--ink); font-size: 1.35rem; }
.hc-article-list { background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.hc-article-row {
  display: grid; grid-template-columns: 1fr auto auto; gap: .85rem; align-items: center;
  padding: .95rem 1.15rem; text-decoration: none; color: var(--ink);
  border-bottom: 1px solid #eef2f6; transition: background .12s;
}
.hc-article-row:last-child { border-bottom: 0; }
.hc-article-row:hover { background: #f4f7fb; }
.hc-article-title { font-weight: 650; font-size: .98rem; }
.hc-article-meta {
  font-size: .72rem; font-weight: 700; color: #94a3b8; background: #f1f5f9;
  padding: .2rem .45rem; border-radius: 6px; white-space: nowrap;
}
.hc-article-row > i { color: #cbd5e1; font-size: .85rem; }
.hc-article-list-lg { margin-bottom: 1.5rem; }

.hc-breadcrumb { display: flex; flex-wrap: wrap; gap: .4rem; align-items: center; margin-bottom: .85rem; font-size: .88rem; color: var(--muted); }
.hc-breadcrumb a { color: var(--teal-dark); font-weight: 700; text-decoration: none; }
.hc-cat-banner {
  background: #fff; border-radius: 16px; padding: 1.35rem 1.5rem 1.25rem; margin-bottom: 1rem;
  border: 1px solid var(--line); border-bottom: 3px solid var(--teal);
  box-shadow: 0 10px 28px rgba(15,23,42,.04);
}
.hc-cat-banner h1 { margin: 0 0 .35rem; font-family: var(--display); color: var(--ink); font-size: 1.65rem; }
.hc-cat-banner p { margin: 0; color: var(--muted); }

.hc-support-cta {
  display: flex; justify-content: space-between; align-items: center; gap: 1.25rem; flex-wrap: wrap;
  background: #e8eef5; border-radius: 16px; padding: 1.35rem 1.5rem; margin-top: 1.75rem;
}
.hc-support-cta h2 { margin: 0 0 .3rem; font-size: 1.15rem; color: var(--ink); font-family: var(--display); }
.hc-support-cta p { margin: 0; color: var(--muted); font-size: .92rem; }
.hc-support-actions { display: flex; flex-wrap: wrap; gap: .55rem; }
.hc-btn-primary {
  background: #14304f; color: #fff !important; border: 1px solid #14304f; border-radius: 10px;
  padding: .7rem 1rem; font-weight: 800;
}
.hc-btn-primary:hover { background: #0f243b; color: #fff !important; }
.hc-btn-secondary {
  background: #fff; color: var(--ink) !important; border: 1px solid #c9d4e0; border-radius: 10px;
  padding: .7rem 1rem; font-weight: 800;
}
.hc-btn-secondary:hover { border-color: var(--teal); color: var(--teal-dark) !important; }

/* Public help ticket form */
.hc-ticket-hero {
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 1.25rem;
  align-items: start;
  margin-bottom: 1.25rem;
}
@media (max-width: 820px) {
  .hc-ticket-hero { grid-template-columns: 1fr; }
}
.hc-ticket-hero-copy h1 {
  margin: .35rem 0 .5rem;
  font-family: var(--display);
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  color: var(--ink);
}
.hc-ticket-hero-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  max-width: 38rem;
}
.hc-ticket-hero-side {
  display: grid;
  gap: .55rem;
}
.hc-ticket-side-link {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .75rem .9rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(15, 23, 42, .04);
}
.hc-ticket-side-link i { color: var(--teal-dark); width: 1.1rem; text-align: center; }
.hc-ticket-side-link:hover { border-color: rgba(0, 180, 166, .45); color: var(--teal-dark); }
.hc-ticket-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.35rem 1.45rem 1.25rem;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .05);
  border-bottom: 3px solid var(--teal);
}
.hc-ticket-form { margin: 0; max-width: none; }
.hc-ticket-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.1rem;
}
@media (max-width: 700px) {
  .hc-ticket-grid { grid-template-columns: 1fr; }
}
.hc-field { display: grid; gap: .35rem; }
.hc-field-span { grid-column: 1 / -1; }
.hc-field label {
  font-weight: 700;
  color: var(--ink);
  font-size: .9rem;
}
.hc-field .req { color: #b91c1c; }
.hc-field .opt { color: var(--muted); font-weight: 500; font-size: .8rem; }
.hc-ticket-form input,
.hc-ticket-form select,
.hc-ticket-form textarea {
  width: 100%;
  padding: .72rem .85rem;
  border-radius: 10px;
  border: 1px solid #c9d4e0;
  background: #fbfcfe;
  color: var(--ink);
  font: inherit;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.hc-ticket-form input:focus,
.hc-ticket-form select:focus,
.hc-ticket-form textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 180, 166, .15);
}
.hc-ticket-form textarea { min-height: 160px; resize: vertical; line-height: 1.5; }
.hc-ticket-actions {
  margin-top: 1.15rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .85rem 1.25rem;
}
.hc-ticket-note { margin: 0; font-size: .82rem; max-width: 28rem; }

.hc-article-card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 1.6rem 1.7rem 1.5rem; box-shadow: 0 12px 30px rgba(15,23,42,.04);
}
.hc-article-card h1 { margin: 0 0 1rem; font-family: var(--display); color: var(--ink); font-size: clamp(1.4rem, 2.5vw, 1.85rem); }

.srv-price { display:flex; flex-direction:column; align-items:flex-end; gap:.15rem; }
.srv-price .srv-period { color: var(--muted); font-size: .78rem; font-weight: 700; }
.tld-chip .tld-period { margin-left: .2rem; color: var(--muted); font-size: .75rem; font-weight: 700; }

/* Phone dial-code + number */
.eg-phone { width: 100%; }
.eg-phone-row {
  display: grid;
  grid-template-columns: calc(4.5rem + 3px) 1fr;
  gap: .45rem;
  align-items: stretch;
}
.eg-phone-dial,
.eg-phone-national {
  width: 100%;
  min-height: 2.55rem;
  border: 1px solid var(--line, #dbe3ee);
  border-radius: 10px;
  background: #fff;
  color: var(--ink, #0f172a);
  font: inherit;
  font-size: .92rem;
  padding: .55rem .7rem;
}
.eg-phone-dial {
  padding: .45rem .15rem .45rem .35rem;
  font-weight: 700;
  font-size: .85rem;
  cursor: pointer;
  appearance: auto;
  text-overflow: clip;
}
.eg-phone-national:focus,
.eg-phone-dial:focus {
  outline: 2px solid rgba(0, 180, 166, .35);
  border-color: var(--teal, #00b4a6);
}
@media (max-width: 520px) {
  .eg-phone-row { grid-template-columns: calc(4.5rem + 3px) 1fr; }
}
.tld-chip { display:inline-flex; align-items:baseline; flex-wrap:wrap; gap:.15rem .25rem; }

/* ===== MOBILE HEADER + HAMBURGER DRAWER ===== */
.header-actions {
  display: none;
  align-items: center;
  gap: .4rem;
  margin-left: auto;
  flex-shrink: 0;
  position: relative;
  z-index: 60;
}
.header-action-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  text-decoration: none;
  font-size: 1rem;
}
.header-action-btn:hover {
  background: rgba(255,255,255,.14);
  color: #fff;
}
.header-action-btn .cart-badge {
  position: absolute;
  top: .15rem;
  right: .1rem;
  min-width: 1.05rem;
  height: 1.05rem;
  padding: 0 .25rem;
  font-size: .65rem;
  line-height: 1.05rem;
  border-radius: 999px;
  background: var(--teal, #12b89a);
  color: #041018;
  font-weight: 800;
  text-align: center;
}
.header-mobile-only { display: none !important; }
.site-header .header-inner {
  flex-wrap: nowrap;
  align-items: center;
}
.site-header .mega-nav {
  flex: 1 1 auto;
  flex-wrap: nowrap;
  justify-content: flex-end;
  min-width: 0;
}
.site-header .mega-item > a {
  white-space: nowrap;
}
.site-header--dark .header-account {
  flex-shrink: 0;
}
.site-header--dark .header-account-btn {
  color: #fff;
  padding: .2rem;
  border-radius: 10px;
}
.fe-nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: .55rem .5rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.08);
  cursor: pointer;
  color: #fff;
}
.fe-nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.fe-nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.fe-nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.fe-nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.fe-mobile-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(4, 12, 24, .55);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  display: block !important; /* keep for slide/fade even when [hidden] */
}
.fe-mobile-backdrop[hidden]:not(.is-open) {
  visibility: hidden;
}
.fe-mobile-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.fe-mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 95;
  width: min(22rem, 92vw);
  height: 100%;
  height: 100dvh;
  background: linear-gradient(180deg, #0b1c33 0%, #0a1628 100%);
  color: #fff;
  box-shadow: -12px 0 40px rgba(0,0,0,.35);
  transform: translateX(100%);
  transition: transform .28s cubic-bezier(.22,.9,.25,1), visibility .28s;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 0 2rem;
  display: block !important;
  visibility: hidden;
  pointer-events: none;
}
.fe-mobile-drawer:not(.is-open) {
  /* Keep off-screen drawer from widening the page (gray right strip) */
  max-width: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  box-shadow: none;
}
.fe-mobile-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
  max-width: min(22rem, 92vw);
  padding: 0 0 2rem;
  box-shadow: -12px 0 40px rgba(0,0,0,.35);
}
.fe-mobile-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  position: sticky;
  top: 0;
  background: #0b1c33;
  z-index: 1;
}
.fe-mobile-drawer-head strong {
  font-size: 1rem;
  letter-spacing: .02em;
}
.fe-mobile-close {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.08);
  color: #fff;
  cursor: pointer;
  font-size: 1.1rem;
}
.fe-mobile-nav {
  display: flex;
  flex-direction: column;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.fe-mobile-nav a {
  display: block;
  padding: .85rem 1.15rem;
  color: rgba(255,255,255,.92);
  font-weight: 650;
  font-size: 1.02rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.fe-mobile-nav a:hover,
.fe-mobile-nav a:focus {
  background: rgba(18,184,154,.12);
  color: #fff;
}
.fe-mobile-section {
  padding: 1rem 1.15rem .35rem;
}
.fe-mobile-label {
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: .55rem;
}
.fe-mobile-section > a {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .65rem 0;
  color: rgba(255,255,255,.88);
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.fe-mobile-section > a i {
  width: 1.15rem;
  text-align: center;
  opacity: .75;
  color: var(--teal, #12b89a);
}
.fe-mobile-section > a:hover {
  color: #fff;
}
.fe-mobile-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.fe-mobile-chips .lang-switch {
  color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  border-radius: 8px;
  padding: .4rem .7rem;
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
}
.fe-mobile-chips .lang-switch.is-active {
  color: #041018;
  background: var(--teal, #12b89a);
  border-color: transparent;
}
body.fe-nav-open {
  overflow: hidden;
}

@media (max-width: 960px) {
  .frontend .topbar {
    display: none;
  }
  .header-actions {
    display: inline-flex;
  }
  .header-mobile-only {
    display: inline-flex !important;
  }
  .site-header--dark .logo-lg img {
    height: 48px;
    max-width: min(200px, 48vw);
  }
  .site-header .header-inner,
  .site-header .container.header-inner {
    padding: .55rem 0;
    gap: .6rem;
    max-width: 100%;
    width: min(1140px, calc(100% - 2rem));
    box-sizing: border-box;
  }
  .header-brand {
    align-items: center;
    width: max-content;
    max-width: calc(100% - 7.5rem);
  }
  .eg-announce-btn--under-logo {
    max-width: 100%;
    align-self: center;
  }
  /* Clip sideways bleed from fixed off-canvas UI without killing iOS bounce */
  html {
    overflow-x: clip;
  }
  body.frontend {
    overflow-x: clip;
    max-width: 100%;
  }
  body.home-hero-fullscreen .home-hero-stage.is-fullscreen,
  .home-hero-stage.is-fullscreen {
    --home-chrome: 5.5rem;
  }
  body.home-hero-fullscreen {
    --home-topbar-h: 0px;
  }
  body.home-hero-fullscreen.home-domain-scroll-in.home-domain-flow .home-hero-stage.is-fullscreen .hero,
  body.home-hero-fullscreen.home-domain-scroll-in.home-domain-flow .hero,
  body.home-hero-fullscreen.home-domain-scroll-in .home-hero-stage.is-fullscreen .hero,
  body.home-hero-fullscreen.home-domain-scroll-in .hero {
    padding-top: 5.5rem;
  }
}
@media (min-width: 961px) {
  .header-actions,
  .fe-mobile-backdrop,
  .fe-mobile-drawer {
    display: none !important;
  }
  .site-header--dark .logo-lg img {
    height: 64px;
    max-width: 300px;
  }
  .site-header .mega-item > a {
    padding: .5rem .65rem;
    font-size: .92rem;
  }
}

/* --------------------------------------------------------------------------
 * Homepage section steps (optional – body.home-section-steps only)
 * Off by default; existing layout unchanged when class absent.
 * -------------------------------------------------------------------------- */
body:not(.home-section-steps) .home-step-cue,
body:not(.home-section-steps) .home-step-only {
  display: none !important;
}
body:not(.home-section-steps) .home-step-panel {
  display: contents;
}

body.home-section-steps {
  scroll-behavior: smooth;
}
html:has(body.home-section-steps) {
  scroll-snap-type: y proximity;
}
html:has(body.home-section-steps.home-steps-past) {
  scroll-snap-type: none;
}
body.home-section-steps [data-home-step] {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  box-sizing: border-box;
  padding-bottom: 4.75rem;
}
body.home-section-steps .home-hero-stage {
  display: contents;
}
body.home-section-steps .home-hero-stage .hero[data-home-step],
body.home-section-steps .hero[data-home-step="hero"] {
  min-height: 100svh !important;
  min-height: 100dvh !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 5.5rem !important;
}

/* —— Domain step: full-bleed dark premium stage —— */
body.home-section-steps .domain-box[data-home-step] {
  position: relative !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  top: auto !important;
  transform: none !important;
  margin: 0 !important;
  width: 100% !important;
  max-width: none !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 5;
  opacity: 1 !important;
  pointer-events: auto !important;
  scroll-margin-top: 0;
  padding: 5.5rem 1.25rem 5rem;
  background:
    radial-gradient(ellipse 80% 60% at 50% 20%, rgba(0, 180, 166, .14), transparent 55%),
    linear-gradient(160deg, #07111f 0%, #0c1c33 42%, #0a2430 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
body.home-section-steps.home-domain-scroll-in .domain-box[data-home-step]:not(.is-in) {
  opacity: 0 !important;
  pointer-events: none !important;
}
body.home-section-steps.home-domain-scroll-in .domain-box[data-home-step].is-in {
  opacity: 1 !important;
  pointer-events: auto !important;
}
body.home-section-steps .domain-box .home-step-domain-card,
body.home-section-steps .domain-box .domain-card.dark-domain {
  width: min(1080px, 100%);
  margin: 0 auto;
  padding: 1.85rem 1.75rem 1.5rem;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(145deg, rgba(18, 38, 64, .95) 0%, rgba(14, 48, 58, .92) 100%);
  box-shadow:
    0 28px 64px rgba(0, 0, 0, .45),
    0 0 0 1px rgba(0, 180, 166, .12),
    inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
}
body.home-section-steps .domain-box .domain-card h2 {
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  letter-spacing: -.02em;
}
body.home-section-steps .domain-box .tld-mini-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .65rem;
  width: min(1080px, 100%);
  margin: 1.15rem auto 0;
}
body.home-section-steps .tld-mini-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .15rem;
  margin: 0;
  padding: .85rem .9rem .75rem;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: transform .35s cubic-bezier(.22,1,.36,1), background .35s ease, border-color .35s ease, box-shadow .35s ease;
  box-shadow: 0 8px 22px rgba(0,0,0,.18);
}
body.home-section-steps .tld-mini-card:hover {
  transform: translateY(-3px);
  background: rgba(0, 180, 166, .16);
  border-color: rgba(126, 240, 214, .4);
  box-shadow: 0 14px 28px rgba(0,0,0,.28);
}
body.home-section-steps .tld-mini-card.is-offer {
  border-color: rgba(230,126,34,.5);
  background: rgba(230,126,34,.12);
}
body.home-section-steps .tld-mini-ext {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -.02em;
  font-family: var(--display);
}
body.home-section-steps .tld-mini-list {
  font-size: .72rem;
  text-decoration: line-through;
  color: rgba(255,255,255,.45);
}
body.home-section-steps .tld-mini-price {
  font-size: .92rem;
  font-weight: 700;
  color: #7ef0d6;
}
body.home-section-steps .tld-mini-period {
  font-size: .68rem;
  color: rgba(255,255,255,.55);
}
body.home-section-steps .tld-mini-badge {
  position: absolute;
  top: .45rem;
  right: .45rem;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
  background: #e67e22;
  border-radius: 999px;
  padding: .15rem .4rem;
}

/* —— Hosting / Business / WP / Software —— */
body.home-section-steps .section[data-home-step="hosting"],
body.home-section-steps .section[data-home-step="business"],
body.home-section-steps .section[data-home-step="wordpress"],
body.home-section-steps .section[data-home-step="software"] {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 5rem;
  padding-bottom: 4.75rem;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(0, 180, 166, .12), transparent 55%),
    linear-gradient(165deg, #07111f 0%, #101d32 55%, #0d2430 100%);
}
body.home-section-steps .section[data-home-step] > .container {
  padding-top: 0;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}
body.home-section-steps .section[data-home-step="hosting"] h2,
body.home-section-steps .section[data-home-step="business"] h2,
body.home-section-steps .section[data-home-step="wordpress"] h2,
body.home-section-steps .section[data-home-step="software"] h2 {
  color: #fff;
  margin-bottom: .25rem;
  font-size: clamp(1.55rem, 2.6vw, 2rem);
}
body.home-section-steps .section[data-home-step="hosting"] > .container > .lead,
body.home-section-steps .section[data-home-step="business"] > .container > .lead,
body.home-section-steps .section[data-home-step="wordpress"] > .container > .lead,
body.home-section-steps .section[data-home-step="software"] > .container > .lead {
  color: rgba(255,255,255,.7);
  margin-bottom: 1.25rem;
}
body.home-section-steps .section[data-home-step] .pricing-grid.premium-cards {
  gap: 1.1rem;
  align-items: stretch;
}
body.home-section-steps .section[data-home-step] .price-card {
  display: flex;
  flex-direction: column;
  min-height: 420px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .28);
  padding: 1.45rem 1.3rem 1.3rem;
  border-radius: 18px;
}
body.home-section-steps .section[data-home-step] .price-card.featured {
  box-shadow: 0 20px 48px rgba(0, 180, 166, .28);
}
body.home-section-steps .section[data-home-step] .price-card .price {
  font-size: 1.7rem;
  margin: .35rem 0 .7rem;
}
body.home-section-steps .section[data-home-step] .price-card ul {
  margin-bottom: 1rem;
  flex: 1;
}
body.home-section-steps .section[data-home-step] .price-card li {
  padding: .32rem 0;
  font-size: .9rem;
  border-bottom-color: rgba(15,35,60,.06);
}
body.home-section-steps .section[data-home-step] .price-card .btn {
  margin-top: auto;
}
/* Keep id anchors when headings are step-hidden */
body.home-section-steps #server .home-step-hide[id],
body.home-section-steps #server .home-step-hide h3[id] {
  /* ids remain in DOM for deep-links */
}

body.home-section-steps .section[data-home-step] .catalog-tip-banner {
  display: none !important;
}
body.home-section-steps .section[data-home-step] .section-more,
body.home-section-steps #server .section-more {
  display: flex !important;
  justify-content: center;
  margin-top: 1.25rem;
}
body.home-section-steps .section[data-home-step] .section-more .btn,
body.home-section-steps #server .section-more .btn {
  color: #fff;
  border-color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.08);
}
body.home-section-steps .section[data-home-step] .section-more .btn:hover,
body.home-section-steps #server .section-more .btn:hover {
  background: rgba(0, 180, 166, .28);
  border-color: rgba(126, 240, 214, .45);
  color: #fff;
}

/* —— Managed / Dedicated / Cloud: separate full-width steps —— */
body.home-section-steps #server.section {
  padding: 0;
  background: transparent;
  overflow: visible;
}
body.home-section-steps #server > .container {
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}
body.home-section-steps #server .home-server-intro {
  display: none;
}
body.home-section-steps #server .home-step-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 5rem 1.25rem 5.5rem;
  box-sizing: border-box;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(0, 180, 166, .1), transparent 55%),
    linear-gradient(165deg, #07111f 0%, #101d32 50%, #0d2430 100%);
}
body.home-section-steps #server .home-step-panel[data-home-step="dedicated"] {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(26, 47, 74, .35), transparent 55%),
    linear-gradient(165deg, #07111f 0%, #101d32 50%, #0d2430 100%);
}
body.home-section-steps #server .home-step-panel[data-home-step="cloud"] {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(59, 130, 246, .12), transparent 55%),
    linear-gradient(165deg, #07111f 0%, #101d32 50%, #0d2430 100%);
}
body.home-section-steps #server .home-step-hide {
  display: none !important;
}
body.home-section-steps .home-step-only {
  display: block;
  margin-bottom: 1.35rem;
}
body.home-section-steps #server .home-step-heading {
  text-align: center;
  width: min(1120px, 100%);
}
body.home-section-steps #server .home-step-heading h2 {
  text-align: center;
  color: #fff;
  margin-bottom: .45rem;
  font-size: clamp(1.55rem, 2.6vw, 2rem);
}
body.home-section-steps #server .home-step-heading .lead {
  text-align: center;
  color: rgba(255,255,255,.78);
  margin: 0 auto 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  flex-wrap: wrap;
  max-width: 36rem;
  line-height: 1.45;
}
body.home-section-steps #server .home-step-heading .lead i {
  color: #7ef0d6;
  font-size: 1.05rem;
  opacity: .95;
}
body.home-section-steps #server .server-block {
  width: min(1120px, 100%);
  margin: 0 auto;
  text-align: left;
  color: #0b1c33;
}
body.home-section-steps #server .table-wrap,
body.home-section-steps #server .premium-table {
  background: #fff !important;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .28);
  overflow: hidden;
  color: #0b1c33 !important;
}
body.home-section-steps #server .server-table,
body.home-section-steps #server .server-table td,
body.home-section-steps #server .server-table th,
body.home-section-steps #server .srv-name,
body.home-section-steps #server .srv-name strong,
body.home-section-steps #server .srv-price,
body.home-section-steps #server .srv-price strong {
  color: #0b1c33 !important;
}
body.home-section-steps #server .server-table th {
  background: #f1f5f9 !important;
  color: #6b7c8f !important;
}
body.home-section-steps #server .server-table th.th-price {
  /* „ab“ sitzt in der Zelle unter dem Preis – Header leer halten */
  font-size: 0;
  line-height: 0;
  color: transparent !important;
}
body.home-section-steps #server .srv-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: .12rem;
  white-space: nowrap;
  text-align: right;
  min-width: 7.5rem;
}
body.home-section-steps #server .srv-from {
  display: block;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #6b7c8f !important;
  line-height: 1;
}
body.home-section-steps #server .srv-price strong {
  font-size: 1.05rem;
  line-height: 1.15;
}
body.home-section-steps #server .srv-specs-cell {
  width: 44%;
  vertical-align: middle;
}
body.home-section-steps #server .srv-specs {
  gap: .35rem .45rem;
}
body.home-section-steps #server .srv-spec {
  background: #eef6f4;
  border-color: rgba(0, 180, 166, .15);
  color: #0f2a3a;
  font-size: .76rem;
  padding: .3rem .6rem;
}
body.home-section-steps #server .server-table th.th-specs {
  color: #6b7c8f !important;
  font-size: .72rem;
}
body.home-section-steps [data-home-step="why"] > .container > .lead.why-lead-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  white-space: nowrap;
  max-width: none;
  width: 100%;
  margin: 0 auto 1.15rem;
  font-size: .92rem;
  line-height: 1.35;
}
body.home-section-steps [data-home-step="why"] > .container > .lead.why-lead-line i {
  color: #0a7d6e;
  font-size: 1rem;
}
@media (max-width: 1100px) {
  body.home-section-steps [data-home-step="why"] > .container > .lead.why-lead-line {
    white-space: normal;
  }
}
body.home-section-steps #server .home-step-panel[data-home-step="cloud"] .cloud-grid {
  max-width: none;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
body.home-section-steps #server .home-step-panel[data-home-step="cloud"] .price-card {
  text-align: left;
  min-height: 0;
  background: linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
  color: var(--ink);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .28);
}

/* Warum-Schritt: exakt ein Viewport, etwas großzügiger */
body.home-section-steps [data-home-step="why"] {
  --why-chrome: var(--home-steps-chrome, 5.75rem);
  height: 100svh;
  height: 100dvh;
  min-height: 100svh;
  min-height: 100dvh;
  max-height: 100svh;
  max-height: 100dvh;
  margin: 0;
  padding: 0 !important;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  scroll-margin-top: 0;
}
body.home-section-steps [data-home-step="why"] > .container {
  flex: 1 1 auto;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: calc(var(--why-chrome) + .5rem) 0 1.1rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  max-height: 100%;
}
body.home-section-steps [data-home-step="why"] .why-eyebrow {
  margin: 0 0 .35rem;
  font-size: .72rem;
  letter-spacing: .16em;
}
body.home-section-steps [data-home-step="why"] h2 {
  margin: 0 0 .4rem;
  font-size: clamp(1.65rem, 2.8vw, 2.15rem);
  line-height: 1.15;
}
body.home-section-steps [data-home-step="why"] > .container > .lead {
  margin: 0 auto 1.15rem;
  font-size: .98rem;
  line-height: 1.45;
  max-width: 44rem;
}
body.home-section-steps [data-home-step="why"] .why-grid {
  gap: .9rem;
  flex: 0 1 auto;
  min-height: 0;
}
body.home-section-steps [data-home-step="why"] .why-item {
  padding: 1.05rem 1.1rem .95rem;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(11, 28, 51, .07);
  text-align: center;
}
body.home-section-steps [data-home-step="why"] .why-item:hover {
  transform: translateY(-3px);
}
body.home-section-steps [data-home-step="why"] .why-item .ico {
  width: 2.55rem;
  height: 2.55rem;
  margin: 0 auto .65rem;
  border-radius: 12px;
  font-size: 1.1rem;
}
body.home-section-steps [data-home-step="why"] .why-item h3 {
  margin: 0 0 .35rem;
  font-size: 1.05rem;
  color: var(--ink);
}
body.home-section-steps [data-home-step="why"] .why-item p {
  margin: 0;
  font-size: .86rem;
  line-height: 1.4;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
body.home-section-steps [data-home-step="why"] .why-cta {
  margin-top: 1.15rem;
  padding: 1.05rem 1.35rem;
  border-radius: 16px;
  flex-shrink: 0;
}
body.home-section-steps [data-home-step="why"] .why-cta-copy strong {
  font-size: 1.12rem;
}
body.home-section-steps [data-home-step="why"] .why-cta-copy p {
  font-size: .9rem;
}
@media (max-height: 820px) {
  body.home-section-steps [data-home-step="why"] .why-eyebrow {
    display: none;
  }
  body.home-section-steps [data-home-step="why"] > .container > .lead {
    margin-bottom: .7rem;
    font-size: .9rem;
  }
  body.home-section-steps [data-home-step="why"] .why-item {
    padding: .85rem .9rem;
  }
  body.home-section-steps [data-home-step="why"] .why-item p {
    -webkit-line-clamp: 2;
  }
}
@media (max-height: 720px) {
  body.home-section-steps [data-home-step="why"] > .container > .lead {
    display: none;
  }
  body.home-section-steps [data-home-step="why"] .why-grid {
    gap: .55rem;
  }
  body.home-section-steps [data-home-step="why"] .why-item {
    padding: .6rem .7rem;
  }
  body.home-section-steps [data-home-step="why"] .why-item .ico {
    width: 2rem;
    height: 2rem;
    margin-bottom: .35rem;
    font-size: .95rem;
  }
  body.home-section-steps [data-home-step="why"] .why-cta {
    margin-top: .65rem;
    padding: .7rem .95rem;
  }
}

body.home-section-steps .home-step-cue {
  position: absolute;
  left: 50%;
  bottom: 1.35rem;
  transform: translateX(-50%);
  z-index: 8;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  margin: 0;
  padding: .35rem .5rem;
  border: 0 !important;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  color: rgba(255,255,255,.88);
  cursor: pointer;
  opacity: .9;
  transition: opacity .45s ease, transform .45s cubic-bezier(.22,1,.36,1), color .35s ease;
}
body.home-section-steps .home-step-cue:hover {
  opacity: 1;
  color: #7ef0d6;
  transform: translateX(-50%) translateY(4px);
  background: transparent !important;
  border-color: transparent !important;
}
body.home-section-steps .home-step-cue.is-hidden {
  opacity: 0 !important;
  pointer-events: none;
  transform: translateX(-50%) translateY(10px);
}
body.home-section-steps .home-step-cue-label {
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
}
body.home-section-steps .home-step-cue i {
  font-size: 1.05rem;
  animation: home-step-bob 1.8s ease-in-out infinite;
}
@keyframes home-step-bob {
  0%, 100% { transform: translateY(0); opacity: .75; }
  50% { transform: translateY(7px); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  body.home-section-steps .home-step-cue i,
  body.home-section-steps .hero-scroll-cue i {
    animation: none;
  }
  body.home-section-steps,
  html:has(body.home-section-steps) {
    scroll-behavior: auto;
  }
}

/* Section-steps = Desktop only. Mobile/tablet → normales Scroll-Layout. */
@media (max-width: 900px) {
  html:has(body.home-section-steps) {
    scroll-snap-type: none !important;
  }
  body.home-section-steps {
    scroll-behavior: auto;
  }
  body.home-section-steps .home-step-cue,
  body.home-section-steps .home-step-only {
    display: none !important;
  }
  body.home-section-steps .home-step-panel {
    display: contents !important;
  }
  body.home-section-steps .home-hero-stage {
    display: block;
  }
  body.home-section-steps [data-home-step] {
    position: relative;
    min-height: 0 !important;
    scroll-snap-align: none !important;
    scroll-snap-stop: normal !important;
    padding-bottom: 0 !important;
    box-sizing: border-box;
  }
  body.home-section-steps .home-hero-stage .hero[data-home-step],
  body.home-section-steps .hero[data-home-step="hero"] {
    min-height: auto !important;
    display: block;
    padding-bottom: 0 !important;
  }
  body.home-section-steps .domain-box[data-home-step] {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    top: auto !important;
    transform: none !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: none !important;
    display: block;
    padding: 0;
    background: none;
    box-shadow: none;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
  body.home-section-steps.home-domain-scroll-in .domain-box[data-home-step]:not(.is-in),
  body.home-section-steps.home-domain-scroll-in .domain-box[data-home-step].is-in {
    opacity: 1 !important;
    pointer-events: auto !important;
  }
  body.home-section-steps .domain-box .home-step-domain-card,
  body.home-section-steps .domain-box .domain-card.dark-domain {
    width: auto;
    margin: 0;
    padding: inherit;
    border-radius: inherit;
    border: inherit;
    background: inherit;
    box-shadow: inherit;
    backdrop-filter: none;
  }
  body.home-section-steps .section[data-home-step="hosting"],
  body.home-section-steps .section[data-home-step="business"],
  body.home-section-steps .section[data-home-step="wordpress"],
  body.home-section-steps #server.section,
  body.home-section-steps [data-home-step="why"] {
    min-height: 0 !important;
    justify-content: flex-start;
    padding-top: 0;
  }
  body.home-section-steps #server .home-step-panel {
    min-height: 0 !important;
    justify-content: flex-start;
    padding-top: 0;
  }
  body.home-section-steps #server .home-step-hide {
    display: revert;
  }
}

/* ==========================================================================
 * Homepage mobile layout (≤900px)
 * Section-steps is desktop-only; when the class is stripped, TLD + server
 * tables still need a solid mobile layout.
 * ========================================================================== */

/* TLD mini-grid base (independent of body.home-section-steps) */
.tld-mini-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .55rem .65rem;
  width: 100%;
  max-width: 1080px;
  margin: 1rem auto 0;
  padding: 0;
  box-sizing: border-box;
}
.tld-mini-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .12rem;
  margin: 0;
  padding: .7rem .75rem .65rem;
  border-radius: 12px;
  border: 1px solid var(--line, #e2e8f0);
  background: #fff;
  color: var(--ink, #0f172a);
  text-align: left;
  cursor: pointer;
  font: inherit;
  box-shadow: 0 4px 12px rgba(15, 36, 61, .05);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.tld-mini-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 180, 166, .35);
  box-shadow: 0 8px 18px rgba(15, 36, 61, .08);
}
.tld-mini-card.is-offer {
  border-color: rgba(230, 126, 34, .45);
  background: #fffaf5;
}
.tld-mini-ext {
  font-size: .98rem;
  font-weight: 800;
  letter-spacing: -.02em;
  font-family: var(--display, inherit);
  color: inherit;
}
.tld-mini-list {
  font-size: .7rem;
  text-decoration: line-through;
  color: #94a3b8;
}
.tld-mini-price {
  font-size: .88rem;
  font-weight: 750;
  color: #0a7d6e;
}
.tld-mini-period {
  font-size: .66rem;
  color: #64748b;
}
.tld-mini-badge {
  position: absolute;
  top: .4rem;
  right: .4rem;
  font-size: .55rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
  background: #e67e22;
  border-radius: 999px;
  padding: .12rem .35rem;
}

/* Dark domain stage keeps light-on-dark chips when steps class is active */
body.home-section-steps .tld-mini-card {
  border-color: rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: #fff;
  box-shadow: 0 8px 22px rgba(0,0,0,.18);
}
body.home-section-steps .tld-mini-card:hover {
  background: rgba(0, 180, 166, .16);
  border-color: rgba(126, 240, 214, .4);
}
body.home-section-steps .tld-mini-card.is-offer {
  border-color: rgba(230,126,34,.5);
  background: rgba(230,126,34,.12);
}
body.home-section-steps .tld-mini-list { color: rgba(255,255,255,.45); }
body.home-section-steps .tld-mini-price { color: #7ef0d6; }
body.home-section-steps .tld-mini-period { color: rgba(255,255,255,.55); }

@media (max-width: 900px) {
  /* Domain search + TLD chips */
  .domain-box {
    margin-top: -1.5rem;
    padding-left: .85rem;
    padding-right: .85rem;
    box-sizing: border-box;
  }
  .domain-box .domain-card,
  .domain-box .premium-domain {
    padding: 1.15rem 1rem 1.05rem;
  }
  .domain-form {
    flex-direction: column;
  }
  .domain-form .btn {
    width: 100%;
  }
  .tld-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .4rem;
    margin-top: .75rem;
    justify-items: stretch;
  }
  .tld-chip {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: flex-start;
    gap: .15rem .3rem;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    padding: .4rem .55rem;
    border-radius: 10px;
    line-height: 1.2;
    font-size: .78rem;
  }
  .tld-chip strong {
    font-size: .82rem;
  }
  .tld-chip .tld-period,
  .tld-chip .sale-badge,
  .tld-chip .sale-list {
    font-size: .68rem;
  }
  .tld-mini-grid,
  .domain-box .tld-mini-grid,
  body.home-section-steps .domain-box .tld-mini-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: .4rem !important;
    margin-top: .75rem;
    width: 100%;
    max-width: none;
  }
  .tld-mini-card,
  body.home-section-steps .tld-mini-card {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
    column-gap: .3rem;
    row-gap: 0;
    padding: .42rem .55rem .38rem !important;
    border-radius: 10px;
    min-width: 0;
    box-shadow: 0 2px 8px rgba(15, 36, 61, .04);
  }
  .tld-mini-ext,
  body.home-section-steps .tld-mini-ext {
    font-size: .82rem !important;
    line-height: 1.2;
  }
  .tld-mini-price,
  body.home-section-steps .tld-mini-price {
    font-size: .78rem !important;
  }
  .tld-mini-period,
  body.home-section-steps .tld-mini-period {
    font-size: .62rem !important;
  }
  .tld-mini-list,
  body.home-section-steps .tld-mini-list {
    font-size: .62rem !important;
  }
  .tld-mini-badge,
  body.home-section-steps .tld-mini-badge {
    top: .28rem;
    right: .28rem;
    font-size: .5rem;
    padding: .1rem .3rem;
  }

  /* Server category tabs */
  .server-tabs {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Section title + “Alle … →” */
  .server-block-h {
    flex-direction: column;
    align-items: flex-start;
    gap: .35rem;
    margin-bottom: .75rem;
  }
  .server-block-h a {
    white-space: nowrap;
    font-size: .9rem;
  }

  /* Server tables → stacked cards (no cut-off order button) */
  #server .table-wrap,
  #server .premium-table,
  .server-block .table-wrap,
  .server-block .premium-table {
    overflow: visible !important;
    border-radius: 14px;
  }
  #server .server-table,
  .server-block .server-table {
    width: 100%;
    table-layout: auto;
  }
  #server .server-table thead,
  .server-block .server-table thead {
    display: none;
  }
  #server .server-table tbody,
  .server-block .server-table tbody {
    display: block;
  }
  #server .server-table tr,
  .server-block .server-table tr {
    display: grid;
    grid-template-columns: 1fr;
    gap: .55rem;
    padding: 1rem .95rem 1.05rem;
    border-bottom: 1px solid rgba(15, 36, 61, .07);
    box-sizing: border-box;
  }
  #server .server-table tr:last-child,
  .server-block .server-table tr:last-child {
    border-bottom: 0;
  }
  #server .server-table td,
  .server-block .server-table td {
    display: block;
    width: 100% !important;
    max-width: 100%;
    padding: 0 !important;
    border: 0 !important;
    box-sizing: border-box;
  }
  #server .srv-name,
  .server-block .srv-name {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .35rem .45rem;
  }
  #server .srv-name strong,
  .server-block .srv-name strong {
    display: block;
    width: 100%;
    font-size: .95rem;
    line-height: 1.35;
  }
  #server .srv-name .mini-badge,
  .server-block .srv-name .mini-badge {
    margin: 0;
    top: 0;
  }
  #server .srv-specs-cell,
  .server-block .srv-specs-cell {
    width: 100% !important;
  }
  #server .srv-specs,
  .server-block .srv-specs {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: .4rem;
    align-items: stretch;
  }
  #server .srv-spec,
  .server-block .srv-spec {
    display: inline-flex;
    flex: 0 1 auto;
    max-width: 100%;
    width: auto;
    min-height: 0;
    height: auto;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
    border-radius: 10px;
    padding: .4rem .6rem;
    line-height: 1.25;
    writing-mode: horizontal-tb;
  }
  #server .srv-price,
  .server-block .srv-price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: .25rem .4rem;
    margin-top: .15rem;
  }
  #server .srv-price strong,
  .server-block .srv-price strong {
    font-size: 1.15rem;
  }
  #server .srv-cta,
  .server-block .srv-cta {
    width: 100% !important;
    text-align: left;
    white-space: normal;
    margin-top: .15rem;
  }
  #server .srv-cta .btn-order,
  .server-block .srv-cta .btn-order {
    display: flex;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    justify-content: center;
    padding: .7rem 1rem;
    white-space: nowrap;
  }

  /* Cloud cards already grid – keep single column */
  #server .cloud-grid,
  .server-block-cloud .cloud-grid {
    grid-template-columns: 1fr;
  }

  /* Extra bottom padding so chat FAB doesn’t cover last CTA */
  #server.section {
    padding-bottom: 5.5rem;
  }
}

@media (max-width: 420px) {
  /* Keep 2 columns even on small phones – chips stay compact */
  .tld-row,
  .tld-mini-grid,
  .domain-box .tld-mini-grid,
  body.home-section-steps .domain-box .tld-mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* ===== Legal pages: breadcrumb + cross-nav ===== */
.page-hero-legal { padding: 1.6rem 0 1.35rem; }
.page-hero-legal h1 {
  margin: .15rem 0 .2rem;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  line-height: 1.15;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}
.legal-hero-sub {
  margin: 0 0 .15rem;
  color: rgba(255,255,255,.62);
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.35;
  max-width: 36rem;
}
.legal-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .3rem .4rem;
  margin: 0 0 .55rem;
  font-size: .85rem;
  font-weight: 650;
  color: rgba(255,255,255,.55);
  line-height: 1.35;
}
.legal-breadcrumb a {
  color: #7ef0d6;
  text-decoration: none;
}
.legal-breadcrumb a:hover { color: #fff; }
.legal-bc-sep { opacity: .45; }
.legal-bc-muted { color: rgba(255,255,255,.62); }
.legal-bc-current {
  color: rgba(255,255,255,.92);
  white-space: nowrap;
}

.legal-page-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin: 1rem 0 0;
  padding: 0;
  overflow: visible;
}
.legal-page-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .42rem .85rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.88);
  font-size: .82rem;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
  transition: .15s ease;
}
.legal-page-link:hover {
  background: rgba(126,240,214,.16);
  border-color: rgba(126,240,214,.45);
  color: #fff;
}
.legal-page-link.is-active {
  background: #12b89a;
  border-color: #12b89a;
  color: #fff;
  box-shadow: 0 6px 16px rgba(18,184,154,.28);
}
.section-legal { padding-top: 2.2rem; }

@media (min-width: 721px) {
  .legal-page-link {
    font-size: .88rem;
    padding: .48rem 1rem;
  }
}

@media (max-width: 720px) {
  .page-hero-legal { padding: 1.25rem 0 1.1rem; }
  .page-hero-legal h1 {
    font-size: 1.55rem;
    letter-spacing: -.01em;
  }
  .legal-hero-sub {
    font-size: .78rem;
    color: rgba(255,255,255,.55);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .legal-breadcrumb {
    font-size: .78rem;
    gap: .25rem .35rem;
  }
  /* 3+2 grid – no horizontal scroll / scrollbar line */
  .legal-page-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .4rem;
    margin-top: .85rem;
    width: 100%;
  }
  .legal-page-link {
    width: 100%;
    min-height: 38px;
    padding: .4rem .35rem;
    font-size: .74rem;
    border-radius: 10px;
    box-sizing: border-box;
  }
  .section-legal { padding-top: 1.25rem; padding-bottom: 2.5rem; }
  .section-legal > .container {
    width: min(1140px, calc(100% - 1rem));
  }
  .section-legal .cms-sheet {
    padding: 1rem .9rem;
    border-radius: 14px;
  }
  .section-legal .cms-content h1,
  .section-legal .cms-content h2,
  .section-legal .cms-content h3 {
    hyphens: none;
    overflow-wrap: break-word;
    word-break: normal;
    font-size: 1.05rem;
    line-height: 1.35;
  }
  .section-legal .cms-content h1 { font-size: 1.15rem; }
  .section-legal .cms-content p,
  .section-legal .cms-content li {
    font-size: .92rem;
    line-height: 1.65;
  }
}

@media (max-width: 380px) {
  .legal-page-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .page-hero-legal h1 { font-size: 1.4rem; }
}

/* ===== Cookie policy page ===== */
.cookie-policy { padding-top: 1.75rem; }
.cookie-policy-intro {
  display: grid;
  grid-template-columns: 1.4fr .9fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  align-items: stretch;
}
.cookie-policy-intro-copy {
  background: #fff;
  border: 1px solid rgba(15,36,61,.08);
  border-radius: 18px;
  padding: 1.45rem 1.5rem;
  box-shadow: 0 12px 30px rgba(11,28,51,.06);
}
.cookie-policy-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .28rem .7rem;
  border-radius: 999px;
  background: rgba(18,184,154,.12);
  color: #0f766e;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  margin-bottom: .7rem;
}
.cookie-policy-intro-copy h2 {
  margin: 0 0 .55rem;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  color: #0b1c33;
  text-align: left;
}
.cookie-policy-intro-copy p {
  margin: 0 0 .65rem;
  color: #475569;
  line-height: 1.6;
}
.cookie-policy-intro-copy p:last-child { margin-bottom: 0; }
.cookie-policy-cta-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  background: linear-gradient(160deg, #0b1c33 0%, #143252 55%, #0f3a34 100%);
  color: #fff;
  border-radius: 18px;
  padding: 1.4rem 1.35rem;
  box-shadow: 0 16px 36px rgba(11,28,51,.18);
}
.cookie-policy-cta-card > i {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(18,184,154,.2);
  color: #7ef0d6;
  font-size: 1.1rem;
}
.cookie-policy-cta-card strong {
  font-size: 1.1rem;
  font-family: var(--display);
}
.cookie-policy-cta-card p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: .9rem;
  line-height: 1.45;
  flex: 1;
}
.cookie-policy-cta-card .btn {
  width: 100%;
  justify-content: center;
}
.cookie-policy-cta-link {
  color: #7ef0d6;
  font-weight: 700;
  font-size: .88rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.cookie-policy-cta-link:hover { color: #fff; }

.cookie-cat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.cookie-cat-card {
  background: #fff;
  border: 1px solid rgba(15,36,61,.08);
  border-radius: 16px;
  padding: 1.15rem 1.2rem 1rem;
  box-shadow: 0 10px 26px rgba(11,28,51,.05);
  display: flex;
  flex-direction: column;
  gap: .55rem;
  min-width: 0;
}
.cookie-cat-card.is-locked {
  border-color: rgba(18,184,154,.28);
  background: linear-gradient(180deg, #f3fdfb 0%, #fff 55%);
}
.cookie-cat-card-head {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.cookie-cat-ico {
  width: 40px; height: 40px; flex: 0 0 auto;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(18,184,154,.12);
  color: #0f766e;
  font-size: 1rem;
}
.cookie-cat-card h3 {
  margin: 0;
  font-size: 1.02rem;
  color: #0b1c33;
  text-align: left;
}
.cookie-cat-tag {
  display: inline-flex;
  margin-top: .2rem;
  padding: .12rem .45rem;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  background: rgba(18,184,154,.14);
  color: #0f766e;
}
.cookie-cat-tag.is-opt {
  background: #eef2f7;
  color: #64748b;
}
.cookie-cat-card > p {
  margin: 0;
  color: #64748b;
  font-size: .9rem;
  line-height: 1.45;
}
.cookie-cat-list {
  list-style: none;
  margin: .15rem 0 0;
  padding: 0;
  display: grid;
  gap: .4rem;
}
.cookie-cat-list li {
  display: grid;
  gap: .1rem;
  padding: .45rem .55rem;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #eef2f7;
}
.cookie-cat-list code {
  font-size: .78rem;
  font-weight: 800;
  color: #0f766e;
  word-break: break-all;
}
.cookie-cat-list span {
  font-size: .8rem;
  color: #64748b;
  line-height: 1.35;
}
.cookie-cat-empty {
  margin: 0 !important;
  font-size: .84rem !important;
  color: #94a3b8 !important;
}
.cookie-cat-meta {
  margin-top: auto;
  font-size: .72rem;
  font-weight: 750;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.cookie-policy-steps {
  background: #fff;
  border: 1px solid rgba(15,36,61,.08);
  border-radius: 18px;
  padding: 1.35rem 1.4rem 1.45rem;
  margin-bottom: 1.35rem;
  box-shadow: 0 10px 26px rgba(11,28,51,.05);
}
.cookie-policy-steps > h2 {
  margin: 0 0 1rem;
  text-align: left;
  font-size: 1.25rem;
}
.cookie-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .9rem;
}
.cookie-steps-grid article {
  padding: .95rem 1rem;
  border-radius: 14px;
  background: linear-gradient(180deg, #f7fbfa 0%, #f8fafc 100%);
  border: 1px solid #e8eef5;
}
.cookie-steps-grid span {
  display: inline-grid;
  place-items: center;
  width: 28px; height: 28px;
  border-radius: 999px;
  background: #12b89a;
  color: #fff;
  font-weight: 800;
  font-size: .85rem;
  margin-bottom: .55rem;
}
.cookie-steps-grid h3 {
  margin: 0 0 .35rem;
  font-size: .95rem;
  text-align: left;
  color: #0b1c33;
}
.cookie-steps-grid p {
  margin: 0;
  font-size: .86rem;
  color: #64748b;
  line-height: 1.45;
}
.cookie-policy-legal { margin: 0 auto; }
.cookie-policy-legal .cms-content h2 {
  margin-top: 0;
  text-align: left;
}

@media (max-width: 900px) {
  .cookie-policy-intro,
  .cookie-cat-grid,
  .cookie-steps-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  .cookie-policy { padding-top: 1.15rem; }
  .cookie-policy-intro-copy,
  .cookie-policy-cta-card,
  .cookie-policy-steps {
    padding: 1.1rem 1rem;
  }
  .cookie-cat-card { padding: 1rem .95rem; }
}

/* ===== Mobile: legal/CMS pages + hosting subtitles + overflow ===== */
/* Never set overflow-x on html/body (breaks iOS WebKit / Firefox rubber-band). */
.container,
.section,
.catalog-hero,
.cms-sheet,
.cms-content,
.site-main {
  max-width: 100%;
  min-width: 0;
}
.cms-sheet,
.cms-content {
  overflow-x: auto;
}

/* Hosting subtitles stay on one line (home + catalog) */
.lead-oneline {
  white-space: nowrap;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
#hosting > .container > .lead-oneline,
#business > .container > .lead-oneline,
#wordpress > .container > .lead-oneline,
body.home-section-steps .section[data-home-step="hosting"] > .container > .lead-oneline,
body.home-section-steps .section[data-home-step="business"] > .container > .lead-oneline,
body.home-section-steps .section[data-home-step="wordpress"] > .container > .lead-oneline,
body.home-section-steps .section[data-home-step="software"] > .container > .lead-oneline {
  text-align: center;
}

@media (max-width: 720px) {
  .lead-oneline {
    white-space: normal;
    overflow-wrap: break-word;
    word-break: normal;
    font-size: clamp(0.86rem, 3.4vw, 0.98rem);
    letter-spacing: -0.01em;
    line-height: 1.45;
  }
  .catalog-hero .lead-oneline {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }

  /* Catalog / CMS hero titles – legal pages use .page-hero-legal instead */
  .catalog-hero:not(.page-hero-legal) h1,
  .page-hero-sm:not(.page-hero-legal) h1 {
    font-size: clamp(1.35rem, 6.2vw, 1.85rem);
    line-height: 1.2;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: none;
    max-width: 100%;
  }
  .catalog-hero .eyebrow {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .catalog-hero-points {
    gap: .45rem;
  }
  .catalog-hero-points li {
    font-size: .76rem;
    padding: .3rem .6rem;
  }

  /* CMS / Datenschutz content card */
  .section > .container {
    width: min(1140px, calc(100% - 1.25rem));
  }
  .cms-sheet {
    padding: 1.15rem 1rem;
    border-radius: 14px;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
  }
  .cms-content,
  .cms-content * {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .cms-content h1,
  .cms-content h2,
  .cms-content h3 {
    font-size: clamp(1.05rem, 5vw, 1.45rem);
    line-height: 1.3;
    text-align: left;
    hyphens: auto;
  }
  .cms-content h1 { font-size: clamp(1.25rem, 5.5vw, 1.65rem); }
  .cms-content table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .cms-content img,
  .cms-content iframe,
  .cms-content video {
    max-width: 100%;
    height: auto;
  }
  .cms-content pre {
    white-space: pre-wrap;
    overflow-x: auto;
  }

  /* Price cards: avoid horizontal squeeze */
  .premium-cards .price-card,
  .price-card {
    min-width: 0;
    width: 100%;
  }
  .pricing-grid.premium-cards {
    gap: .9rem;
  }
}

@media (max-width: 420px) {
  .lead-oneline {
    font-size: clamp(0.82rem, 3.6vw, 0.92rem);
  }
  .cms-sheet {
    padding: 1rem .85rem;
  }
  .catalog-hero {
    padding: 2.1rem 0 1.6rem;
  }
}


/* —— Software catalog (ScriptFabrik-style, 4-up) —— */
.pricing-grid.software-grid,
.software-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: .95rem;
}
.software-card {
  padding: 0 !important;
  overflow: hidden;
  display: flex !important;
  flex-direction: column;
  min-width: 0;
  border: 1.5px solid rgba(0, 180, 166, .55) !important;
  background: #fff !important;
  background-clip: padding-box;
  isolation: isolate;
  box-shadow:
    0 16px 40px rgba(0, 0, 0, .26),
    0 0 0 1px rgba(0, 180, 166, .12),
    0 10px 28px rgba(0, 180, 166, .12) !important;
}
.software-card:hover {
  border-color: var(--teal) !important;
  box-shadow:
    0 18px 44px rgba(0, 0, 0, .3),
    0 0 0 1px rgba(0, 180, 166, .28),
    0 14px 32px rgba(0, 180, 166, .18) !important;
}
.software-card.featured {
  border-color: var(--teal) !important;
  border-width: 2px !important;
}
.software-card .tag {
  position: absolute;
  top: .55rem;
  left: .55rem;
  right: auto;
  z-index: 2;
  font-size: .68rem;
}
.software-card-media {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  background: #0f172a;
  overflow: hidden;
}
.software-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform .35s ease;
}
.software-card:hover .software-card-media img { transform: scale(1.03); }
.software-card-media-fallback {
  display: grid;
  place-items: center;
  height: 100%;
  color: #94a3b8;
  font-size: 2rem;
}
.software-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: .85rem .9rem 1rem;
}
.software-card h3 {
  padding-right: 0 !important;
  margin: 0 0 .35rem;
  font-size: .98rem;
  line-height: 1.3;
}
.software-card h3 a {
  color: inherit;
  text-decoration: none;
}
.software-card h3 a:hover { color: #0f766e; }
.software-card .price { margin: .15rem 0 .2rem; font-size: 1.35rem; }
.software-card .price small,
.software-card .price .sw-period {
  display: inline-block;
  margin-left: .45rem;
  font-size: .78rem;
  font-weight: 650;
  color: var(--muted, #64748b);
}
.software-card .price-periods { margin: 0 0 .65rem; font-size: .78rem; }
.software-card ul {
  margin: 0 0 .75rem !important;
  flex: 1;
}
.software-card li {
  font-size: .82rem !important;
  padding: .28rem 0 !important;
}
.software-card-actions {
  display: grid;
  gap: .5rem;
  margin-top: auto;
}
.software-card .btn {
  padding: .65rem .75rem;
  font-size: .88rem;
}
.software-card-more {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-weight: 750;
  font-size: .82rem;
  color: #0f766e;
  text-decoration: none;
}
.software-card-more:hover { color: #0a5c56; }
.software-card-more i { font-size: .8rem; transition: transform .15s ease; }
.software-card-more:hover i { transform: translateX(3px); }

/* Detail page */
.sw-product { padding: 1.5rem 0 3rem; }
.sw-crumb {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  align-items: center;
  margin: 0 0 1.25rem;
  font-size: .88rem;
  color: #64748b;
}
.sw-crumb a { color: #0f766e; font-weight: 650; text-decoration: none; }
.sw-crumb a:hover { text-decoration: underline; }
.sw-product-top {
  display: grid;
  grid-template-columns: 1.35fr .9fr;
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 1.75rem;
}
.sw-product-figure {
  position: relative;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(160deg, #eef2f7 0%, #f8fafc 100%);
  box-shadow: 0 18px 40px rgba(15, 36, 61, .14);
  border: 1px solid rgba(15, 36, 61, .06);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  padding: .75rem;
}
.sw-product-figure img {
  width: 100%;
  height: auto;
  max-height: min(520px, 70vh);
  object-fit: contain;
  object-position: center;
  display: block;
}
.sw-product-figure .tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: auto;
}
.sw-product-buy {
  background: #fff;
  border: 1px solid rgba(15, 36, 61, .08);
  border-radius: 20px;
  padding: 1.35rem 1.4rem 1.5rem;
  box-shadow: 0 16px 36px rgba(15, 23, 42, .07);
  position: sticky;
  top: 5.5rem;
}
.sw-kicker {
  margin: 0 0 .45rem;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #0f766e;
}
.sw-product-buy h1 {
  margin: 0 0 .85rem;
  font-family: var(--display, "Sora", sans-serif);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  line-height: 1.2;
  color: #0b1c33;
}
.sw-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .45rem .65rem;
  margin-bottom: 1rem;
}
.sw-price {
  font-size: 2rem;
  font-weight: 800;
  color: #0b1c33;
}
.sw-price-note {
  color: #64748b;
  font-weight: 650;
  font-size: .9rem;
  margin-left: .15rem;
}
.sw-buy-points {
  list-style: none;
  padding: 0;
  margin: 0 0 1.15rem;
}
.sw-buy-points li {
  display: flex;
  gap: .55rem;
  align-items: flex-start;
  padding: .4rem 0;
  font-size: .92rem;
  color: #334155;
  font-weight: 600;
}
.sw-buy-points i { color: #0f766e; margin-top: .15rem; }
.sw-order-btn { width: 100%; justify-content: center; margin-bottom: .55rem; }
.sw-back-btn { width: 100%; justify-content: center; }
.sw-highlights {
  margin-bottom: 1.5rem;
  background: #fff;
  border: 1px solid rgba(15, 36, 61, .08);
  border-radius: 18px;
  padding: 1.15rem 1.25rem 1.25rem;
}
.sw-highlights h2,
.sw-section-h h2,
.sw-related h2,
.sw-cta-side h3 {
  margin: 0 0 .85rem;
  font-family: var(--display, "Sora", sans-serif);
  font-size: 1.15rem;
}
.sw-feature-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .55rem .9rem;
}
.sw-feature-grid li {
  display: flex;
  gap: .5rem;
  align-items: flex-start;
  font-weight: 650;
  color: #334155;
  font-size: .94rem;
}
.sw-feature-grid i { color: #0f766e; margin-top: .15rem; }
.sw-product-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 1.25rem;
  align-items: start;
  margin-bottom: 2rem;
}
.sw-prose.panel,
.sw-req,
.sw-cta-side {
  background: #fff;
  border: 1px solid rgba(15, 36, 61, .08);
  border-radius: 18px;
  padding: 1.2rem 1.3rem 1.4rem;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .04);
}
.sw-description h2,
.sw-description h3 {
  margin: 1.35rem 0 .55rem;
  font-family: var(--display, "Sora", sans-serif);
  color: #0b1c33;
}
.sw-description h2:first-child,
.sw-description h3:first-child { margin-top: 0; }
.sw-description p,
.sw-description li { color: #475569; line-height: 1.55; }
.sw-description ul { padding-left: 1.15rem; }
.sw-description table {
  width: 100%;
  border-collapse: collapse;
  margin: .85rem 0 1.1rem;
  font-size: .9rem;
}
.sw-description th,
.sw-description td {
  border: 1px solid #e2e8f0;
  padding: .55rem .65rem;
  text-align: left;
  vertical-align: top;
}
.sw-description th { background: #f8fafc; }
.sw-req ul,
.sw-demo-accounts { list-style: none; padding: 0; margin: 0; }
.sw-req li {
  display: flex;
  gap: .55rem;
  align-items: flex-start;
  padding: .45rem 0;
  border-bottom: 1px solid #f1f5f9;
  color: #334155;
  font-size: .92rem;
  font-weight: 600;
}
.sw-req li:last-child { border-bottom: 0; }
.sw-req i { color: #0f766e; margin-top: .12rem; }

.sw-demo {
  margin-bottom: 1rem;
  background: linear-gradient(165deg, #f0fdfa 0%, #ffffff 55%);
  border: 1px solid rgba(15, 118, 110, .18);
  border-radius: 18px;
  padding: 1.15rem 1.2rem 1.25rem;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .04);
}
.sw-demo .sw-section-h {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: .55rem;
}
.sw-demo .sw-section-h i {
  color: #0f766e;
  font-size: 1.05rem;
}
.sw-demo .sw-section-h h2 { margin: 0; }
.sw-demo-note {
  margin: 0 0 .85rem;
  color: #475569;
  font-size: .9rem;
  line-height: 1.45;
}
.sw-demo-links {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-bottom: .85rem;
}
.sw-demo-links .btn { font-size: .84rem; padding: .55rem .8rem; }
.sw-demo-accounts li {
  display: grid;
  grid-template-columns: .8fr 1.2fr auto;
  gap: .4rem .65rem;
  padding: .55rem 0;
  border-bottom: 1px solid rgba(15, 118, 110, .1);
  font-size: .86rem;
  align-items: baseline;
}
.sw-demo-accounts li:last-child { border-bottom: 0; }
.sw-demo-role {
  font-weight: 800;
  color: #0f766e;
}
.sw-demo-user,
.sw-demo-pass {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  color: #334155;
  word-break: break-all;
}
.sw-demo-pass { color: #64748b; }
@media (max-width: 520px) {
  .sw-demo-accounts li { grid-template-columns: 1fr; gap: .15rem; }
}
.sw-cta-side p { margin: 0 0 .85rem; color: #64748b; line-height: 1.45; }
.sw-price-mini {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: .85rem;
  color: #0b1c33;
}
.sw-price-mini small {
  font-size: .85rem;
  color: #64748b;
  font-weight: 650;
}
.sw-cta-side .btn { width: 100%; justify-content: center; }
.sw-related { margin-top: .5rem; }
.sw-related h2 { margin-bottom: 1rem; }

@media (max-width: 1100px) {
  .pricing-grid.software-grid,
  .software-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}
@media (max-width: 960px) {
  .sw-product-top,
  .sw-product-grid { grid-template-columns: 1fr; }
  .sw-product-buy { position: static; }
  .sw-feature-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .pricing-grid.software-grid,
  .software-grid { grid-template-columns: 1fr !important; }
}

/* Homepage step mode: compact 4-up software cards */
body.home-section-steps .section[data-home-step="software"] {
  padding-top: 4.25rem;
  padding-bottom: 3.75rem;
}
body.home-section-steps .section[data-home-step="software"] .pricing-grid.software-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: .75rem;
}
body.home-section-steps .section[data-home-step="software"] .software-card,
body.home-section-steps .section[data-home-step="software"] .software-card--compact {
  min-height: 0 !important;
  padding: 0 !important;
  border: 1.5px solid rgba(0, 180, 166, .6) !important;
  background: #fff !important;
  background-clip: padding-box;
  isolation: isolate;
  box-shadow:
    0 16px 40px rgba(0, 0, 0, .28),
    0 0 0 1px rgba(0, 180, 166, .14),
    0 12px 30px rgba(0, 180, 166, .14) !important;
}
body.home-section-steps .section[data-home-step="software"] .software-card-media {
  aspect-ratio: 1 / 1;
  background: linear-gradient(180deg, #111827 0%, #0b1220 100%);
}
body.home-section-steps .section[data-home-step="software"] .software-card-media img {
  object-fit: contain;
  object-position: center;
}
body.home-section-steps .section[data-home-step="software"] .software-card-body {
  padding: .65rem .7rem .8rem;
}
body.home-section-steps .section[data-home-step="software"] .software-card h3 {
  font-size: .88rem;
  margin-bottom: .2rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
body.home-section-steps .section[data-home-step="software"] .software-card .price {
  font-size: 1.15rem;
  margin: .1rem 0 .25rem;
}
body.home-section-steps .section[data-home-step="software"] .software-card ul {
  margin: 0 0 .45rem !important;
}
body.home-section-steps .section[data-home-step="software"] .software-card li {
  font-size: .76rem !important;
  padding: .18rem 0 !important;
}
body.home-section-steps .section[data-home-step="software"] .software-card-more {
  display: inline-flex;
  font-size: .78rem;
  margin-bottom: .15rem;
}
body.home-section-steps .section[data-home-step="software"] .software-card .btn {
  padding: .55rem .65rem;
  font-size: .82rem;
}
body.home-section-steps .section[data-home-step="software"] .section-more {
  display: none !important;
}
@media (max-width: 1100px) {
  body.home-section-steps .section[data-home-step="software"] .pricing-grid.software-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* —— Campaign side widget + site announcements —— */
.eg-campaign {
  position: fixed;
  right: 0;
  left: auto;
  top: 42%;
  z-index: 1200;
  font-family: var(--font, "Manrope", system-ui, sans-serif);
}
.eg-campaign-tab {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: none;
  background: var(--eg-camp-tab, #1a2332);
  color: #fff;
  border: 0;
  border-radius: 12px 0 0 12px;
  padding: .75rem .4rem;
  cursor: pointer;
  box-shadow: -6px 10px 24px rgba(15, 23, 42, .2);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease, filter .15s ease;
  line-height: 1;
  animation: eg-camp-tab-pulse 2.4s ease-in-out infinite;
}
.eg-campaign-tab i {
  transform: rotate(90deg);
  font-size: .82rem;
  flex-shrink: 0;
  line-height: 1;
}
.eg-campaign-tab-label {
  font-weight: 800;
  letter-spacing: .05em;
  font-size: .72rem;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}
.eg-campaign-tab:hover { filter: brightness(1.08); animation-play-state: paused; }
.eg-campaign.is-open .eg-campaign-tab {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(12px);
  animation: none;
}
.eg-campaign-panel {
  position: absolute;
  right: 0;
  left: auto;
  top: 50%;
  transform: translateY(-50%);
  width: min(300px, calc(100vw - 3.5rem));
  background: #fff;
  border-radius: 16px 0 0 16px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, .2);
  border: 1px solid var(--line, #e6ebf1);
  overflow: hidden;
}
.eg-campaign-panel-h {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .7rem 1rem;
  background: linear-gradient(180deg, #f3fbfa, #fff);
  border-bottom: 1px solid rgba(0, 180, 166, .12);
}
.eg-campaign-badge {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--muted, #5b6b7c);
  text-transform: uppercase;
}
.eg-campaign-close {
  border: 0;
  background: transparent;
  color: #ea580c;
  cursor: pointer;
  font-size: 1.15rem;
  padding: .2rem;
  line-height: 1;
  transition: transform .28s ease, color .15s ease;
}
.eg-campaign-close:hover { color: #c2410c; }
.eg-campaign-close i {
  display: inline-block;
  transition: transform .28s ease;
}
.eg-campaign.is-closing .eg-campaign-close i {
  transform: rotate(90deg);
}
@keyframes eg-camp-tab-pulse {
  0%, 100% { box-shadow: -6px 10px 22px rgba(15, 23, 42, .18); filter: brightness(1); }
  50% { box-shadow: -8px 12px 28px rgba(234, 88, 12, .38); filter: brightness(1.08); }
}
.eg-campaign-panel-b {
  position: relative;
  padding: 1rem 1.1rem 1.15rem 1.25rem;
}
.eg-campaign-accent-bar {
  position: absolute;
  left: 0;
  top: .85rem;
  bottom: .85rem;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: var(--eg-camp-accent, #00b4a6);
}
.eg-campaign-kicker {
  margin: 0 0 .35rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.eg-campaign-title {
  margin: 0 0 .55rem;
  font-family: var(--display, "Sora", sans-serif);
  font-size: 1.05rem;
  line-height: 1.35;
  color: var(--eg-camp-accent, #00b4a6);
  font-weight: 700;
}
.eg-campaign-intro {
  margin: 0 0 .75rem;
  color: var(--muted);
  font-size: .9rem;
}
.eg-campaign-code-row {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .9rem;
}
.eg-campaign-code {
  display: inline-flex;
  align-items: center;
  padding: .45rem .9rem;
  border-radius: 999px;
  background: #eef2f6;
  color: var(--ink, #1a2332);
  font-weight: 800;
  letter-spacing: .06em;
  font-size: .92rem;
}
.eg-campaign-copy {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  border: 1.5px solid var(--ink, #1a2332);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.eg-campaign-copy:hover { background: var(--teal-soft, #e6faf8); border-color: var(--teal); color: var(--teal-dark); }
.eg-campaign-cta {
  width: 100%;
  justify-content: center;
  background: linear-gradient(135deg, #c2410c, #ea580c 40%, #f59e0b) !important;
  border: 0 !important;
  color: #fff !important;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(194, 65, 12, .3);
}
.eg-campaign-cta:hover {
  filter: brightness(1.06);
  color: #fff !important;
}
/* Campaign widget: desktop only */
@media (max-width: 900px) {
  .eg-campaign { display: none !important; }
}
@media (min-width: 901px) and (max-width: 1100px) {
  .eg-campaign { top: 40%; }
  .eg-campaign-tab { padding: .5rem .24rem; }
  .eg-campaign-tab-label { font-size: .6rem; }
}

/* Flame deal cards (campaign catalog boost) */
.price-card.price-card--flame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(234, 88, 12, .45);
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(251, 146, 60, .22), transparent 55%),
    radial-gradient(90% 70% at 0% 100%, rgba(220, 38, 38, .12), transparent 50%),
    linear-gradient(180deg, #fffaf5 0%, #fff 55%);
  box-shadow:
    0 14px 36px rgba(194, 65, 12, .18),
    0 0 0 1px rgba(251, 146, 60, .15) inset;
  animation: flame-card-glow 2.8s ease-in-out infinite;
}
.price-card.price-card--flame::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #7c2d12, #ea580c, #fbbf24, #ea580c, #7c2d12);
  background-size: 200% 100%;
  animation: flame-bar 3s linear infinite;
}
.flame-ribbon {
  position: absolute;
  top: 12px;
  right: -42px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: .28rem;
  padding: .28rem 2.55rem;
  transform: rotate(35deg);
  background: linear-gradient(135deg, #9a3412, #ea580c 45%, #f59e0b);
  color: #fff;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: none;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(154, 52, 18, .35);
}
.flame-ribbon i {
  font-size: .62rem;
  animation: flame-flicker .7s ease-in-out infinite alternate;
  color: #fef3c7;
}
/* Aktion überschreibt Populär-/Featured-Badge */
.price-card.price-card--flame .tag {
  display: none !important;
}
.price-card.price-card--flame.featured {
  border-color: rgba(234, 88, 12, .55);
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(251, 146, 60, .22), transparent 55%),
    radial-gradient(90% 70% at 0% 100%, rgba(220, 38, 38, .12), transparent 50%),
    linear-gradient(180deg, #fffaf5 0%, #fff 55%);
  box-shadow:
    0 14px 36px rgba(194, 65, 12, .18),
    0 0 0 1px rgba(251, 146, 60, .15) inset;
  transform: none;
}
.flame-embers {
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 80%, rgba(251, 146, 60, .35) 0 2px, transparent 3px),
    radial-gradient(circle at 55% 70%, rgba(239, 68, 68, .3) 0 1.5px, transparent 3px),
    radial-gradient(circle at 78% 85%, rgba(251, 191, 36, .4) 0 2px, transparent 3px);
  opacity: .55;
  animation: flame-embers 2.4s ease-in-out infinite;
}
.price-card.price-card--flame .price {
  color: #9a3412;
}
.price-card.price-card--flame .sale-list {
  color: #b45309;
}
.btn.btn-flame {
  background: linear-gradient(135deg, #c2410c, #ea580c 40%, #f59e0b);
  border: 0;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(194, 65, 12, .3);
}
.btn.btn-flame:hover {
  filter: brightness(1.06);
  color: #fff;
}
.eg-campaign.eg-campaign--flame .eg-campaign-tab {
  background: linear-gradient(180deg, #9a3412, #ea580c);
  box-shadow: -6px 10px 24px rgba(194, 65, 12, .32);
}
.eg-campaign.eg-campaign--flame:not(.is-open) .eg-campaign-tab {
  animation: eg-camp-tab-pulse 2.4s ease-in-out infinite;
}
.camp-deal-hint {
  margin: -.35rem 0 .65rem;
  font-size: .76rem;
  line-height: 1.35;
  font-weight: 600;
  color: #9a3412;
  display: flex;
  align-items: flex-start;
  gap: .35rem;
}
.camp-deal-hint i {
  margin-top: .12rem;
  color: #ea580c;
  font-size: .72rem;
  flex-shrink: 0;
}
.price-card.price-card--flame .camp-deal-hint {
  color: #9a3412;
}
@keyframes flame-card-glow {
  0%, 100% { box-shadow: 0 14px 36px rgba(194, 65, 12, .16), 0 0 0 1px rgba(251, 146, 60, .12) inset; }
  50% { box-shadow: 0 18px 42px rgba(234, 88, 12, .28), 0 0 0 1px rgba(251, 146, 60, .28) inset; }
}
@keyframes flame-bar {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}
@keyframes flame-flicker {
  from { transform: scale(1) translateY(0); filter: brightness(1); }
  to { transform: scale(1.12) translateY(-1px); filter: brightness(1.25); }
}
@keyframes flame-embers {
  0%, 100% { opacity: .4; transform: translateY(0); }
  50% { opacity: .7; transform: translateY(-3px); }
}

/* Site announcement – header / topbar (before account) */
.eg-announce-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  border: 0;
  border-radius: 999px;
  padding: .42rem .85rem;
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .02em;
  cursor: pointer;
  color: #fff;
  background: var(--eg-ann-bg, #334155);
  white-space: nowrap;
  line-height: 1.2;
  box-shadow: 0 4px 14px rgba(51, 65, 85, .28);
  transition: filter .15s ease, transform .15s ease;
}
.eg-announce-btn--news { background: var(--eg-ann-bg, #334155); box-shadow: 0 4px 14px rgba(51, 65, 85, .28); }
.eg-announce-btn--announce { background: var(--eg-ann-bg, #0e9a82); box-shadow: 0 4px 14px rgba(14, 154, 130, .28); }
.eg-announce-btn--service { background: var(--eg-ann-bg, #b45309); box-shadow: 0 4px 14px rgba(180, 83, 9, .28); }
.eg-announce-btn--danger { background: var(--eg-ann-bg, #8b1e2d); box-shadow: 0 4px 14px rgba(139, 30, 45, .32); }
/* legacy class aliases */
.eg-announce-btn--teal { background: var(--eg-ann-bg, #0e9a82); box-shadow: 0 4px 14px rgba(14, 154, 130, .28); }
.eg-announce-btn--outline,
.eg-announce-btn--custom { background: var(--eg-ann-bg, #334155); box-shadow: 0 4px 14px rgba(51, 65, 85, .28); }
.eg-announce-btn:hover { filter: brightness(1.08); transform: translateY(-1px); }
.eg-announce-btn--topbar { flex-shrink: 0; }
.eg-announce-btn--header { margin-right: .15rem; }
.header-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .35rem;
  min-width: 0;
  flex-shrink: 1;
}
.eg-announce-btn--under-logo {
  margin: 0;
  max-width: 100%;
}
@media (max-width: 960px) {
  .header-brand {
    align-items: center;
    width: max-content;
    max-width: calc(100% - 7.5rem);
  }
  .eg-announce-btn--under-logo {
    padding: .32rem .7rem;
    font-size: .7rem;
    gap: .32rem;
    border-radius: 999px;
    align-self: center;
  }
  .eg-announce-btn--under-logo i { font-size: .72rem; }
  .site-header .header-inner,
  .site-header .container.header-inner {
    align-items: flex-start;
  }
  .site-header .header-actions {
    align-items: center;
    align-self: center;
  }

  /* Hide floating chat + a11y while scrolled (mobile only) */
  body.fe-fabs-scrolled .a11y-fab,
  body.fe-fabs-scrolled .help-widget-toggle {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(18px);
    transition: opacity .28s ease, transform .28s ease;
  }
  /* Hide FABs while hamburger menu is open */
  body.fe-nav-open .a11y-fab,
  body.fe-nav-open .help-widget,
  body.fe-nav-open .help-widget-toggle {
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden !important;
  }
  .a11y-fab,
  .help-widget-toggle {
    transition: opacity .28s ease, transform .28s ease, filter .15s ease, box-shadow .15s ease;
  }
}
.eg-announce-drawer-link {
  display: flex;
  align-items: center;
  gap: .55rem;
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: .7rem .15rem;
  font: inherit;
  font-weight: 700;
  color: var(--ink, #1a2332);
  cursor: pointer;
  border-bottom: 1px solid var(--line, #e6ebf1);
}
.eg-announce-drawer-link i { color: var(--eg-ann-bg, #8b1e2d); }
.eg-announce-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  --eg-ann-accent: #334155;
  --eg-ann-soft: #f1f5f9;
  --eg-ann-chip: #334155;
}
.eg-announce-modal[hidden] { display: none !important; }
.eg-announce-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, .45);
}
.eg-announce-dialog {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-height: min(80vh, 640px);
  overflow: auto;
  background: #fff;
  border-radius: 16px;
  padding: 0;
  border: 1px solid color-mix(in srgb, var(--eg-ann-accent) 18%, transparent);
  box-shadow: 0 24px 48px rgba(15, 23, 42, .18);
}
.eg-announce-dialog-h {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--eg-ann-soft) 0%, #fff 100%);
}
.eg-announce-dialog-head-main {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  min-width: 0;
}
.eg-announce-chip {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  width: fit-content;
  padding: .22rem .55rem;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
  background: var(--eg-ann-chip);
}
.eg-announce-dialog-h h3 {
  margin: 0;
  font-family: var(--display, "Sora", sans-serif);
  font-size: 1.15rem;
  color: var(--ink);
}
.eg-announce-x {
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--muted);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.eg-announce-dialog-b { padding: 1rem 1.15rem 1.25rem; color: var(--ink); line-height: 1.55; }
.eg-announce-dialog-b a { color: var(--eg-ann-accent); font-weight: 700; }
/* Quill/CMS often emits empty <p><br></p> → huge gaps vs editor */
.eg-announce-dialog-b p {
  margin: 0 0 .55rem;
  line-height: 1.55;
}
.eg-announce-dialog-b p:last-child { margin-bottom: 0; }
.eg-announce-dialog-b p:empty,
.eg-announce-dialog-b p:has(> br:only-child),
.eg-announce-dialog-b p:has(> br:first-child:last-child) {
  display: none;
}
.eg-announce-dialog-b ul,
.eg-announce-dialog-b ol {
  margin: 0 0 .55rem;
  padding-left: 1.15rem;
}
.eg-announce-dialog-b li { margin: 0 0 .2rem; }
html.eg-announce-lock, html.eg-announce-lock body { overflow: hidden; }

/* Modal looks */
.eg-announce-modal--news {
  --eg-ann-accent: #334155;
  --eg-ann-soft: #f1f5f9;
  --eg-ann-chip: #334155;
}
.eg-announce-modal--announce {
  --eg-ann-accent: #0e9a82;
  --eg-ann-soft: #e8f8f4;
  --eg-ann-chip: #0e9a82;
}
.eg-announce-modal--service {
  --eg-ann-accent: #b45309;
  --eg-ann-soft: #fff7ed;
  --eg-ann-chip: #b45309;
}
.eg-announce-modal--danger {
  --eg-ann-accent: #8b1e2d;
  --eg-ann-soft: #fdf2f4;
  --eg-ann-chip: #8b1e2d;
}
.eg-announce-dialog::before {
  content: "";
  display: block;
  height: 4px;
  background: var(--eg-ann-accent);
}
.eg-announce-modal--announce .eg-announce-dialog::before {
  background: linear-gradient(90deg, #0e9a82, #14c4a8);
}
.eg-announce-modal--service .eg-announce-dialog::before {
  background: linear-gradient(90deg, #b45309, #f59e0b);
}
.eg-announce-modal--danger .eg-announce-dialog {
  border-color: color-mix(in srgb, #8b1e2d 35%, transparent);
  box-shadow: 0 24px 52px rgba(139, 30, 45, .22);
}
.eg-announce-modal--danger .eg-announce-dialog-h {
  background: linear-gradient(180deg, #fce8ec 0%, #fff 72%);
  border-bottom-color: color-mix(in srgb, #8b1e2d 18%, transparent);
}
.eg-announce-modal--danger .eg-announce-dialog-h h3 { color: #7a1a27; }
.eg-announce-modal--danger .eg-announce-dialog::before {
  background: linear-gradient(90deg, #8b1e2d, #c43b4f);
}

.sum-discount { color: #0e9a82; font-weight: 700; }
.cart-coupon-box { margin-bottom: .35rem; }
