/* Fuga POS — Premium Gastronomy POS Website */
:root {
  --bg: #ffffff;
  --bg-soft: #f7f8fa;
  --bg-dark: #0b0b0d;
  --bg-hero: #050b18;
  --text: #1a1a1e;
  --text-muted: #5c5f6a;
  --text-light: #f5f5f7;
  --text-soft: #c8c9d0;
  --primary: #f5a623;
  --primary-hover: #e09412;
  --primary-soft: rgba(245, 166, 35, 0.12);
  --border: #e6e8ee;
  --border-dark: rgba(255, 255, 255, 0.08);
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 10px 40px rgba(15, 15, 20, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 15, 20, 0.14);
  --font: "Inter", "Noto Sans Arabic", "Noto Sans SC", "Segoe UI", system-ui, -apple-system, Roboto, "PingFang SC", "Microsoft YaHei", "Noto Sans", sans-serif;
  --container: 1200px;
  --nav-h: 76px;
  --transition: 0.22s ease;
}
.text-accent { color: var(--primary); }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  /* GT tries to push body down for banner — lock it */
  top: 0 !important;
  position: static !important;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
ul { list-style: none; }

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

/* —— Top bar / Nav —— */
/* —— Top utility bar (above main header) —— */
.site-topbar {
  background: #fff;
  border-bottom: 1px solid #e8edf3;
  color: #475569;
  font-size: 0.8125rem;
  line-height: 1.2;
}
.site-topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}
.site-topbar-left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem 1.35rem;
  min-width: 0;
  flex: 1 1 auto;
}
.site-topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #475569;
  text-decoration: none;
  max-width: min(100%, 28rem);
  font-weight: 500;
}
.site-topbar-item span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
a.site-topbar-item:hover { color: var(--primary, #f5a623); }
.site-topbar-item--phone { font-weight: 600; }
.site-topbar-ico {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--primary, #f5a623);
}
.site-topbar-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.2rem;
  flex-shrink: 0;
  margin-left: auto;
}
.site-topbar-social {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  color: #475569;
  transition: color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}
.site-topbar-social:hover {
  color: var(--primary, #f5a623);
  background: rgba(245, 166, 35, 0.12);
  transform: translateY(-1px);
}
.site-topbar-social svg {
  width: 16px;
  height: 16px;
  display: block;
}
@media (max-width: 720px) {
  .site-topbar-inner { min-height: 34px; gap: 0.55rem; }
  .site-topbar-left { gap: 0.25rem 0.85rem; }
  .site-topbar-item span { max-width: 9.5rem; }
  .site-topbar-item--phone span { max-width: 8rem; }
  .site-topbar-social { width: 30px; height: 30px; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 11, 24, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-dark);
}
.nav {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}
.logo-img {
  height: 42px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
  border-radius: 6px;
}
.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: conic-gradient(from 200deg, #f5a623, #ffcf70, #c4782a, #f5a623);
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.18);
}
.logo-mark span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg-dark);
  box-shadow: inset 0 0 0 3px #f5a623;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-text strong {
  color: #fff;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  font-weight: 800;
}
.logo-text strong .text-accent { color: var(--primary); }
.logo-text small {
  color: var(--primary);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  white-space: nowrap;
}
.nav-phone svg { width: 18px; height: 18px; color: var(--primary); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.nav-links a {
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  width: 42px;
  height: 42px;
  cursor: pointer;
}
.nav-toggle svg { width: 24px; height: 24px; }

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.78rem 1.35rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: inherit;
  line-height: 1.2;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
button.btn { appearance: none; -webkit-appearance: none; }
.btn-primary {
  background: var(--primary);
  color: #1a1200;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.35);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-outline-dark:hover {
  border-color: var(--text);
  background: var(--bg-soft);
}
.btn-lg { padding: 0.95rem 1.7rem; font-size: 1rem; }
.btn-sm { padding: 0.5rem 0.9rem; font-size: 0.85rem; }

/* —— Hero —— */
.hero {
  position: relative;
  background: var(--bg-hero);
  color: #fff;
  overflow: hidden;
  min-height: calc(100vh - var(--nav-h));
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(245, 166, 35, 0.12), transparent 55%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(120, 80, 30, 0.15), transparent 50%),
    linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.55));
  z-index: 1;
  pointer-events: none;
}
.hero--photo::before {
  background: radial-gradient(ellipse 70% 50% at 20% 40%, rgba(245, 166, 35, 0.08), transparent 55%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background:
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
    radial-gradient(ellipse 70% 55% at 72% 42%, rgba(37, 99, 235, 0.18), transparent 55%),
    radial-gradient(ellipse 50% 40% at 18% 70%, rgba(245, 166, 35, 0.1), transparent 50%),
    linear-gradient(145deg, #050b18 0%, #0a1628 45%, #07101f 100%);
  background-size: auto, cover, cover, cover;
  background-position: center;
  z-index: 0;
}
.hero--photo .hero-bg {
  background-color: #0a0a0c;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
/* Multi background slider (admin-configurable fade / zoom / slide / kenburns) */
.hero-bg-slider {
  overflow: hidden;
}
.hero-bg-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #0a0a0c;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  z-index: 0;
  transition: opacity var(--hero-bg-fade, 1200ms) ease;
  will-change: opacity, transform;
}
.hero-bg-slide.is-active {
  opacity: 1;
  z-index: 1;
}
.hero-bg-slider:not(.hero-bg-slider--multi) .hero-bg-slide {
  opacity: 1;
  transition: none;
}
/* zoom: gentle scale while active */
.hero-bg-slider[data-effect="zoom"] .hero-bg-slide.is-active {
  animation: heroBgZoom var(--hero-bg-hold, 4s) ease-out forwards;
}
/* kenburns: slow pan + zoom */
.hero-bg-slider[data-effect="kenburns"] .hero-bg-slide.is-active {
  animation: heroBgKenburns var(--hero-bg-hold, 4s) ease-in-out forwards;
}
/* slide: horizontal wipe */
.hero-bg-slider[data-effect="slide"] .hero-bg-slide {
  opacity: 1;
  transform: translateX(100%);
  transition: transform var(--hero-bg-fade, 1200ms) ease;
  z-index: 0;
}
.hero-bg-slider[data-effect="slide"] .hero-bg-slide.is-active {
  transform: translateX(0);
  z-index: 2;
}
.hero-bg-slider[data-effect="slide"] .hero-bg-slide.is-leaving {
  transform: translateX(-28%);
  opacity: 0.75;
  z-index: 1;
  transition: transform var(--hero-bg-fade, 1200ms) ease, opacity var(--hero-bg-fade, 1200ms) ease;
}
@keyframes heroBgZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
@keyframes heroBgKenburns {
  from { transform: scale(1) translate(0, 0); }
  to { transform: scale(1.12) translate(-2%, -1.5%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg-slide {
    transition: none !important;
    animation: none !important;
  }
  .hero-bg-slider[data-effect="slide"] .hero-bg-slide {
    transform: none !important;
  }
  .hero-bg-slider[data-effect="slide"] .hero-bg-slide:not(.is-active) {
    opacity: 0 !important;
  }
}
/* Mouse-follow star sparkles (canvas) — above content, clicks pass through */
.hero-stars {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
  display: block;
}
@media (prefers-reduced-motion: reduce) {
  .hero-stars { display: none; }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 1;
  pointer-events: none;
}
/* full-width centered container inside flex hero */
.hero > .container.hero-inner,
.hero-inner.container {
  position: relative;
  z-index: 2;
  width: min(100% - 2.5rem, var(--container));
  max-width: var(--container);
  margin-inline: auto;
  flex: 0 1 auto;
  box-sizing: border-box;
}
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: 4.5rem 0 5rem;
}
.hero--no-side .hero-inner {
  grid-template-columns: minmax(0, 1fr);
  max-width: var(--container);
  margin-inline: auto;
}
.hero--no-side .hero-content {
  max-width: 40rem;
}
.hero-content {
  min-width: 0;
}
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
  width: 100%;
}
.hero-side-slider {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  display: grid;
  place-items: center;
  min-height: 1px;
}
.hero-side-slider .hero-side-img {
  grid-area: 1 / 1;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
  filter: drop-shadow(0 28px 50px rgba(0, 0, 0, 0.55));
  position: relative;
  z-index: 1;
  opacity: 0;
  transition: opacity var(--hero-fade, 800ms) ease;
  pointer-events: none;
}
.hero-side-slider .hero-side-img.is-active {
  opacity: 1;
  z-index: 2;
}
/* single image: always visible even without JS */
.hero-side-slider:not(.hero-side-slider--multi) .hero-side-img {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .hero-side-slider .hero-side-img {
    transition: none;
  }
}
.hero-side-glow {
  position: absolute;
  width: min(280px, 70%);
  height: min(280px, 70%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.28), transparent 70%);
  filter: blur(10px);
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(245, 166, 35, 0.12);
  border: 1px solid rgba(245, 166, 35, 0.35);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.1rem;
}
.hero-content h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.55rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.1rem;
  white-space: pre-line;
}
.hero-content h1 .text-accent { color: var(--primary); }
.hero-content .lead {
  color: var(--text-soft);
  font-size: 1.08rem;
  max-width: 34rem;
  margin-bottom: 1.4rem;
  line-height: 1.55;
}
.hero-bullets {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.8rem;
}
.hero-bullets--grid {
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 1.25rem;
  max-width: 34rem;
}
.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #e8e8ec;
  font-size: 0.95rem;
}
.hero-bullets .ico {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  color: #1a1200;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.hero-bullets .ico svg { width: 13px; height: 13px; }
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}
.hero-ctas .btn svg { width: 18px; height: 18px; }

/* —— Hero product cluster —— */
.hero-cluster {
  position: relative;
  width: min(100%, 560px);
  height: 420px;
  margin-inline: auto;
}
.hc-label {
  text-align: center;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.45rem;
  font-weight: 500;
}
.hc-cloud {
  position: absolute;
  top: 0;
  right: 8%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  z-index: 4;
}
.hc-cloud-icon {
  width: 64px;
  height: 48px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #7dd3fc, #2563eb 70%);
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 0 24px rgba(59, 130, 246, 0.55);
}
.hc-cloud-icon svg { width: 28px; height: 28px; }
.hc-cloud span { font-size: 0.7rem; color: #93c5fd; font-weight: 600; }
.hc-pos {
  position: absolute;
  left: 8%;
  top: 12%;
  width: 58%;
  z-index: 3;
}
.hc-screen {
  background: #0f172a;
  border-radius: 12px 12px 6px 6px;
  border: 3px solid #1e293b;
  box-shadow: 0 24px 50px rgba(0,0,0,0.5);
  overflow: hidden;
}
.hc-screen-bar {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0.65rem;
  background: #1e3a8a;
  font-size: 0.7rem;
  font-weight: 600;
  color: #fff;
}
.hc-screen-body { display: grid; grid-template-columns: 1.1fr 1fr; gap: 0.4rem; padding: 0.5rem; }
.hc-lines { display: flex; flex-direction: column; gap: 0.25rem; }
.hc-line {
  display: flex; justify-content: space-between; gap: 0.3rem;
  font-size: 0.58rem; color: #e2e8f0; background: rgba(255,255,255,0.04);
  padding: 0.22rem 0.35rem; border-radius: 4px;
}
.hc-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 0.3rem; }
.hc-tile {
  background: #fff; border-radius: 6px; padding: 0.3rem;
  text-align: center; color: #0f172a; font-size: 0.85rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.1rem;
}
.hc-tile small { font-size: 0.52rem; font-weight: 600; color: #475569; }
.hc-screen-foot {
  display: flex; justify-content: space-between; padding: 0.4rem 0.65rem;
  background: #f8fafc; color: #0f172a; font-size: 0.72rem;
}
.hc-total { color: #1e3a8a; }
.hc-btns { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.25rem; padding: 0.4rem; background: #e2e8f0; }
.hc-btn { text-align: center; font-size: 0.55rem; font-weight: 700; padding: 0.28rem 0; border-radius: 4px; color: #fff; }
.hc-btn--g { background: #16a34a; }
.hc-btn--r { background: #dc2626; }
.hc-btn--o { background: #ea580c; }
.hc-btn--b { background: #2563eb; }
.hc-stand {
  width: 28%; height: 18px; margin: 0 auto;
  background: linear-gradient(180deg, #334155, #0f172a);
  border-radius: 0 0 6px 6px;
}
.hc-kitchen {
  position: absolute;
  right: 0;
  top: 28%;
  width: 42%;
  z-index: 2;
  background: #0b1220;
  border: 2px solid #1e293b;
  border-radius: 10px;
  padding: 0.45rem;
  box-shadow: 0 16px 36px rgba(0,0,0,0.45);
}
.hc-k-head { display: flex; gap: 0.35rem; margin-bottom: 0.4rem; flex-wrap: wrap; }
.hc-k-head .dot {
  font-size: 0.52rem; font-weight: 700; padding: 0.12rem 0.35rem; border-radius: 4px; color: #fff;
}
.dot--n { background: #2563eb; }
.dot--p { background: #ea580c; }
.dot--d { background: #16a34a; }
.hc-k-cols { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.3rem; }
.hc-k-col {
  background: #111827; border-radius: 6px; padding: 0.35rem; min-height: 54px;
}
.hc-k-col strong { display: block; font-size: 0.58rem; color: #f8fafc; }
.hc-k-col small { font-size: 0.5rem; color: #94a3b8; }
.hc-k-col--active { background: #1e3a8a; }
.hc-mobile {
  position: absolute;
  left: 42%;
  bottom: 2%;
  z-index: 5;
  width: 22%;
}
.hc-phone {
  background: #0f172a;
  border: 2px solid #334155;
  border-radius: 14px;
  padding: 0.35rem;
  box-shadow: 0 12px 28px rgba(0,0,0,0.45);
}
.hc-phone-notch {
  width: 36%; height: 5px; background: #1e293b; border-radius: 0 0 6px 6px; margin: 0 auto 0.35rem;
}
.hc-phone-body { background: #fff; border-radius: 8px; padding: 0.4rem; min-height: 90px; color: #0f172a; }
.hc-phone-body small { font-size: 0.55rem; font-weight: 700; }
.hc-phone-line {
  height: 5px; background: #e2e8f0; border-radius: 3px; margin: 0.3rem 0;
}
.hc-phone-line.short { width: 60%; }
.hc-phone-btn {
  margin-top: 0.45rem; background: var(--primary); color: #1a1200;
  font-size: 0.55rem; font-weight: 700; text-align: center; padding: 0.3rem; border-radius: 5px;
}
.hc-kiosk {
  position: absolute;
  right: 2%;
  bottom: 0;
  width: 26%;
  z-index: 3;
}
.hc-kiosk-screen {
  background: #0f172a;
  border: 2px solid #334155;
  border-radius: 10px 10px 4px 4px;
  aspect-ratio: 3/4;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.35rem; color: #fff; box-shadow: 0 14px 30px rgba(0,0,0,0.4);
}
.hc-kiosk-emoji { font-size: 1.6rem; }
.hc-kiosk-screen small { font-size: 0.55rem; font-weight: 600; color: var(--primary); }
.hc-kiosk-body {
  width: 70%; height: 12px; margin: 0 auto;
  background: #e2e8f0; border-radius: 0 0 8px 8px;
}

/* —— Trust bar —— */
.trust-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 1.6rem 0;
}
.trust-bar--dark {
  background: #0b1220;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  border-top: 1px solid rgba(255,255,255,0.04);
}
.trust-bar--dark .trust-item strong { color: #f8fafc; }
.trust-bar--dark .trust-item span { color: #94a3b8; }
.trust-bar--dark .trust-item .ico {
  background: rgba(245, 166, 35, 0.12);
  color: var(--primary);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.trust-grid--6 { grid-template-columns: repeat(6, 1fr); }
.trust-grid--5 { grid-template-columns: repeat(5, 1fr); }
.trust-grid--4 { grid-template-columns: repeat(4, 1fr); }
.trust-grid--3 { grid-template-columns: repeat(3, 1fr); }
.trust-grid--2 { grid-template-columns: repeat(2, 1fr); }
.trust-grid--1 { grid-template-columns: 1fr; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
}
.trust-item .ico {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.trust-item .ico svg { width: 20px; height: 20px; }
.trust-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.2;
}
.trust-item span {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* —— Sections —— */
.section {
  padding: 4.5rem 0;
}
.section-soft { background: var(--bg-soft); }
.section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}
.section-head p {
  color: var(--text-muted);
  max-width: 36rem;
  margin: 0 auto;
}

/* —— Categories —— */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.cat-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4.2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  background: #1a1a1e;
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.cat-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}
.cat-card:hover .cat-card-bg { transform: scale(1.06); }
.cat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.85) 100%);
}
.cat-card-body {
  position: relative;
  z-index: 2;
  padding: 1.1rem;
  text-align: center;
}
.cat-card .cat-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 0.6rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.cat-card .cat-icon svg { width: 20px; height: 20px; }
.cat-card h3 {
  font-size: 0.98rem;
  font-weight: 700;
}
.cat-card p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0.2rem;
}

/* Categories page (/kategorien): 3 large cards per row */
.cat-grid--page {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.cat-grid--page .cat-card {
  aspect-ratio: 4/5;
  min-height: 320px;
  border-radius: calc(var(--radius) + 4px);
}
.cat-grid--page .cat-card-body {
  padding: 1.5rem 1.25rem 1.6rem;
}
.cat-grid--page .cat-card .cat-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 0.85rem;
}
.cat-grid--page .cat-card .cat-icon svg {
  width: 26px;
  height: 26px;
}
.cat-grid--page .cat-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.25;
}
.cat-grid--page .cat-card p {
  font-size: 0.95rem;
  line-height: 1.45;
  margin-top: 0.4rem;
  color: rgba(255, 255, 255, 0.82);
}
@media (max-width: 900px) {
  .cat-grid--page { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .cat-grid--page .cat-card { min-height: 280px; }
  .cat-grid--page .cat-card h3 { font-size: 1.15rem; }
}
@media (max-width: 560px) {
  .cat-grid--page { grid-template-columns: 1fr; gap: 1.1rem; }
  .cat-grid--page .cat-card { min-height: 260px; aspect-ratio: 16/11; }
}

/* —— Advantages (legacy; system-features used on home) —— */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}
.adv-card {
  text-align: center;
  padding: 0.5rem;
}
.adv-card .ico {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  color: var(--text-muted);
  display: grid;
  place-items: center;
}
.adv-card .ico svg { width: 26px; height: 26px; }
.adv-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.adv-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* —— System features (above hardware) —— */
.section-system-features {
  background: #fff;
  padding-top: 3.5rem;
  padding-bottom: 3.25rem;
}
.sys-feat-eyebrow {
  display: inline-block;
  margin: 0 0 0.65rem;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  background: rgba(245, 166, 35, 0.12);
  color: #b45309;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.section-system-features .section-head {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 2rem;
}
.section-system-features .section-head h2 {
  margin-bottom: 0.55rem;
}
.section-system-features .section-head p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.55;
}
.sys-feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}
.sys-feat-card {
  position: relative;
  background: linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.35rem 1.2rem 1.25rem;
  box-shadow: 0 6px 22px rgba(15, 23, 42, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  overflow: hidden;
}
.sys-feat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #f59e0b);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.sys-feat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
  border-color: rgba(245, 166, 35, 0.35);
}
.sys-feat-card:hover::before {
  opacity: 1;
}
.sys-feat-ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 0.95rem;
  background: rgba(15, 23, 42, 0.04);
  color: #0f172a;
  border: 1px solid rgba(15, 23, 42, 0.06);
}
.sys-feat-ico svg {
  width: 24px;
  height: 24px;
}
.sys-feat-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  margin: 0 0 0.45rem;
  letter-spacing: -0.01em;
  color: #0f172a;
}
.sys-feat-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}
@media (max-width: 1100px) {
  .sys-feat-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 800px) {
  .sys-feat-grid { grid-template-columns: repeat(2, 1fr); gap: 0.9rem; }
  .section-system-features { padding-top: 2.75rem; padding-bottom: 2.5rem; }
}
@media (max-width: 520px) {
  .sys-feat-grid { grid-template-columns: 1fr; }
  .sys-feat-card { padding: 1.2rem 1.1rem; }
}

/* —— Competitor vs Fuga comparison (above hardware) —— */
.section-compare {
  background:
    radial-gradient(900px 420px at 88% -10%, rgba(245, 166, 35, 0.14), transparent 60%),
    linear-gradient(180deg, #0b0b0d 0%, #141418 100%);
  color: var(--text-light);
  padding-top: 4rem;
  padding-bottom: 3.75rem;
}
.section-compare .compare-head-copy {
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
}
.section-compare .section-head h2 {
  color: #fff;
}
.section-compare .section-head p {
  color: var(--text-soft);
  max-width: 40rem;
  font-size: 1.05rem;
  line-height: 1.6;
}
.section-compare .sys-feat-eyebrow {
  background: rgba(245, 166, 35, 0.18);
  color: #f5a623;
}
.compare-board {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}
.compare-board-head,
.compare-row {
  display: grid;
  grid-template-columns: 1.05fr 1.15fr 1.35fr;
  gap: 0;
}
.compare-board-head {
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.compare-feat-h,
.compare-side {
  padding: 0.95rem 1.15rem;
}
.compare-feat-h {
  color: rgba(255, 255, 255, 0.45);
}
.compare-side--them {
  color: rgba(255, 255, 255, 0.55);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}
.compare-side--us {
  background: linear-gradient(180deg, rgba(245, 166, 35, 0.22), rgba(245, 166, 35, 0.08));
  border-left: 1px solid rgba(245, 166, 35, 0.28);
  color: #fff;
}
.compare-us-badge {
  display: inline-block;
  padding: 0.22rem 0.7rem;
  border-radius: 999px;
  background: var(--primary);
  color: #1a1208;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}
.compare-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.compare-row:last-child { border-bottom: 0; }
.compare-row:hover {
  background: rgba(255, 255, 255, 0.025);
}
.compare-feat,
.compare-cell {
  padding: 1rem 1.15rem;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}
.compare-feat {
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #fff;
  align-items: center;
}
.compare-cell {
  font-size: 0.9rem;
  line-height: 1.45;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}
.compare-cell--no {
  color: rgba(255, 255, 255, 0.52);
}
.compare-cell--yes {
  color: #fff;
  background: rgba(245, 166, 35, 0.07);
  font-weight: 550;
  border-left-color: rgba(245, 166, 35, 0.22);
}
.compare-mark {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-top: 0.08rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.compare-mark svg {
  width: 13px;
  height: 13px;
}
.compare-cell--no .compare-mark {
  background: rgba(248, 113, 113, 0.16);
  color: #fca5a5;
}
.compare-cell--yes .compare-mark {
  background: rgba(245, 166, 35, 0.22);
  color: #f5a623;
}
.compare-punch {
  text-align: center;
  margin: 1.75rem auto 1.1rem;
  max-width: 40rem;
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.55;
}
.compare-punch strong {
  color: #fff;
  font-weight: 750;
}
.compare-sectors {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  max-width: 56rem;
  margin: 0 auto;
}
.compare-sectors li {
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
@media (max-width: 860px) {
  .compare-board-head { display: none; }
  .compare-row {
    grid-template-columns: 1fr;
    padding: 0.35rem 0 0.55rem;
    gap: 0.35rem;
  }
  .compare-feat {
    padding-bottom: 0.15rem;
    font-size: 1.02rem;
  }
  .compare-cell {
    border-left: 0;
    border-radius: 10px;
    margin: 0 0.75rem;
    padding: 0.75rem 0.85rem;
  }
  .compare-cell--no {
    background: rgba(255, 255, 255, 0.03);
  }
  .compare-cell--yes {
    background: rgba(245, 166, 35, 0.12);
    border: 1px solid rgba(245, 166, 35, 0.22);
  }
}
@media (max-width: 560px) {
  .section-compare { padding-top: 3rem; padding-bottom: 2.75rem; }
  .compare-feat, .compare-cell { padding-left: 0.9rem; padding-right: 0.9rem; }
}

/* —— Branchenlösungen (below compare, above hardware) —— */
.section-sectors {
  background: #fff;
  padding-top: 4rem;
  padding-bottom: 3.75rem;
}
.section-sectors .section-head {
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
}
.section-sectors .section-head p {
  max-width: 40rem;
  font-size: 1.05rem;
}
.sectors-subhead,
.sectors-head-2 h3 {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 2.25rem 0 1.1rem;
  color: #0f172a;
}
.sectors-head-2 {
  margin-top: 2.5rem;
  margin-bottom: 1.15rem;
}
.sectors-head-2 h3 { margin-bottom: 0.4rem; }
.sectors-head-2 p {
  color: var(--text-muted);
  max-width: 34rem;
  margin: 0 auto;
}
.sectors-common {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.55rem 1.25rem;
  max-width: 52rem;
  margin: 0 auto;
}
.sectors-common li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.94rem;
  line-height: 1.4;
  color: #1a1a1e;
}
.sectors-tick {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 0.08rem;
  border-radius: 50%;
  background: rgba(245, 166, 35, 0.16);
  color: #b45309;
  display: grid;
  place-items: center;
}
.sectors-tick svg { width: 12px; height: 12px; }
.sectors-acc {
  max-width: 52rem;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  background: #fff;
}
.sector-item {
  border-bottom: 1px solid var(--border);
}
.sector-item:last-child { border-bottom: 0; }
.sector-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 1.15rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #0f172a;
}
.sector-item summary::-webkit-details-marker { display: none; }
.sector-item summary::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: auto;
  border-right: 2px solid #94a3b8;
  border-bottom: 2px solid #94a3b8;
  transform: rotate(45deg);
  transition: transform 0.18s ease;
}
.sector-item[open] summary::after {
  transform: rotate(225deg);
  margin-top: 4px;
}
.sector-item[open] summary {
  background: #fffaf0;
  color: #9a6700;
}
.sector-ico {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: #0f172a;
  flex: 0 0 auto;
}
.sector-ico svg { width: 16px; height: 16px; }
.sector-item[open] .sector-ico {
  background: rgba(245, 166, 35, 0.16);
  border-color: rgba(245, 166, 35, 0.3);
  color: #b45309;
}
.sector-body {
  padding: 0 1.15rem 1.15rem 3.85rem;
}
.sector-body ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem 1.1rem;
  margin-bottom: 0.85rem;
}
.sector-body li {
  position: relative;
  padding-left: 0.85rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.sector-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
}
.sector-highlight {
  margin: 0;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  background: rgba(245, 166, 35, 0.1);
  color: #1a1a1e;
  font-size: 0.92rem;
  line-height: 1.5;
}
.sector-highlight strong { color: #9a6700; }
.sectors-extras {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 52rem;
  margin: 0 auto;
}
.sector-extra {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem 1.15rem 1.15rem;
  background: linear-gradient(165deg, #fff, #f8fafc);
}
.sector-extra h4 {
  margin: 0.7rem 0 0.65rem;
  font-size: 1.05rem;
}
.sector-extra li {
  position: relative;
  padding-left: 0.85rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}
.sector-extra li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
}
.sectors-diff {
  max-width: 44rem;
  margin: 2.5rem auto 0;
  text-align: center;
  padding: 1.5rem 1.25rem;
  border-radius: calc(var(--radius) + 4px);
  background: #0b0b0d;
  color: var(--text-soft);
}
.sectors-diff h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 0.65rem;
}
.sectors-diff p {
  margin: 0;
  line-height: 1.6;
  font-size: 0.98rem;
}
@media (max-width: 800px) {
  .sectors-common,
  .sector-body ul,
  .sectors-extras { grid-template-columns: 1fr; }
  .sector-body { padding-left: 1.15rem; }
}
@media (max-width: 560px) {
  .section-sectors { padding-top: 3rem; padding-bottom: 2.75rem; }
}

/* —— Hardware / Products —— */
.hw-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}
.hw-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1rem 1.25rem;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}
.hw-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.hw-card .thumb {
  height: 110px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}
.hw-card .thumb img {
  max-height: 100px;
  object-fit: contain;
}
.hw-card .thumb-placeholder {
  width: 88px;
  height: 88px;
  border-radius: 16px;
  background: linear-gradient(145deg, #2a2a30, #121216);
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
  display: grid;
  place-items: center;
  color: var(--primary);
}
.hw-card .thumb-placeholder svg { width: 36px; height: 36px; }
.hw-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.hw-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
}
.section-cta-wrap {
  text-align: center;
  margin-top: 2.25rem;
}

/* —— Products list page —— */
.page-hero {
  background: var(--bg-dark);
  color: #fff;
  padding: 3.5rem 0 2.75rem;
}
.page-hero h1 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.page-hero p { color: var(--text-soft); max-width: 36rem; }
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-bottom: 1rem;
}
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { opacity: 0.5; }

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
  align-items: center;
}
.filters a, .filters .chip {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  background: #fff;
  transition: all var(--transition);
}
.filters a:hover, .filters a.active {
  background: var(--bg-dark);
  color: #fff;
  border-color: var(--bg-dark);
}
.search-box {
  display: flex;
  margin-left: auto;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}
.search-box input {
  border: 0;
  padding: 0.5rem 1rem;
  min-width: 200px;
  outline: none;
}
.search-box button {
  border: 0;
  background: var(--bg-dark);
  color: #fff;
  padding: 0.5rem 1rem;
  cursor: pointer;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.product-card .img-wrap {
  height: 180px;
  background: var(--bg-soft);
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--border);
}
.product-card .img-wrap img {
  max-height: 150px;
  object-fit: contain;
}
.product-card .body {
  padding: 1.15rem 1.2rem 1.3rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card .type-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  margin-bottom: 0.5rem;
  width: fit-content;
}
.product-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.product-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  flex: 1;
}
.product-card .meta {
  margin-top: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}
.product-card .price {
  font-weight: 700;
  color: var(--text);
}

/* —— Product detail —— */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}
.detail-media {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 2rem;
}
.detail-media img { max-height: 320px; object-fit: contain; }
.detail-body .type-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  margin-bottom: 0.75rem;
}
.detail-body h1 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.detail-body .lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}
.detail-body .content {
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.detail-body .content p { margin-bottom: 0.85rem; }
.detail-body .content h2, .detail-body .content h3 { margin: 1.2rem 0 0.5rem; }
.detail-price {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}
/* —— About us: Vision / Mission —— */
.about-vm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 1.75rem 0 2rem;
}
.about-vm-card {
  background: linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.35rem 1.3rem 1.2rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}
.about-vm-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.01em;
}
.about-vm-card h3::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 0.45rem;
  border-radius: 3px;
  background: var(--primary);
  vertical-align: middle;
}
.about-vm-card p {
  margin-bottom: 0.75rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.about-vm-card ul {
  margin: 0 0 0 1.1rem;
  padding: 0;
  list-style: disc;
  color: var(--text-muted);
}
.about-vm-card li {
  margin-bottom: 0.35rem;
  line-height: 1.45;
}
@media (max-width: 720px) {
  .about-vm { grid-template-columns: 1fr; gap: 1rem; }
}

.prose {
  max-width: 720px;
  line-height: 1.75;
}
.prose h2 { font-size: 1.5rem; margin: 1.5rem 0 0.6rem; }
.prose h3 { font-size: 1.2rem; margin: 1.2rem 0 0.5rem; }
.prose p { margin-bottom: 0.9rem; color: var(--text); }
.prose ul { margin: 0.5rem 0 1rem 1.2rem; list-style: disc; color: var(--text-muted); }

/* —— CTA band —— */
.cta-band {
  background: linear-gradient(135deg, #0b0b0d 0%, #1a1208 50%, #0d0d10 100%);
  color: #fff;
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 90% 50%, rgba(245, 166, 35, 0.15), transparent 60%);
}
.cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-inner h2 {
  font-size: clamp(1.5rem, 2.8vw, 1.9rem);
  font-weight: 800;
  margin-bottom: 0.4rem;
}
.cta-inner p { color: var(--text-soft); margin-bottom: 1rem; }
.cta-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.92rem;
  color: var(--text-soft);
}
.cta-contacts a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.cta-contacts a:hover { color: var(--primary); }
.cta-contacts svg { width: 16px; height: 16px; }

/* —— Forms —— */
.form-card {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}
.form-group input,
.form-group textarea,
.form-group select {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.9rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: #fff;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-soft);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.alert {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  font-size: 0.92rem;
  font-weight: 500;
}
.alert-success { background: #ecfdf3; color: #067647; border: 1px solid #abefc6; }

/* Contact / demo math captcha */
.captcha-group .captcha-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
}
.captcha-question {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5.5rem;
  padding: .55rem .85rem;
  border-radius: 10px;
  background: #0b0b0d;
  color: #f5a623;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: .04em;
  font-variant-numeric: tabular-nums;
}
.captcha-group input#captcha_answer {
  width: 5rem;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
}
.captcha-hint {
  margin: .35rem 0 0;
  font-size: .8rem;
  color: var(--text-muted, #5c5f6a);
}
.alert-error { background: #fef3f2; color: #b42318; border: 1px solid #fecdca; }
.alert-info { background: #eff8ff; color: #175cd3; border: 1px solid #b2ddff; }

/* —— Footer —— */
.site-footer {
  background: #0b0b0d;
  color: var(--text-soft);
  padding: 3.5rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-brand p {
  margin-top: 0.9rem;
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: 280px;
}
.footer-col h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
}
.footer-col a {
  display: block;
  font-size: 0.9rem;
  padding: 0.28rem 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.85rem;
}

/* —— Module cards (Alles aus einer Hand — horizontal slider) —— */
.section-modules { background: #fff; padding-top: 3.25rem; }
.mod-slider {
  position: relative;
  margin-top: 0.75rem;
  display: flex;
  align-items: stretch;
  gap: 0.35rem;
}
.mod-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.35rem 0.15rem 0.85rem;
  flex: 1;
  min-width: 0;
  outline: none;
}
.mod-track::-webkit-scrollbar { display: none; }
/* Legacy grid kept for any non-slider pages */
.mod-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.mod-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem 1rem 1rem;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.85rem;
  min-height: 100%;
}
/* Slider: fixed card width, snap */
.mod-track .mod-card {
  flex: 0 0 calc((100% - 3rem) / 4);
  max-width: calc((100% - 3rem) / 4);
  scroll-snap-align: start;
  min-height: 0;
}
.mod-nav {
  flex: 0 0 auto;
  align-self: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #0f172a;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.18);
  transition: background 0.15s ease, transform 0.15s ease, opacity 0.15s ease;
  z-index: 2;
}
.mod-nav:hover {
  background: var(--primary);
  color: #111;
  transform: scale(1.05);
}
.mod-nav:disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
}
.mod-nav:disabled:hover {
  background: #0f172a;
  color: #fff;
}
.mod-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.15rem;
  flex-wrap: wrap;
}
.mod-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: #e2e8f0;
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}
.mod-dot.is-active {
  width: 22px;
  background: var(--primary);
}
@media (max-width: 1100px) {
  .mod-track .mod-card {
    flex-basis: calc((100% - 2rem) / 3);
    max-width: calc((100% - 2rem) / 3);
  }
}
@media (max-width: 800px) {
  .mod-track .mod-card {
    flex-basis: calc((100% - 1rem) / 2);
    max-width: calc((100% - 1rem) / 2);
  }
}
@media (max-width: 560px) {
  .mod-slider { gap: 0.15rem; }
  .mod-nav { width: 36px; height: 36px; }
  .mod-nav svg { width: 18px; height: 18px; }
  .mod-track .mod-card {
    flex-basis: 85%;
    max-width: 85%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .mod-track { scroll-behavior: auto; }
}
.mod-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.mod-card-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(145deg, #eff6ff, #dbeafe);
  color: #2563eb;
  display: grid; place-items: center;
  flex-shrink: 0;
  margin: 0;
}
.mod-card-icon svg { width: 22px; height: 22px; }
.mod-card-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.mod-card h3,
.mod-card-body h3 {
  font-size: 0.98rem; font-weight: 700; margin: 0 0 0.3rem; color: #0f172a;
  line-height: 1.3;
}
.mod-card > p,
.mod-card-body p {
  font-size: 0.82rem; color: var(--text-muted); line-height: 1.45; margin: 0;
  flex: 1;
}
/* Foto kartlar: görsel üstte, metin altta */
.mod-card--photo {
  flex-direction: column;
  gap: 0;
  padding: 0;
}
.mod-card--photo .mod-card-body {
  padding: 1.1rem 1.15rem 1.2rem;
}
.mod-card-preview {
  background: #f8fafc;
  border: 1px solid #eef2f7;
  border-radius: 10px;
  min-height: 92px;
  padding: 0.55rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mp-pos, .mp-kds, .mp-cal, .mp-chart, .mp-book, .mp-qr { width: 100%; }
.mp-bar { height: 8px; background: #1e3a8a; border-radius: 3px 3px 0 0; margin-bottom: 0.3rem; }
.mp-row { height: 6px; background: #e2e8f0; border-radius: 3px; margin-bottom: 0.25rem; }
.mp-row.short { width: 55%; }
.mp-btns { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.2rem; margin-top: 0.35rem; }
.mp-btns i { height: 10px; border-radius: 2px; background: #94a3b8; display: block; }
.mp-btns i:nth-child(1) { background: #16a34a; }
.mp-btns i:nth-child(2) { background: #dc2626; }
.mp-btns i:nth-child(3) { background: #ea580c; }
.mp-btns i:nth-child(4) { background: #2563eb; }
.mp-kds { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.3rem; }
.mp-col { background: #0f172a; border-radius: 6px; padding: 0.35rem; min-height: 64px; }
.mp-col b { display: block; height: 6px; width: 70%; background: #94a3b8; border-radius: 2px; margin-bottom: 0.3rem; }
.mp-col s { display: block; height: 4px; background: #334155; border-radius: 2px; margin-bottom: 0.2rem; text-decoration: none; }
.mp-col.on { background: #1e3a8a; }
.mp-cal-h { height: 10px; background: #e2e8f0; border-radius: 4px; margin-bottom: 0.4rem; }
.mp-cal-g { display: grid; grid-template-columns: repeat(7, 1fr); gap: 0.2rem; }
.mp-cal-g i { aspect-ratio: 1; border-radius: 3px; background: #eef2f7; display: block; }
.mp-cal-g i.on { background: #f5a623; }
.mp-bars { display: flex; align-items: flex-end; gap: 0.3rem; height: 48px; margin-bottom: 0.35rem; }
.mp-bars i { flex: 1; height: var(--h, 50%); background: linear-gradient(180deg, #60a5fa, #2563eb); border-radius: 3px 3px 0 0; display: block; }
.mp-stat { font-size: 0.72rem; font-weight: 700; color: #0f172a; }
.mp-datev {
  margin-top: 0.4rem; display: inline-block; font-size: 0.65rem; font-weight: 800;
  color: #fff; background: #16a34a; padding: 0.2rem 0.45rem; border-radius: 4px;
}
.mp-qr { text-align: center; }
.mp-qr-box {
  width: 48px; height: 48px; margin: 0 auto 0.3rem;
  background:
    linear-gradient(#0f172a 0 0) 0 0 / 40% 40%,
    linear-gradient(#0f172a 0 0) 100% 0 / 40% 40%,
    linear-gradient(#0f172a 0 0) 0 100% / 40% 40%,
    linear-gradient(#0f172a 0 0) 60% 60% / 20% 20%,
    #f8fafc;
  background-repeat: no-repeat;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
}
.mp-qr small { font-size: 0.65rem; color: #64748b; font-weight: 600; }

.footer-social { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 0.85rem; }
.footer-social a {
  font-size: 0.8rem; color: var(--text-soft); border: 1px solid var(--border-dark);
  padding: 0.25rem 0.55rem; border-radius: 6px;
}
.footer-social a:hover { color: var(--primary); border-color: var(--primary); }
.footer-cookie-wrap {
  margin-top: 0.85rem;
}
.footer-brand .footer-cookie-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.82rem;
}

/* —— Empty / 404 —— */
.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
}
.empty-state h2 { color: var(--text); margin-bottom: 0.5rem; }

/* —— Responsive —— */
@media (max-width: 1100px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .adv-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem 1rem; }
  .hw-grid { grid-template-columns: repeat(3, 1fr); }
  .mod-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-grid, .trust-grid--6, .trust-grid--5 { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero > .container.hero-inner,
  .hero-inner.container {
    width: min(100% - 1.5rem, var(--container));
  }
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 3rem 0 3.5rem;
    text-align: left;
  }
  .hero--no-side .hero-content { max-width: none; }
  .hero-visual { order: -1; width: 100%; }
  .hero-side-img { max-width: min(380px, 100%); margin-inline: auto; }
  .hero-cluster { height: 360px; }
  .detail-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .nav-phone span { display: none; }
  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    background: rgba(11, 11, 13, 0.98);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0.25rem;
    border-bottom: 1px solid var(--border-dark);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.75rem 1rem; }
  .nav-toggle { display: grid; place-items: center; }
  .nav-actions .btn-outline { display: none; }
}
@media (max-width: 640px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .adv-grid { grid-template-columns: 1fr 1fr; }
  .hw-grid { grid-template-columns: 1fr 1fr; }
  .mod-grid { grid-template-columns: 1fr; }
  .trust-grid, .trust-grid--6, .trust-grid--5, .trust-grid--4 { grid-template-columns: 1fr 1fr; }
  .hero-bullets--grid { grid-template-columns: 1fr; }
  .hero-cluster { height: 300px; transform: scale(0.92); transform-origin: top center; }
  .product-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .search-box { margin-left: 0; width: 100%; }
  .search-box input { flex: 1; min-width: 0; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
}

/* —— Floating FAB stack (phone + language above chat) —— */
.fuga-fab-stack {
  position: fixed;
  right: 1.25rem;
  bottom: 5.65rem; /* sits above .fuga-chat-btn */
  z-index: 9992;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.65rem;
}
.fuga-fab-toggle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  background: #0b1220;
  color: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.35);
  display: grid;
  place-items: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.fuga-fab-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.42);
  background: #152238;
}
.fuga-fab-toggle svg {
  width: 22px;
  height: 22px;
}
.fuga-fab-toggle-icon--close { display: none; }
.fuga-fab-stack.is-open .fuga-fab-toggle-icon--open { display: none; }
.fuga-fab-stack.is-open .fuga-fab-toggle-icon--close { display: block; }
.fuga-fab-stack.is-open .fuga-fab-toggle {
  background: var(--primary, #f5a623);
  color: #1a1200;
}

.fuga-fab-menu {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  width: min(260px, calc(100vw - 2.5rem));
  animation: fugaFabIn 0.18s ease;
  transform-origin: bottom right;
}
.fuga-fab-menu[hidden] { display: none !important; }
@keyframes fugaFabIn {
  from { opacity: 0; transform: translateY(10px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.fuga-fab-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.75rem 0.85rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--border, #e2e8f0);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.14);
  color: #0f172a;
  text-decoration: none;
  cursor: pointer;
}
a.fuga-fab-item:hover {
  border-color: rgba(245, 166, 35, 0.45);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.18);
}
.fuga-fab-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #fff7ed;
  color: #c2410c;
  flex-shrink: 0;
}
.fuga-fab-ico svg { width: 18px; height: 18px; }
.fuga-fab-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}
.fuga-fab-text strong,
.fuga-fab-lang-head strong {
  font-size: 0.9rem;
  font-weight: 700;
}
.fuga-fab-text small {
  font-size: 0.78rem;
  color: #64748b;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
button.fuga-fab-item {
  width: 100%;
  text-align: left;
  font: inherit;
  border: 1px solid var(--border, #e2e8f0);
  cursor: pointer;
}
button.fuga-fab-item:hover {
  border-color: rgba(245, 166, 35, 0.45);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.18);
}
@media (max-width: 480px) {
  .fuga-fab-stack {
    right: 1rem;
    bottom: 5.4rem;
  }
}

/* —— Center language modal (from FAB → Sprache) —— */
.fuga-lang-modal {
  position: fixed;
  inset: 0;
  z-index: 10040;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.fuga-lang-modal[hidden] { display: none !important; }
.fuga-lang-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(3px);
  cursor: pointer;
}
.fuga-lang-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(380px, 100%);
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--border, #e2e8f0);
  box-shadow: 0 28px 64px rgba(15, 23, 42, 0.28);
  overflow: hidden;
  animation: fugaLangPop 0.18s ease;
}
@keyframes fugaLangPop {
  from { opacity: 0; transform: translateY(12px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.fuga-lang-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid var(--border, #e2e8f0);
  background: #0b1220;
  color: #fff;
}
.fuga-lang-modal-head h2 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
}
.fuga-lang-modal-x {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}
.fuga-lang-modal-x:hover { background: var(--primary, #f5a623); color: #1a1200; }
.fuga-lang-modal-search-wrap {
  padding: 0.85rem 1.1rem 0;
  background: #fff;
}
.fuga-lang-modal-search {
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 0.7rem 0.85rem;
  font: inherit;
  font-size: 0.92rem;
  color: #0f172a;
  background: #f8fafc;
  outline: none;
}
.fuga-lang-modal-search:focus {
  border-color: var(--primary, #f5a623);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.2);
  background: #fff;
}
.fuga-lang-modal-body {
  display: grid;
  gap: 0.45rem;
  padding: 0.85rem 1.1rem 1.15rem;
  max-height: min(50vh, 360px);
  overflow-y: auto;
}
.fuga-lang-modal-opt {
  appearance: none;
  width: 100%;
  text-align: left;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  border-radius: 12px;
  padding: 0.8rem 0.95rem;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  cursor: pointer;
  transition: border-color 0.12s ease, background 0.12s ease, box-shadow 0.12s ease;
}
.fuga-lang-modal-opt:hover {
  border-color: #cbd5e1;
  background: #f1f5f9;
}
/* Only ONE selected language is orange — never leave focus/hover looking like active */
.fuga-lang-modal-opt:focus {
  outline: none;
  border-color: #94a3b8;
  background: #f8fafc;
}
.fuga-lang-modal-opt.is-active,
.fuga-lang-modal-opt.is-active:hover,
.fuga-lang-modal-opt.is-active:focus {
  background: var(--primary, #f5a623) !important;
  border-color: var(--primary, #f5a623) !important;
  color: #1a1200 !important;
  box-shadow: 0 6px 16px rgba(245, 166, 35, 0.3);
}
body.fuga-lang-modal-open { overflow: hidden; }
/*
 * Google Translate host: keep measurable size so combo is created.
 * Clip visually — never display:none (kills widget).
 * pointer-events auto on select so programmatic change still works.
 */
/*
 * GT host must stay in layout (not display:none / not clip-path:inset(50%)).
 * Aggressive clipping prevented goog-te-combo from initializing on some browsers.
 */
.gtranslate-engine,
#google_translate_element {
  position: fixed !important;
  left: 8px !important;
  bottom: 8px !important;
  width: 40px !important;
  height: 40px !important;
  opacity: 0.02 !important;
  overflow: hidden !important;
  z-index: 1 !important;
  pointer-events: none !important;
}
#google_translate_element .goog-te-gadget {
  font-size: 12px !important;
}
#google_translate_element .goog-te-combo {
  min-width: 48px !important;
  min-height: 24px !important;
  font-size: 12px !important;
  pointer-events: auto !important;
  opacity: 1 !important;
}

/* Hide only banner / tooltip chrome (keep worker iframes) */
iframe.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
.goog-te-balloon-frame,
#goog-gt-tt,
.goog-tooltip,
.goog-te-ftab-frame {
  visibility: hidden !important;
  height: 0 !important;
  max-height: 0 !important;
  overflow: hidden !important;
  border: 0 !important;
  opacity: 0 !important;
}
/* Top bar Google injects — hide visually but do not remove from layout engine */
body > .skiptranslate {
  position: absolute !important;
  left: -9999px !important;
  top: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
/* Lock GT layout offsets — root cause of page shake */
html.translated-ltr,
html.translated-rtl,
body.translated-ltr,
body.translated-rtl,
body {
  top: 0 !important;
  position: static !important;
}
/* Do not flip whole UI to RTL (text still translates to Arabic) */
html.translated-rtl,
body.translated-rtl {
  direction: ltr !important;
}
.goog-text-highlight {
  background: none !important;
  box-shadow: none !important;
}
/* GT wraps text in <font> — stop vertical jump */
font {
  background: transparent !important;
  box-shadow: none !important;
  vertical-align: baseline !important;
  font-size: inherit !important;
  line-height: inherit !important;
  color: inherit !important;
  letter-spacing: inherit !important;
}
html.is-translated body,
html.translated-ltr body,
html.translated-rtl body {
  word-break: normal;
  overflow-wrap: break-word;
  overflow-x: hidden;
}
html.is-translated .page-hero h1,
html.is-translated .section-head h2,
html.is-translated .hero h1,
html.is-translated .lp2-hero h1 {
  overflow-wrap: break-word;
}
/* Fixed chrome stays put when text length changes */
.site-header,
.site-topbar,
.fuga-fab-stack,
.fuga-chat-btn,
.fuga-chat-panel {
  transform: translateZ(0);
  backface-visibility: hidden;
}
.notranslate font {
  font: inherit !important;
}
html.is-translated input,
html.is-translated textarea,
html.is-translated select,
html.is-translated button {
  font-family: inherit;
}

/* —— FAQ —— */
.section-faq { background: var(--bg-soft, #f7f8fa); }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: .65rem; }
.faq-item {
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 0; overflow: hidden;
}
.faq-item summary {
  cursor: pointer; list-style: none; font-weight: 700; font-size: 1rem;
  padding: 1rem 1.15rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--primary); font-size: 1.25rem; font-weight: 400; }
.faq-item[open] summary::after { content: "–"; }
.faq-body { padding: 0 1.15rem 1.1rem; color: var(--text-muted); font-size: .95rem; line-height: 1.6; border-top: 1px solid var(--border); padding-top: .85rem; margin-top: 0; }

/* —— Customer reviews (home, under FAQ) —— */
.section-reviews {
  background: #fff;
  border-top: 1px solid var(--border);
}
.reviews-head .reviews-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.55rem 0.9rem;
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.reviews-avg strong { color: var(--text); font-size: 1.15rem; }
.stars {
  display: inline-flex;
  gap: 0.12rem;
  letter-spacing: 0.02em;
  line-height: 1;
}
.stars .star {
  color: #e2e8f0;
  font-size: 1.05rem;
}
.stars .star.is-on {
  color: #f5a623;
  text-shadow: 0 1px 0 rgba(245, 166, 35, 0.25);
}
/* Horizontal reviews carousel */
.reviews-slider {
  position: relative;
  margin-top: 0.75rem;
  display: flex;
  align-items: stretch;
  gap: 0.35rem;
}
.reviews-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.35rem 0.15rem 0.85rem;
  flex: 1;
  min-width: 0;
  outline: none;
}
.reviews-track::-webkit-scrollbar { display: none; }
.review-card {
  flex: 0 0 calc((100% - 2rem) / 3);
  max-width: calc((100% - 2rem) / 3);
  scroll-snap-align: start;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.25rem 1.3rem 1.35rem;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 210px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.review-card:hover {
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  border-color: color-mix(in srgb, var(--primary) 35%, var(--border));
}
.reviews-nav {
  flex: 0 0 auto;
  align-self: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #0f172a;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.18);
  transition: background 0.15s ease, transform 0.15s ease, opacity 0.15s ease;
  z-index: 2;
}
.reviews-nav:hover {
  background: var(--primary);
  color: #111;
  transform: scale(1.05);
}
.reviews-nav:disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
}
.reviews-nav:disabled:hover {
  background: #0f172a;
  color: #fff;
}
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.15rem;
  flex-wrap: wrap;
}
.reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: #e2e8f0;
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}
.reviews-dot.is-active {
  width: 22px;
  background: var(--primary);
}
.review-card-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
}
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(245, 166, 35, 0.22), rgba(245, 166, 35, 0.08));
  color: #b45309;
  font-weight: 800;
  font-size: 0.78rem;
  display: grid;
  place-items: center;
  letter-spacing: 0.02em;
}
.review-meta {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.review-name {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.2;
}
.review-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review-card-top .stars {
  align-self: start;
  margin-top: 0.15rem;
}
.review-card-top .stars .star { font-size: 0.92rem; }
.review-body {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #334155;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 1000px) {
  .review-card {
    flex-basis: calc((100% - 1rem) / 2);
    max-width: calc((100% - 1rem) / 2);
  }
}
@media (max-width: 640px) {
  .reviews-slider { gap: 0.15rem; }
  .reviews-nav { width: 36px; height: 36px; }
  .reviews-nav svg { width: 18px; height: 18px; }
  .review-card {
    flex-basis: 85%;
    max-width: 85%;
    min-height: 200px;
  }
  .review-card-top { grid-template-columns: auto 1fr; }
  .review-card-top .stars { grid-column: 2; margin-top: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .reviews-track { scroll-behavior: auto; }
}

/* —— Google Map (home, under reviews) —— */
.section-map {
  background: var(--bg-soft, #f7f8fa);
  border-top: 1px solid var(--border);
  padding-bottom: 3.5rem;
}
.map-frame-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
  background: #e2e8f0;
  max-width: 1100px;
  margin: 0 auto;
}
.map-frame {
  display: block;
  width: 100%;
  vertical-align: middle;
}
.map-address-line {
  text-align: center;
  margin: 1rem 0 0;
  font-size: 0.92rem;
}
.map-address-line a {
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.map-address-line a:hover {
  color: var(--primary);
  border-bottom-color: color-mix(in srgb, var(--primary) 50%, transparent);
}
@media (max-width: 640px) {
  .map-frame-wrap { border-radius: 14px; }
}

/* —— Category detail —— */
.page-hero--cat {
  position: relative;
  overflow: hidden;
  padding: 3.75rem 0 3.5rem;
  min-height: 280px;
  /* column flex: container must span full width (row flex stuck content left) */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  color: #fff;
  background:
    radial-gradient(ellipse 70% 90% at 88% 45%, rgba(245, 166, 35, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 60% at 12% 80%, rgba(56, 120, 200, 0.12), transparent 50%),
    linear-gradient(145deg, #0c1528 0%, #111c32 42%, #0a1222 100%);
}
.page-hero-cat-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1.02);
  z-index: 0;
}
.page-hero-cat-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(100deg, rgba(6, 12, 24, 0.9) 0%, rgba(8, 16, 32, 0.78) 42%, rgba(8, 14, 28, 0.55) 100%),
    radial-gradient(ellipse 55% 70% at 85% 50%, rgba(245, 166, 35, 0.14), transparent 55%);
}
.page-hero-cat-inner,
.page-hero--cat > .container.page-hero-cat-inner {
  position: relative;
  z-index: 2;
  width: min(100% - 2.5rem, var(--container));
  max-width: var(--container);
  margin-inline: auto;
  box-sizing: border-box;
}
.page-hero--cat .lead,
.page-hero--cat .breadcrumb { color: rgba(226, 232, 240, 0.82); }
.page-hero--cat .breadcrumb a:hover { color: var(--primary); }
.page-hero--cat .btn-outline {
  border-color: rgba(255, 255, 255, 0.32);
  color: #fff;
}
.page-hero--cat .btn-outline:hover {
  border-color: var(--primary);
  background: rgba(245, 166, 35, 0.14);
  color: #fff;
}
.page-hero--cat-photo {
  min-height: clamp(320px, 44vh, 460px);
}
.cat-hero-content {
  max-width: min(40rem, 100%);
  width: 100%;
}
.page-hero--cat h1 {
  max-width: 18ch;
}
.page-hero--cat .hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.cat-hero-icon {
  width: 52px; height: 52px; border-radius: 14px; background: rgba(245,166,35,.18); color: var(--primary);
  display: grid; place-items: center; margin-bottom: 1rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.cat-hero-icon svg { width: 26px; height: 26px; }
@media (max-width: 640px) {
  .page-hero--cat { padding: 2.75rem 0 2.5rem; min-height: 0; }
  .page-hero--cat-photo { min-height: clamp(260px, 48vh, 380px); }
  .page-hero--cat h1 { max-width: none; }
}
.cat-intro { max-width: 48rem; font-size: 1.05rem; line-height: 1.7; color: var(--text-muted); }
.cat-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 0.5rem;
}
.cat-story-block,
.cat-story-outro {
  background: linear-gradient(165deg, #fff 0%, #f8fafc 100%);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  padding: 1.35rem 1.35rem 1.25rem;
}
.cat-story-kicker {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b45309;
}
.cat-story-block p,
.cat-story-outro p:last-child {
  margin: 0;
  color: #334155;
  font-size: 1.02rem;
  line-height: 1.65;
}
.cat-story-outro {
  margin-top: 1.5rem;
  background: #0b0b0d;
  border-color: transparent;
}
.cat-story-outro .cat-story-kicker { color: #f5a623; }
.cat-story-outro p:last-child {
  color: #e2e8f0;
  font-size: 1.08rem;
  font-weight: 550;
}
@media (max-width: 800px) {
  .cat-story { grid-template-columns: 1fr; }
}

/* Category gallery: arrows + thumbs + zoom */
.cat-gallery {
  margin: 0 0 2.5rem;
  max-width: 960px;
}
.cat-gallery-stage {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(160deg, #0f172a 0%, #1e293b 55%, #0c1528 100%);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.14);
  border: 1px solid rgba(15, 23, 42, 0.08);
  min-height: 260px;
}
.cat-gallery-viewport {
  display: grid;
  place-items: center;
  min-height: 280px;
  max-height: min(480px, 58vh);
}
.cat-gallery-slide {
  grid-area: 1 / 1;
  margin: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
  z-index: 1;
}
.cat-gallery-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}
.cat-gallery:not(.cat-gallery--multi) .cat-gallery-slide {
  opacity: 1;
  pointer-events: auto;
}
.cat-gallery-slide img {
  display: block;
  width: 100%;
  max-height: min(480px, 58vh);
  height: auto;
  object-fit: contain;
  object-position: center;
  cursor: zoom-in;
}
.cat-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #0f172a;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
  transition: background 0.15s ease, transform 0.15s ease, color 0.15s ease;
}
.cat-gallery-nav:hover {
  background: var(--primary);
  color: #111;
  transform: translateY(-50%) scale(1.05);
}
.cat-gallery-nav--prev { left: 0.85rem; }
.cat-gallery-nav--next { right: 0.85rem; }
.cat-gallery-zoom {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 5;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.72);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.15s ease;
}
.cat-gallery-zoom:hover { background: var(--primary); color: #111; }
.cat-gallery-counter {
  position: absolute;
  bottom: 0.85rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  background: rgba(15, 23, 42, 0.65);
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.cat-gallery-thumbs {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.55rem;
  margin-top: 0.9rem;
  overflow-x: auto;
  padding: 0.15rem 0.1rem 0.4rem;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
.cat-gallery-thumb {
  flex: 0 0 auto;
  width: 92px;
  height: 68px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  background: #0f172a;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.cat-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.cat-gallery-thumb:hover { opacity: 0.92; transform: translateY(-1px); }
.cat-gallery-thumb.is-active {
  opacity: 1;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--primary) 28%, transparent);
}
.cat-gallery-thumb:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Lightbox */
.cat-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(5, 10, 20, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.25rem 2rem;
  backdrop-filter: blur(4px);
}
.cat-lightbox[hidden] { display: none !important; }
.cat-lightbox-img {
  max-width: min(1100px, 94vw);
  max-height: min(86vh, 900px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}
.cat-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}
.cat-lightbox-close:hover { background: var(--primary); color: #111; }
.cat-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.cat-lightbox-nav:hover { background: var(--primary); color: #111; }
.cat-lightbox-nav--prev { left: 1rem; }
.cat-lightbox-nav--next { right: 1rem; }
.cat-lightbox-counter {
  position: absolute;
  bottom: 1.1rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  font-weight: 600;
}
body.cat-lb-open { overflow: hidden; }

/* Hero video popup */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.video-modal[hidden] { display: none !important; }
.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 20, 0.88);
  backdrop-filter: blur(5px);
}
.video-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 96vw);
  background: #0b1220;
  border-radius: 14px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.video-modal-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
}
.video-modal-close:hover { background: var(--primary); color: #111; }
.video-modal-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}
.video-modal-frame iframe,
.video-modal-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #000;
}
body.video-modal-open { overflow: hidden; }
@media (max-width: 600px) {
  .video-modal { padding: 0.65rem; }
  .video-modal-close { top: 0.4rem; right: 0.4rem; width: 38px; height: 38px; }
}

@media (prefers-reduced-motion: reduce) {
  .cat-gallery-slide { transition: none; }
}
@media (max-width: 700px) {
  .cat-gallery-nav { width: 38px; height: 38px; }
  .cat-gallery-nav--prev { left: 0.45rem; }
  .cat-gallery-nav--next { right: 0.45rem; }
  .cat-gallery-viewport { min-height: 220px; max-height: 48vh; }
  .cat-gallery-slide img { max-height: 48vh; }
  .cat-gallery-thumb { width: 72px; height: 54px; }
  .cat-lightbox-nav--prev { left: 0.4rem; }
  .cat-lightbox-nav--next { right: 0.4rem; }
}

.cat-feature-grid { grid-template-columns: repeat(4, 1fr); }
.product-feature-grid { margin-top: 0.25rem; }
.cat-feature-card { text-align: left; padding: 1.25rem; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); }
.cat-feature-card .ico { margin: 0 0 0.85rem; }
@media (max-width: 900px) {
  .cat-hero-grid { grid-template-columns: 1fr; }
  .cat-hero-visual { max-width: 420px; margin-inline: auto; }
  .cat-hero-visual img { max-height: min(300px, 48vh); }
  .cat-feature-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .cat-feature-grid { grid-template-columns: 1fr; }
  .cat-hero-visual { border-radius: 22px; }
  .cat-hero-visual img { border-radius: 18px; }
}

/* —— Modules richer —— */
.mod-grid { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1100px) { .mod-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .mod-grid { grid-template-columns: 1fr; } }
.mod-card { border: 1px solid var(--border); box-shadow: 0 8px 28px rgba(15,23,42,.05); }
.mod-card h3 { font-size: 1.05rem; }
.cat-grid { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1100px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }

/* —— Chat widget —— */
.fuga-chat-btn {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 9990;
  width: 58px; height: 58px; border-radius: 50%; border: 0; cursor: pointer;
  background: linear-gradient(145deg, #f5a623, #e08e0b); color: #1a1200;
  box-shadow: 0 12px 32px rgba(245,166,35,.45);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .72rem; letter-spacing: .02em;
  transition: transform .15s, box-shadow .15s;
}
.fuga-chat-btn:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(245,166,35,.55); }
.fuga-chat-btn svg { width: 26px; height: 26px; }
.fuga-chat-panel {
  position: fixed; right: 1.25rem; bottom: 5.5rem; z-index: 9991;
  width: min(380px, calc(100vw - 1.5rem)); height: min(520px, calc(100vh - 7rem));
  background: #fff; border-radius: 18px; border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(15,23,42,.22);
  display: none; flex-direction: column; overflow: hidden;
}
.fuga-chat-panel.open {
  display: flex;
  z-index: 9993; /* above .fuga-fab-toggle / .fuga-fab-stack */
}
body.fuga-chat-open .fuga-fab-stack {
  z-index: 9988;
}
.fuga-chat-head {
  background: #0b1220; color: #fff; padding: .9rem 1rem;
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
}
.fuga-chat-head strong { font-size: .95rem; }
.fuga-chat-head small { display: block; color: #94a3b8; font-size: .75rem; margin-top: .15rem; }
.fuga-chat-close {
  background: transparent; border: 0; color: #fff; font-size: 1.4rem; cursor: pointer; line-height: 1;
}
.fuga-chat-msgs {
  flex: 1; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: .65rem;
  background: #f8fafc;
}
.fuga-chat-bubble {
  max-width: 88%; padding: .65rem .8rem; border-radius: 12px; font-size: .9rem; line-height: 1.45;
  white-space: pre-wrap; word-break: break-word;
}
.fuga-chat-bubble.bot { background: #fff; border: 1px solid var(--border); align-self: flex-start; color: #0f172a; }
.fuga-chat-bubble.user { background: #f5a623; color: #1a1200; align-self: flex-end; font-weight: 500; }
.fuga-chat-bubble--wait { opacity: .75; font-style: italic; color: #64748b !important; }
.fuga-chat-form {
  display: flex; gap: .45rem; padding: .75rem; border-top: 1px solid var(--border); background: #fff;
}
.fuga-chat-form input {
  flex: 1; border: 1px solid var(--border); border-radius: 10px; padding: .65rem .75rem; outline: none;
}
.fuga-chat-form button {
  border: 0; border-radius: 10px; background: #f5a623; color: #1a1200; font-weight: 700;
  padding: 0 .95rem; cursor: pointer;
}

/* Module cards with photos (icon cards stay row layout above) */
.mod-card--photo {
  flex-direction: column;
  gap: 0;
  padding: 0;
  overflow: hidden;
}
.mod-card-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #0b1220;
  overflow: hidden;
}
.mod-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.mod-card--photo:hover .mod-card-media img { transform: scale(1.05); }
.mod-card--photo .mod-card-body { padding: 1.1rem 1.15rem 1.2rem; }

/* —— Landing: TSE & DSFinV-K (modern lp2) —— */
.btn-outline-light {
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  background: transparent;
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
  color: #fff;
}
.lp2 { color: #0f172a; }
.lp2-section { position: relative; }
.lp2-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.25rem;
}
.lp2-head--left { text-align: left; margin-left: 0; }
.lp2-kicker {
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #f5a623;
  margin-bottom: .55rem;
}
.lp2-head h2 {
  margin: 0 0 .65rem;
  font-size: clamp(1.55rem, 3.2vw, 2.1rem);
  line-height: 1.2;
  letter-spacing: -.02em;
}
.lp2-head p {
  margin: 0;
  color: #64748b;
  font-size: 1.02rem;
  line-height: 1.6;
}
.lp2-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}
.lp2-ctas--center { justify-content: center; }

/* Hero */
.lp2-hero {
  position: relative;
  overflow: hidden;
  background: #070b14;
  color: #f8fafc;
  padding: 3.25rem 0 3.5rem;
}
.lp2-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.lp2-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .55;
}
.lp2-orb-a {
  width: 420px; height: 420px;
  top: -120px; right: -60px;
  background: radial-gradient(circle, rgba(245,166,35,.55), transparent 70%);
}
.lp2-orb-b {
  width: 360px; height: 360px;
  bottom: -140px; left: -80px;
  background: radial-gradient(circle, rgba(56,189,248,.25), transparent 70%);
}
.lp2-grid-fade {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(148,163,184,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148,163,184,.07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
}
.lp2-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 2.25rem;
  align-items: center;
}
.lp2-crumb {
  display: flex; gap: .45rem; align-items: center;
  font-size: .85rem; color: #94a3b8; margin-bottom: 1rem;
}
.lp2-crumb a { color: #cbd5e1; text-decoration: none; }
.lp2-crumb a:hover { color: #f5a623; }
.lp2-pills { display: flex; flex-wrap: wrap; gap: .45rem; margin-bottom: 1.1rem; }
.lp2-pill {
  font-size: .75rem; font-weight: 700;
  padding: .35rem .7rem; border-radius: 999px;
  border: 1px solid rgba(148,163,184,.25);
  background: rgba(15,23,42,.45);
  color: #e2e8f0;
}
.lp2-pill--glow {
  border-color: rgba(245,166,35,.5);
  background: rgba(245,166,35,.14);
  color: #fbbf24;
}
.lp2-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 4.2vw, 2.75rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -.03em;
  color: #fff;
}
.lp2-hero h1 span { color: #f5a623; }
.lp2-lead {
  margin: 0 0 1.4rem;
  max-width: 36rem;
  font-size: 1.06rem;
  line-height: 1.65;
  color: #94a3b8;
}
.lp2-trust-row {
  display: flex; flex-wrap: wrap; gap: .85rem 1.25rem;
  margin-top: 1.35rem;
  font-size: .86rem; color: #94a3b8;
}
.lp2-trust-row span {
  display: inline-flex; align-items: center; gap: .4rem;
}
.lp2-trust-row svg { width: 16px; height: 16px; color: #f5a623; }
.lp2-hero-panel { display: flex; flex-direction: column; gap: .85rem; }
.lp2-glass {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
}
.lp2-glass--main { padding: 1.15rem 1.2rem 1.2rem; }
.lp2-glass-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: .9rem; padding-bottom: .75rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.lp2-glass-head strong { color: #fff; font-size: 1rem; }
.lp2-dot {
  font-size: .72rem; font-weight: 700;
  padding: .25rem .55rem; border-radius: 999px;
  background: rgba(34,197,94,.15); color: #4ade80;
  border: 1px solid rgba(34,197,94,.3);
}
.lp2-glass-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .75rem; }
.lp2-glass-list li { display: flex; gap: .75rem; align-items: flex-start; }
.lp2-ico {
  flex-shrink: 0;
  width: 38px; height: 38px; border-radius: 11px;
  display: grid; place-items: center;
  background: rgba(245,166,35,.14);
  color: #f5a623;
}
.lp2-ico svg { width: 18px; height: 18px; }
.lp2-glass-list b { display: block; color: #f8fafc; font-size: .92rem; }
.lp2-glass-list small { color: #94a3b8; font-size: .8rem; line-height: 1.35; }
.lp2-quote { margin: 0; padding: 1rem 1.15rem; }
.lp2-quote p { margin: 0 0 .45rem; color: #e2e8f0; font-size: .93rem; line-height: 1.5; }
.lp2-quote footer { color: #94a3b8; font-size: .8rem; }

/* Bento how-it-works */
.lp2-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.lp2-bento-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 18px;
  padding: 1.4rem 1.35rem 1.45rem;
  box-shadow: 0 10px 30px rgba(15,23,42,.04);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  overflow: hidden;
}
.lp2-bento-card::before {
  content: '';
  position: absolute; inset: 0 auto auto 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, #f5a623, #fb923c, transparent);
  opacity: 0; transition: opacity .2s ease;
}
.lp2-bento-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(15,23,42,.08);
  border-color: rgba(245,166,35,.35);
}
.lp2-bento-card:hover::before { opacity: 1; }
.lp2-bento-ico {
  width: 48px; height: 48px; border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(145deg, #fff7ed, #ffedd5);
  color: #c2410c;
  margin-bottom: .9rem;
}
.lp2-bento-ico svg { width: 22px; height: 22px; }
.lp2-bento-card h3 { margin: 0 0 .45rem; font-size: 1.08rem; }
.lp2-bento-card p { margin: 0; color: #64748b; font-size: .94rem; line-height: 1.55; }

/* Pains */
.lp2-pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.lp2-pain {
  background: #fff;
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 16px;
  padding: 1.2rem 1.25rem;
  transition: border-color .2s ease;
}
.lp2-pain:hover { border-color: rgba(245,166,35,.4); }
.lp2-pain-top {
  display: flex; align-items: center; gap: .7rem;
  margin-bottom: .55rem;
}
.lp2-pain-ico {
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center;
  background: #0f172a; color: #f5a623; flex-shrink: 0;
}
.lp2-pain-ico svg { width: 18px; height: 18px; }
.lp2-pain h3 { margin: 0; font-size: 1rem; }
.lp2-pain p { margin: 0; color: #64748b; font-size: .93rem; line-height: 1.55; }
.lp2-turn {
  margin-top: 1.5rem;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.2rem 1.4rem;
  border-radius: 16px;
  background: linear-gradient(120deg, #0b1220 0%, #1e293b 100%);
  color: #e2e8f0;
}
.lp2-turn strong { display: block; color: #f5a623; margin-bottom: .25rem; font-size: 1.05rem; }
.lp2-turn p { margin: 0; color: #cbd5e1; font-size: .95rem; }

/* Split + stats */
.lp2-split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2.25rem;
  align-items: start;
}
.lp2-checks {
  list-style: none; margin: 1rem 0 0; padding: 0;
}
.lp2-checks li {
  position: relative;
  padding: .5rem 0 .5rem 1.85rem;
  color: #334155;
  line-height: 1.45;
  border-bottom: 1px solid #f1f5f9;
}
.lp2-checks li:last-child { border-bottom: 0; }
.lp2-checks li::before {
  content: '';
  position: absolute; left: 0; top: .7rem;
  width: 1.1rem; height: 1.1rem; border-radius: 50%;
  background: #dcfce7 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316a34a' stroke-width='3'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/12px no-repeat;
}
.lp2-stat-stack { display: flex; flex-direction: column; gap: .85rem; }
.lp2-stat {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 16px;
  padding: 1.15rem 1.2rem;
  box-shadow: 0 8px 24px rgba(15,23,42,.03);
}
.lp2-stat--accent {
  background: linear-gradient(135deg, #fff7ed, #fff);
  border-color: rgba(245,166,35,.35);
}
.lp2-stat-val {
  font-size: 1.75rem; font-weight: 800;
  color: #f5a623; letter-spacing: -.03em; min-width: 3.5rem;
}
.lp2-stat h3 { margin: 0 0 .3rem; font-size: 1.02rem; }
.lp2-stat p { margin: 0; color: #64748b; font-size: .9rem; line-height: 1.5; }

/* Timeline day */
.lp2-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .85rem;
}
.lp2-step {
  background: #fff;
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 16px;
  padding: 1.15rem 1rem 1.2rem;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.lp2-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(15,23,42,.07);
}
.lp2-step-rail { margin-bottom: .75rem; }
.lp2-step-num {
  display: inline-flex;
  font-size: .78rem; font-weight: 800;
  letter-spacing: .06em;
  color: #f5a623;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 999px;
  padding: .2rem .55rem;
}
.lp2-step-ico {
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center;
  background: #0f172a; color: #f5a623;
  margin-bottom: .65rem;
}
.lp2-step-ico svg { width: 18px; height: 18px; }
.lp2-step h3 { margin: 0 0 .4rem; font-size: .98rem; }
.lp2-step p { margin: 0; color: #64748b; font-size: .88rem; line-height: 1.5; }

/* System features */
.lp2-feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.lp2-feat {
  background: #fff;
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 16px;
  padding: 1.2rem 1.15rem 1.25rem;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.lp2-feat:hover {
  transform: translateY(-3px);
  border-color: rgba(245,166,35,.4);
  box-shadow: 0 16px 36px rgba(15,23,42,.07);
}
.lp2-feat-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: .85rem;
}
.lp2-feat-ico {
  width: 44px; height: 44px; border-radius: 13px;
  display: grid; place-items: center;
  background: linear-gradient(145deg, #0f172a, #1e293b);
  color: #f5a623;
}
.lp2-feat-ico svg { width: 20px; height: 20px; }
.lp2-feat-tag {
  font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  color: #64748b;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: .22rem .55rem;
}
.lp2-feat h3 { margin: 0 0 .4rem; font-size: 1.02rem; }
.lp2-feat p { margin: 0; color: #64748b; font-size: .9rem; line-height: 1.5; }
.lp2-feat-foot {
  display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center;
  margin-top: 1.75rem;
}

/* Ready */
.lp2-ready {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 1.5rem;
  align-items: stretch;
}
.lp2-ready-copy {
  background: #fff;
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 20px;
  padding: 1.75rem 1.85rem;
}
.lp2-ready-copy h2 { margin: .35rem 0 .75rem; }
.lp2-ready-copy > p { color: #64748b; line-height: 1.6; margin: 0 0 .5rem; }
.lp2-ready-card {
  background: linear-gradient(160deg, #0b1220, #1a2740);
  color: #e2e8f0;
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
  display: flex; flex-direction: column; justify-content: center;
  box-shadow: 0 20px 48px rgba(15,23,42,.2);
}
.lp2-ready-card h3 { margin: 0 0 .5rem; color: #fff; font-size: 1.2rem; }
.lp2-ready-card p { margin: 0 0 1.15rem; color: #94a3b8; font-size: .94rem; line-height: 1.5; }

/* Quotes */
.lp2-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.lp2-tcard {
  margin: 0;
  background: #fff;
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 16px;
  padding: 1.25rem 1.2rem;
  display: flex; flex-direction: column; gap: .7rem;
  transition: box-shadow .2s ease;
}
.lp2-tcard:hover { box-shadow: 0 14px 32px rgba(15,23,42,.06); }
.lp2-stars { color: #f5a623; font-size: .85rem; letter-spacing: .08em; }
.lp2-tcard p {
  margin: 0; flex: 1;
  color: #334155; font-size: .94rem; line-height: 1.55;
}
.lp2-tcard footer { font-size: .82rem; color: #64748b; }
.lp2-tcard footer strong { display: block; color: #0f172a; font-size: .88rem; margin-bottom: .15rem; }
.lp2-tcard footer span { color: #94a3b8; }

/* Final */
.lp2-final {
  position: relative;
  overflow: hidden;
  background: #070b14;
  color: #f8fafc;
  padding: 3.5rem 0;
}
.lp2-final::before {
  content: '';
  position: absolute;
  width: 480px; height: 480px;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(245,166,35,.2), transparent 65%);
  pointer-events: none;
}
.lp2-final-inner {
  position: relative; z-index: 1;
  max-width: 40rem;
  text-align: center;
  margin: 0 auto;
}
.lp2-final h2 {
  margin: 0 0 .9rem;
  color: #fff;
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  line-height: 1.25;
  letter-spacing: -.02em;
}
.lp2-final h2 span { color: #f5a623; }
.lp2-final p {
  margin: 0 0 1.5rem;
  color: #94a3b8;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .lp2-feat-grid { grid-template-columns: repeat(3, 1fr); }
  .lp2-timeline { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 960px) {
  .lp2-hero-grid,
  .lp2-split,
  .lp2-ready { grid-template-columns: 1fr; }
  .lp2-bento { grid-template-columns: 1fr; }
  .lp2-quotes { grid-template-columns: 1fr 1fr; }
  .lp2-feat-grid { grid-template-columns: 1fr 1fr; }
  .lp2-timeline { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .lp2-hero { padding: 2.4rem 0 2.6rem; }
  .lp2-pain-grid,
  .lp2-quotes,
  .lp2-feat-grid,
  .lp2-timeline { grid-template-columns: 1fr; }
  .lp2-trust-row { gap: .55rem .9rem; }
}

.mod-card--photo .mod-card-body h3 { margin-bottom: .35rem; }
.mod-card--photo .mod-card-body p { margin: 0; font-size: .88rem; color: var(--text-muted); line-height: 1.45; }

/* —— Cookie consent (TTDSG / DSGVO) —— */
.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10050;
  padding: 0.85rem 1rem 1.1rem;
  pointer-events: none;
}
.cookie-consent[hidden] { display: none !important; }
.cookie-consent-backdrop {
  display: none;
  pointer-events: auto;
}
.cookie-consent--modal {
  inset: 0;
  bottom: 0;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.cookie-consent--modal .cookie-consent-backdrop {
  display: block;
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(3px);
  border: 0;
  cursor: pointer;
}
.cookie-consent--modal .cookie-consent-inner {
  position: relative;
  z-index: 1;
  max-width: min(520px, 100%);
  max-height: min(88vh, 720px);
  overflow: auto;
  margin: 0;
}
.cookie-consent-inner {
  pointer-events: auto;
  max-width: min(920px, 100%);
  margin: 0 auto;
  background: #fff;
  color: var(--text, #1a1a1e);
  border: 1px solid var(--border, #e6e8ee);
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(5, 10, 20, 0.22);
  padding: 1.2rem 1.3rem 1.2rem;
}
.cookie-copy strong {
  display: block;
  font-size: 1.08rem;
  margin-bottom: 0.4rem;
  color: #0f172a;
}
.cookie-copy p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-muted, #5c5f69);
}
.cookie-copy a { color: var(--primary, #f5a623); text-decoration: underline; }
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.95rem;
  justify-content: flex-end;
}
.cookie-actions--simple {
  justify-content: flex-end;
  gap: 0.6rem;
}
.cookie-actions--simple .btn { min-width: 8.5rem; }
.cookie-actions--panel { justify-content: stretch; }
.cookie-actions--panel .btn { flex: 1 1 auto; justify-content: center; min-width: 0; }
.cookie-simple .cookie-copy strong {
  font-size: 1.12rem;
  letter-spacing: -0.01em;
}
.cookie-btn { white-space: nowrap; font-size: 0.88rem; }
.cookie-cats {
  display: grid;
  gap: 0.6rem;
  margin-top: 0.95rem;
}
.cookie-cat {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 0.65rem;
  align-items: start;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--border, #e6e8ee);
  border-radius: 12px;
  background: var(--bg-soft, #f7f8fa);
  cursor: pointer;
  transition: border-color 0.15s ease;
}
.cookie-cat:hover { border-color: rgba(245, 166, 35, 0.45); }
.cookie-cat--locked {
  cursor: default;
  background: #f1f5f9;
  opacity: 0.95;
}
.cookie-cat--locked:hover { border-color: var(--border, #e6e8ee); }
.cookie-cat input { margin-top: 0.2rem; accent-color: var(--primary, #f5a623); width: 1rem; height: 1rem; }
.cookie-cat strong { display: block; font-size: 0.92rem; color: #0f172a; }
.cookie-cat small {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--text-muted, #5c5f69);
}
.cookie-legal-note {
  margin: 0.85rem 0 0;
  font-size: 0.78rem;
  color: var(--text-muted, #5c5f69);
  line-height: 1.4;
}
.cookie-legal-note a { color: var(--primary, #f5a623); }
body.cookie-modal-open { overflow: hidden; }

/* Footer cookie management button */
.footer-cookie-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin: 0;
  padding: 0.2rem 0.55rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: inherit;
  font: inherit;
  font-size: 0.85rem;
  cursor: pointer;
  line-height: 1.3;
  vertical-align: baseline;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.footer-cookie-btn:hover {
  border-color: var(--primary, #f5a623);
  color: var(--primary, #f5a623);
  background: rgba(245, 166, 35, 0.1);
}
.footer-brand .footer-cookie-btn { color: var(--text-soft, #94a3b8); }

@media (max-width: 640px) {
  .cookie-consent { padding: 0.55rem; }
  .cookie-consent--modal { padding: 0.65rem; align-items: flex-end; }
  .cookie-consent-inner { padding: 0.95rem; border-radius: 14px; }
  .cookie-actions { justify-content: stretch; }
  .cookie-actions .btn { flex: 1 1 auto; justify-content: center; }
  .cookie-actions--panel .btn { flex: 1 1 calc(50% - 0.35rem); }
}

/* —— Product detail gallery —— */
.product-detail-main-img {
  width: 100%;
  max-width: 420px;
  height: auto;
  max-height: 360px;
  object-fit: contain;
  border-radius: var(--radius);
  background: #f8fafc;
  border: 1px solid var(--border);
  padding: 0.75rem;
}
.product-gallery-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.85rem;
  max-width: 420px;
}
.product-gallery-thumb {
  width: 64px;
  height: 64px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  overflow: hidden;
  opacity: 0.75;
  transition: opacity 0.15s ease, border-color 0.15s ease;
}
.product-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.product-gallery-thumb:hover,
.product-gallery-thumb.is-active {
  opacity: 1;
  border-color: var(--primary);
}
.product-feature-grid {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)) !important;
}
