/* ============================================================
   Galaxyweb Navigation – navigation.css  v7
   Farb-Harmonisierung (Logo #3cb1f3) + Mobile-Redesign
   ============================================================ */

.site-header *, .site-header *::before, .site-header *::after,
.mobile-nav *, .mobile-nav *::before, .mobile-nav *::after {
  box-sizing: border-box;
}

:root {
  /* ── Galaxyweb CI Palette ── */
  --gw-red:         #cc1626;
  --gw-red-dark:    #9e0e1c;
  --gw-yellow:      #ffcc33;
  --gw-yellow-dark: #e6b800;
  --gw-blue:        #0098ef;          /* Hauptfarbe Galaxyweb */
  --gw-blue-mid:    #0078c8;          /* etwas dunkler für Hover/Akzente */
  --gw-blue-deep:   #005aa0;          /* dunkel für Gradienten */
  --gw-blue-brand:  #3cb1f3;          /* Logo-Farbe — Akzente & Branding */
  --gw-blue-light:  #e0f4fd;          /* heller Hintergrund */
  --gw-blue-hover:  #daf0fb;          /* Hover: klar CI-blau */
  --gw-leftcol:     linear-gradient(170deg, #3cb1f3 0%, #0078c8 42%, #005aa0 100%);
  --gw-white:       #ffffff;
  --gw-gray-50:     #f8f9fb;
  --gw-gray-100:    #f1f3f6;
  --gw-gray-200:    #e2e6ea;
  --gw-gray-400:    #9ca3af;
  --gw-gray-500:    #6b7280;
  --gw-gray-700:    #374151;
  --gw-gray-900:    #111827;
  --nav-h:          80px;
  --dd-r:           0 0 14px 14px;
  --shadow:         0 20px 56px rgba(0,120,200,0.15);
  --ease:           0.18s cubic-bezier(0.4,0,0.2,1);
  --font:           'Montserrat', 'Segoe UI', system-ui, sans-serif;
}

.site-header, .mobile-nav {
  font-family: var(--font);
}

/* ============================================================  HEADER  */
.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 9999;
  background: var(--gw-white);
  border-bottom: 1px solid var(--gw-gray-200);
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.nav-container {
  max-width: 1340px; margin: 0 auto;
  padding: 0 32px; height: var(--nav-h);
  display: flex; align-items: center; width: 100%;
}

/* ============================================================  LOGO  */
.nav-logo { display:flex; align-items:center; text-decoration:none; margin-right:40px; flex-shrink:0; }
.nav-logo img { height: 48px; width: auto; display: block; }

/* ============================================================  GLOBAL LINK RESET  */
.site-header a,
.site-header a:hover,
.site-header a:focus,
.site-header a:active,
.mobile-nav a,
.mobile-nav a:hover,
.mobile-nav a:focus,
.mobile-nav a:active {
  text-decoration: none !important;
}

/* ============================================================  TOP NAV  */
.nav-menu { display:flex; align-items:center; list-style:none; height:100%; flex:1; }
.nav-item  { position:relative; height:100%; display:flex; align-items:center; }

.nav-link {
  display: flex; align-items: center; gap: 5px;
  height: 100%; padding: 0 14px;
  font-size: 12px; font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--gw-gray-900); text-decoration: none;
  white-space: nowrap;
  transition: color var(--ease);
}
.nav-item:hover > .nav-link { color: var(--gw-blue); }

.nav-link-icon {
  width: 13px; height: 13px; flex-shrink: 0;
  color: var(--gw-gray-400);
  transition: color var(--ease);
}
.nav-item:hover > .nav-link .nav-link-icon { color: var(--gw-blue); }

.chevron {
  width: 10px; height: 10px; opacity: .35;
  transition: transform var(--ease), opacity var(--ease); flex-shrink: 0;
}
.nav-item:hover > .nav-link .chevron { transform: rotate(180deg); opacity: .6; }

.nav-cta {
  margin-left: auto; margin-right: 4px; flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 0 18px; height: 36px;
  border: 1.5px solid var(--gw-yellow); color: #1a1a1a !important;
  background: transparent; font-size: 11px; font-weight: 700;
  text-decoration: none; border-radius: 5px;
  letter-spacing: .08em; text-transform: uppercase;
  transition: background var(--ease), color var(--ease);
  box-sizing: border-box;
}
.nav-cta:hover { background: var(--gw-yellow); color: #1a1a1a !important; }

.nav-search-btn {
  background: none; border: none; cursor: pointer; padding: 6px;
  color: var(--gw-gray-400); display:flex; align-items:center; flex-shrink:0;
  transition: color var(--ease);
}
.nav-search-btn:hover { color: var(--gw-blue-mid); }

/* ============================================================  DROPDOWN BASE  */
.dropdown {
  position: absolute; top: 100%; left: 0;
  transform: translateY(6px);
  background: var(--gw-white);
  border: 1px solid var(--gw-gray-200);
  border-top: none;
  border-radius: var(--dd-r);
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity var(--ease), transform var(--ease), visibility var(--ease);
  overflow: visible;
  will-change: opacity, transform;
}
.nav-item:hover > .dropdown,
.nav-item:focus-within > .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0); pointer-events: all;
}
.dropdown a { text-decoration: none; }

/* ============================================================  PRODUCT MEGA MENU  */
.dropdown-product {
  width: 1060px;
  display: grid;
  grid-template-columns: 240px 1fr 320px;
}

/* Col 1 — Brand-Gradient */
.dd-col-left {
  background: var(--gw-leftcol);
  padding: 26px 0;
  border-radius: 0 0 0 14px;
}
.dd-col-left .col-label {
  font-size: 10px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.35);
  padding: 0 22px 14px;
}
.dd-col-left .col-label-spacer { padding-top: 22px; }
.product-link {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 22px; text-decoration: none;
  transition: background var(--ease); position: relative;
}
.product-link:hover { background: rgba(255,255,255,.12); }
.product-link.is-active { background: rgba(255,255,255,1); }
.product-link.is-active::before {
  content: ''; position: absolute; left: 0; top: 10px; bottom: 10px;
  width: 3px; border-radius: 0 2px 2px 0; background: var(--gw-blue);
}
.product-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.16);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background var(--ease);
}
.product-link:hover:not(.is-active) .product-icon { background: rgba(255,255,255,.22); }
.product-link.is-active .product-icon { background: rgba(0,120,200,.12); }
.product-icon svg { width: 18px; height: 18px; color: rgba(255,255,255,.86); }
.product-link.is-active .product-icon svg { color: var(--gw-blue); }
.product-name {
  font-size: 13.5px; font-weight: 500;
  color: rgba(255,255,255,.88); line-height: 1.35;
}
.product-link.is-active .product-name { color: var(--gw-gray-900); }

/* Col 2 */
.dd-col-mid {
  padding: 30px 28px 26px; background: var(--gw-white);
  display: flex; flex-direction: column;
}
.detail-panel { display: none; flex-direction: column; flex: 1; }
.detail-panel.is-visible { display: flex; }
.detail-panel h3 { font-size: 18px; font-weight: 700; color: var(--gw-gray-900); margin-bottom: 10px; }
.detail-panel > p { font-size: 13.5px; line-height: 1.68; color: #4b5563; flex: 1; margin-bottom: 26px; }
.right-panel-stack { display: grid; flex: 1; min-height: 0; }
.right-panel-stack > .right-panel {
  grid-area: 1 / 1;
  display: flex; flex-direction: column; gap: 16px; width: 100%;
  visibility: hidden; pointer-events: none; opacity: 0;
  transition: opacity .15s ease;
}
.right-panel-stack > .right-panel:has(.res-link) { gap: 0; }
.right-panel-stack > .right-panel:has(.res-link) .rich-right-title { margin-bottom: 10px; }
.right-panel-stack > .right-panel.is-visible {
  visibility: visible; pointer-events: auto; opacity: 1;
}

/* Trial-Banner — endet mit Logo-Farbe */
.trial-banner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 18px 22px; border-radius: 10px;
  position: relative; overflow: hidden;
  background: linear-gradient(108deg, #e8294a 0%, #0078c8 52%, #3cb1f3 100%);
  border-left: none; box-shadow: none; cursor: pointer;
}
.trial-banner::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='80'%3E%3Cpath d='M0 40 Q50 10 100 40 T200 40 T300 40 T400 40 V80 H0Z' fill='rgba(255,255,255,.09)'/%3E%3C/svg%3E") center/cover no-repeat;
}
.trial-banner::after { content: none; }
.trial-label {
  font-size: 13px; font-weight: 700; color: rgba(255,255,255,.9);
  letter-spacing: .02em; position: relative; z-index: 1;
}
.trial-btn {
  font-size: 11.5px; font-weight: 700; letter-spacing: .08em;
  color: var(--gw-white); background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.35); border-radius: 5px;
  padding: 7px 16px; white-space: nowrap; flex-shrink: 0;
  position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 6px;
  transition: background var(--ease);
}
.trial-banner:hover .trial-btn { background: rgba(255,255,255,.28); }
.trial-btn::after { content: '→'; }
.trial-label, .trial-btn { position: relative; z-index: 1; }

/* Col 3 */
.dd-col-right {
  background: var(--gw-gray-50); border-left: 1px solid var(--gw-gray-200);
  padding: 26px 20px 24px; display: flex; flex-direction: column;
  border-radius: 0 0 14px 0;
}
.dd-col-right .col-label {
  font-size: 10px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gw-gray-400); margin-bottom: 12px;
}
.res-link {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 8px; border-radius: 8px; text-decoration: none;
  transition: background var(--ease);
}
.res-link:hover { background: var(--gw-blue-hover); }
.res-icon {
  width: 34px; height: 34px; border-radius: 8px;
  border: 1px solid var(--gw-gray-200); background: var(--gw-white);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: border-color var(--ease), background var(--ease);
}
.res-link:hover .res-icon { border-color: #bfdbfe; background: var(--gw-blue-light); }
.res-icon svg { width: 15px; height: 15px; color: var(--gw-gray-400); }
.res-link:hover .res-icon svg { color: var(--gw-blue-mid); }
.res-body { display: flex; flex-direction: column; gap: 2px; }
.res-title { font-size: 13px; font-weight: 600; color: var(--gw-gray-900); transition: color var(--ease); }
.res-link:hover .res-title { color: var(--gw-blue-mid); }
.res-sub { font-size: 12px; color: var(--gw-gray-500); line-height: 1.4; }
.res-divider { height: 1px; background: var(--gw-gray-200); margin: 6px -8px; }
.res-link.res-demos .res-icon { background: linear-gradient(135deg,var(--gw-blue-mid),var(--gw-blue)); border-color:var(--gw-blue); }
.res-link.res-demos .res-icon svg { color:#fff; }
.res-link.res-demos:hover .res-icon { background: linear-gradient(135deg,#005aa0,#0078c8); border-color:#005aa0; }

/* ============================================================  RICH DROPDOWNS  */
.dropdown-rich { display: grid; grid-template-columns: 1fr 300px; width: 840px; }
.dropdown-unternehmen { display: grid; grid-template-columns: 240px 380px; width: 620px; overflow: hidden; }
.dd-col-right-unt { background: var(--gw-white); padding: 20px; display: flex; flex-direction: column; gap: 0; border-radius: 0 0 14px 0; }
.dd-col-right-unt .col-label { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gw-gray-400); padding: 0 8px 10px; }
.dd-col-right-unt .dd-col-right-unt .status-row { margin-top: 4px; }

.rich-left { padding: 20px 16px 20px 20px; display: flex; flex-direction: column; gap: 0; min-width: 0; }
.rich-section-label { font-size: 9.5px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--gw-gray-400); padding: 18px 10px 5px; }
.rich-section-label:first-child { padding-top: 2px; }
.rich-link { display: flex; align-items: center; gap: 10px; padding: 11px 10px; border-radius: 8px; text-decoration: none; transition: background var(--ease); }
.rich-link:hover { background: var(--gw-blue-hover); }
.rich-link-icon { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: filter var(--ease); }
.rich-link:hover .rich-link-icon { filter: brightness(1.07) saturate(1.1); }
.rich-link-icon svg { width: 17px; height: 17px; }
.rich-link-body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.rich-link-title { font-size: 13.5px; font-weight: 600; color: var(--gw-gray-900); transition: color var(--ease); }
.rich-link:hover .rich-link-title { color: var(--gw-blue); }
.rich-link-desc { font-size: 11.5px; color: var(--gw-gray-400); line-height: 1.4; }

.rich-right { background: var(--gw-gray-50); border-left: 1px solid var(--gw-gray-200); padding: 24px 20px; display: flex; flex-direction: column; gap: 16px; border-radius: 0 0 14px 0; width: 100%; min-width: 0; }
.rich-right-title { font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--gw-gray-400); padding-top: 4px; }

.rich-promo-card { display: block; text-decoration: none; border-radius: 11px; overflow: hidden; border: 1px solid var(--gw-gray-200); transition: transform var(--ease), box-shadow var(--ease); }
.rich-promo-card:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(17,37,82,.13); }
.rich-promo-card .rpc-img { height: 90px; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; padding: 14px 16px; position: relative; overflow: hidden; }
.rich-promo-card .rpc-img::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse at 80% 20%, rgba(255,255,255,.15) 0%, transparent 60%); }
.rich-promo-card .rpc-eyebrow { font-size: 9.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.6); position: relative; z-index: 1; margin-bottom: 3px; }
.rich-promo-card .rpc-label { font-size: 14px; font-weight: 700; color: #fff; position: relative; z-index: 1; line-height: 1.3; }
.rich-promo-card .rpc-body { background: var(--gw-white); padding: 10px 16px 11px; display: flex; align-items: center; justify-content: space-between; }
.rich-promo-card .rpc-sub { font-size: 12px; color: var(--gw-gray-500); }
.rich-promo-card .rpc-arrow { width: 22px; height: 22px; border-radius: 50%; background: var(--gw-blue-hover); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background var(--ease); }
.rich-promo-card:hover .rpc-arrow { background: var(--gw-blue-mid); }
.rich-promo-card .rpc-arrow svg { width: 11px; height: 11px; color: var(--gw-blue-mid); }
.rich-promo-card:hover .rpc-arrow svg { color: #fff; }

.rich-badges { display: flex; flex-direction: column; gap: 6px; }
.rich-badge { display: flex; align-items: center; gap: 8px; padding: 6px 10px; border-radius: 7px; background: var(--gw-white); border: 1px solid var(--gw-gray-200); }
.rich-badge svg { width: 14px; height: 14px; flex-shrink: 0; }
.rich-badge span { font-size: 11.5px; font-weight: 600; color: var(--gw-gray-700); }

.rich-cta { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--gw-blue); text-decoration: none; margin-top: auto; transition: gap var(--ease), color var(--ease); }
.rich-cta:hover { gap: 10px; color: var(--gw-blue-mid); }
.rich-cta svg { width: 13px; height: 13px; }

/* ============================================================  ICON HELPERS  */
.ic-blue   { background: #e6f5fd; } .ic-blue   svg { color: #0098ef; }
.ic-teal   { background: #f0fdf4; } .ic-teal   svg { color: #059669; }
.ic-purple { background: #f5f3ff; } .ic-purple svg { color: #7c3aed; }
.ic-indigo { background: #eef2ff; } .ic-indigo svg { color: #4f46e5; }
.ic-sky    { background: #e6f5fd; } .ic-sky    svg { color: #0078c8; }
.ic-orange { background: #fff7ed; } .ic-orange svg { color: #ea580c; }
.ic-rose   { background: #fff1f2; } .ic-rose   svg { color: #e11d48; }
.ic-red    { background: #fff1f2; } .ic-red    svg { color: #cc1626; }
.ic-gray   { background: #f3f4f6; } .ic-gray   svg { color: #4b5563; }

.rich-link:hover .rich-link-icon.ic-blue   { background: #cceaf9; }
.rich-link:hover .rich-link-icon.ic-teal   { background: #d1fae5; }
.rich-link:hover .rich-link-icon.ic-purple { background: #ede9fe; }
.rich-link:hover .rich-link-icon.ic-indigo { background: #e0e7ff; }
.rich-link:hover .rich-link-icon.ic-sky    { background: #cceaf9; }
.rich-link:hover .rich-link-icon.ic-orange { background: #ffedd5; }
.rich-link:hover .rich-link-icon.ic-rose   { background: #ffe4e6; }
.rich-link:hover .rich-link-icon.ic-red    { background: #ffe4e6; }
.rich-link:hover .rich-link-icon.ic-gray   { background: #e5e7eb; }

/* ============================================================  TLD PRICE LIST  */
.tld-list { display: flex; flex-direction: column; gap: 1px; flex: 1; }
.tld-row { display: grid; grid-template-columns: 52px 1fr auto; align-items: center; gap: 0 8px; padding: 7px 10px; border-radius: 7px; transition: background var(--ease); text-decoration: none; }
.tld-row:hover { background: var(--gw-blue-hover); }
.tld-ext { display: inline-block; font-size: 12px; font-weight: 700; color: #fff; background: linear-gradient(120deg, #0078c8 0%, #0098ef 100%); border-radius: 5px; padding: 2px 7px; min-width: 52px; text-align: center; transition: background var(--ease), transform var(--ease); }
.tld-row:hover .tld-ext { background: linear-gradient(120deg, #005aa0 0%, #0078c8 100%); transform: scale(1.04); }
.tld-desc { font-size: 11px; color: var(--gw-gray-400); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tld-price { font-size: 11.5px; font-weight: 700; color: var(--gw-blue); white-space: nowrap; text-align: right; }
.tld-divider { height: 1px; background: var(--gw-gray-200); margin: 4px 0; }

/* Cart buttons */
.nav-cart-btn { display: inline-flex; align-items: center; gap: 7px; height: 100%; padding: 0 14px; text-decoration: none; flex-shrink: 0; transition: color var(--ease); }
.nav-cart-desktop { display: inline-flex; padding: 0 18px; height: 36px; border: 1.5px solid var(--gw-blue); border-radius: 5px; color: var(--gw-blue); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-right: 6px; transition: background var(--ease), color var(--ease); box-sizing: border-box; align-items: center; }
.nav-cart-desktop:hover { background: var(--gw-blue); color: #fff; }
.nav-cart-desktop svg { width: 15px; height: 15px; }
.nav-cart-mobile { display: none; color: var(--gw-gray-500); padding: 0 10px; }
.nav-cart-mobile svg { width: 22px; height: 22px; }
.nav-cart-mobile:hover { color: var(--gw-blue); }

/* ============================================================  HERO  */
.demo-bar { background: linear-gradient(135deg, #0d1b2a 0%, #1a3a6e 100%); color: #fff; text-align: center; padding: 100px 20px; }
.demo-bar h1 { font-size: 34px; font-weight: 700; margin-bottom: 12px; }
.demo-bar p  { font-size: 16px; opacity: .6; }

.mobile-nav { display: none; }

/* ============================================================
   MOBILE TOGGLE (hidden on desktop)
   ============================================================ */
.mobile-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; margin-left: auto; flex-shrink: 0; align-items: center;
}

/* ============================================================
   MOBILE NAVIGATION  ≤ 1250px — v7 Redesign
   ════════════════════════════════════════════════════════════
   ✓ Off-white Drawer mit subtiler Tiefe
   ✓ Brand-Indikator links bei offenem Trigger
   ✓ Farbige Icon-Bubbles mit Borders
   ✓ CTA als Brand-Gradient statt Gelb
   ✓ Smooth Open/Close Animations
   ✓ Subtile Trennlinien (ab Icon, nicht volle Breite)
   ============================================================ */
@media (max-width: 1250px) {

  /* Hide desktop */
  .nav-menu, .nav-cta, .nav-search-btn { display: none; }

  /* Hamburger */
  .mobile-toggle {
    display: flex;
    padding: 10px; border-radius: 8px;
    transition: background .16s ease;
  }
  .mobile-toggle .icon-menu  { display: block; }
  .mobile-toggle .icon-close { display: none; }
  .mobile-toggle.is-open .icon-menu  { display: none; }
  .mobile-toggle.is-open .icon-close { display: block; }
  .mobile-toggle:hover { background: rgba(0,120,200,.05); }
  .mobile-toggle.is-open { background: rgba(0,120,200,.06); }

  /* ── Drawer ── */
  .mobile-nav {
    position: fixed; inset: var(--nav-h) 0 0 0;
    background: #f8fafe;
    overflow-y: auto; z-index: 999;
    border-top: none;
    box-shadow: inset 0 1px 0 rgba(0,90,160,.06);
    flex-direction: column;
  }
  .mobile-nav.is-open {
    display: flex;
    animation: mobSlideIn .25s ease-out;
  }
  @keyframes mobSlideIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ── Top-Level Items ── */
  .mob-item { border-bottom: 1px solid rgba(0,50,120,.05); }

  .mob-trigger {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; padding: 18px 24px;
    background: none; border: none; cursor: pointer;
    font-family: var(--font); font-size: 15.5px; font-weight: 700;
    color: #0d1f3c; text-align: left;
    letter-spacing: -.01em;
    transition: color .18s ease, background .18s ease;
    position: relative;
  }
  .mob-trigger:hover {
    color: var(--gw-blue-mid);
    background: rgba(0,120,200,.035);
  }
  .mob-trigger.is-open {
    color: var(--gw-blue-deep);
    background: linear-gradient(90deg, rgba(0,90,160,.05), rgba(60,177,243,.02));
    border-bottom-color: transparent;
  }
  /* Aktiver Indikator links */
  .mob-trigger.is-open::after {
    content: '';
    position: absolute; left: 0; top: 8px; bottom: 8px;
    width: 3px; border-radius: 0 3px 3px 0;
    background: linear-gradient(180deg, var(--gw-blue-brand), var(--gw-blue-deep));
  }

  .mob-chevron {
    width: 15px; height: 15px; color: #94aec8; flex-shrink: 0;
    transition: transform .22s ease, color .22s ease;
  }
  .mob-trigger.is-open .mob-chevron {
    transform: rotate(180deg); color: var(--gw-blue-deep);
  }

  /* ── Direct Links ── */
  .mob-direct {
    display: flex; align-items: center;
    width: 100%; padding: 18px 24px;
    background: none; border: none; text-decoration: none;
    font-family: var(--font); font-size: 15.5px; font-weight: 700;
    color: #0d1f3c; letter-spacing: -.01em;
    transition: color .18s ease, background .18s ease;
  }
  .mob-direct:hover {
    color: var(--gw-blue-mid);
    background: rgba(0,120,200,.035);
  }

  /* ── Submenu Panel ── */
  .mob-sub {
    display: none;
    background: #fff;
    border-top: 1px solid rgba(0,50,120,.05);
    padding: 4px 0 12px;
    box-shadow: inset 0 2px 6px rgba(0,30,80,.025);
  }
  .mob-sub.is-open {
    display: block;
    animation: mobSubFade .2s ease-out;
  }
  @keyframes mobSubFade {
    from { opacity: 0; }
    to   { opacity: 1; }
  }

  /* Section Labels */
  .mob-section-label {
    font-size: 9.5px; font-weight: 800; letter-spacing: .14em;
    text-transform: uppercase; color: #8a9fba;
    padding: 14px 24px 5px;
  }
  .mob-section-label:first-child { padding-top: 10px; }

  /* ── Submenu Links ── */
  .mob-link {
    display: flex; align-items: center; gap: 14px;
    padding: 12px 24px; text-decoration: none;
    transition: background .16s ease;
    position: relative;
  }
  .mob-link:hover { background: rgba(0,120,200,.035); }
  .mob-link:active { background: rgba(0,120,200,.07); }

  /* Subtile Trennlinie (ab Icon-Position) */
  .mob-link + .mob-link::before {
    content: '';
    position: absolute; top: 0; left: 62px; right: 24px;
    height: 1px;
    background: rgba(0,50,120,.04);
  }

  /* Icon-Bubbles — farbig mit feinen Borders */
  .mob-link-icon {
    width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(0,0,0,.05);
    box-shadow: 0 1px 3px rgba(0,30,80,.04);
    transition: transform .16s ease, box-shadow .16s ease;
  }
  .mob-link:hover .mob-link-icon {
    transform: scale(1.03);
    box-shadow: 0 2px 6px rgba(0,30,80,.07);
  }
  .mob-link-icon svg { width: 17px; height: 17px; }

  /* Farbige Icon-Hintergründe auf Mobile */
  .mob-link-icon.ic-blue   { background: #e0f0ff; border-color: #c0ddf5; }
  .mob-link-icon.ic-teal   { background: #e6faf5; border-color: #b0e8d8; }
  .mob-link-icon.ic-purple { background: #f0ecfe; border-color: #d4c8f8; }
  .mob-link-icon.ic-indigo { background: #ebeeff; border-color: #c8d0f8; }
  .mob-link-icon.ic-sky    { background: #e0f0ff; border-color: #c0ddf5; }
  .mob-link-icon.ic-orange { background: #fff5eb; border-color: #f0d8b8; }
  .mob-link-icon.ic-rose   { background: #fef0f1; border-color: #f5c8ca; }
  .mob-link-icon.ic-red    { background: #fef0f1; border-color: #f5c8ca; }
  .mob-link-icon.ic-gray   { background: #f0f2f5; border-color: #dde0e6; }

  /* Link-Text */
  .mob-link-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
  .mob-link-title {
    font-size: 14px; font-weight: 600; color: #0d1f3c;
    line-height: 1.3; transition: color .16s ease;
  }
  .mob-link:hover .mob-link-title { color: var(--gw-blue-mid); }
  .mob-link-desc { font-size: 11.5px; color: #7a8fa8; line-height: 1.35; }

  /* Cart + Hamburger */
  .nav-cart-desktop { display: none !important; }
  .nav-cart-mobile  { display: inline-flex; margin-left: auto; color: #5a7290; padding: 0 12px; }
  .nav-cart-mobile:hover { color: var(--gw-blue-mid); }
  .mobile-toggle    { margin-left: 0; }

  .variant-switcher-bar { display: none !important; }

  /* ── CTA: Brand-Gradient ── */
  .mob-cta-wrap {
    padding: 14px 24px 32px;
    margin-top: auto;
    background: linear-gradient(180deg, transparent, rgba(0,40,100,.015));
    border-top: 1px solid rgba(0,50,120,.05);
  }
  .mob-cta {
    display: flex; align-items: center; justify-content: center; gap: 9px;
    width: 100%; padding: 15px;
    color: #fff;
    background: linear-gradient(135deg, var(--gw-blue-deep) 0%, var(--gw-blue) 100%);
    font-family: var(--font); font-size: 14.5px; font-weight: 700;
    letter-spacing: .04em; text-decoration: none; border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,90,160,.22), 0 1px 3px rgba(0,0,0,.06);
    transition: box-shadow .22s ease, filter .18s ease;
  }
  .mob-cta:hover {
    filter: brightness(1.06);
    box-shadow: 0 8px 24px rgba(0,90,160,.30), 0 2px 6px rgba(0,0,0,.08);
    background: linear-gradient(135deg, var(--gw-blue-deep) 0%, var(--gw-blue) 100%);
    color: #fff;
  }

  .vs-btn { font-size: 11px; padding: 6px 10px; }
}

/* ============================================================
   EXTRA-SMALL MOBILE  ≤ 380px
   ============================================================ */
@media (max-width: 380px) {
  .mob-trigger,
  .mob-direct { padding: 15px 18px; font-size: 14.5px; }
  .mob-link { padding: 10px 18px; }
  .mob-link-icon { width: 34px; height: 34px; }
  .mob-link-title { font-size: 13.5px; }
  .mob-cta-wrap { padding: 12px 18px 26px; }
}


/* ============================================================
   SHARED NAV COMPONENTS
   ============================================================ */

/* USP checkmarks */
.usp-list { display:flex; flex-direction:column; gap:10px; }
.usp-item { display:flex; align-items:center; gap:10px; }
.usp-check { width:18px; height:18px; border-radius:50%; background:#d1fae5; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.usp-check svg { width:9px; height:9px; color:#059669; }
.usp-text { font-size:12.5px; color:#374151; line-height:1.4; }
.usp-text strong { font-weight:600; color:#111827; }

/* Feature card */
.feat-card { display:flex; flex-direction:column; border:1px solid #e2e6ea; border-radius:10px; overflow:hidden; text-decoration:none; transition: transform .18s, box-shadow .18s; }
.feat-card:hover { transform:translateY(-2px); box-shadow:0 8px 24px rgba(17,37,82,.11); }
.feat-card-img { height:72px; display:flex; align-items:center; justify-content:center; padding:0 16px; position:relative; overflow:hidden; }
.feat-card-img svg { overflow: visible; position: relative; z-index: 1; }
.feat-card-img::after { content:''; position:absolute; inset:0; pointer-events:none; background:radial-gradient(ellipse at 70% 30%,rgba(255,255,255,.18) 0%,transparent 60%); }
.feat-card-body { padding:13px 14px 14px; background:#fff; }
.feat-card-title { font-size:13px; font-weight:700; color:#111827; margin-bottom:3px; }
.feat-card-desc  { font-size:11.5px; color:#6b7280; line-height:1.45; }

/* Compliance tiles */
.compliance-grid { display:grid; grid-template-columns:1fr 1fr; gap:7px; }
.compliance-tile { background:#fff; border:1px solid #e2e6ea; border-radius:9px; padding:11px 10px; text-align:center; }
.compliance-tile .ct-flag { font-size:17px; margin-bottom:3px; }
.compliance-tile .ct-name { font-size:11px; font-weight:700; color:#112552; }
.compliance-tile .ct-sub  { font-size:10px; color:#9ca3af; }

/* Status row */
.status-row { display:flex; align-items:center; gap:8px; padding:8px 10px; border-radius:7px; background:#fff; border:1px solid #e2e6ea; white-space: nowrap; }
.status-dot { width:8px; height:8px; border-radius:50%; background:#10b981; flex-shrink:0; box-shadow:0 0 0 2px rgba(16,185,129,.2); }
.status-row span { font-size:12px; font-weight:600; color:#374151; }

/* Contact card — tieferer Gradient */

/* Transfer Steps */
.transfer-steps { display: flex; flex-direction: column; gap: 8px; }
.tstep { display: flex; align-items: flex-start; gap: 10px; }
.tstep-num { width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0; background: var(--gw-blue); color: #fff; font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.tstep-text { font-size: 12.5px; color: #374151; line-height: 1.45; }
.tstep-text strong { color: #111827; font-weight: 600; }

/* DNS Record Badges */
.dns-grid { display: flex; flex-wrap: wrap; gap: 6px; }
.dns-badge { font-size: 10.5px; font-weight: 700; letter-spacing: .04em; padding: 3px 9px; border-radius: 5px; background: #e0f0fd; color: #0056a8; border: 1px solid #b8dcf8; }
.dns-badge-more { background: var(--gw-gray-100); color: var(--gw-gray-400); border-color: var(--gw-gray-200); }

/* Info-Tile Grid */
.info-tile-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.info-tile { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 10px 6px; border-radius: 9px; background: var(--gw-gray-50); border: 1px solid var(--gw-gray-200); text-align: center; transition: border-color var(--ease), background var(--ease); }
.info-tile:hover { background: #e0f0fd; border-color: #b8dcf8; }
.info-tile svg { width: 18px; height: 18px; color: var(--gw-blue-mid); margin-bottom: 1px; }
.info-tile-label { font-size: 11px; font-weight: 700; color: #111827; line-height: 1.2; }
.info-tile-sub   { font-size: 10px; color: var(--gw-gray-500); line-height: 1.2; }

/* Security Badge Grid */
.sec-badge-grid { display: flex; flex-wrap: wrap; gap: 6px; }
.sec-badge { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 600; color: #0056a8; background: #e0f0fd; border: 1px solid #b8dcf8; padding: 4px 9px; border-radius: 20px; transition: background var(--ease), color var(--ease); }
.sec-badge:hover { background: var(--gw-blue); color: #fff; border-color: var(--gw-blue); }
.sec-badge svg { width: 11px; height: 11px; flex-shrink: 0; }
.sec-badge-wide { flex-basis: 100%; }

/* Performance Stat Grid */
.perf-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin-bottom: 4px; }
.perf-stat { display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 10px 8px; border-radius: 9px; background: linear-gradient(135deg, #0056a8 0%, #0098ef 100%); border: none; text-align: center; box-shadow: 0 3px 12px rgba(0,100,200,.2); }
.perf-val { font-size: 20px; font-weight: 800; color: #fff; line-height: 1; letter-spacing: -.02em; }
.perf-val small { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.8); }
.perf-label { font-size: 10px; font-weight: 600; color: rgba(255,255,255,.72); text-transform: uppercase; letter-spacing: .06em; }
/* ============================================================
   PANEL CONTENT MODULES  (Webhosting & co.)
   ============================================================ */

/* Kurze Hook-Zeile direkt unter h3 */
.panel-tagline {
  font-size: 12.5px; font-weight: 600;
  color: var(--gw-blue-mid); letter-spacing: .01em;
  margin-bottom: 12px;
}

/* Tech-Feature-Badges: HTTP/3, Brotli, Caching … */
.panel-tech-badges {
  display: flex; flex-wrap: wrap; gap: 5px;
  margin-bottom: 14px;
}
.panel-tech-badge {
  font-size: 10.5px; font-weight: 700; letter-spacing: .04em;
  padding: 3px 9px; border-radius: 5px;
  background: #e0f0fd; color: #0056a8; border: 1px solid #b8dcf8;
}

/* Kurzer Beschreibungstext unter den Badges */
.panel-sub {
  font-size: 13px; line-height: 1.6; color: #4b5563;
  margin-bottom: 14px;
}

/* 2-spaltiges USP-Grid — flex:1 füllt den Raum über dem Trial-Banner */
.panel-usp-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6px 10px; flex: 1; align-content: start;
  margin-bottom: 20px;
}
.panel-usp-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; color: #374151; line-height: 1.35;
}
.panel-usp-item svg {
  width: 14px; height: 14px; color: #059669; flex-shrink: 0;
}
.panel-usp-item strong { font-weight: 600; color: #111827; }

/* ============================================================
   RIGHT PANEL — Preis-Teaser-Karte  (rp-price-*)
   ============================================================ */
.rp-price-card {
  background: linear-gradient(135deg, #0056a8 0%, #0098ef 100%);
  border-radius: 11px; padding: 16px 18px;
  position: relative; overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,100,200,.22);
}
.rp-price-card::after {
  content: '';
  position: absolute; top: -32px; right: -32px;
  width: 90px; height: 90px; border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.rp-price-card .rp-wave {
  position: absolute; inset: 0; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='80'%3E%3Cpath d='M0 50 Q40 30 80 50 T160 50 T240 50 T320 50 V80 H0Z' fill='rgba(255,255,255,.11)'/%3E%3Cpath d='M0 60 Q40 45 80 60 T160 60 T240 60 T320 60 V80 H0Z' fill='rgba(255,255,255,.07)'/%3E%3C/svg%3E") bottom/cover no-repeat;
  border-radius: 11px;
}
.rp-price-eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.75);
  margin-bottom: 6px;
}
.rp-price-row {
  display: flex; align-items: baseline; gap: 5px;
  margin-bottom: 4px;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.rp-price-from {
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,.7);
}
.rp-price-amount {
  font-size: 22px; font-weight: 800; color: #fff;
  letter-spacing: -.02em; line-height: 1;
  white-space: nowrap;
}
.rp-price-period {
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.65);
}
.rp-price-note {
  font-size: 10.5px; color: rgba(255,255,255,.5); line-height: 1.4;
}


/* Note unten besser lesbar */
.rp-price-note {
  font-size: 11px;
  color: rgba(255,255,255,.82);
  line-height: 1.45;
}


/* exkl. MwSt. — inline nach /Mt., baseline-aligned, dezent */

/* Contact-Card kompakter */

/* ── USP grid items: text in span prevents flex-gap between nodes ── */
.panel-usp-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: #374151; line-height: 1.35;
}
.panel-usp-item > span:not(.usp-check) { display: inline; }
.panel-usp-item strong { font-weight: 600; color: #111827; }

/* ── Contact card: flag + name horizontal ── */

/* exkl. MwSt — sitzt bündig auf Unterkante von /Mt. */
.rp-price-vat {
  font-size: 10px; font-weight: 500;
  color: rgba(255,255,255,.72);
  letter-spacing: .02em;
  white-space: nowrap;
}

/* ── Contact Card — einheitlich mit Preis-Kachel ── */
.contact-card {
  background: linear-gradient(135deg, #0056a8 0%, #0098ef 100%);
  border-radius: 9px; padding: 14px 16px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 10px;
  box-shadow: 0 4px 18px rgba(0,100,200,.22);
}
.contact-card::before {
  content: ''; position: absolute; top: -20px; right: -20px;
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(255,255,255,.07); pointer-events: none;
}
.contact-card-header {
  display: flex; align-items: center; gap: 10px;
}
.contact-card-flag { font-size: 20px; flex-shrink: 0; line-height: 1; }
.contact-card-info { display: flex; flex-direction: column; gap: 2px; }
.contact-card-name { font-size: 13.5px; font-weight: 700; color: #fff; white-space: nowrap; }
.contact-card-loc  { font-size: 11px; color: rgba(255,255,255,.6); white-space: nowrap; }
.contact-phone {
  display: flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.15); border-radius: 8px;
  padding: 8px 12px; text-decoration: none;
  transition: background .18s;
}
.contact-phone:hover { background: rgba(255,255,255,.24); }
.contact-phone svg { width: 14px; height: 14px; color: rgba(255,255,255,.85); flex-shrink: 0; }
.contact-phone-num { font-size: 13.5px; font-weight: 700; color: #fff; }
.contact-phone-sub { font-size: 10.5px; color: rgba(255,255,255,.55); margin-top: 1px; }

/* Subtle wave on perf-stat tiles */
.perf-stat { position: relative; overflow: hidden; }
.perf-stat::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='80'%3E%3Cpath d='M0 50 Q40 30 80 50 T160 50 T240 50 T320 50 V80 H0Z' fill='rgba(255,255,255,.11)'/%3E%3Cpath d='M0 60 Q40 45 80 60 T160 60 T240 60 T320 60 V80 H0Z' fill='rgba(255,255,255,.07)'/%3E%3C/svg%3E") bottom/cover no-repeat;
  border-radius: 9px;
}
/* Subtle wave on contact-card */
.contact-card .rp-wave {
  position: absolute; inset: 0; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='80'%3E%3Cpath d='M0 50 Q40 30 80 50 T160 50 T240 50 T320 50 V80 H0Z' fill='rgba(255,255,255,.11)'/%3E%3Cpath d='M0 60 Q40 45 80 60 T160 60 T240 60 T320 60 V80 H0Z' fill='rgba(255,255,255,.07)'/%3E%3C/svg%3E") bottom/cover no-repeat;
  border-radius: 9px;
}