/* ==========================================================================
   XOLVIX.AI — Dark Editorial + Gold
   Fonts: Cormorant Garamond + DM Sans
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --black: #0a0a0a;
  --dark: #111113;
  --card: #161618;
  --border: rgba(255, 255, 255, 0.08);
  --border2: rgba(255, 255, 255, 0.14);
  --silver: #c8cad0;
  --bright: #eceef2;
  --mid: #8b8e98;
  --muted: #5c5f68;
  --gold: #B8956A;
  --grad: linear-gradient(135deg, #B8956A 0%, #D4B896 50%, #A8835A 100%);
}

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--silver);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

.wrap { max-width: 960px; margin: 0 auto; padding: 0 clamp(24px,6vw,72px); }
.wrap-full { max-width: 1120px; margin: 0 auto; padding: 0 clamp(24px,6vw,72px); }

h1, h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: var(--bright);
  line-height: 1.1;
}

h1 { font-size: clamp(40px,6vw,72px); letter-spacing: -0.5px; }
h2 { font-size: clamp(28px,3.5vw,44px); letter-spacing: -0.3px; margin-bottom: 14px; }
h3 { font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 17px; color: var(--bright); margin-bottom: 6px; }
p { color: var(--mid); }

.chrome-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #B8956A; /* Gold label */
  margin-bottom: 16px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
  border: none;
}

.btn-chrome {
  background: var(--grad);
  color: #0a0a0a;
  box-shadow: 0 4px 18px rgba(184, 149, 106, 0.28);
}

.btn-chrome:hover {
  box-shadow: 0 8px 28px rgba(184, 149, 106, 0.42);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--silver);
  border: 1px solid var(--border2);
}

.btn-ghost:hover {
  border-color: var(--silver);
  background: rgba(255,255,255,0.03);
}

/* NAVIGATION */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 64px;
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav .wrap-full {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand { display: flex; align-items: center; gap: 11px; }
.brand img { height: 40px; width: 40px; object-fit: contain; }
.brand-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 3px;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links { display: flex; gap: 24px; list-style: none; }
.nav-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--mid);
  transition: color .15s;
}
.nav-links a:hover { color: var(--bright); }
.nav-end { display: flex; align-items: center; gap: 8px; }

/* LANGUAGE SWITCHER */
.lang-sw {
  display: flex;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  padding: 3px;
  gap: 2px;
}

.lbtn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all .15s;
}

.lbtn.on {
  background: rgba(255, 255, 255, 0.1);
  color: var(--bright);
}

.lang-select-wrap {
  display: none;
  position: relative;
  align-items: center;
  flex-shrink: 0;
}
.lang-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border2);
  border-radius: 6px;
  color: var(--silver);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 7px 32px 7px 10px;
  min-width: 72px;
  cursor: pointer;
  outline: none;
  line-height: 1.2;
}

.lang-select option { background: var(--card); color: var(--silver); }
.lang-select-arrow {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--muted);
  font-size: 0;
  color: transparent;
  line-height: 0;
}

/* HERO */
.hero {
  padding-top: 64px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.hero-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(184, 149, 106, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
  padding: clamp(60px,8vw,100px) 0;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--border2);
}

.hero h1 { margin-bottom: 22px; }
.hero-desc {
  font-size: 17px;
  font-weight: 400;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 52px; }

.hero-kpis {
  display: flex;
  gap: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.kpi-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.kpi-l { font-size: 11px; color: var(--muted); margin-top: 4px; font-weight: 600; }

.hero-logo-side { display: flex; align-items: center; justify-content: center; }
.hero-logo-side img {
  width: 340px; height: 340px;
  object-fit: contain;
  animation: breathe 6s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% {
    filter: drop-shadow(0 0 40px rgba(184, 149, 106, 0.05));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 80px rgba(184, 149, 106, 0.15));
    transform: scale(1.02);
  }
}

.divider { height: 1px; background: var(--border); }
.section { padding: clamp(72px,9vw,110px) 0; }
.section-dark { background: var(--dark); }

.sh { margin-bottom: clamp(40px,5vw,56px); }
.sh p { font-size: 16px; color: var(--mid); max-width: 480px; margin-top: 10px; line-height: 1.75; }

/* SERVICES */
.svc-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.svc {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  align-items: start;
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
  background: var(--card);
  transition: background .2s, transform .2s, box-shadow .2s;
}

.svc:last-child { border-bottom: none; }
.svc:hover {
  background: var(--card);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.28);
}

.svc-icon { font-size: 24px; padding-top: 2px; }
.svc h3 { font-size: 18px; margin-bottom: 5px; }
.svc p { font-size: 14.5px; line-height: 1.7; color: var(--mid); }

.svc-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.chip {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid var(--border2);
  color: var(--muted);
  text-transform: uppercase;
}

/* PROCESS */
.steps { display: flex; flex-direction: column; }
.step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.step:last-child { border-bottom: none; }
.step-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1;
  padding-top: 2px;
  transition: color .2s;
}

.step:hover .step-n {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step h3 { font-size: 16px; margin-bottom: 4px; }
.step p { font-size: 14.5px; line-height: 1.7; color: var(--mid); }

/* INDUSTRIES */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 10px;
}

.ind {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all .2s;
}

.ind:hover {
  border-color: var(--border2);
  background: var(--card);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.28);
}

.ind-static {
  cursor: default;
}
.ind-static:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--border);
  background: var(--card);
}

.ind-link {
  cursor: pointer;
}
.ind-link:hover {
  border-color: rgba(184, 149, 106, 0.45);
}

.ind-cta {
  font-size: 11px;
  color: #B8956A;
  margin-top: 6px;
  font-weight: 600;
}

.ind-l { display: flex; align-items: center; gap: 12px; }
.ind-ic {
  font-size: 18px;
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.ind-nm { font-size: 14px; font-weight: 600; color: var(--bright); }
.ind-sb { font-size: 12px; color: var(--muted); margin-top: 1px; }
.ind-ar { color: var(--muted); transition: all .2s; font-size: 14px; }
.ind:hover .ind-ar { color: var(--silver); transform: translateX(3px); }

/* FAQ */
.faq-wrap { max-width: 660px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--silver);
  transition: color .15s;
}

.faq-q:hover { color: var(--bright); }
.faq-ic {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border2);
  display: grid;
  place-items: center;
  font-size: 16px;
  color: var(--muted);
  flex-shrink: 0;
  transition: all .25s;
}

.faq-item.open .faq-ic {
  border-color: var(--silver);
  color: var(--silver);
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  font-size: 14px;
  color: var(--mid);
  line-height: 1.75;
  transition: max-height .35s ease, padding .25s;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 20px;
}

/* BOOKING & FORM */
.booking-sec {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: clamp(40px,7vw,80px);
  align-items: start;
}

.bl h2 { color: var(--bright); }
.bl p { font-size: 16px; color: var(--mid); line-height: 1.75; margin-bottom: 32px; }

.perks { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.perk { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--mid); }
.pck {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1px solid var(--border2);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 9px;
  font-weight: 700;
  color: var(--silver);
}

.form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: clamp(20px,3vw,36px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  overflow: hidden;
  min-width: 0;
  width: 100%;
}

.form-consent {
  font-size: 11px;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.5;
}
.form-consent a {
  color: var(--bright);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--bright);
  margin-bottom: 22px;
}

.f2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.f2 > .fg { min-width: 0; }
.fg { margin-bottom: 10px; width: 100%; }
.fl {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 5px;
}

.fi {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 10px 13px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--silver);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color .18s, background-color .18s;
  -webkit-appearance: none;
  appearance: none;
}

.fi:focus {
  border-color: #B8956A;
  background: rgba(255, 255, 255, 0.04);
}

.fi::placeholder { color: var(--muted); }
select.fi { cursor: pointer; }
select.fi option { background: var(--card); color: var(--silver); }
textarea.fi { resize: none; height: 80px; }

.fsub {
  width: 100%;
  padding: 13px;
  margin-top: 6px;
  background: var(--grad);
  color: #FFFFFF;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: all .2s;
}

.fsub:hover {
  box-shadow: 0 4px 20px rgba(184, 149, 106, 0.3);
  transform: translateY(-1px);
}

.ok-msg { display: none; text-align: center; padding: 20px 0; }

/* FOOTER */
footer {
  background: #111111; /* Grounding dark footer */
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 36px 0;
  color: #c8cad0;
}

footer .wrap-full {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.fb { display: flex; align-items: center; gap: 10px; }
.fb img { height: 28px; }
.fb-n {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 3px;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fc { font-size: 12px; color: #888b96; text-align: center; line-height: 1.7; }
.fl-list { display: flex; gap: 20px; list-style: none; }
.fl-list a { font-size: 12px; color: #888b96; transition: color .15s; }
.fl-list a:hover { color: #eceef2; }

/* REVEAL ON SCROLL */
.rv { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.rv.show { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }

/* —— Immersive extras —— */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  z-index: 200;
  background: linear-gradient(90deg, #A8835A, #D4B896, #B8956A);
  pointer-events: none;
  transition: width .08s linear;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 30% 40%, #000 20%, transparent 70%);
  pointer-events: none;
  opacity: .7;
}

.cursor-blob { display: none !important; }


.hx {
  opacity: 0;
  transform: translateY(18px);
  animation: hxIn .8s cubic-bezier(.2,.7,.2,1) forwards;
}
.hx1 { animation-delay: .05s; }
.hx2 { animation-delay: .15s; }
.hx3 { animation-delay: .28s; }
.hx4 { animation-delay: .4s; }
.hx5 { animation-delay: .52s; }
@keyframes hxIn {
  to { opacity: 1; transform: none; }
}

.hero-stage {
  position: relative;
  min-height: 420px;
}

.stage-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
  background: rgba(255,255,255,0.05);
  padding: 4px;
  border-radius: 10px;
}
.stage-tab {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 10px 8px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .4px;
  color: var(--muted);
  cursor: pointer;
  transition: .2s;
}
.stage-tab.on {
  background: var(--card);
  color: var(--bright);
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

.stage-panel {
  display: none;
  animation: panelIn .45s ease;
}
.stage-panel.on { display: block; }
@keyframes panelIn {
  from { opacity: 0; transform: translateY(10px) scale(.985); }
  to { opacity: 1; transform: none; }
}

.phone-shell {
  background: #1a1a1b;
  border-radius: 28px;
  padding: 14px 12px 18px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.55);
  max-width: 280px;
  margin: 0 auto;
  position: relative;
}
.phone-notch {
  width: 88px; height: 10px;
  background: #0d0d0e;
  border-radius: 0 0 10px 10px;
  margin: 0 auto 12px;
}
.phone-screen {
  background: linear-gradient(180deg, #F8F7F4, #efece6);
  border-radius: 18px;
  padding: 16px;
  min-height: 280px;
}
.call-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 14px;
}
.call-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #3cb371;
  box-shadow: 0 0 0 0 rgba(60,179,113,.5);
  animation: ping 1.6s infinite;
}
@keyframes ping {
  70% { box-shadow: 0 0 0 10px rgba(60,179,113,0); }
  100% { box-shadow: 0 0 0 0 rgba(60,179,113,0); }
}
.call-bubble {
  font-size: 13px;
  line-height: 1.45;
  padding: 10px 12px;
  border-radius: 14px;
  margin-bottom: 10px;
  min-height: 40px;
}
.call-bubble.in {
  background: #fff;
  border: 1px solid var(--border);
  border-bottom-left-radius: 4px;
  max-width: 92%;
}
.call-bubble.out {
  background: linear-gradient(135deg, #B8956A, #A8835A);
  color: #fff;
  margin-left: auto;
  border-bottom-right-radius: 4px;
  max-width: 92%;
}
.call-meta {
  margin-top: 16px;
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
}

.llm-shell {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(0,0,0,0.4);
}
.llm-stage-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.llm-fear {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  line-height: 1.25;
  color: var(--bright);
  letter-spacing: 0.2px;
}
.llm-fear-sub {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--gold);
  font-weight: 600;
}
.llm-terminal .llm-bar {
  justify-content: flex-start;
}
.llm-live {
  margin-left: auto;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: #81b29a;
  background: rgba(129,178,154,0.12);
  padding: 4px 8px;
  border-radius: 99px;
}
.llm-chat {
  padding: 16px 14px 12px;
  height: 320px;
  max-height: 320px;
  overflow-x: hidden;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scrollbar-width: thin;
  overscroll-behavior: contain;
}
.llm-msg {
  font-size: 13.5px;
  line-height: 1.55;
  border-radius: 12px;
  padding: 10px 12px;
  max-width: 94%;
  flex: 0 0 auto;
  position: relative;
}
.llm-in {
  animation: llmIn .35s ease;
}
@keyframes llmIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
.llm-msg-sys {
  align-self: stretch;
  background: rgba(255,255,255,0.03);
  color: var(--muted);
  font-size: 12.5px;
  max-width: 100%;
}
.llm-msg-user {
  align-self: flex-end;
  background: linear-gradient(135deg, #B8956A, #A8835A);
  color: #0a0a0a;
  font-weight: 600;
  border-bottom-right-radius: 4px;
}
.llm-msg-bot {
  align-self: flex-start;
  background: rgba(184,149,106,0.1);
  border-left: 3px solid #B8956A;
  color: var(--mid);
  border-bottom-left-radius: 4px;
  min-height: 24px;
}
.llm-pulse {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #B8956A;
  margin-right: 8px;
  vertical-align: middle;
  animation: ping 1.4s infinite;
}
.llm-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid var(--border);
  font-size: 12px;
}
.llm-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #cfc8bc;
}
.llm-dot:nth-child(1) { background: #e07a5f; }
.llm-dot:nth-child(2) { background: #f2cc8f; }
.llm-dot:nth-child(3) { background: #81b29a; }
.llm-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 14px 14px;
}
.llm-tags span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 99px;
  background: rgba(255,255,255,0.05);
  color: var(--muted);
}

.demo-shell {
  background: linear-gradient(160deg, #1a1a1c 0%, #121214 100%);
  border: 1px solid var(--border2);
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 24px 50px rgba(0,0,0,0.4);
  text-align: left;
}
.demo-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #B8956A;
  margin-bottom: 10px;
}
.demo-shell h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.demo-list {
  list-style: none;
  margin-bottom: 22px;
}
.demo-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--mid);
}
.demo-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #B8956A;
}
.demo-cta { width: 100%; justify-content: center; }

.stage-replay {
  display: block;
  margin: 14px auto 0;
  background: none;
  border: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.stage-replay:hover { color: var(--bright); }

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  width: 22px; height: 34px;
  border: 1.5px solid var(--border2);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-hint span {
  width: 3px; height: 8px;
  border-radius: 3px;
  background: #B8956A;
  animation: hint 1.4s infinite;
}
@keyframes hint {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(10px); }
}

.story-sec {
  padding: clamp(70px,10vw,110px) 0;
  background: var(--black);
  position: relative;
}
.story-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.story-card {
  text-align: left;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 20px 20px;
  cursor: pointer;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  font: inherit;
  color: inherit;
  position: relative;
  overflow: hidden;
  min-height: 260px;
}
.story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}
.story-card.on {
  border-color: rgba(184,149,106,.55);
  box-shadow: 0 18px 40px rgba(184,149,106,0.12);
}
.story-n {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #B8956A;
  margin-bottom: 12px;
}
.story-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  line-height: 1.15;
  margin-bottom: 10px;
}
.story-card p {
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 16px;
}
.story-cta { display: inline-flex; margin-top: 4px; }
.story-visual {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 64px;
  height: 64px;
  opacity: .9;
}
.phone-mini {
  border: 2px solid rgba(255,255,255,.14);
  border-radius: 12px;
}
.phone-mini .pulse {
  position: absolute;
  left: 50%; top: 50%;
  width: 10px; height: 10px;
  margin: -5px 0 0 -5px;
  border-radius: 50%;
  background: #B8956A;
  animation: ping 1.8s infinite;
}
.phone-mini .pulse.d2 { animation-delay: .5s; opacity: .5; }
.llm-mini {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  padding: 12px;
}
.llm-mini span {
  flex: 1;
  background: linear-gradient(180deg, #D4B896, #B8956A);
  border-radius: 4px;
  animation: bars 1.2s ease-in-out infinite;
}
.llm-mini span:nth-child(1) { height: 28%; }
.llm-mini span:nth-child(2) { height: 62%; animation-delay: .15s; }
.llm-mini span:nth-child(3) { height: 44%; animation-delay: .3s; }
@keyframes bars {
  0%,100% { transform: scaleY(.7); }
  50% { transform: scaleY(1); }
}

.btn-mag { will-change: transform; }
.svc, .step { transition: transform .25s ease, box-shadow .25s ease; }
.svc:hover, .step:hover { transform: translateY(-3px); }

/* Cal.com booking */
.booking-grid-cal {
  grid-template-columns: 0.9fr 1.2fr;
  gap: clamp(28px,5vw,48px);
}
.cal-card {
  padding: 16px 16px 8px !important;
  min-height: 640px;
  display: flex;
  flex-direction: column;
}
.cal-tabs {
  display: flex;
  gap: 6px;
  background: rgba(255,255,255,0.04);
  padding: 4px;
  border-radius: 10px;
  margin-bottom: 10px;
}
.cal-tab {
  flex: 1;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: .2s;
}
.cal-tab.on {
  background: var(--grad);
  color: #0a0a0a;
  box-shadow: 0 6px 18px rgba(184,149,106,0.25);
}
.cal-hint {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
  line-height: 1.45;
}
.cal-embed {
  flex: 1;
  min-height: 560px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
  position: relative;
}
.cal-embed iframe,
.cal-iframe {
  display: block;
  width: 100% !important;
  min-height: 560px !important;
  height: 100%;
  border: 0;
  background: #111;
}
.cal-fallback {
  padding: 28px 18px;
  text-align: center;
  color: var(--mid);
  font-size: 14px;
  line-height: 1.6;
}
.cal-fallback a { color: var(--gold); text-decoration: underline; }
.cal-gate { display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 40px 20px; }
.cal-gate-alt { font-size: 13px; color: var(--muted); margin: 0; }

.cookie-footer-btn {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}
.cookie-footer-btn:hover { color: var(--bright); }

.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 300;
  padding: 16px;
  pointer-events: none;
}
.cookie-banner[hidden] { display: none !important; }
.cookie-inner {
  pointer-events: auto;
  max-width: 920px;
  margin: 0 auto;
  background: #141416;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 18px 18px 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.55);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px 20px;
  align-items: end;
}
.cookie-copy strong {
  display: block;
  font-size: 15px;
  color: var(--bright);
  margin-bottom: 8px;
}
.cookie-copy p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--mid);
  margin: 0 0 12px;
}
.cookie-copy a { color: var(--gold); text-decoration: underline; }
.cookie-opt {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--silver);
  cursor: pointer;
}
.cookie-opt input { margin-top: 3px; accent-color: #B8956A; }
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}
.cookie-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  padding: 11px 14px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: .15s;
}
.cookie-btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.16);
  color: var(--silver);
}
.cookie-btn-ghost:hover { border-color: rgba(255,255,255,0.3); color: var(--bright); }
.cookie-btn-primary {
  background: var(--grad);
  color: #0a0a0a;
  border: 0;
}
.cookie-btn-primary:hover { box-shadow: 0 4px 16px rgba(184,149,106,0.3); }

@media (max-width: 720px) {
  .cookie-inner { grid-template-columns: 1fr; }
  .cookie-actions { width: 100%; }
  .cookie-actions .cookie-btn { flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .hx, .rv, .stage-panel, .call-dot, .scroll-hint span, .phone-mini .pulse, .llm-mini span, .llm-in {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .cursor-blob, .scroll-hint { display: none !important; }
}

/* RTL FOR ARABIC */
body.ar { direction: rtl; }
body.ar .hero-eyebrow::before, body.ar .hero-eyebrow::after { display: none; }
body.ar .ind-ar { transform: scaleX(-1); }
body.ar .ind:hover .ind-ar { transform: scaleX(-1) translateX(-3px); }

/* LANGUAGE VISIBILITY */
[lang-de], [lang-en], [lang-ru], [lang-tr], [lang-ar] { display: none !important; }
body [lang-de] { display: revert !important; }
body.en [lang-de] { display: none !important; }
body.en [lang-en] { display: revert !important; }
body.ru [lang-de] { display: none !important; }
body.ru [lang-ru] { display: revert !important; }
body.tr [lang-de] { display: none !important; }
body.tr [lang-tr] { display: revert !important; }
body.ar [lang-de] { display: none !important; }
body.ar [lang-ar] { display: revert !important; }

/* list items specifically */
li[lang-de], li[lang-en], li[lang-ru], li[lang-tr], li[lang-ar] { display: none !important; }
body li[lang-de] { display: flex !important; }
body.en li[lang-en] { display: flex !important; }
body.en li[lang-de] { display: none !important; }
body.ru li[lang-ru] { display: flex !important; }
body.ru li[lang-de] { display: none !important; }
body.tr li[lang-tr] { display: flex !important; }
body.tr li[lang-de] { display: none !important; }
body.ar li[lang-ar] { display: flex !important; }
body.ar li[lang-de] { display: none !important; }

li.navlink { display: flex !important; }

/* RESPONSIVE */
@media(max-width: 860px) {
  .nav-links { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-logo-side { display: none; }
  .hero-stage { min-height: 0; max-width: 360px; margin: 0 auto; }
  .scroll-hint { display: none; }
  .story-rail { grid-template-columns: 1fr; }
  .story-card { min-height: 0; }
  .booking-grid-cal { grid-template-columns: 1fr; }
  .cal-card { min-height: 520px; }
  .cal-embed, .cal-embed iframe { min-height: 480px !important; }
  footer .wrap-full { flex-direction: column; text-align: center; }
  .lang-sw { display: none; }
  .lang-select-wrap { display: flex; }
  .cursor-blob { display: none; }
}

@media(max-width: 500px) {
  .f2 { grid-template-columns: 1fr; }
  .hero-kpis { gap: 20px; }
  .brand-name { display: none; }
  .nav .wrap-full { gap: 8px; padding: 0 14px; }
  .nav-end { gap: 6px; }
  .lang-select {
    padding: 6px 28px 6px 10px;
    font-size: 12px;
    min-width: 64px;
  }
  .lang-select-arrow {
    right: 9px;
    border-left-width: 4px;
    border-right-width: 4px;
    border-top-width: 5px;
  }
  .form-card { padding: 18px 16px; }
  .fi { font-size: 16px; } /* iOS zoom vermeiden */
}

@media(max-width: 860px) { html, body { overflow-x: hidden; } }
body { font-size: 16px; }
p { color: var(--mid); }
.svc p, .step p { color: var(--mid); font-size: 14.5px; }
.chip { font-size: 11px; font-weight: 700; }
.kpi-l { color: var(--muted); font-size: 11px; }
.label { color: var(--gold); font-size: 11px; }
h3 { font-size: 16.5px; font-weight: 600; }
