:root {
  --brand: #171b78;
  --brand-dark: #0d124f;
  --brand-soft: #eef0ff;
  --accent: #21a6c7;
  --accent-soft: #e7f8fc;
  --ink: #101c35;
  --muted: #5c6980;
  --line: #e4e9f2;
  --surface: #ffffff;
  --page: #f6f8fc;
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 32px;
  --shadow-sm: 0 12px 35px rgba(20, 32, 76, .08);
  --shadow: 0 24px 70px rgba(20, 32, 76, .13);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--page);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

.plasma-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 10%, rgba(33, 166, 199, .11), transparent 28%),
    radial-gradient(circle at 92% 34%, rgba(23, 27, 120, .10), transparent 32%),
    url("../../img/plasma-bg.png") center / 130% auto no-repeat;
  opacity: .72;
}

.container { max-width: 1180px; }

.topbar {
  padding: 8px 0;
  color: rgba(255,255,255,.86);
  background: var(--brand-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
}

.topbar a { transition: color .2s ease; }
.topbar a:hover { color: #7ee7ff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 8px 30px rgba(18, 28, 63, .08);
}

.navbar {
  min-height: 82px;
  padding: 10px 0;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(228,233,242,.85);
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--brand);
}

.navbar-brand img {
  object-fit: contain;
  border-radius: 12px;
}

.navbar-brand span { display: grid; line-height: 1.05; }
.navbar-brand strong { font-size: 17px; letter-spacing: .02em; }
.navbar-brand small { margin-top: 5px; color: var(--muted); font-size: 11px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; }

.navbar-nav { gap: 2px; }

.navbar .nav-link {
  position: relative;
  padding: 11px 10px !important;
  color: #38445b;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: color .2s ease, background .2s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--brand);
  background: var(--brand-soft);
}

.navbar .nav-contact {
  margin-left: 8px;
  padding-inline: 17px !important;
  color: #fff;
  background: var(--brand);
}

.navbar .nav-contact:hover,
.navbar .nav-contact.active {
  color: #fff;
  background: var(--brand-dark);
}

.navbar-toggler { border: 1px solid var(--line); box-shadow: none !important; }

.site-main { min-height: 62vh; }

.hero {
  position: relative;
  padding-top: 76px;
  padding-bottom: 90px;
}

.hero::before {
  position: absolute;
  inset: 28px -34px 32px;
  z-index: -1;
  content: "";
  background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(242,246,255,.90));
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 42px;
  box-shadow: var(--shadow);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(330px, .82fr);
  gap: 54px;
  align-items: start;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 13px;
  color: var(--brand);
  background: var(--brand-soft);
  border: 1px solid #d9ddff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
}

.hero h1 {
  max-width: 780px;
  margin: 20px 0 20px;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 57px);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.07;
}

.hero > .hero-grid > div:first-child > p {
  color: var(--muted);
  font-size: 17px;
}

.hero-card {
  position: sticky;
  top: 132px;
  padding: 16px;
  background: linear-gradient(180deg, #fff, #f1f4ff);
  border: 1px solid #dde3f0;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(23,27,120,.16);
}

.hero-img {
  display: block;
  width: 100%;
  height: auto !important;
  max-height: 650px;
  object-fit: contain !important;
  border-radius: 22px !important;
}

.note {
  padding: 20px 22px !important;
  color: #23314a !important;
  background: linear-gradient(135deg, #eef0ff, #edfaff) !important;
  border: 1px solid #d8e4f2 !important;
  border-left: 4px solid var(--brand) !important;
  border-radius: var(--radius-sm) !important;
}

.note b { color: var(--brand-dark); }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  border-color: var(--brand);
  box-shadow: 0 12px 26px rgba(23,27,120,.20);
}

.btn-primary:hover,
.btn-primary:focus { color: #fff; background: var(--brand-dark); border-color: var(--brand-dark); }

.btn-secondary {
  color: #fff;
  background: linear-gradient(135deg, #158cad, var(--accent));
  border-color: var(--accent);
}

.btn-ghost {
  color: var(--brand);
  background: #fff;
  border: 1px solid #d8deea;
}

.site-main > section {
  position: relative;
  margin-top: 64px;
  margin-bottom: 64px;
  padding: 48px;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(224,230,240,.92);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.site-main > section + section { margin-top: -28px; }

.section-title {
  position: relative;
  margin: 0 0 14px;
  padding-top: 20px;
  color: var(--ink);
  font-size: clamp(28px, 3.2vw, 43px);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.12;
}

.section-title::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--brand), var(--accent));
  border-radius: 999px;
}

.section-sub { margin: 0 0 28px; color: var(--muted); font-size: 16px; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  height: 100%;
  padding: 23px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(22,35,72,.06);
}

.card h3 { margin: 0 0 9px; color: var(--brand-dark); font-size: 18px; font-weight: 800; }
.card p { margin-bottom: 0; color: var(--muted); }

.card-blue {
  color: #fff;
  background: linear-gradient(145deg, var(--brand), var(--brand-dark));
  border-color: transparent;
  box-shadow: 0 18px 40px rgba(23,27,120,.18);
}

.card-blue h3 { color: #fff; }
.card-blue p { color: rgba(255,255,255,.82); }

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .75fr);
  gap: 30px;
}

#ablauf .two-col { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }

.list { display: grid; gap: 10px; margin-top: 12px; }
.list.grid-cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }

.list-item {
  padding: 14px 16px;
  color: #4d5d75;
  background: #f6f8fc;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.list-item b { color: var(--brand); }
.list-item ul { margin: 9px 0 0; padding-left: 19px; }

.quote { color: #25324a !important; font-size: 16px; line-height: 1.7; }
.who { margin-top: 12px; color: var(--brand); font-size: 13px; font-weight: 800; }

.contact-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
  gap: 28px;
  padding: 28px;
  background: #f7f9fd;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

label { color: #26344d; font-size: 13px; font-weight: 800; }

input:not([type="checkbox"]), textarea {
  width: 100%;
  margin-top: 7px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #d9dfeb;
  border-radius: 12px;
  outline: none;
  transition: border .2s ease, box-shadow .2s ease;
}

input:not([type="checkbox"]):focus, textarea:focus {
  border-color: #8991dc;
  box-shadow: 0 0 0 4px rgba(23,27,120,.10);
}

textarea { min-height: 150px; resize: vertical; }
.form-check-input { flex: 0 0 auto; }
.small { color: var(--muted); }

.site-footer {
  margin-top: 92px;
  color: rgba(255,255,255,.76);
  background: linear-gradient(135deg, var(--brand-dark), #171b78);
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 42px;
  padding-bottom: 30px;
}

.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { border-radius: 13px; }
.footer-brand div { display: grid; }
.footer-brand strong { color: #fff; }
.footer-brand span { margin-top: 3px; font-size: 12px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 22px; font-size: 13px; font-weight: 700; }
.footer-links a:hover { color: #7ee7ff; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  padding-bottom: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 12px;
}

.footer-bottom a { color: #fff; }

.admin-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  color: rgba(255,255,255,.48) !important;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 9px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.admin-footer-link svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.admin-footer-link:hover {
  color: #72dfea !important;
  background: rgba(255,255,255,.05);
  border-color: rgba(114,223,234,.35);
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  box-shadow: 0 16px 35px rgba(13,18,79,.32);
}

.page-impressum .site-main > section,
.page-datenschutz .site-main > section { max-width: 920px; }

@media (max-width: 1199.98px) {
  .navbar-collapse { padding: 16px 0 8px; }
  .navbar-nav { align-items: stretch !important; gap: 4px; }
  .navbar .nav-contact { margin: 6px 0 0; text-align: center; }
}

@media (max-width: 991.98px) {
  .hero-grid, .two-col, .contact-wrap { grid-template-columns: 1fr; }
  .hero-card { position: static; max-width: 600px; margin: 0 auto; }
  .cards { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .hero::before { inset-inline: -10px; }
}

@media (max-width: 767.98px) {
  .topbar-contact a:first-child { display: none; }
  .hero { padding: 40px 12px 58px; }
  .hero::before { inset: 14px 0 18px; border-radius: 26px; }
  .hero-grid { gap: 30px; }
  .hero h1 { font-size: clamp(31px, 9vw, 43px); }
  .site-main > section { margin: 28px 12px; padding: 28px 20px; border-radius: 24px; }
  .site-main > section + section { margin-top: 0; }
  .cards, .list.grid-cols-2, #ablauf .two-col { grid-template-columns: 1fr; }
  .contact-wrap { padding: 18px; }
  .contact-wrap form > div:first-of-type { grid-template-columns: 1fr !important; }
  .footer-main { align-items: flex-start; flex-direction: column; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .sticky-cta { right: 12px; bottom: 12px; left: 12px; }
}

@media (max-width: 520px) {
  .topbar .container { justify-content: center !important; }
  .topbar-contact { display: none !important; }
  .navbar-brand img { width: 40px; height: 40px; }
  .navbar-brand strong { font-size: 15px; }
  .navbar-brand small { font-size: 9px; }
  .cta-row .btn { width: 100%; }
  .section-title { font-size: 30px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}

/* Premium sales layout */
:root {
  --brand: #111b52;
  --brand-dark: #080d27;
  --accent: #32bdd2;
  --accent-strong: #1595ac;
  --warm: #cbb07a;
  --page: #f3f5f8;
  --ink: #12182a;
}

body { background: #f4f6f9; }

.plasma-bg { opacity: .23; }

.topbar {
  padding: 9px 0;
  color: rgba(255,255,255,.72);
  background: #070b20;
  border-bottom: 1px solid rgba(255,255,255,.08);
  letter-spacing: .04em;
}

.topbar span { display: flex; align-items: center; gap: 9px; }
.topbar span i { width: 3px; height: 3px; background: var(--accent); border-radius: 50%; }

.navbar {
  min-height: 88px;
  color: #fff;
  background: rgba(10,15,43,.98);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 14px 36px rgba(4,8,28,.18);
}

.navbar-brand, .navbar-brand:hover { color: #fff; }
.navbar-brand img { padding: 3px; background: #fff; box-shadow: 0 0 0 1px rgba(255,255,255,.25); }
.navbar-brand small { color: rgba(255,255,255,.55); }

.navbar .nav-link { color: rgba(255,255,255,.72); }
.navbar .nav-link:hover, .navbar .nav-link.active { color: #fff; background: rgba(255,255,255,.09); }
.navbar .nav-contact { color: #071128; background: var(--accent); }
.navbar .nav-contact:hover, .navbar .nav-contact.active { color: #071128; background: #7fe4ef; }
.navbar-toggler { border-color: rgba(255,255,255,.25); }
.navbar-toggler-icon { filter: brightness(0) invert(1); }

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent-strong);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.site-main > section.sales-hero {
  position: relative;
  max-width: none !important;
  margin: 0 !important;
  padding: 88px 0 0 !important;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 78% 35%, rgba(42,184,207,.18), transparent 28%),
    radial-gradient(circle at 15% 90%, rgba(48,72,160,.20), transparent 32%),
    linear-gradient(125deg, #080d27 0%, #101b52 68%, #0c3655 100%) !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.sales-hero::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 52%;
  height: 100%;
  content: "";
  opacity: .12;
  background: url("../../img/plasma-bg.png") center / cover no-repeat;
  mix-blend-mode: screen;
  pointer-events: none;
}

.sales-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, .95fr);
  gap: 70px;
  align-items: center;
}

.sales-hero-copy { padding-bottom: 62px; }

.sales-hero .badge {
  color: #8ce9f2;
  background: rgba(50,189,210,.10);
  border: 1px solid rgba(94,222,239,.25);
}

.sales-hero h1 {
  max-width: 760px;
  margin: 23px 0 24px;
  color: #fff;
  font-size: clamp(44px, 5.1vw, 72px);
  font-weight: 750;
  letter-spacing: -.055em;
  line-height: 1.01;
}

.sales-hero-copy > p:not(.small) {
  max-width: 690px;
  color: rgba(255,255,255,.69);
  font-size: 16px;
  line-height: 1.75;
}

.sales-hero .cta-row { margin-top: 32px; }
.sales-hero .btn-primary { color: #071128; background: var(--accent); border-color: var(--accent); box-shadow: 0 15px 38px rgba(30,188,212,.20); }
.sales-hero .btn-primary:hover { color: #071128; background: #78e2ec; }
.sales-hero .btn-ghost { color: #fff; background: transparent; border-color: rgba(255,255,255,.22); }
.sales-hero .btn-secondary { color: #fff; background: transparent; border-color: rgba(255,255,255,.22); }
.sales-hero .small { color: rgba(255,255,255,.42) !important; }

.sales-product-stage {
  position: relative;
  z-index: 2;
  padding: 26px 26px 0;
  background: linear-gradient(150deg, #fff, #e9edf4);
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 28px 28px 0 0;
  box-shadow: 0 45px 90px rgba(0,0,0,.34);
}

.sales-product-stage > img {
  display: block;
  width: 100%;
  height: 500px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.availability-pill {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  color: #233148;
  background: rgba(255,255,255,.90);
  border: 1px solid rgba(18,31,59,.09);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(16,29,61,.10);
}

.availability-pill span { width: 7px; height: 7px; background: #27ae69; border-radius: 50%; box-shadow: 0 0 0 4px rgba(39,174,105,.13); }

.stage-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 -26px;
  padding: 20px 25px;
  color: #fff;
  background: #0b1235;
}

.stage-caption div { display: grid; }
.stage-caption small { color: rgba(255,255,255,.5); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.stage-caption strong { font-size: 15px; }
.stage-caption a { color: #74deea; font-size: 12px; font-weight: 800; }
.stage-caption a span { margin-left: 7px; }

.trust-rail {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  margin-top: 0;
  padding: 0;
  background: #fff;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -18px 45px rgba(0,0,0,.12);
}

.trust-rail > div { display: grid; padding: 21px 26px; border-right: 1px solid #e7eaf0; }
.trust-rail > div:last-child { border-right: 0; }
.trust-rail strong { color: #111a34; font-size: 16px; }
.trust-rail span { color: #7a8496; font-size: 11px; }

.inventory-showcase,
.sales-paths,
.device-catalog,
.purchase-options,
.seller-intro {
  max-width: 1180px;
  margin: 78px auto !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}

.section-heading-row h2 {
  max-width: 720px;
  margin: 0;
  color: #10172b;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 750;
  letter-spacing: -.045em;
  line-height: 1.04;
}

.text-link { color: #152258; font-size: 13px; font-weight: 800; white-space: nowrap; }
.text-link span { margin-left: 8px; color: var(--accent-strong); }

.inventory-grid { display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(340px, .82fr); gap: 24px; }

.device-card {
  display: grid;
  grid-template-columns: minmax(230px, .82fr) minmax(280px, 1.18fr);
  min-height: 390px;
  max-height: 430px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e1e5eb;
  border-radius: 22px;
  box-shadow: 0 22px 55px rgba(17,26,57,.09);
}

.device-image { position: relative; height: 100%; min-height: 390px; padding: 24px; background: linear-gradient(145deg, #f7f8fa, #e9edf3); }
.device-image img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.condition-tag { position: absolute; top: 18px; left: 18px; z-index: 2; padding: 8px 11px; color: #17213b; background: #fff; border: 1px solid #e0e4eb; border-radius: 999px; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.device-content { display: flex; flex-direction: column; justify-content: center; padding: 26px; }
.device-type { color: var(--accent-strong); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.device-content h3 { margin: 5px 0 14px; font-size: 30px; font-weight: 750; letter-spacing: -.03em; }
.device-content ul { display: flex; flex-wrap: wrap; gap: 8px 20px; margin: 0 0 24px; padding: 0; color: #687386; font-size: 12px; list-style: none; }
.device-content li::before { margin-right: 7px; color: #24a9bc; content: "✓"; font-weight: 900; }
.device-actions { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-top: 20px; border-top: 1px solid #e6e9ee; }
.device-actions strong { color: #3a4559; font-size: 12px; }

.consulting-card { position: relative; height: 430px; min-height: 430px; max-height: 430px; overflow: hidden; border-radius: 22px; box-shadow: 0 22px 55px rgba(17,26,57,.16); }
.consulting-card > img { position: absolute; width: 100%; height: 100%; object-fit: cover; }
.consulting-card::after { position: absolute; inset: 0; content: ""; background: linear-gradient(to top, rgba(5,10,33,.95), rgba(5,10,33,.08) 78%); }
.consulting-overlay { position: absolute; right: 0; bottom: 0; left: 0; z-index: 2; padding: 32px; color: #fff; }
.consulting-overlay .eyebrow { color: #70deeb; }
.consulting-overlay h3 { margin: 0 0 12px; font-size: 30px; line-height: 1.08; letter-spacing: -.035em; }
.consulting-overlay p { color: rgba(255,255,255,.68); font-size: 13px; }

.path-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.path-card { position: relative; min-height: 310px; padding: 30px; overflow: hidden; background: #fff; border: 1px solid #e1e5eb; border-radius: 20px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.path-card:hover { transform: translateY(-6px); border-color: #b9dce2; box-shadow: 0 25px 55px rgba(14,24,59,.12); }
.path-card > span { display: block; margin-bottom: 70px; color: #aeb5c1; font-size: 11px; font-weight: 800; letter-spacing: .15em; }
.path-card h3 { margin-bottom: 12px; color: #111a35; font-size: 23px; font-weight: 750; letter-spacing: -.025em; }
.path-card p { color: #748094; font-size: 13px; }
.path-card b { position: absolute; bottom: 28px; color: #14245d; font-size: 12px; }

.page-hero {
  max-width: none !important;
  margin: 0 !important;
  padding: 64px 0 !important;
  color: #fff;
  background: linear-gradient(125deg, #080d27, #111d57) !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.page-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; }
.page-hero h1 { margin: 7px 0 22px; font-size: clamp(44px,5vw,66px); font-weight: 750; letter-spacing: -.055em; line-height: 1; }
.page-hero p { color: rgba(255,255,255,.68); font-size: 15px; }
.page-hero img { width: 100%; max-height: 480px; object-fit: contain; border-radius: 24px; mix-blend-mode: screen; }

.catalog-card { display: grid; grid-template-columns: .9fr 1.1fr; overflow: hidden; background: #fff; border: 1px solid #e0e4ea; border-radius: 24px; box-shadow: 0 25px 65px rgba(17,26,57,.11); }
.catalog-image { position: relative; min-height: 410px; max-height: 460px; padding: 28px; background: linear-gradient(145deg,#f7f8fa,#e8ecf2); }
.catalog-image img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.catalog-details { display: flex; flex-direction: column; justify-content: center; padding: 48px; }
.catalog-details h2 { margin: 6px 0; font-size: 42px; font-weight: 750; letter-spacing: -.04em; }
.catalog-details > p { color: #6f7a8c; }
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin: 28px 0; overflow: hidden; background: #e1e5eb; border: 1px solid #e1e5eb; border-radius: 14px; }
.spec-grid div { display: grid; padding: 18px; background: #f8f9fb; }
.spec-grid small, .catalog-actions small { color: #929aaa; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.spec-grid strong { color: #18213a; font-size: 14px; }
.catalog-actions { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.catalog-actions > div { display: grid; }
.catalog-actions > div strong { color: #1c8651; font-size: 13px; }

.purchase-options .note, .seller-intro .note { padding: 34px !important; background: #fff !important; border: 1px solid #e0e4ea !important; border-left: 5px solid var(--accent) !important; border-radius: 20px !important; box-shadow: 0 20px 50px rgba(17,26,57,.08); }

@media (max-width: 1199.98px) {
  .navbar .nav-link { padding-inline: 13px !important; }
  .inventory-showcase, .sales-paths, .device-catalog, .purchase-options, .seller-intro { padding-inline: 20px !important; }
}

@media (max-width: 991.98px) {
  .sales-hero-grid, .inventory-grid, .page-hero-grid, .catalog-card { grid-template-columns: 1fr; }
  .sales-product-stage { max-width: 620px; margin: 0 auto; }
  .sales-product-stage > img { height: 430px; }
  .trust-rail { grid-template-columns: repeat(2,1fr); border-radius: 0; }
  .trust-rail > div:nth-child(2) { border-right: 0; }
  .path-grid { grid-template-columns: 1fr; }
  .path-card { min-height: 240px; }
  .path-card > span { margin-bottom: 35px; }
  .consulting-card { height: 400px; min-height: 400px; max-height: 400px; }
  .catalog-image { min-height: 380px; }
}

@media (max-width: 767.98px) {
  .sales-hero { padding-top: 52px !important; }
  .sales-hero-grid { gap: 35px; }
  .sales-hero h1 { font-size: 44px; }
  .sales-product-stage { padding: 18px 18px 0; border-radius: 20px 20px 0 0; }
  .sales-product-stage > img { height: 330px; }
  .stage-caption { margin-inline: -18px; }
  .trust-rail { margin-inline: -12px; }
  .trust-rail > div { padding: 16px; }
  .inventory-showcase, .sales-paths, .device-catalog, .purchase-options, .seller-intro { margin: 55px auto !important; padding-inline: 12px !important; }
  .section-heading-row { align-items: flex-start; flex-direction: column; }
  .device-card { display: block; min-height: 0; max-height: none; }
  .device-image { height: 300px; min-height: 300px; }
  .device-actions, .catalog-actions { align-items: stretch; flex-direction: column; }
  .device-actions .btn, .catalog-actions .btn { width: 100%; }
  .consulting-card { height: 380px; min-height: 380px; max-height: 380px; }
  .page-hero { padding: 45px 12px !important; }
  .page-hero h1 { font-size: 44px; }
  .catalog-details { padding: 28px 20px; }
  .catalog-image { min-height: 320px; padding: 20px; }
  .spec-grid { grid-template-columns: 1fr; }
}

/* Used device listing */
.card-price { display: grid; }
.card-price small { color: #929aaa; font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.card-price strong { color: #111a35; font-size: 21px; }
.catalog-price { color: #111a35 !important; font-size: 26px !important; }

.listing-hero {
  max-width: none !important;
  margin: 0 !important;
  padding: 48px 0 72px !important;
  background: linear-gradient(140deg, #edf1f5, #fff) !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.listing-back { display: inline-flex; margin-bottom: 25px; color: #596477; font-size: 12px; font-weight: 750; }
.listing-back:hover { color: var(--brand); }

.listing-layout { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(420px,.95fr); gap: 60px; align-items: start; }
.listing-gallery { display: grid; grid-template-columns: minmax(0,1fr) 120px; gap: 14px; }
.listing-main-image { position: relative; height: 510px; min-height: 510px; max-height: 510px; padding: 28px; overflow: hidden; background: #fff; border: 1px solid #e0e4ea; border-radius: 24px; box-shadow: 0 24px 60px rgba(16,25,54,.10); }
.listing-main-image img { width: 100%; height: 100%; object-fit: contain; }
.listing-thumb { height: 170px; padding: 8px; background: #fff; border: 1px solid #dce1e8; border-radius: 15px; }
.listing-thumb img { width: 100%; height: 100%; object-fit: contain; border-radius: 9px; }

.listing-summary { padding: 18px 0; }
.listing-status { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 24px; padding: 8px 12px; color: #256f48; background: #eaf7ef; border: 1px solid #cfeada; border-radius: 999px; font-size: 10px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.listing-status span { width: 7px; height: 7px; background: #29a867; border-radius: 50%; box-shadow: 0 0 0 4px rgba(41,168,103,.12); }
.listing-summary h1 { margin: 8px 0 18px; color: #11182c; font-size: clamp(38px,4vw,57px); font-weight: 760; letter-spacing: -.05em; line-height: 1.02; }
.listing-lead { color: #687386; font-size: 15px; line-height: 1.75; }
.listing-price { display: grid; margin: 28px 0; padding: 22px 0; border-top: 1px solid #dfe3e9; border-bottom: 1px solid #dfe3e9; }
.listing-price small { color: #8a93a3; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.listing-price strong { color: #10172b; font-size: 44px; font-weight: 760; letter-spacing: -.04em; }
.listing-price span { color: #8b94a3; font-size: 11px; }
.listing-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-bottom: 28px; overflow: hidden; background: #dde2e9; border: 1px solid #dde2e9; border-radius: 14px; }
.listing-facts div { display: grid; padding: 17px; background: #fff; }
.listing-facts small { color: #929baa; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.listing-facts strong { color: #202a42; font-size: 13px; }
.listing-cta { width: 100%; min-height: 55px; }
.listing-phone { display: block; margin-top: 15px; color: #5c687c; font-size: 12px; font-weight: 700; text-align: center; }

.listing-details { display: grid; grid-template-columns: minmax(0,1.3fr) minmax(320px,.7fr); gap: 60px; max-width: 1180px; margin: 75px auto !important; padding: 52px !important; background: #fff !important; border: 1px solid #e0e4ea !important; border-radius: 24px !important; box-shadow: 0 20px 60px rgba(17,26,57,.08) !important; }
.listing-description h2 { margin: 0 0 22px; font-size: 37px; font-weight: 750; letter-spacing: -.04em; }
.listing-description p { color: #697589; }
.listing-note { margin-top: 24px; padding: 17px 19px; color: #657085; background: #f4f6f8; border-left: 3px solid var(--accent); border-radius: 8px; font-size: 11px; }
.listing-service { padding: 28px; background: #0e173f; border-radius: 18px; color: #fff; }
.listing-service .eyebrow { color: #6cdeea; }
.listing-service h3 { margin: 0 0 20px; font-size: 25px; }
.listing-service ul { margin: 0 0 25px; padding: 0; list-style: none; }
.listing-service li { position: relative; padding: 11px 0 11px 23px; color: rgba(255,255,255,.68); border-bottom: 1px solid rgba(255,255,255,.09); font-size: 12px; }
.listing-service li::before { position: absolute; left: 0; color: #58d4e2; content: "✓"; font-weight: 900; }
.listing-service .text-link { color: #72dfeb; }
.lightbox-trigger { cursor: zoom-in; }
.image-lightbox { position: fixed; inset: 0; z-index: 3000; display: none; place-items: center; padding: 28px; background: rgba(3,6,18,.94); backdrop-filter: blur(12px); }
.image-lightbox.is-open { display: grid; }
.image-lightbox img { max-width: min(1100px,92vw); max-height: 82vh; object-fit: contain; border-radius: 12px; box-shadow: 0 35px 90px rgba(0,0,0,.5); }
.image-lightbox button { position: fixed; top: 18px; right: 22px; width: 48px; height: 48px; padding: 0; color: #fff; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.22); border-radius: 50%; font-size: 32px; line-height: 1; }
.image-lightbox p { margin: 14px 0 0; color: rgba(255,255,255,.74); font-size: 12px; text-align: center; }
.lightbox-open { overflow: hidden; }

@media (max-width: 991.98px) {
  .listing-layout, .listing-details { grid-template-columns: 1fr; }
  .listing-gallery { grid-template-columns: 1fr; }
  .listing-thumb { width: 120px; }
  .listing-main-image { height: 460px; min-height: 460px; max-height: 460px; }
}

@media (max-width: 767.98px) {
  .listing-hero { padding: 30px 12px 50px !important; }
  .listing-main-image { height: 380px; min-height: 380px; max-height: 380px; padding: 18px; border-radius: 18px; }
  .listing-summary h1 { font-size: 39px; }
  .listing-price strong { font-size: 38px; }
  .listing-details { margin: 40px 12px !important; padding: 28px 20px !important; }
  .listing-facts { grid-template-columns: 1fr; }
}

/* New high-contrast wordmark */
.navbar-brand img.brand-logo-new {
  width: 246px;
  height: 55px;
  padding: 0;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.footer-brand img.footer-logo-new {
  width: 246px;
  height: 55px;
  object-fit: contain;
  border-radius: 0;
}

.footer-brand > span {
  margin-top: 0;
  padding-left: 17px;
  border-left: 1px solid rgba(255,255,255,.18);
  font-size: 12px;
}

@media (max-width: 520px) {
  .navbar-brand img.brand-logo-new { width: 205px; height: 46px; }
  .footer-brand { align-items: flex-start; flex-direction: column; }
  .footer-brand > span { padding-left: 0; border-left: 0; }
}

@media (max-width: 390px) {
  .navbar-brand img.brand-logo-new { width: 176px; height: 40px; }
}
