/* HausInvent Pro — Premium Black & Gold */
:root {
  --bg: #050505;
  --bg-elevated: #0c0c0c;
  --bg-card: #111111;
  --bg-glass: rgba(12, 12, 12, 0.72);
  --gold: #d4af37;
  --gold-light: #e8c96a;
  --gold-dim: #8a7020;
  --gold-glow: rgba(212, 175, 55, 0.25);
  --text: #f2f2f2;
  --text-muted: #9a9a9a;
  --text-dim: #666;
  --border: rgba(212, 175, 55, 0.18);
  --border-strong: rgba(212, 175, 55, 0.45);
  --sidebar-w: 280px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "DM Sans", "Segoe UI", sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: var(--gold-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
.container { width: min(1140px, 92vw); margin: 0 auto; }

/* ===== SIDEBAR ===== */
.site-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: var(--sidebar-w);
  background: linear-gradient(180deg, #0a0a0a 0%, #060606 100%);
  border-right: 1px solid var(--border);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1rem 1rem;
  overflow-y: auto;
}
.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.25rem 1.25rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1rem;
}
a.sidebar-brand-link {
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius);
  transition: opacity var(--transition), background var(--transition);
}
a.sidebar-brand-link:hover {
  opacity: 0.92;
  background: rgba(212, 175, 55, 0.06);
}
a.sidebar-brand-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.sidebar-logo {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  display: grid; place-items: center;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: #000;
}
.sidebar-logo-img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: contain;
  flex-shrink: 0;
}
.sidebar-brand-logo-wrap {
  display: block;
  width: 100%;
  padding: 4px 0 8px;
  line-height: 0;
}
.sidebar-brand-logo {
  display: block;
  width: 100%;
  max-width: 220px;
  height: auto;
  min-height: 64px;
  object-fit: contain;
}
.footer-logo {
  display: block;
  width: 100%;
  max-width: 280px;
  height: auto;
  min-height: 56px;
  margin-bottom: 0.75rem;
  object-fit: contain;
}
.sidebar-brand-text h1 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1.2;
}
.sidebar-brand-text p {
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lang-switch {
  display: flex;
  gap: 0.35rem;
  padding: 0 1.25rem 1rem;
}

.lang-switch-btn {
  flex: 1;
  padding: 0.45rem 0.35rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.lang-switch-btn:hover {
  border-color: var(--gold-dim);
  color: var(--gold-light);
}

.lang-switch-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 162, 39, 0.12);
}

/* Language block inside sidebar menu */
.lang-sidebar-block {
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.lang-switch-sidebar {
  padding: 0 0.25rem 0.75rem;
}

.lang-world-sidebar {
  padding: 0 0.25rem 0.5rem;
}

.lang-world-sidebar .lang-world-btn {
  width: 100%;
  max-width: none;
  justify-content: space-between;
}

.lang-world-sidebar .lang-world-panel {
  position: relative;
  top: 0.45rem;
  right: auto;
  left: 0;
  min-width: 0;
  max-width: none;
  width: 100%;
  max-height: 14rem;
}

/* Legacy float bar — removed from UI (lang lives in sidebar) */
.lang-bar-float {
  display: none !important;
}

.lang-world-wrap {
  position: relative;
}

.lang-world-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.65rem;
  border: 1px solid var(--gold-dim);
  border-radius: 8px;
  background: rgba(201, 162, 39, 0.08);
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 600;
  cursor: pointer;
  max-width: 9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lang-world-btn:hover,
.lang-world-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 162, 39, 0.15);
}

.lang-world-chevron {
  font-size: 0.6rem;
  opacity: 0.8;
}

.lang-world-panel {
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  min-width: 16rem;
  max-width: 18rem;
  max-height: 16rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
  z-index: 500;
}

.lang-world-panel[hidden] {
  display: none !important;
}

.lang-world-search {
  margin: 0.5rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  color: var(--text);
  font-size: 0.8rem;
}

.lang-world-list {
  list-style: none;
  margin: 0;
  padding: 0.25rem 0.35rem 0.5rem;
  overflow-y: auto;
  flex: 1;
}

.lang-world-item {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.45rem 0.65rem;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: var(--text);
  font-size: 0.8rem;
  cursor: pointer;
}

.lang-world-item:hover {
  background: rgba(201, 162, 39, 0.12);
  color: var(--gold-light);
}

.google-translate-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* Hide Google Translate top banner */
.goog-te-banner-frame,
.skiptranslate,
#goog-gt-tt,
.goog-te-balloon-frame {
  display: none !important;
}
body {
  top: 0 !important;
}
iframe.goog-te-banner-frame {
  display: none !important;
}

.sidebar-search {
  position: relative;
  margin-bottom: 1rem;
}
.sidebar-search input {
  width: 100%;
  padding: 0.65rem 0.85rem 0.65rem 2.2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  font-size: 0.85rem;
  outline: none;
  transition: border-color var(--transition);
}
.sidebar-search input:focus { border-color: var(--gold); }
.sidebar-search svg {
  position: absolute;
  left: 0.75rem; top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  fill: var(--text-muted);
}
.sidebar-group-label {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 0.75rem 0 0.4rem 0.35rem;
}
.nav-links { list-style: none; }
.nav-links a, .nav-links button {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  color: var(--text-muted);
  font-size: 0.88rem;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold-light);
}
.nav-links a.active { border-left: 2px solid var(--gold); }
.nav-ico { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }
.sidebar-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.72rem;
  color: var(--text-dim);
  text-align: center;
}
.sidebar-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: center;
  margin-top: 0.65rem;
}
.sidebar-social a {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid; place-items: center;
  color: var(--text-muted);
  font-size: 0.65rem;
}
.sidebar-social a:hover { border-color: var(--gold); color: var(--gold); }

.sidebar-toggle {
  display: none;
  position: fixed;
  top: 1rem; left: 1rem;
  z-index: 300;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--gold);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* ===== MAIN ===== */
.main-content {
  margin-left: var(--sidebar-w);
  min-height: 100vh;
}

/* ===== HERO ===== */
.hero-premium {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5,5,5,0.92) 0%, rgba(5,5,5,0.55) 50%, rgba(5,5,5,0.88) 100%);
}
.hero-premium-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  padding: 5rem 0 4rem;
}
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-content > p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 2rem;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-bottom: 2.5rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #0a0a0a;
  box-shadow: 0 8px 32px var(--gold-glow);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 40px var(--gold-glow); color: #000; }
.btn-outline {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.hero-stat {
  padding: 1rem;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}
.hero-stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold);
}
.hero-stat span { font-size: 0.75rem; color: var(--text-muted); }

.hero-glass {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-glass-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
}
.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
.hero-glass-ver { margin-left: auto; color: var(--gold-dim); }
.hero-glass-body { padding: 0.5rem 1.1rem; }
.hero-glass-row {
  display: flex;
  justify-content: space-between;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.85rem;
}
.hero-glass-row strong { color: var(--gold-light); }
.hero-glass-row.warn strong { color: #f59e0b; }
.hero-glass-img { width: 100%; height: 180px; object-fit: cover; opacity: 0.85; }

/* ===== TRUST BAR ===== */
.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-elevated);
  padding: 1.1rem 0;
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.trust-bar-inner span::before {
  content: "◆";
  color: var(--gold);
  margin-right: 0.5rem;
  font-size: 0.5rem;
  vertical-align: middle;
}

/* ===== SECTIONS ===== */
section { padding: 5rem 0; }
.section-alt { background: var(--bg-elevated); }
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.section-sub { color: var(--text-muted); font-size: 1.02rem; }

/* ===== DETAIL CARDS ===== */
.detail-grid {
  display: grid;
  gap: 2rem;
}
.detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition);
}
.detail-card:hover { border-color: var(--border-strong); }
.detail-card.reverse { direction: rtl; }
.detail-card.reverse > * { direction: ltr; }
.detail-card-media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/10;
  background: #1a1a1a;
}
.detail-card-media img,
.detail-card-media video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.detail-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}
.detail-card-body p { color: var(--text-muted); margin-bottom: 1rem; }
.detail-list {
  list-style: none;
  display: grid;
  gap: 0.5rem;
}
.detail-list li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: 1.25rem;
  position: relative;
}
.detail-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* ===== BENTO ===== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 1.25rem;
}
.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all var(--transition);
  overflow: hidden;
}
.bento-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.bento-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(212,175,55,0.12);
  display: grid; place-items: center;
  margin-bottom: 1rem;
}
.bento-icon svg { width: 22px; height: 22px; fill: var(--gold); }
.bento-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.bento-card p { font-size: 0.85rem; color: var(--text-muted); }
.bento-large { grid-column: span 2; grid-row: span 2; }
.bento-wide { grid-column: span 2; }
.bento-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 1rem;
}
.bento-large img { height: 220px; }

/* ===== VIDEO GRID ===== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.video-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.video-frame {
  position: relative;
  aspect-ratio: 16/9;
  background: #111;
}
.video-frame video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.video-caption {
  padding: 1.25rem 1.5rem;
}
.video-caption h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}
.video-caption p { font-size: 0.85rem; color: var(--text-muted); }

/* ===== STEPS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.step-card {
  text-align: center;
  padding: 2rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
}
.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: #000;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  display: grid; place-items: center;
  margin: 0 auto 1rem;
}
.step-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.step-card p { font-size: 0.82rem; color: var(--text-muted); }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.gallery-main { grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  min-height: 200px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  font-size: 0.82rem;
  color: var(--gold-light);
}

/* ===== TECH SPECS ===== */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.spec-card {
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}
.spec-card svg { width: 36px; height: 36px; fill: var(--gold); margin-bottom: 1rem; }
.spec-card h4 { font-family: var(--font-serif); font-size: 1.1rem; margin-bottom: 0.5rem; }
.spec-card p { font-size: 0.82rem; color: var(--text-muted); }

/* ===== REQUIREMENTS (pre-purchase) ===== */
.req-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}
.req-card {
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  height: 100%;
}
.req-card--required { border-color: rgba(212, 175, 55, 0.45); }
.req-card--optional { border-color: rgba(255, 255, 255, 0.12); }
.req-card--notneeded { border-color: rgba(255, 255, 255, 0.06); opacity: 0.92; }
.req-card-tag {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
}
.req-card h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 1rem;
}
.req-list {
  list-style: none;
  display: grid;
  gap: 0.65rem;
}
.req-list li {
  font-size: 0.84rem;
  color: var(--text-muted);
  padding-left: 1.35rem;
  position: relative;
  line-height: 1.45;
}
.req-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
}
.req-card--required .req-list li::before { background: var(--gold); }
.req-card--optional .req-list li::before { background: rgba(212, 175, 55, 0.45); border: 1px solid var(--gold); }
.req-card--notneeded .req-list li::before { background: transparent; border: 1px solid var(--text-muted); opacity: 0.5; }
.req-note {
  padding: 1.5rem 1.75rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.02));
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius);
}
.req-note h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  color: var(--gold-light);
}
.req-note p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  line-height: 1.55;
}
.req-note ul {
  list-style: none;
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}
.req-note li {
  font-size: 0.84rem;
  color: var(--text-muted);
  padding-left: 1.1rem;
  position: relative;
}
.req-note li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
}
.req-note .btn { margin-top: 0.25rem; }
.pricing-req-hint {
  margin-top: -0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.88rem;
}
.pricing-req-hint a {
  color: var(--gold-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
  transition: color var(--transition);
}
.pricing-req-hint a:hover { color: var(--gold); }

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}
.price-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 60px var(--gold-glow);
  transform: scale(1.03);
}
.price-badge {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gold);
  color: #000;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
  align-self: flex-start;
}
.price-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}
.price-amount {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold);
  margin: 0.75rem 0;
}
.price-amount small { font-size: 1rem; color: var(--text-muted); }
.price-card ul {
  list-style: none;
  flex: 1;
  margin: 1.25rem 0;
  display: grid;
  gap: 0.55rem;
}
.price-card li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 1.2rem;
  position: relative;
}
.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
}
.price-card .btn { width: 100%; margin-top: auto; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.testimonial {
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.testimonial p {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.55;
}
.testimonial cite {
  font-size: 0.8rem;
  color: var(--gold-dim);
  font-style: normal;
}

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
}
.faq-q::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform var(--transition);
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p {
  padding-bottom: 1.25rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
}
.contact-cards { display: grid; gap: 1rem; margin-bottom: 1.5rem; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  transition: border-color var(--transition);
}
.contact-card:hover { border-color: var(--gold); color: var(--gold-light); }
.contact-card-static {
  cursor: default;
}
.contact-card-static:hover {
  color: var(--text);
}
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.form-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
}
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
  letter-spacing: 0.04em;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { min-height: 120px; resize: vertical; }

/* ===== CTA ===== */
.cta-banner {
  padding: 4rem 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(212,175,55,0.08), transparent);
  border-top: 1px solid var(--border);
}
.cta-banner h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 0.75rem;
}
.cta-banner p { color: var(--text-muted); margin-bottom: 1.5rem; }

/* ===== FOOTER ===== */
.site-footer {
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--border);
  background: #030303;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-grid h4 {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 0.4rem; }
.footer-grid a { color: var(--text-muted); font-size: 0.85rem; }
.footer-grid a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--text-dim);
}
.powered { color: var(--gold-dim); letter-spacing: 0.1em; }

.float-wa {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  z-index: 150;
  transition: transform var(--transition);
}
.float-wa:hover { transform: scale(1.08); color: #fff; }
.float-wa svg { width: 28px; height: 28px; fill: currentColor; }

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

.search-hidden { display: none !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .hero-premium-inner { grid-template-columns: 1fr; }
  .hero-glass { max-width: 480px; }
  .detail-card { grid-template-columns: 1fr; }
  .detail-card.reverse { direction: ltr; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-large { grid-column: span 2; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-main { grid-row: span 1; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .price-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .site-sidebar {
    transform: translateX(-100%);
    transition: transform var(--transition);
  }
  .site-sidebar.open { transform: none; }
  .sidebar-toggle { display: flex; }
  .main-content { margin-left: 0; }
  .video-grid, .testimonials-grid, .specs-grid, .req-grid { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-large, .bento-wide { grid-column: span 1; }
  .steps-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===== DEMO SALES PAGES ===== */
.demo-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.demo-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.demo-hero-media video,
.demo-hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.demo-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--bg) 0%, transparent 55%, rgba(5,5,5,0.7) 100%);
}
.demo-hero-content {
  position: relative;
  z-index: 1;
  padding: 3rem 0 3.5rem;
}
.demo-hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 0.75rem;
}
.demo-hero-content h1 em { color: var(--gold); font-style: italic; }
.demo-hero-content > p {
  max-width: 620px;
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}
.demo-badge {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(212,175,55,0.15);
  border: 1px solid var(--border);
  color: var(--gold);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.demo-body { padding: 4rem 0; }
.demo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}
.demo-split h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.demo-split p { color: var(--text-muted); margin-bottom: 1rem; }
.demo-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 2.5rem 0;
}
.demo-benefit {
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.demo-benefit strong {
  display: block;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}
.demo-benefit span { font-size: 0.82rem; color: var(--text-muted); }
.demo-shot {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16/10;
}
.demo-shot img { width: 100%; height: 100%; object-fit: cover; }
.demo-cta-box {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(212,175,55,0.1), transparent);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-top: 2rem;
}
.demo-cta-box h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.demo-cta-box p { color: var(--text-muted); margin-bottom: 1.25rem; }
.demo-price-tag {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.demos-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  padding: 3rem 0 4rem;
}
.demo-hub-card {
  display: block;
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  color: var(--text);
  transition: all var(--transition);
}
.demo-hub-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  color: var(--text);
}
.demo-hub-card .hub-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.demo-hub-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--gold-light);
  margin-bottom: 0.35rem;
}
.demo-hub-card p { font-size: 0.85rem; color: var(--text-muted); }
@media (max-width: 900px) {
  .demo-split, .demo-benefits, .demos-hub-grid { grid-template-columns: 1fr; }
}

/* ===== PORTFOLIO / SERVICES ===== */
.portfolio-hero {
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(212,175,55,0.06), transparent);
}
.portfolio-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 0.5rem;
}
.portfolio-hero .subtitle { color: var(--gold-light); font-size: 1.1rem; margin-bottom: 0.75rem; }
.portfolio-hero .meta { color: var(--text-muted); font-size: 0.9rem; max-width: 640px; }
.portfolio-tags {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem;
}
.portfolio-tags span {
  font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.35rem 0.75rem; border-radius: 999px;
  border: 1px solid var(--border); color: var(--text-muted);
}
.income-plan-box {
  max-width: 520px; margin: 0 auto;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
}
.income-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.85rem 1.25rem; border-bottom: 1px solid var(--border);
  font-size: 0.9rem; color: var(--text-muted);
}
.income-row strong { color: var(--gold-light); font-family: var(--font-serif); font-size: 1.05rem; }
.income-row.income-highlight { background: rgba(212,175,55,0.08); }
.income-row.income-highlight span, .income-row.income-highlight strong { color: var(--gold); }
.cv-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
}
.cv-block h3 {
  font-family: var(--font-serif); color: var(--gold-light);
  margin-bottom: 0.75rem; font-size: 1.2rem;
}
.cv-block ul { list-style: none; display: grid; gap: 0.5rem; }
.cv-block li {
  font-size: 0.88rem; color: var(--text-muted);
  padding-left: 1rem; position: relative;
}
.cv-block li::before {
  content: "—"; position: absolute; left: 0; color: var(--gold-dim);
}
.project-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.project-card {
  padding: 1.5rem; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius);
}
.project-card h4 { font-family: var(--font-serif); color: var(--gold-light); margin-bottom: 0.5rem; }
.project-card p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.75rem; }
@media (max-width: 768px) {
  .cv-grid, .project-cards { grid-template-columns: 1fr; }
}

/* ===== V6 — PRO LAYOUT, DIGITAL-PFLEGE, DEMOS ===== */
.page-hero {
  padding: 3rem 0 3.5rem;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(212,175,55,0.07) 0%, transparent 55%);
}
.page-hero-inner { max-width: 820px; }
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.12;
  margin-bottom: 1rem;
}
.page-hero h1 em { color: var(--gold); font-style: italic; }
.page-hero-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 680px;
}
.page-hero-video {
  position: relative;
  overflow: hidden;
  padding: 0;
}
.page-hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-video-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.32;
}
.page-hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(5,5,5,0.92) 0%, rgba(5,5,5,0.75) 50%, rgba(5,5,5,0.88) 100%);
}
.page-hero-video .page-hero-inner {
  position: relative;
  z-index: 1;
  padding: 3.5rem 0 4rem;
}
.hero-stats-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.page-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
}
.page-breadcrumb a { color: var(--text-muted); }
.page-breadcrumb a:hover { color: var(--gold); }
.page-breadcrumb span:last-child { color: var(--gold-dim); }

.pro-section { padding: 4rem 0; }
.pro-lead { color: var(--text-muted); font-size: 1rem; line-height: 1.75; }
.pro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.pro-split h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}
.pro-highlight-box {
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  color: var(--text-muted);
  line-height: 1.7;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.info-card {
  padding: 1.5rem 1.65rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.info-card:hover { border-color: var(--gold-dim); }
.info-card h4 {
  font-family: var(--font-serif);
  color: var(--gold-light);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.info-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

.process-list {
  list-style: none;
  display: grid;
  gap: 1rem;
  max-width: 720px;
}
.process-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: 0.9rem;
}
.process-list-wide { max-width: none; }
.process-list-wide li div { display: flex; flex-direction: column; gap: 0.25rem; }
.process-list-wide strong { color: var(--gold-light); font-size: 0.95rem; }
.step-num {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(212,175,55,0.15);
  border: 1px solid var(--border);
  color: var(--gold);
  display: grid; place-items: center;
  font-size: 0.85rem; font-weight: 600;
}

.pricing-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: none;
  gap: 1.25rem;
}
.price-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  min-height: 2.5em;
}

.compare-table-wrap { overflow-x: auto; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.compare-table th,
.compare-table td {
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.compare-table th {
  background: rgba(212,175,55,0.08);
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.compare-table td { color: var(--text-muted); }
.compare-table td:not(:first-child) { text-align: center; color: var(--gold); }
.compare-table tr:last-child td { border-bottom: none; }

.pflege-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.pflege-mini-card {
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}
.pflege-mini-card.featured {
  border-color: var(--gold);
  background: rgba(212,175,55,0.06);
}
.pflege-mini-card strong {
  display: block;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
  font-family: var(--font-serif);
  font-size: 1.15rem;
}
.pflege-mini-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.55;
}
.btn-sm { padding: 0.45rem 1rem; font-size: 0.78rem; }

.cross-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.cross-link-card {
  display: block;
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  color: var(--text);
  transition: all var(--transition);
}
.cross-link-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  color: var(--text);
}
.cross-link-tag {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dim);
}
.cross-link-card h3 {
  font-family: var(--font-serif);
  color: var(--gold-light);
  margin: 0.5rem 0;
  font-size: 1.2rem;
}
.cross-link-card p { font-size: 0.85rem; color: var(--text-muted); }

.demo-preview-bar {
  background: rgba(212,175,55,0.08);
  border-bottom: 1px solid var(--border);
  padding: 0.65rem 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
}
.demo-preview-bar a { color: var(--gold-light); font-weight: 500; }
.demo-preview-bar strong { color: var(--gold); }

.hub-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}
.hub-num {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.hub-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.75rem 0;
}
.hub-tags span {
  font-size: 0.65rem;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-dim);
}
.hub-cta {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.demos-hub-compact { grid-template-columns: repeat(3, 1fr); }
.demo-hub-compact-card { padding: 1.35rem; }

.promo-banner {
  padding: 3rem 0;
  background: linear-gradient(90deg, rgba(212,175,55,0.1), transparent);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.promo-banner-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.promo-banner h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.75rem;
}
.promo-banner p { color: var(--text-muted); margin-bottom: 1.25rem; line-height: 1.7; }
.promo-points {
  list-style: none;
  display: grid;
  gap: 0.65rem;
}
.promo-points li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: 1.25rem;
  position: relative;
}
.promo-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.promo-banner-alt {
  background: linear-gradient(90deg, rgba(90,140,255,0.08), transparent);
}

.smart-home-box {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 2rem;
  align-items: start;
}
.smart-home-sub {
  color: var(--gold);
  font-size: 0.95rem;
  margin: -0.5rem 0 0.75rem;
}
.smart-home-features { margin: 1rem 0; }
.smart-home-note {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin: 1rem 0 1.25rem;
  padding: 0.85rem 1rem;
  border-left: 2px solid var(--gold);
  background: rgba(212,175,55,0.06);
}
.smart-home-pricing { display: flex; flex-direction: column; gap: 1rem; }
.smart-home-card { margin: 0; }
.smart-home-stack {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-card);
  font-size: 0.85rem;
  color: var(--text-muted);
}
.smart-home-arrow { color: var(--gold); text-align: center; font-size: 1rem; }

#remote-einrichtung,
#smart-home {
  scroll-margin-top: 5rem;
}

.remote-setup-box {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.remote-setup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.remote-block-title {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.remote-needs-grid { grid-template-columns: 1fr; gap: 0.75rem; }
.info-card-compact { padding: 1rem 1.15rem; }
.info-card-compact h4 { font-size: 0.92rem; margin-bottom: 0.35rem; }
.info-card-compact p { font-size: 0.85rem; margin: 0; }
.remote-steps { margin-top: 0; }
.remote-security { margin-top: 1.25rem; font-size: 0.88rem; }

.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
}
.form-select:focus { border-color: var(--gold); }

@media (max-width: 1000px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid-3, .pflege-mini-grid, .cross-links, .demos-hub-compact { grid-template-columns: 1fr; }
  .smart-home-box { grid-template-columns: 1fr; }
  .remote-setup-grid { grid-template-columns: 1fr; }
  .pro-split, .info-grid, .promo-banner-inner { grid-template-columns: 1fr; }
}
