html { scroll-behavior: smooth; }
:root {
  --bg: #07070a;
  --page-bg: #07070a;
  --hero-base: #08070d;
  --text: #f7f4ff;
  --muted: #aaa3b8;
  --line: rgba(255,255,255,.12);
  --surface: rgba(255,255,255,.045);
  --surface-strong: rgba(255,255,255,.075);
  --brand-border: rgba(255,255,255,.14);
  --max: 1320px;
  --mx: 68%;
  --my: 36%;

  --active-rgb: 168, 85, 247;
  --active-rgb-2: 192, 132, 252;
  --active-rgb-3: 96, 165, 250;
}

body.light-theme {
  --bg: #ffffff;
  --page-bg: #ffffff;
  --hero-base: #ffffff;
  --text: #17131f;
  --muted: #625b6b;
  --line: rgba(28,22,40,.12);
  --surface: rgba(255,255,255,.78);
  --surface-strong: rgba(255,255,255,.9);
  --brand-border: rgba(28,22,40,.13);
}

body.light-theme {
  --bg: #f6f1ea;
  --page-bg: #f6f1ea;
  --hero-base: #f7f0e6;
  --text: #17131f;
  --muted: #645c6f;
  --line: rgba(28,22,40,.13);
  --surface: rgba(255,255,255,.62);
  --surface-strong: rgba(255,255,255,.78);
  --brand-border: rgba(28,22,40,.14);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--page-bg);
  overflow-x: hidden;
  transition: background-color .45s ease, color .45s ease;
}

body.light-theme {
  background: #ffffff;
}

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

.page-ambience {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(var(--active-rgb), .045), transparent 28%),
    linear-gradient(180deg, rgba(var(--active-rgb), .028), transparent 36%, rgba(var(--active-rgb-3), .035));
  transition: background 700ms ease;
}

.page-orb {
  position: absolute;
  display: block;
  border-radius: 999px;
  filter: blur(95px);
  opacity: .18;
  background: rgba(var(--active-rgb), .8);
  animation: pageOrbFloat 16s ease-in-out infinite alternate;
}

.page-orb-a {
  width: 520px;
  height: 520px;
  left: -170px;
  top: 760px;
}

.page-orb-b {
  width: 480px;
  height: 480px;
  right: -150px;
  top: 1040px;
  background: rgba(var(--active-rgb-3), .72);
  animation-delay: -5s;
}

.page-orb-c {
  width: 420px;
  height: 420px;
  left: 45%;
  top: 1420px;
  background: rgba(var(--active-rgb-2), .58);
  animation-delay: -9s;
}

.site-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(90px);
  opacity: .18;
  z-index: -1;
  background: rgba(var(--active-rgb), .78);
  transition: background .7s ease, opacity .45s ease;
}

.site-glow-1 {
  left: -120px;
  top: 140px;
}

.site-glow-2 {
  right: -180px;
  top: 520px;
  background: rgba(var(--active-rgb-3), .64);
}

body.light-theme .page-ambience {
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(var(--active-rgb), .035), transparent 30%),
    linear-gradient(180deg, rgba(var(--active-rgb), .018), transparent 38%, rgba(var(--active-rgb-3), .022));
}

body.light-theme .page-orb {
  opacity: .10;
  filter: blur(105px);
}

body.light-theme .site-glow {
  opacity: .08;
}

.header {
  position: fixed;
  inset: 0 0 auto;
  height: 86px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  width: calc(100% - 72px);
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: .22em;
  font-size: 18px;
  color: var(--text);
}

.brand-word {
  display: inline-block;
}

.brand-mark {
  flex: 0 0 auto;
}

.brand-mark-logo {
  width: 84px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgb(var(--active-rgb));
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.brand-mark-logo svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

body.light-theme .brand-mark-logo {
  color: rgb(var(--active-rgb));
}

.nav {
  display: flex;
  align-items: center;
  gap: 38px;
  color: rgba(255,255,255,.82);
  font-size: 14px;
  font-weight: 600;
}

.nav a {
  transition: color .25s ease;
}

.nav a:hover {
  color: white;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.theme-toggle {
  height: 46px;
  padding: 0 16px 0 7px;
  border-radius: 999px;
  border: 1px solid var(--brand-border);
  background: var(--surface);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 34px rgba(0,0,0,.12);
  transition: background .3s ease, border-color .3s ease, transform .25s ease;
}

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

.theme-toggle-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: block;
  background:
    radial-gradient(circle at 35% 30%, #fff, rgba(255,255,255,.2) 34%, transparent 35%),
    linear-gradient(135deg, #17131f, #5b21b6);
  box-shadow: 0 0 24px rgba(168,85,247,.24);
}

.theme-toggle strong {
  font-size: 13px;
  font-weight: 800;
}

body.light-theme .theme-toggle-dot {
  background:
    radial-gradient(circle at 36% 34%, #fff 0 22%, rgba(255,255,255,.2) 23% 26%, transparent 27%),
    linear-gradient(135deg, #ffd166, #f8fafc);
  box-shadow: 0 0 24px rgba(245,158,11,.28);
}

body.light-theme .nav a:hover {
  color: #15111e;
}


.nav-cta,
.primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid transparent;
}

.nav-cta {
  background:
    linear-gradient(var(--hero-base), var(--hero-base)) padding-box,
    linear-gradient(135deg, #ec4899, #a855f7, #60a5fa) border-box;
  box-shadow: 0 12px 40px rgba(168,85,247,.14);
  transition: transform .25s ease, box-shadow .25s ease;
}

.nav-cta:hover,
.primary-btn:hover {
  transform: translateY(-2px);
}

.hero-slider {
  position: relative;
  height: 800px;
  min-height: 740px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(255,255,255,.055), transparent 26%),
    var(--hero-base);
  touch-action: pan-y;
  transition: background .65s ease;
}

.ambient-bg,
.ambient-layer {
  position: absolute;
  inset: 0;
}

.ambient-bg {
  z-index: 0;
  overflow: hidden;
}

.ambient-layer {
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 1450ms cubic-bezier(.18,.86,.18,1),
    transform 1700ms cubic-bezier(.18,.86,.18,1);
}

.ambient-layer.active {
  opacity: 1;
  transform: scale(1);
}

.ambient-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--mx) var(--my), var(--mouse-orb), transparent 28%),
    linear-gradient(90deg, var(--shade-left) 0%, var(--shade-mid) 48%, var(--shade-right) 100%),
    radial-gradient(circle at 78% 42%, var(--orb-1), transparent 31%),
    radial-gradient(circle at 58% 22%, var(--orb-2), transparent 24%),
    radial-gradient(circle at 30% 88%, var(--orb-3), transparent 30%);
  transition: background-position .35s ease;
}

body.light-theme .ambient-layer::after {
  background:
    radial-gradient(circle at var(--mx) var(--my), var(--mouse-orb-light), transparent 30%),
    linear-gradient(90deg, var(--shade-left-light) 0%, var(--shade-mid-light) 48%, var(--shade-right-light) 100%),
    radial-gradient(circle at 78% 42%, var(--orb-1-light), transparent 31%),
    radial-gradient(circle at 58% 22%, var(--orb-2-light), transparent 24%),
    radial-gradient(circle at 30% 88%, var(--orb-3-light), transparent 30%);
}

.ambient-violet {
  --shade-left: rgba(13,10,24,.98);
  --shade-mid: rgba(18,12,36,.86);
  --shade-right: rgba(11,8,22,.70);
  --mouse-orb: rgba(193,132,252,.13);
  --orb-1: rgba(168,85,247,.38);
  --orb-2: rgba(96,165,250,.16);
  --orb-3: rgba(217,70,239,.12);

  --shade-left-light: rgba(255,255,255,.96);
  --shade-mid-light: rgba(248,246,255,.80);
  --shade-right-light: rgba(248,252,255,.76);
  --mouse-orb-light: rgba(168,85,247,.13);
  --orb-1-light: rgba(168,85,247,.16);
  --orb-2-light: rgba(96,165,250,.12);
  --orb-3-light: rgba(217,70,239,.09);
}

.ambient-cyan {
  --shade-left: rgba(6,14,24,.98);
  --shade-mid: rgba(5,22,36,.86);
  --shade-right: rgba(7,13,25,.70);
  --mouse-orb: rgba(103,232,249,.13);
  --orb-1: rgba(96,165,250,.36);
  --orb-2: rgba(103,232,249,.20);
  --orb-3: rgba(34,211,238,.12);

  --shade-left-light: rgba(255,255,255,.96);
  --shade-mid-light: rgba(243,250,255,.80);
  --shade-right-light: rgba(255,255,255,.76);
  --mouse-orb-light: rgba(14,165,233,.12);
  --orb-1-light: rgba(96,165,250,.16);
  --orb-2-light: rgba(103,232,249,.13);
  --orb-3-light: rgba(34,211,238,.10);
}

.ambient-rose {
  --shade-left: rgba(23,9,18,.98);
  --shade-mid: rgba(35,10,28,.86);
  --shade-right: rgba(16,9,20,.70);
  --mouse-orb: rgba(251,113,133,.13);
  --orb-1: rgba(244,114,182,.34);
  --orb-2: rgba(251,113,133,.18);
  --orb-3: rgba(168,85,247,.12);

  --shade-left-light: rgba(255,255,255,.96);
  --shade-mid-light: rgba(255,246,250,.80);
  --shade-right-light: rgba(255,255,255,.76);
  --mouse-orb-light: rgba(244,114,182,.12);
  --orb-1-light: rgba(244,114,182,.17);
  --orb-2-light: rgba(251,113,133,.12);
  --orb-3-light: rgba(168,85,247,.09);
}

.star-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .96;
}

.slider-track,
.slide {
  position: absolute;
  inset: 0;
}

.slider-track {
  overflow: hidden;
  z-index: 4;
  pointer-events: none;
}

.slide {
  --accent: #a855f7;
  --accent-2: #d946ef;
  --accent-soft: rgba(168,85,247,.22);
  pointer-events: none;
  z-index: 0;
  visibility: hidden;
  transform: translate3d(0, -110%, 0);
  transition: transform 1450ms cubic-bezier(.16,.86,.16,1);
  will-change: transform;
  backface-visibility: hidden;
}

.slide[data-theme="violet"] {
  --accent: #a855f7;
  --accent-2: #c084fc;
  --accent-soft: rgba(168,85,247,.22);
}

.slide[data-theme="cyan"] {
  --accent: #60a5fa;
  --accent-2: #67e8f9;
  --accent-soft: rgba(96,165,250,.22);
}

.slide[data-theme="rose"] {
  --accent: #f472b6;
  --accent-2: #fb7185;
  --accent-soft: rgba(244,114,182,.22);
}

.slide.active,
.slide.entering,
.slide.leaving {
  visibility: visible;
}

.slide.active {
  z-index: 4;
  transform: translate3d(0, 0, 0);
}

.slide.entering {
  z-index: 5;
}

.slide.leaving {
  z-index: 4;
}

.hero-slider.to-next .slide.entering {
  transform: translate3d(0, -110%, 0);
}

.hero-slider.to-next .slide.entering.run {
  transform: translate3d(0, 0, 0);
}

.hero-slider.to-next .slide.leaving {
  transform: translate3d(0, 110%, 0);
}

.hero-slider.to-prev .slide.entering {
  transform: translate3d(0, 110%, 0);
}

.hero-slider.to-prev .slide.entering.run {
  transform: translate3d(0, 0, 0);
}

.hero-slider.to-prev .slide.leaving {
  transform: translate3d(0, -110%, 0);
}

.hero-content {
  position: relative;
  z-index: 6;
  max-width: var(--max);
  width: calc(100% - 72px);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.hero-copy {
  max-width: 620px;
  transform: translate3d(0, 0, 0);
  transition: transform 1220ms cubic-bezier(.16,.86,.16,1);
  will-change: transform;
}

.hero-visual {
  position: absolute;
  z-index: 3;
  right: 5vw;
  top: 136px;
  width: min(700px, 54vw);
  height: 560px;
  transform-style: preserve-3d;
  transform: translate3d(0, 0, 0);
  transition: transform 1320ms cubic-bezier(.16,.86,.16,1);
  will-change: transform;
}

/* Subtle internal stagger:
   The whole slide moves like a screen.
   Text settles first, then the right-side model follows a little later. */
.slide.entering .hero-copy {
  transition-delay: 60ms;
}

.slide.entering .hero-visual {
  transition-delay: 190ms;
}

.slide.leaving .hero-copy {
  transition-delay: 0ms;
}

.slide.leaving .hero-visual {
  transition-delay: 120ms;
}

.hero-slider.to-next .slide.entering .hero-copy {
  transform: translate3d(0, -22px, 0);
}

.hero-slider.to-next .slide.entering.run .hero-copy,
.hero-slider.to-prev .slide.entering.run .hero-copy {
  transform: translate3d(0, 0, 0);
}

.hero-slider.to-next .slide.entering .hero-visual {
  transform: translate3d(0, -36px, 0);
}

.hero-slider.to-next .slide.entering.run .hero-visual,
.hero-slider.to-prev .slide.entering.run .hero-visual {
  transform: translate3d(0, 0, 0);
}

.hero-slider.to-prev .slide.entering .hero-copy {
  transform: translate3d(0, 22px, 0);
}

.hero-slider.to-prev .slide.entering .hero-visual {
  transform: translate3d(0, 36px, 0);
}

.eyebrow {
  display: inline-flex;
  color: var(--accent-2);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .12em;
  font-size: 13px;
  margin-bottom: 22px;
}

.page-eyebrow {
  color: #b77cff;
}

h1 {
  max-width: 620px;
  font-size: clamp(52px, 6vw, 86px);
  line-height: .98;
  letter-spacing: -.06em;
  margin-bottom: 26px;
}

.slide h1 strong {
  font-weight: 800;
  background: linear-gradient(135deg, #fff, var(--accent-2) 46%, var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy > p {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 17px;
  margin-bottom: 34px;
}

.slide .primary-btn {
  background:
    linear-gradient(var(--hero-base), var(--hero-base)) padding-box,
    linear-gradient(135deg, var(--accent-2), var(--accent), #ffffff55) border-box;
  box-shadow: 0 18px 44px var(--accent-soft);
  transition: transform .25s ease, box-shadow .25s ease;
}

.slide .primary-btn:hover {
  box-shadow: 0 28px 64px var(--accent-soft);
}

/* Mountain scene */
.orbit,
.energy-ring,
.phone-orbit {
  position: absolute;
  border-radius: 50%;
  box-shadow: inset 0 0 40px rgba(255,255,255,.08);
}

.mountain-scene .orbit-back {
  width: 490px;
  height: 490px;
  right: 74px;
  top: 4px;
  opacity: .32;
  border: 4px solid rgba(198,163,255,.35);
}

.mountain-scene .orbit-front,
.mountain-scene .energy-ring {
  width: 470px;
  height: 470px;
  right: 92px;
  top: 12px;
  border-left-color: transparent;
  transform: rotate(-18deg);
}

.mountain-scene .orbit-front {
  border: 4px solid rgba(230,215,255,.48);
  animation: ringPulseViolet 4s ease-in-out infinite;
}

.mountain-scene .energy-ring {
  border: 10px solid rgba(167,106,255,.82);
  filter: blur(.2px);
  box-shadow: 0 0 60px rgba(168,85,247,.36);
  animation: ringPulseViolet 4s ease-in-out infinite;
}

.rock {
  position: absolute;
  background: linear-gradient(135deg, #0d0b18, #332855 42%, #73659a 72%, #171124);
  clip-path: polygon(48% 0, 78% 22%, 96% 78%, 62% 100%, 8% 82%, 21% 24%);
  filter: drop-shadow(0 45px 45px rgba(0,0,0,.6));
}

.rock-1 {
  width: 360px;
  height: 420px;
  right: 170px;
  top: 132px;
  animation: objectFloat 5s ease-in-out infinite;
}

.rock-2 {
  width: 320px;
  height: 190px;
  right: 300px;
  top: 380px;
  opacity: .9;
  transform: rotate(-18deg);
}

.rock-3 {
  width: 460px;
  height: 160px;
  right: 0;
  top: 458px;
  opacity: .84;
  transform: rotate(7deg);
}

.dust {
  position: absolute;
  border-radius: 50%;
  background: rgba(185,146,255,.35);
  filter: blur(20px);
  animation: dustFlow 6s ease-in-out infinite alternate;
}

.dust-1 {
  width: 260px;
  height: 260px;
  right: 330px;
  top: 130px;
}

.dust-2 {
  width: 180px;
  height: 180px;
  right: 110px;
  top: 250px;
  animation-delay: -2s;
}

/* Phone scene */
.phone-scene {
  display: grid;
  place-items: center;
}

.phone-orbit {
  width: 480px;
  height: 480px;
  left: 92px;
  top: 12px;
  border: 4px solid rgba(125,214,255,.28);
  border-left-color: transparent;
  box-shadow:
    inset 0 0 40px rgba(96,165,250,.12),
    0 0 60px rgba(96,165,250,.22);
  animation: ringPulseCyan 4.2s ease-in-out infinite;
}

.phone-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96,165,250,.16), transparent 62%);
  filter: blur(14px);
}

.phone-shell {
  position: relative;
  width: 265px;
  height: 510px;
  border-radius: 42px;
  padding: 10px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.18), rgba(255,255,255,.03)),
    linear-gradient(145deg, #090c15, #171f31 45%, #0b1020 90%);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow:
    0 50px 110px rgba(0,0,0,.55),
    0 0 90px rgba(96,165,250,.15),
    inset 0 1px 0 rgba(255,255,255,.15);
  transform: rotate(-9deg);
  animation: phoneFloat 5.2s ease-in-out infinite;
}

.phone-camera-bar {
  position: absolute;
  z-index: 3;
  top: 18px;
  left: 20px;
  right: 20px;
  height: 36px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border-radius: 16px;
  background: rgba(7,10,18,.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.08);
}

.lens,
.sensor {
  display: block;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,.75), rgba(72,97,148,.25) 40%, rgba(0,0,0,.5));
}

.lens { width: 13px; height: 13px; }
.lens-small { width: 10px; height: 10px; opacity: .75; }
.sensor { width: 8px; height: 8px; opacity: .6; }

.phone-screen {
  position: absolute;
  inset: 10px;
  border-radius: 34px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(14,18,31,.94), rgba(8,12,21,.98)),
    #090d16;
}

.screen-gradient {
  position: absolute;
  inset: -10% -20%;
  background:
    radial-gradient(circle at 30% 20%, rgba(96,165,250,.26), transparent 28%),
    radial-gradient(circle at 70% 70%, rgba(103,232,249,.14), transparent 30%),
    radial-gradient(circle at 50% 38%, rgba(255,255,255,.06), transparent 20%);
  filter: blur(8px);
}

.ui-header {
  position: absolute;
  top: 58px;
  left: 22px;
  right: 22px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  z-index: 2;
}

.ui-avatar {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(96,165,250,.85), rgba(103,232,249,.72));
  box-shadow: 0 10px 28px rgba(96,165,250,.22);
}

.ui-title i {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.22);
  margin-bottom: 8px;
}

.ui-title i:first-child { width: 96px; }
.ui-title i:last-child { width: 68px; }

.ui-chip {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: #dfefff;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
}

.ui-hero-card {
  position: absolute;
  left: 22px;
  right: 22px;
  top: 128px;
  padding: 20px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.04)),
    rgba(8,14,24,.52);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px rgba(0,0,0,.28);
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 800;
  background: rgba(255,255,255,.08);
  color: #bfe4ff;
  border: 1px solid rgba(255,255,255,.12);
}

.ui-hero-card h3 {
  font-size: 22px;
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -.02em;
}

.ui-hero-card p {
  color: rgba(230,240,255,.65);
  font-size: 13px;
  margin-bottom: 16px;
}

.hero-graph {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 88px;
}

.hero-graph span {
  flex: 1;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(180deg, #7dd3fc, #60a5fa 55%, #22d3ee);
  box-shadow: 0 14px 30px rgba(96,165,250,.18);
}

.hero-graph span:nth-child(1) { height: 32%; }
.hero-graph span:nth-child(2) { height: 78%; }
.hero-graph span:nth-child(3) { height: 55%; }
.hero-graph span:nth-child(4) { height: 88%; }
.hero-graph span:nth-child(5) { height: 64%; }

.ui-bottom-grid {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  z-index: 2;
}

.small-card {
  min-height: 88px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.small-card b {
  display: block;
  font-size: 22px;
  margin-bottom: 14px;
}

.small-card i {
  display: block;
  height: 9px;
  width: 72%;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
}

.small-card-b {
  background:
    linear-gradient(135deg, rgba(96,165,250,.14), rgba(103,232,249,.1)),
    rgba(255,255,255,.06);
}

.float-widget {
  position: absolute;
  min-width: 176px;
  padding: 18px 18px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.16);
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03)),
    rgba(11,16,29,.64);
  backdrop-filter: blur(14px);
  box-shadow: 0 26px 70px rgba(0,0,0,.35);
  animation: objectFloat 5.4s ease-in-out infinite;
}

.float-widget span {
  display: block;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, rgba(96,165,250,.9), rgba(103,232,249,.8));
  box-shadow: 0 12px 24px rgba(96,165,250,.18);
}

.float-widget b {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}

.float-widget p {
  color: rgba(230,240,255,.64);
  font-size: 12px;
}

.widget-a { right: 80px; top: 92px; }
.widget-b { left: 74px; top: 270px; animation-delay: -1.4s; }
.widget-c { right: 102px; bottom: 80px; animation-delay: -2.4s; }

/* Cube scene */
.cube-scene {
  display: grid;
  place-items: center;
}

.cube-scene .orbit-front {
  width: 470px;
  height: 470px;
  right: 100px;
  top: 18px;
  border: 4px solid rgba(255,200,225,.32);
  border-left-color: transparent;
  animation: ringPulseRose 4s ease-in-out infinite;
}

.cube-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,114,182,.22), transparent 70%);
  filter: blur(22px);
}

.cube {
  position: absolute;
  width: 270px;
  height: 270px;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.24), rgba(255,255,255,.02)),
    linear-gradient(135deg, rgba(244,114,182,.65), rgba(251,113,133,.38), rgba(255,255,255,.12));
  transform: rotate(45deg) skew(-8deg, -8deg);
  box-shadow: 0 60px 120px rgba(0,0,0,.45), 0 0 80px rgba(244,114,182,.18);
  animation: cubeSpin 6s ease-in-out infinite;
}

.cube-small {
  width: 115px;
  height: 115px;
  border-radius: 20px;
  opacity: .78;
}

.cube-left { left: 110px; top: 250px; animation-delay: -1s; }
.cube-right { right: 130px; bottom: 120px; animation-delay: -2s; }

.slider-btn {
  position: absolute;
  top: 50%;
  z-index: 20;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid var(--brand-border);
  color: white;
  background: var(--surface);
  backdrop-filter: blur(12px);
  font-size: 34px;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease;
}

.slider-btn:hover {
  transform: translateY(-50%) scale(1.08);
  background: rgba(255,255,255,.1);
}

.slider-prev {
  left: 28px;
  transform: translateY(-50%);
}

.slider-next {
  right: 28px;
  transform: translateY(-50%);
}

.slider-index {
  position: absolute;
  z-index: 21;
  right: 34px;
  bottom: 36px;
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(7,8,14,.45);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
}

.dot {
  width: 58px;
  height: 24px;
  border: 0;
  color: rgba(255,255,255,.56);
  background: transparent;
  font-weight: 800;
  letter-spacing: .06em;
  text-align: left;
  cursor: pointer;
  position: relative;
}

.dot span {
  position: relative;
  z-index: 2;
}

.dot i {
  position: absolute;
  left: 27px;
  top: 50%;
  width: 28px;
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  transform: translateY(-50%);
  background: rgba(255,255,255,.18);
}

.dot i::after {
  content: "";
  position: absolute;
  inset: 0;
  transform-origin: left center;
  transform: scaleX(0);
  background: white;
}

.dot.active {
  color: white;
}

.dot.active i::after {
  animation: progressFill 7000ms linear forwards;
}

.slider-paused .dot.active i::after {
  animation-play-state: paused;
}

.section {
  max-width: var(--max);
  width: calc(100% - 72px);
  margin: 0 auto;
  padding: 84px 0;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 42px;
}

.section h2 {
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.section-head p {
  max-width: 540px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.text-link {
  color: #b77cff;
  font-weight: 800;
  font-size: 15px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  min-height: 310px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)),
    rgba(255,255,255,.025);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(168,85,247,.5);
  background: rgba(168,85,247,.075);
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: #a879ff;
  font-size: 30px;
  margin-bottom: 46px;
}

.service-card h3 {
  font-size: 24px;
  line-height: 1.18;
  margin-bottom: 18px;
}

.service-card p,
.project-card p,
.footer p,
.footer a {
  color: var(--muted);
  line-height: 1.75;
}

.service-card a {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--brand-border);
  border-radius: 50%;
  margin-top: 28px;
}

.stats {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(168,85,247,.22);
  border-radius: 22px;
  background:
    radial-gradient(circle at 20% 0%, rgba(168,85,247,.18), transparent 40%),
    rgba(255,255,255,.035);
  overflow: hidden;
}

.stats div {
  padding: 42px 56px;
  border-right: 1px solid var(--line);
}

.stats div:last-child {
  border-right: 0;
}

.stats span {
  display: block;
  font-size: 48px;
  letter-spacing: -.045em;
  margin-bottom: 8px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.project-card {
  overflow: hidden;
}

.project-image {
  height: 230px;
  border-radius: 8px;
  border: 1px solid var(--line);
  margin-bottom: 20px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.02)),
    radial-gradient(circle at 60% 30%, rgba(168,85,247,.32), transparent 40%),
    #0c0b11;
  position: relative;
  overflow: hidden;
}

.project-image::before {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(90deg, transparent, rgba(255,255,255,.11), transparent),
    repeating-linear-gradient(0deg, rgba(255,255,255,.09) 0 1px, transparent 1px 18px);
  transform: skew(-6deg);
}

.project-2 {
  background:
    radial-gradient(circle at 50% 38%, rgba(255,255,255,.45), transparent 28%),
    linear-gradient(135deg, rgba(168,85,247,.24), rgba(255,255,255,.05)),
    #18171c;
}

.project-3 {
  background:
    radial-gradient(circle at 55% 52%, rgba(255,255,255,.2), transparent 28%),
    linear-gradient(135deg, rgba(0,0,0,.8), rgba(255,255,255,.12)),
    #0b0a0c;
}

.project-4 {
  background:
    radial-gradient(circle at 80% 20%, rgba(96,165,250,.35), transparent 30%),
    linear-gradient(135deg, rgba(168,85,247,.2), rgba(255,255,255,.05)),
    #100f16;
}

.project-card h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.footer {
  max-width: var(--max);
  width: calc(100% - 72px);
  margin: 0 auto;
  padding: 68px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer h4 {
  margin-bottom: 18px;
}

.footer a {
  display: block;
  margin-bottom: 10px;
}

.footer .brand {
  margin-bottom: 22px;
}

@keyframes pageOrbFloat {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(42px, -30px, 0) scale(1.08); }
  100% { transform: translate3d(-28px, 34px, 0) scale(.96); }
}

@keyframes progressFill {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes objectFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-2deg); }
  50% { transform: translate3d(0, -22px, 0) rotate(2deg); }
}

@keyframes dustFlow {
  from { transform: translate3d(-20px, 20px, 0) scale(.9); opacity: .38; }
  to { transform: translate3d(30px, -24px, 0) scale(1.14); opacity: .72; }
}

@keyframes phoneFloat {
  0%, 100% { transform: translateY(0) rotate(-9deg); }
  50% { transform: translateY(-24px) rotate(-5deg); }
}

@keyframes cubeSpin {
  0%, 100% { transform: rotate(45deg) skew(-8deg, -8deg) translateY(0); }
  50% { transform: rotate(54deg) skew(-8deg, -8deg) translateY(-24px); }
}

@keyframes ringPulseViolet {
  0%, 100% { transform: rotate(-18deg) scale(1); filter: brightness(1); }
  50% { transform: rotate(-10deg) scale(1.035); filter: brightness(1.22); }
}

@keyframes ringPulseCyan {
  0%, 100% { transform: rotate(-15deg) scale(1); filter: brightness(1); }
  50% { transform: rotate(-7deg) scale(1.028); filter: brightness(1.18); }
}

@keyframes ringPulseRose {
  0%, 100% { transform: rotate(-15deg) scale(1); filter: brightness(1); }
  50% { transform: rotate(-8deg) scale(1.03); filter: brightness(1.18); }
}

@media (max-width: 1100px) {
  .nav {
    display: none;
  }

  .hero-visual {
    opacity: .95;
    right: -130px;
    width: 720px;
  }

  .service-grid,
  .project-grid,
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-head,
  .footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .header,
  .section,
  .footer,
  .hero-content {
    width: calc(100% - 32px);
  }

  .header {
    height: 72px;
  }

  .brand {
    font-size: 15px;
    letter-spacing: .24em;
  }

  .nav-cta {
    display: none;
  }

  .hero-slider {
    height: 860px;
    min-height: 860px;
  }

  .hero-content {
    align-items: flex-start;
    padding-top: 132px;
  }

  .hero-copy {
    max-width: 100%;
  }

  h1 {
    font-size: 46px;
  }

  .hero-copy > p {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.72;
  }

  .hero-visual {
    width: 620px;
    height: 520px;
    top: 360px;
    right: -210px;
    transform-origin: center;
  }

  .slider-btn {
    display: none;
  }

  .slider-index {
    left: 50%;
    right: auto;
    bottom: 22px;
    transform: translateX(-50%);
    padding: 10px 14px;
    gap: 8px;
  }

  .dot {
    width: 50px;
    font-size: 13px;
  }

  .dot i {
    left: 23px;
    width: 22px;
  }

  .service-grid,
  .project-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .stats div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .phone-scene {
    right: -180px;
  }

  .float-widget {
    min-width: 140px;
    padding: 14px;
  }

  .widget-a {
    right: 90px;
    top: 70px;
  }

  .widget-b {
    left: 95px;
    top: 245px;
  }

  .widget-c {
    right: 110px;
    bottom: 88px;
  }
}


body.light-theme .header {
  color: var(--text);
}

body.light-theme .brand-mark {
  background:
    linear-gradient(var(--hero-base), var(--hero-base)) padding-box,
    linear-gradient(135deg, #8b5cf6, #f472b6, #38bdf8) border-box;
  color: #17131f;
}

body.light-theme .nav {
  color: rgba(23,19,31,.72);
}

body.light-theme .nav-cta,
body.light-theme .primary-btn {
  color: #17131f;
}

body.light-theme .slide .primary-btn {
  background:
    linear-gradient(rgba(255,255,255,.78), rgba(255,255,255,.78)) padding-box,
    linear-gradient(135deg, var(--accent-2), var(--accent), rgba(23,19,31,.24)) border-box;
}

body.light-theme .service-card,
body.light-theme .stats,
body.light-theme .project-image,
body.light-theme .footer {
  border-color: var(--line);
}

body.light-theme .service-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.42)),
    rgba(255,255,255,.5);
}

body.light-theme .stats {
  background:
    radial-gradient(circle at 20% 0%, rgba(168,85,247,.12), transparent 40%),
    rgba(255,255,255,.56);
}

body.light-theme .project-image {
  background:
    linear-gradient(135deg, rgba(255,255,255,.82), rgba(255,255,255,.42)),
    radial-gradient(circle at 60% 30%, rgba(168,85,247,.18), transparent 40%),
    #f5efe8;
}

body.light-theme .phone-shell {
  background:
    linear-gradient(145deg, rgba(255,255,255,.88), rgba(255,255,255,.5)),
    linear-gradient(145deg, #f8fafc, #e8f1fb 45%, #f4f0ff 90%);
  border-color: rgba(23,19,31,.14);
}

body.light-theme .phone-screen {
  background:
    linear-gradient(180deg, rgba(255,255,255,.9), rgba(237,245,255,.88)),
    #f8fafc;
}

body.light-theme .ui-hero-card,
body.light-theme .small-card,
body.light-theme .float-widget,
body.light-theme .phone-camera-bar,
body.light-theme .slider-index {
  background: rgba(255,255,255,.66);
  border-color: rgba(23,19,31,.12);
  color: #17131f;
}

body.light-theme .ui-hero-card p,
body.light-theme .float-widget p {
  color: rgba(23,19,31,.62);
}

body.light-theme .slider-btn {
  color: #17131f;
  background: rgba(255,255,255,.58);
}

body.light-theme .dot {
  color: rgba(23,19,31,.52);
}

body.light-theme .dot.active {
  color: #17131f;
}

body.light-theme .dot i {
  background: rgba(23,19,31,.16);
}

body.light-theme .dot i::after {
  background: #17131f;
}

body.light-theme .rock {
  background: linear-gradient(135deg, #f8fafc, #d9d0ff 42%, #9d8bcc 72%, #f3e8ff);
}

body.light-theme .cube {
  background:
    linear-gradient(145deg, rgba(255,255,255,.84), rgba(255,255,255,.24)),
    linear-gradient(135deg, rgba(244,114,182,.48), rgba(251,113,133,.26), rgba(96,165,250,.18));
}

@media (max-width: 760px) {
  .theme-toggle {
    height: 40px;
    padding-right: 10px;
  }

  .theme-toggle strong {
    display: none;
  }

  .theme-toggle-dot {
    width: 28px;
    height: 28px;
  }
}


body.light-theme .nav-cta {
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(var(--active-rgb), .72), rgba(var(--active-rgb-2), .55), rgba(var(--active-rgb-3), .5)) border-box;
  box-shadow: 0 16px 38px rgba(var(--active-rgb), .12);
}

body.light-theme .brand-mark {
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(var(--active-rgb), .86), rgba(var(--active-rgb-2), .74), rgba(var(--active-rgb-3), .7)) border-box;
}

body.light-theme .theme-toggle {
  background: #ffffff;
}

body.light-theme .hero-slider {
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(var(--active-rgb), .035), transparent 28%),
    #ffffff;
}


/* v9: light theme headline readability */
body.light-theme .slide h1 strong {
  background: linear-gradient(135deg, #17131f 0%, var(--accent) 48%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body.light-theme h1 {
  color: #17131f;
}


/* v10: premium Qorvia logo + upgraded phone slide */
.phone-scene .phone-shell::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 40px;
  border: 1px solid rgba(255,255,255,.08);
  pointer-events: none;
}

.phone-shell {
  width: 282px;
  height: 542px;
  border-radius: 46px;
  padding: 10px;
  background:
    linear-gradient(160deg, rgba(255,255,255,.18), rgba(255,255,255,.02)),
    linear-gradient(160deg, #09101a, #152436 42%, #0b1320 88%);
  box-shadow:
    0 56px 120px rgba(0,0,0,.52),
    0 0 92px rgba(96,165,250,.16),
    inset 0 1px 0 rgba(255,255,255,.14);
}

.phone-screen {
  inset: 10px;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(9,13,23,.98), rgba(12,18,31,.98)),
    #0b1120;
}

.phone-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 36px;
  border: 1px solid rgba(255,255,255,.04);
  pointer-events: none;
}

.phone-camera-bar {
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  right: auto;
  top: 16px;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  background: rgba(8,13,22,.88);
}

.ui-avatar {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 35% 32%, rgba(255,255,255,.24), transparent 34%),
    linear-gradient(135deg, rgba(96,165,250,.95), rgba(103,232,249,.86));
}

.ui-chip {
  color: #f3fbff;
  background: rgba(96,165,250,.12);
  border-color: rgba(103,232,249,.18);
}

.ui-hero-card {
  top: 122px;
  border-radius: 28px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.03)),
    rgba(8,14,24,.58);
}

.hero-badge {
  color: #d7f3ff;
  background: rgba(96,165,250,.12);
  border-color: rgba(103,232,249,.18);
}

.ui-hero-card h3 {
  font-size: 23px;
}

.ui-hero-card p {
  font-size: 12px;
  letter-spacing: .01em;
}

.hero-graph {
  height: 92px;
  gap: 8px;
}

.hero-graph span {
  border-radius: 12px 12px 3px 3px;
}

.small-card {
  min-height: 92px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04)),
    rgba(255,255,255,.04);
}

.small-card b {
  font-size: 24px;
  letter-spacing: -.02em;
}

.small-card-b {
  background:
    linear-gradient(135deg, rgba(96,165,250,.18), rgba(103,232,249,.12)),
    rgba(255,255,255,.05);
}

.float-widget {
  min-width: 192px;
  padding: 18px 18px 16px;
}

.float-widget .widget-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, rgba(96,165,250,.94), rgba(103,232,249,.84));
  box-shadow: 0 12px 24px rgba(96,165,250,.18);
}

.float-widget .widget-icon svg {
  width: 19px;
  height: 19px;
  stroke: #ffffff;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.widget-a { right: 78px; top: 88px; }
.widget-b { left: 58px; top: 282px; animation-delay: -1.4s; }
.widget-c { right: 96px; bottom: 74px; animation-delay: -2.4s; }

body.light-theme .phone-shell {
  background:
    linear-gradient(160deg, rgba(255,255,255,.96), rgba(255,255,255,.72)),
    linear-gradient(160deg, #ffffff, #eef5ff 42%, #f8f5ff 88%);
}

body.light-theme .phone-camera-bar {
  background: rgba(24,24,30,.92);
}

body.light-theme .phone-screen {
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(242,247,255,.96)),
    #ffffff;
}

body.light-theme .ui-chip,
body.light-theme .hero-badge {
  color: #0f172a;
  background: rgba(96,165,250,.10);
  border-color: rgba(96,165,250,.14);
}

body.light-theme .small-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,.84), rgba(255,255,255,.6)),
    rgba(255,255,255,.72);
}

@media (max-width: 760px) {
  .brand {
    gap: 10px;
    letter-spacing: .16em;
    font-size: 14px;
  }

  .brand-mark-logo {
    width: 66px;
    height: 28px;
  }

  .phone-shell {
    width: 250px;
    height: 492px;
  }

  .float-widget {
    min-width: 148px;
  }
}


/* v11: logo rebuilt closer to the original QW reference */
.brand-mark-logo {
  width: 104px;
  height: 42px;
  color: rgb(var(--active-rgb));
}

.brand-mark-logo svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.brand-mark-logo .qw-q,
.brand-mark-logo .qw-tail,
.brand-mark-logo .qw-w {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-mark-logo .qw-q {
  stroke-width: 18;
  stroke-dasharray: 230 42;
  stroke-dashoffset: 12;
  transform-origin: 78px 61px;
  transform: rotate(-10deg);
}

.brand-mark-logo .qw-tail {
  stroke-width: 18;
}

.brand-mark-logo .qw-w {
  stroke-width: 20;
}

.brand-mark-logo .qw-pixels {
  fill: currentColor;
}

.brand-word {
  letter-spacing: .28em;
}

body.light-theme .brand-mark-logo {
  color: rgb(var(--active-rgb));
}

/* v11: Telegram management scene */
.telegram-scene {
  display: grid;
  place-items: center;
}

.telegram-orbit {
  position: absolute;
  border-radius: 50%;
  border: 4px solid rgba(196, 181, 253, .25);
  box-shadow:
    inset 0 0 38px rgba(168, 85, 247, .10),
    0 0 70px rgba(168, 85, 247, .20);
}

.telegram-orbit-back {
  width: 520px;
  height: 520px;
  right: 82px;
  top: 4px;
  opacity: .38;
}

.telegram-orbit-front {
  width: 465px;
  height: 465px;
  right: 120px;
  top: 36px;
  border-left-color: transparent;
  animation: ringPulseViolet 4.5s ease-in-out infinite;
}

.telegram-phone {
  position: absolute;
  width: 250px;
  height: 505px;
  right: 250px;
  top: 32px;
  border-radius: 42px;
  padding: 10px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.03)),
    linear-gradient(145deg, #111027, #211748 46%, #0c1024 100%);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow:
    0 54px 110px rgba(0,0,0,.50),
    0 0 92px rgba(168,85,247,.18),
    inset 0 1px 0 rgba(255,255,255,.13);
  transform: rotate(-7deg);
  animation: phoneFloat 5.6s ease-in-out infinite;
}

.telegram-phone-top {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 18px;
  width: 92px;
  height: 30px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: rgba(7, 8, 18, .86);
  border: 1px solid rgba(255,255,255,.07);
}

.telegram-screen {
  position: absolute;
  inset: 10px;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 28% 22%, rgba(168,85,247,.28), transparent 32%),
    radial-gradient(circle at 70% 88%, rgba(96,165,250,.16), transparent 35%),
    linear-gradient(180deg, #0c0c1b, #12112a 58%, #080a15);
}

.tg-header {
  position: absolute;
  left: 22px;
  right: 22px;
  top: 64px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.tg-logo {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(135deg, rgba(168,85,247,.96), rgba(96,165,250,.82));
  box-shadow: 0 12px 30px rgba(168,85,247,.24);
}

.tg-header b {
  display: block;
  font-size: 14px;
  margin-bottom: 3px;
}

.tg-header small {
  color: rgba(238, 232, 255, .62);
  font-size: 11px;
}

.tg-chat-list {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 138px;
  display: grid;
  gap: 13px;
}

.tg-message {
  padding: 14px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.04)),
    rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
  animation: tgMessageFloat 4.8s ease-in-out infinite;
}

.tg-message-b { animation-delay: -1.5s; }
.tg-message-c { animation-delay: -2.8s; }

.tg-message span {
  display: block;
  color: rgba(238, 232, 255, .72);
  font-size: 12px;
  margin-bottom: 6px;
}

.tg-message strong {
  display: block;
  font-size: 15px;
}

.tg-command-bar {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 24px;
  height: 54px;
  border-radius: 18px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  color: rgba(255,255,255,.84);
  font-weight: 800;
}

.tg-command-bar i {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(168,85,247,.92), rgba(96,165,250,.82));
}

.telegram-dashboard {
  position: absolute;
  right: 70px;
  top: 145px;
  width: 270px;
  padding: 22px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04)),
    rgba(13, 12, 29, .66);
  border: 1px solid rgba(255,255,255,.13);
  backdrop-filter: blur(16px);
  box-shadow: 0 36px 90px rgba(0,0,0,.34);
  animation: objectFloat 5.2s ease-in-out infinite;
}

.dash-head {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.dash-head span {
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
}

.dash-head span:first-child { width: 80px; }
.dash-head span:last-child { width: 44px; }

.dash-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.dash-stats div {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
}

.dash-stats b {
  display: block;
  font-size: 24px;
  margin-bottom: 4px;
}

.dash-stats small {
  color: rgba(238,232,255,.62);
}

.dash-bars {
  height: 90px;
  display: flex;
  align-items: end;
  gap: 12px;
}

.dash-bars i {
  flex: 1;
  border-radius: 10px 10px 3px 3px;
  background: linear-gradient(180deg, rgba(196,181,253,.95), rgba(168,85,247,.72));
}

.dash-bars i:nth-child(1) { height: 38%; }
.dash-bars i:nth-child(2) { height: 72%; }
.dash-bars i:nth-child(3) { height: 54%; }
.dash-bars i:nth-child(4) { height: 88%; }

.tg-floating-card {
  position: absolute;
  min-width: 166px;
  padding: 16px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.035)),
    rgba(13, 12, 29, .58);
  border: 1px solid rgba(255,255,255,.13);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 70px rgba(0,0,0,.30);
  animation: objectFloat 5.4s ease-in-out infinite;
}

.tg-floating-card span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  margin-bottom: 11px;
  color: #fff;
  background: linear-gradient(135deg, rgba(168,85,247,.94), rgba(96,165,250,.80));
}

.tg-floating-card b {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

.tg-floating-card p {
  color: rgba(238,232,255,.62);
  font-size: 12px;
}

.tg-card-a { left: 88px; top: 94px; }
.tg-card-b { left: 54px; bottom: 94px; animation-delay: -1.7s; }
.tg-card-c { right: 92px; bottom: 58px; animation-delay: -2.9s; }

@keyframes tgMessageFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

body.light-theme .telegram-phone {
  background:
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(255,255,255,.66)),
    linear-gradient(145deg, #ffffff, #f2ecff 48%, #eef6ff 100%);
  border-color: rgba(23,19,31,.12);
}

body.light-theme .telegram-phone-top {
  background: rgba(23,19,31,.88);
}

body.light-theme .telegram-screen {
  background:
    radial-gradient(circle at 28% 22%, rgba(168,85,247,.14), transparent 32%),
    radial-gradient(circle at 70% 88%, rgba(96,165,250,.11), transparent 35%),
    linear-gradient(180deg, #ffffff, #f7f4ff 58%, #f8fbff);
}

body.light-theme .tg-header small,
body.light-theme .tg-message span,
body.light-theme .dash-stats small,
body.light-theme .tg-floating-card p {
  color: rgba(23,19,31,.58);
}

body.light-theme .tg-message,
body.light-theme .telegram-dashboard,
body.light-theme .tg-floating-card,
body.light-theme .tg-command-bar {
  background: rgba(255,255,255,.72);
  border-color: rgba(23,19,31,.11);
  color: #17131f;
}

@media (max-width: 760px) {
  .telegram-phone {
    right: 230px;
    width: 222px;
    height: 462px;
  }

  .telegram-dashboard {
    right: 90px;
    width: 220px;
  }

  .tg-floating-card {
    min-width: 136px;
  }

  .tg-card-a { left: 130px; }
  .tg-card-b { left: 120px; bottom: 120px; }
}


/* v12: make active slide CTA links clickable */
.slider-track {
  pointer-events: auto;
}

.slide {
  pointer-events: none;
}

.slide.active {
  pointer-events: auto;
}

.hero-copy,
.hero-copy a,
.hero-copy button,
.slider-index,
.slider-btn {
  pointer-events: auto;
}

/* v12: contact section */
.contact-section {
  padding-top: 92px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.contact-card,
.contact-form-box {
  min-height: 100%;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03)),
    rgba(255,255,255,.02);
  padding: 26px;
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 54px rgba(0,0,0,.12);
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .25s ease, border-color .25s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--active-rgb), .28);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  font-size: 20px;
  color: #fff;
  background: linear-gradient(135deg, rgba(var(--active-rgb), .95), rgba(var(--active-rgb-3), .78));
  box-shadow: 0 14px 28px rgba(var(--active-rgb), .18);
}

.contact-card h3,
.contact-form-box h3 {
  font-size: 22px;
  letter-spacing: -.03em;
}

.contact-card p,
.contact-form-box p {
  color: var(--muted);
  line-height: 1.7;
}

.contact-card strong {
  margin-top: auto;
  color: var(--text);
}

.contact-form-box {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form-box input,
.contact-form-box textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--text);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  outline: none;
}

.contact-form-box textarea {
  min-height: 126px;
  resize: vertical;
}

.contact-form-box input::placeholder,
.contact-form-box textarea::placeholder {
  color: var(--muted);
}

.contact-form-box .nav-cta {
  width: fit-content;
  border: 1px solid transparent;
}

body.light-theme .contact-card,
body.light-theme .contact-form-box {
  background:
    linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.68)),
    rgba(255,255,255,.84);
}

/* v12: admin / telegram scene (different from first slide) */
.admin-scene {
  display: grid;
  place-items: center;
}

.admin-glow,
.contact-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(70px);
}

.admin-glow {
  right: 180px;
  top: 130px;
  background: rgba(168,85,247,.24);
}

.admin-orbit,
.contact-orbit {
  position: absolute;
  border-radius: 50%;
  border: 4px solid rgba(196,181,253,.22);
}

.admin-orbit-back {
  width: 520px;
  height: 520px;
  right: 82px;
  top: 2px;
  opacity: .42;
}

.admin-orbit-front {
  width: 468px;
  height: 468px;
  right: 112px;
  top: 30px;
  border-right-color: transparent;
  animation: ringPulseViolet 5s ease-in-out infinite;
}

.admin-panel {
  position: absolute;
  right: 132px;
  top: 60px;
  width: 410px;
  padding: 20px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.04)),
    rgba(12, 10, 28, .72);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(16px);
  box-shadow: 0 48px 110px rgba(0,0,0,.34);
}

.admin-topbar {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.admin-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.22);
}

.admin-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.admin-badge {
  padding: 10px 12px;
  border-radius: 14px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(168,85,247,.96), rgba(96,165,250,.84));
}

.admin-title b {
  display: block;
  font-size: 18px;
  margin-bottom: 3px;
}

.admin-title small {
  color: rgba(238,232,255,.62);
  font-size: 12px;
}

.admin-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.metric-card {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}

.metric-card strong {
  display: block;
  font-size: 26px;
  margin-bottom: 4px;
}

.metric-card span {
  color: rgba(238,232,255,.62);
  font-size: 12px;
}

.admin-graph {
  height: 108px;
  display: flex;
  align-items: end;
  gap: 12px;
  margin-bottom: 18px;
}

.admin-graph i {
  flex: 1;
  border-radius: 14px 14px 4px 4px;
  background: linear-gradient(180deg, rgba(196,181,253,.98), rgba(168,85,247,.72));
}

.admin-graph i:nth-child(1) { height: 42%; }
.admin-graph i:nth-child(2) { height: 84%; }
.admin-graph i:nth-child(3) { height: 56%; }
.admin-graph i:nth-child(4) { height: 68%; }
.admin-graph i:nth-child(5) { height: 96%; }

.admin-list {
  display: grid;
  gap: 12px;
}

.admin-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}

.row-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, rgba(168,85,247,.94), rgba(96,165,250,.82));
}

.admin-row b {
  display: block;
  margin-bottom: 4px;
}

.admin-row small {
  color: rgba(238,232,255,.62);
}

.admin-side-card,
.admin-float {
  position: absolute;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.035)),
    rgba(12,10,28,.58);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
  animation: objectFloat 5.3s ease-in-out infinite;
}

.admin-side-card {
  min-width: 182px;
  padding: 18px;
}

.side-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  min-height: 30px;
  border-radius: 999px;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 800;
  background: rgba(168,85,247,.14);
  color: #eadbff;
}

.admin-side-card b,
.admin-float b {
  display: block;
  margin-bottom: 4px;
}

.admin-side-card p {
  color: rgba(238,232,255,.62);
  font-size: 12px;
}

.side-card-a {
  left: 70px;
  top: 88px;
}
.side-card-b {
  left: 48px;
  bottom: 68px;
  animation-delay: -1.8s;
}

.admin-float {
  min-width: 148px;
  padding: 14px 16px;
}

.admin-float span {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 800;
  color: #eadbff;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.admin-float-a {
  right: 64px;
  top: 120px;
}

.admin-float-b {
  right: 86px;
  bottom: 88px;
  animation-delay: -2.3s;
}

/* v12: contact scene */
.contact-scene {
  display: grid;
  place-items: center;
}

.contact-glow {
  right: 160px;
  top: 120px;
  background: rgba(244,114,182,.24);
}

.contact-orbit-back {
  width: 520px;
  height: 520px;
  right: 92px;
  top: 6px;
  opacity: .38;
}

.contact-orbit-front {
  width: 470px;
  height: 470px;
  right: 120px;
  top: 28px;
  border-top-color: transparent;
  animation: ringPulseViolet 5.3s ease-in-out infinite;
}

.contact-board {
  position: absolute;
  right: 145px;
  top: 78px;
  width: 390px;
  padding: 22px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.05)),
    rgba(26, 10, 20, .72);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(16px);
  box-shadow: 0 44px 100px rgba(0,0,0,.32);
}

.contact-board-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.contact-board-head b {
  font-size: 18px;
}

.contact-board-head span {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  background: rgba(244,114,182,.14);
  color: #ffd9ea;
}

.contact-steps {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-step {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}

.contact-step > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(244,114,182,.95), rgba(251,113,133,.82));
  color: #fff;
  font-weight: 800;
}

.contact-step b {
  display: block;
  margin-bottom: 4px;
}

.contact-step small {
  color: rgba(255,233,242,.62);
}

.contact-action-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
}

.contact-action-bar i {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(244,114,182,.95), rgba(251,113,133,.84));
}

.contact-chip,
.contact-form-card {
  position: absolute;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.035)),
    rgba(26,10,20,.58);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
  animation: objectFloat 5.4s ease-in-out infinite;
}

.contact-chip {
  min-width: 170px;
  padding: 16px;
}

.contact-chip span {
  display: inline-block;
  margin-bottom: 8px;
  color: #ffd9ea;
  font-size: 12px;
  font-weight: 800;
}

.contact-chip b {
  display: block;
}

.chip-whatsapp { left: 70px; top: 98px; }
.chip-telegram { left: 52px; bottom: 124px; animation-delay: -1.8s; }
.chip-mail { right: 92px; bottom: 62px; animation-delay: -2.6s; }

.contact-form-card {
  left: 108px;
  top: 244px;
  width: 194px;
  padding: 16px;
}

.field {
  height: 14px;
  border-radius: 999px;
  margin-bottom: 12px;
  background: rgba(255,255,255,.12);
}
.field.short { width: 62%; }
.field.tall { height: 68px; border-radius: 14px; }
.send-btn {
  width: 92px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(244,114,182,.95), rgba(251,113,133,.82));
}

body.light-theme .admin-panel,
body.light-theme .admin-side-card,
body.light-theme .admin-float,
body.light-theme .contact-board,
body.light-theme .contact-chip,
body.light-theme .contact-form-card {
  background: rgba(255,255,255,.74);
  border-color: rgba(23,19,31,.11);
  color: #17131f;
}

body.light-theme .admin-title small,
body.light-theme .metric-card span,
body.light-theme .admin-row small,
body.light-theme .side-chip,
body.light-theme .contact-step small,
body.light-theme .contact-chip span {
  color: rgba(23,19,31,.58);
}

@media (max-width: 1100px) {
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .admin-panel,
  .contact-board {
    width: 330px;
    right: 80px;
  }

  .side-card-a,
  .chip-whatsapp {
    left: 120px;
  }

  .side-card-b,
  .chip-telegram,
  .contact-form-card {
    left: 96px;
  }

  .admin-float-a,
  .admin-float-b,
  .chip-mail {
    right: 72px;
  }
}


/* v13: use the real uploaded Qorvia logo with theme-adaptive color */
.brand-mark-logo {
  width: 92px;
  height: 58px;
  display: inline-block;
  flex: 0 0 auto;
  background: rgb(var(--active-rgb));
  -webkit-mask-image: url("./assets/qorvia-logo-transparent.png");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("./assets/qorvia-logo-transparent.png");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  box-shadow: 0 0 28px rgba(var(--active-rgb), .16);
}

.brand-word {
  letter-spacing: .24em;
}

body.light-theme .brand-mark-logo {
  box-shadow: 0 0 18px rgba(var(--active-rgb), .09);
}

@media (max-width: 760px) {
  .brand-mark-logo {
    width: 76px;
    height: 46px;
  }
}

/* v13: second slide redesign — person holding phone / remote control */
.remote-scene {
  display: grid;
  place-items: center;
}
.remote-glow,
.reachout-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(80px);
}
.remote-glow {
  right: 190px;
  top: 115px;
  background: rgba(139, 92, 246, .24);
}
.remote-ring,
.reachout-ring {
  position: absolute;
  border-radius: 50%;
  border: 4px solid rgba(196,181,253,.22);
}
.remote-ring-back {
  width: 520px;
  height: 520px;
  right: 92px;
  top: 8px;
  opacity: .42;
}
.remote-ring-front {
  width: 460px;
  height: 460px;
  right: 122px;
  top: 38px;
  border-bottom-color: transparent;
  animation: ringPulseViolet 5.2s ease-in-out infinite;
}

.remote-phone {
  position: absolute;
  right: 210px;
  top: 42px;
  width: 250px;
  height: 500px;
  border-radius: 40px;
  padding: 10px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.03)),
    linear-gradient(145deg, #121225, #1d1740 46%, #0e1123 100%);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 48px 110px rgba(0,0,0,.44), 0 0 84px rgba(139,92,246,.20);
  transform: rotate(-10deg);
  animation: phoneFloat 5.8s ease-in-out infinite;
  z-index: 3;
}
.remote-phone-notch {
  position: absolute;
  left: 50%;
  top: 16px;
  width: 94px;
  height: 28px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: rgba(8,10,17,.88);
}
.remote-screen {
  position: absolute;
  inset: 10px;
  border-radius: 32px;
  overflow: hidden;
  background:
    radial-gradient(circle at 32% 22%, rgba(139,92,246,.22), transparent 30%),
    radial-gradient(circle at 72% 86%, rgba(96,165,250,.16), transparent 34%),
    linear-gradient(180deg, #0e0e1b, #121326 56%, #0b0c16);
}
.remote-browser {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 24px;
  height: 32px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding-left: 12px;
  background: rgba(255,255,255,.07);
}
.remote-browser span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.20);
}
.remote-hero {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 72px;
  height: 120px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 30% 22%, rgba(255,255,255,.14), transparent 24%),
    linear-gradient(135deg, rgba(139,92,246,.86), rgba(96,165,250,.70));
}
.remote-mini-grid {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 206px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.remote-mini-grid i {
  height: 72px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
}
.remote-line {
  position: absolute;
  left: 18px;
  right: 40px;
  top: 304px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.11);
}
.remote-line.short {
  right: 86px;
  top: 326px;
}
.remote-stats {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 22px;
  display: flex;
  gap: 12px;
}
.remote-stats b {
  flex: 1;
  height: 82px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.06)),
    rgba(255,255,255,.04);
}

.remote-hand {
  position: absolute;
  right: 86px;
  top: 248px;
  width: 250px;
  height: 220px;
  z-index: 2;
  filter: drop-shadow(0 24px 40px rgba(0,0,0,.28));
}
.remote-hand .palm,
.remote-hand .thumb,
.remote-hand .finger {
  position: absolute;
  background: linear-gradient(180deg, #f7c8ad, #df9d80);
}
.remote-hand .palm {
  left: 38px;
  top: 62px;
  width: 154px;
  height: 118px;
  border-radius: 64px 80px 54px 70px;
  transform: rotate(10deg);
}
.remote-hand .thumb {
  left: 12px;
  top: 98px;
  width: 82px;
  height: 42px;
  border-radius: 24px;
  transform: rotate(-26deg);
}
.remote-hand .finger {
  width: 34px;
  border-radius: 22px;
}
.remote-hand .finger-1 { left: 138px; top: 4px; height: 102px; transform: rotate(8deg);}
.remote-hand .finger-2 { left: 104px; top: 12px; height: 96px; transform: rotate(4deg);}
.remote-hand .finger-3 { left: 72px; top: 20px; height: 92px; transform: rotate(-1deg);}
.remote-hand .finger-4 { left: 42px; top: 34px; height: 82px; transform: rotate(-8deg);}

.remote-card,
.remote-bubble,
.offer-card {
  position: absolute;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
  background:
    linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.035)),
    rgba(12,10,28,.56);
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
  animation: objectFloat 5.4s ease-in-out infinite;
}
.remote-card {
  min-width: 170px;
  padding: 16px;
}
.remote-card .mini-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  margin-bottom: 10px;
  color: #fff;
  background: linear-gradient(135deg, rgba(139,92,246,.94), rgba(96,165,250,.82));
}
.remote-card b { display:block; }
.remote-card-a { left: 78px; top: 90px; }
.remote-card-b { left: 52px; bottom: 88px; animation-delay: -1.8s; }

.remote-bubble {
  border-radius: 50%;
  background: rgba(196,181,253,.24);
}
.remote-bubble-a { width: 16px; height: 16px; right: 164px; top: 86px; }
.remote-bubble-b { width: 10px; height: 10px; right: 124px; top: 112px; animation-delay: -1s; }
.remote-bubble-c { width: 22px; height: 22px; right: 112px; top: 78px; animation-delay: -2s; }

body.light-theme .remote-phone {
  background:
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(255,255,255,.68)),
    linear-gradient(145deg, #ffffff, #f2ecff 50%, #eef5ff 100%);
  border-color: rgba(23,19,31,.12);
}
body.light-theme .remote-phone-notch {
  background: rgba(23,19,31,.88);
}
body.light-theme .remote-screen {
  background:
    radial-gradient(circle at 32% 22%, rgba(139,92,246,.12), transparent 30%),
    radial-gradient(circle at 72% 86%, rgba(96,165,250,.10), transparent 34%),
    linear-gradient(180deg, #ffffff, #f8f6ff 56%, #f3f8ff);
}
body.light-theme .remote-card {
  background: rgba(255,255,255,.78);
  color: #17131f;
  border-color: rgba(23,19,31,.11);
}
body.light-theme .remote-card .mini-icon {
  box-shadow: 0 10px 20px rgba(139,92,246,.16);
}
body.light-theme .remote-hand .palm,
body.light-theme .remote-hand .thumb,
body.light-theme .remote-hand .finger {
  background: linear-gradient(180deg, #f6cdb3, #dd9b81);
}

/* v13: third slide redesign — modern contact hub */
.reachout-scene {
  display: grid;
  place-items: center;
}
.reachout-glow {
  right: 180px;
  top: 120px;
  background: rgba(244,114,182,.24);
}
.reachout-ring-back {
  width: 520px;
  height: 520px;
  right: 96px;
  top: 10px;
  opacity: .42;
}
.reachout-ring-front {
  width: 468px;
  height: 468px;
  right: 122px;
  top: 36px;
  border-left-color: transparent;
  animation: ringPulseViolet 5.4s ease-in-out infinite;
}
.reachout-panel {
  position: absolute;
  right: 166px;
  top: 92px;
  width: 360px;
  padding: 20px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.05)),
    rgba(28,10,20,.68);
  border: 1px solid rgba(255,255,255,.13);
  backdrop-filter: blur(16px);
  box-shadow: 0 44px 100px rgba(0,0,0,.32);
}
.reachout-header {
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 18px;
}
.reachout-avatar {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(244,114,182,.94), rgba(251,113,133,.82));
}
.reachout-copy b { display:block; margin-bottom: 4px; }
.reachout-copy small { color: rgba(255,233,242,.62); }
.reachout-chat {
  height: 52px;
  border-radius: 18px;
  margin-bottom: 12px;
  background: rgba(255,255,255,.07);
}
.reachout-chat.outgoing {
  width: 74%;
  margin-left: auto;
  background: linear-gradient(135deg, rgba(244,114,182,.74), rgba(251,113,133,.52));
}
.reachout-chat.short {
  width: 58%;
}
.reachout-input {
  height: 54px;
  border-radius: 18px;
  margin-top: 16px;
  background: rgba(255,255,255,.08);
}
.channel-pill {
  position: absolute;
  padding: 14px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.13);
  background:
    linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.035)),
    rgba(28,10,20,.56);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 64px rgba(0,0,0,.26);
  font-weight: 700;
  animation: objectFloat 5.3s ease-in-out infinite;
}
.channel-whatsapp { left: 74px; top: 114px; }
.channel-telegram { left: 52px; bottom: 136px; animation-delay: -1.4s; }
.channel-mail { right: 92px; bottom: 74px; animation-delay: -2.1s; }

.offer-card {
  min-width: 178px;
  padding: 18px;
}
.offer-card .offer-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 10px;
  background: rgba(244,114,182,.14);
  color: #ffd9ea;
}
.offer-card b { display:block; margin-bottom: 6px; }
.offer-card p { color: rgba(255,233,242,.64); font-size: 12px; line-height: 1.6; }
.offer-card { left: 86px; top: 214px; }
.offer-card-b { left: 100px; top: 374px; animation-delay: -1.7s; }

body.light-theme .reachout-panel,
body.light-theme .channel-pill,
body.light-theme .offer-card {
  background: rgba(255,255,255,.78);
  color: #17131f;
  border-color: rgba(23,19,31,.11);
}
body.light-theme .reachout-copy small,
body.light-theme .offer-card p,
body.light-theme .offer-card .offer-badge {
  color: rgba(23,19,31,.58);
}

@media (max-width: 760px) {
  .remote-phone { right: 190px; width: 228px; height: 456px; }
  .remote-hand { right: 86px; top: 228px; transform: scale(.84); transform-origin: right top; }
  .remote-card-a { left: 118px; top: 98px; }
  .remote-card-b { left: 102px; bottom: 102px; }
  .reachout-panel { width: 320px; right: 94px; }
  .offer-card { left: 110px; top: 226px; }
  .offer-card-b { left: 120px; top: 384px; }
  .channel-whatsapp { left: 108px; }
  .channel-telegram { left: 92px; bottom: 132px; }
  .channel-mail { right: 74px; }
}


/* v14: logo visible with actual PNG */
.brand-mark-logo {
  width: 96px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: var(--logo-filter, none);
  drop-shadow: 0 0 18px rgba(0,0,0,.0);
}

.brand-word {
  letter-spacing: .24em;
}

@media (max-width: 760px) {
  .brand-mark-logo {
    width: 78px;
    height: 48px;
  }
}

/* v14: 2nd slide redesigned without phone/bubbles */
.control-scene {
  display: grid;
  place-items: center;
}

.control-glow,
.contacthub-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(80px);
}

.control-glow {
  right: 200px;
  top: 120px;
  background: rgba(139,92,246,.24);
}

.control-ring,
.contacthub-ring {
  position: absolute;
  border-radius: 50%;
  border: 4px solid rgba(196,181,253,.22);
}

.control-ring-back {
  width: 520px;
  height: 520px;
  right: 92px;
  top: 10px;
  opacity: .4;
}

.control-ring-front {
  width: 465px;
  height: 465px;
  right: 120px;
  top: 38px;
  border-right-color: transparent;
  animation: ringPulseViolet 5.2s ease-in-out infinite;
}

.telegram-badge-hero {
  position: absolute;
  right: 96px;
  top: 82px;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(139,92,246,.96), rgba(96,165,250,.84));
  box-shadow: 0 18px 42px rgba(139,92,246,.26);
  z-index: 3;
}

.telegram-badge-hero svg {
  width: 32px;
  height: 32px;
  stroke: #fff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.laptop-shell {
  position: absolute;
  right: 152px;
  top: 110px;
  width: 390px;
  height: 238px;
  transform: perspective(1000px) rotateX(3deg) rotateY(-10deg) rotateZ(-4deg);
  z-index: 2;
}

.laptop-screen {
  position: absolute;
  inset: 0 0 22px;
  border-radius: 24px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.05)),
    linear-gradient(180deg, #10111d, #15172a 58%, #0d0f1c);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 48px 110px rgba(0,0,0,.38);
}

.screen-topbar {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.screen-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
}

.screen-grid {
  display: grid;
  grid-template-columns: 1.3fr .8fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: calc(100% - 26px);
}

.grid-card {
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04)),
    rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
}

.main-graph {
  grid-row: span 2;
  display: flex;
  align-items: end;
  gap: 10px;
  padding: 18px;
}
.main-graph i {
  flex: 1;
  border-radius: 12px 12px 3px 3px;
  background: linear-gradient(180deg, rgba(196,181,253,.98), rgba(139,92,246,.70));
}
.main-graph i:nth-child(1) { height: 36%; }
.main-graph i:nth-child(2) { height: 58%; }
.main-graph i:nth-child(3) { height: 86%; }
.main-graph i:nth-child(4) { height: 52%; }
.main-graph i:nth-child(5) { height: 74%; }

.mini-panel {
  background:
    radial-gradient(circle at 32% 28%, rgba(139,92,246,.34), transparent 26%),
    rgba(255,255,255,.04);
}

.task-list {
  padding: 16px;
  display: grid;
  gap: 10px;
}
.task-list b {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
}

.activity-feed {
  padding: 16px;
  display: grid;
  gap: 8px;
}
.activity-feed em {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  font-style: normal;
}

.laptop-base {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 26px;
  border-radius: 0 0 28px 28px;
  background: linear-gradient(180deg, #d7dbe9, #a8b0c6);
  box-shadow: 0 28px 40px rgba(0,0,0,.24);
}

.control-window,
.control-tag,
.contact-tile,
.custom-card {
  position: absolute;
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
  background:
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.04)),
    rgba(12,10,28,.56);
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
  animation: objectFloat 5.4s ease-in-out infinite;
}

.control-window {
  border-radius: 20px;
  padding: 16px;
}
.window-a {
  left: 84px;
  top: 112px;
  width: 170px;
}
.window-head {
  width: 64%;
  height: 14px;
  border-radius: 999px;
  margin-bottom: 12px;
  background: rgba(255,255,255,.14);
}
.window-line {
  height: 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
}
.window-line.short {
  width: 72%;
  margin-top: 10px;
}
.window-b {
  left: 60px;
  bottom: 96px;
  width: 164px;
  animation-delay: -1.7s;
}
.window-metric strong {
  display: block;
  font-size: 30px;
  margin-bottom: 4px;
}
.window-metric span {
  color: rgba(238,232,255,.62);
}

.control-tag {
  padding: 13px 16px;
  border-radius: 999px;
  font-weight: 700;
}
.tag-a { right: 72px; bottom: 72px; }
.tag-b { right: 154px; top: 96px; animation-delay: -1.2s; }

body.light-theme .laptop-screen,
body.light-theme .control-window,
body.light-theme .control-tag {
  background: rgba(255,255,255,.78);
  color: #17131f;
  border-color: rgba(23,19,31,.11);
}
body.light-theme .window-metric span {
  color: rgba(23,19,31,.58);
}
body.light-theme .laptop-base {
  background: linear-gradient(180deg, #f8fafc, #dbe1ec);
}

/* v14: 3rd slide redesigned without phone/bubbles */
.contacthub-scene {
  display: grid;
  place-items: center;
}

.contacthub-glow {
  right: 176px;
  top: 120px;
  background: rgba(244,114,182,.24);
}

.contacthub-ring-back {
  width: 520px;
  height: 520px;
  right: 94px;
  top: 10px;
  opacity: .4;
}
.contacthub-ring-front {
  width: 466px;
  height: 466px;
  right: 122px;
  top: 38px;
  border-top-color: transparent;
  animation: ringPulseViolet 5.4s ease-in-out infinite;
}

.message-hub {
  position: absolute;
  right: 176px;
  top: 112px;
  width: 340px;
  padding: 18px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.05)),
    rgba(28,10,20,.68);
  border: 1px solid rgba(255,255,255,.13);
  box-shadow: 0 44px 100px rgba(0,0,0,.32);
}

.hub-top {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.hub-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
}
.hub-envelope {
  height: 154px;
  border-radius: 22px;
  margin-bottom: 16px;
  background:
    linear-gradient(135deg, rgba(244,114,182,.86), rgba(251,113,133,.78));
  position: relative;
}
.hub-envelope::before,
.hub-envelope::after {
  content: "";
  position: absolute;
  background: rgba(255,255,255,.32);
}
.hub-envelope::before {
  left: 18px; right: 18px; top: 34px; bottom: 34px;
  clip-path: polygon(0 0, 50% 54%, 100% 0, 100% 100%, 0 100%);
  border-radius: 16px;
}
.hub-envelope::after {
  left: 24px; right: 24px; top: 26px; height: 2px;
  box-shadow: 0 34px 0 rgba(255,255,255,.30), 0 68px 0 rgba(255,255,255,.22);
}
.hub-lines {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}
.hub-lines i {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
}
.hub-lines i:nth-child(2) { width: 84%; }
.hub-lines i:nth-child(3) { width: 58%; }
.hub-cta {
  width: 126px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(244,114,182,.95), rgba(251,113,133,.82));
}

.contact-tile {
  width: 158px;
  padding: 16px;
  border-radius: 22px;
}
.tile-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(244,114,182,.94), rgba(251,113,133,.82));
}
.contact-tile b { display: block; margin-bottom: 4px; }
.contact-tile p,
.custom-card span {
  color: rgba(255,233,242,.64);
  font-size: 12px;
  line-height: 1.6;
}
.tile-whatsapp { left: 86px; top: 114px; }
.tile-telegram { left: 64px; bottom: 112px; animation-delay: -1.4s; }
.tile-mail { right: 90px; bottom: 76px; animation-delay: -2s; }

.custom-card {
  width: 188px;
  padding: 18px;
  border-radius: 22px;
}
.custom-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 10px;
  background: rgba(244,114,182,.14);
  color: #ffd9ea;
}
.custom-card strong {
  display: block;
  margin-bottom: 6px;
}
.custom-card {
  left: 112px;
  top: 274px;
}
.custom-card-b {
  left: 120px;
  top: 438px;
  animation-delay: -1.6s;
}

body.light-theme .message-hub,
body.light-theme .contact-tile,
body.light-theme .custom-card {
  background: rgba(255,255,255,.78);
  color: #17131f;
  border-color: rgba(23,19,31,.11);
}
body.light-theme .contact-tile p,
body.light-theme .custom-card span,
body.light-theme .custom-badge {
  color: rgba(23,19,31,.58);
}

@media (max-width: 760px) {
  .laptop-shell {
    right: 96px;
    width: 320px;
    height: 206px;
  }
  .window-a { left: 118px; }
  .window-b { left: 104px; }
  .tag-a { right: 74px; }
  .tag-b { right: 136px; }

  .message-hub {
    width: 298px;
    right: 92px;
  }
  .tile-whatsapp { left: 112px; }
  .tile-telegram { left: 96px; }
  .tile-mail { right: 74px; }
  .custom-card { left: 118px; top: 294px; }
  .custom-card-b { left: 126px; top: 454px; }
}


/* v15: visible real logo */
.brand-mark-logo {
  width: 106px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.brand-logo-frame {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 2px 4px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 0 0 1px rgba(var(--active-rgb), .12);
}
.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  opacity: 1 !important;
  visibility: visible !important;
  filter: none !important;
}
@media (max-width: 760px) {
  .brand-mark-logo { width: 86px; height: 52px; }
}

/* v15: 2nd slide = metro passenger avatar with phone */
.metro-scene {
  display: grid;
  place-items: center;
}
.metro-glow,
.bubblehub-glow {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(82px);
}
.metro-glow {
  right: 174px;
  top: 120px;
  background: rgba(139,92,246,.24);
}
.metro-ring,
.bubblehub-ring {
  position: absolute;
  border-radius: 50%;
  border: 4px solid rgba(196,181,253,.22);
}
.metro-ring-back {
  width: 520px;
  height: 520px;
  right: 96px;
  top: 10px;
  opacity: .4;
}
.metro-ring-front {
  width: 466px;
  height: 466px;
  right: 122px;
  top: 36px;
  border-right-color: transparent;
  animation: ringPulseViolet 5.1s ease-in-out infinite;
}
.metro-bg-card {
  position: absolute;
  right: 146px;
  top: 82px;
  width: 390px;
  height: 400px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.03)),
    rgba(16,14,34,.54);
  border: 1px solid rgba(255,255,255,.12);
  overflow: hidden;
  box-shadow: 0 44px 100px rgba(0,0,0,.32);
}
.metro-window {
  position: absolute;
  top: 48px;
  width: 96px;
  height: 180px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.05)),
    linear-gradient(180deg, #1a1b2d, #101220);
  border: 1px solid rgba(255,255,255,.10);
}
.window-1 { left: 26px; }
.window-2 { left: 146px; }
.window-3 { left: 266px; }
.metro-floor-line {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 40px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
}
.metro-pole {
  position: absolute;
  top: 58px;
  width: 10px;
  height: 356px;
  border-radius: 999px;
  background: linear-gradient(180deg, #cfd7ea, #8c96ad);
  z-index: 2;
}
.pole-left { right: 384px; }
.pole-right { right: 204px; }
.metro-handle {
  position: absolute;
  top: 58px;
  width: 38px;
  height: 60px;
  border: 5px solid rgba(230,235,248,.92);
  border-top: 0;
  border-radius: 0 0 20px 20px;
  z-index: 2;
}
.handle-a { right: 320px; }
.handle-b { right: 160px; }

.commuter-avatar {
  position: absolute;
  right: 252px;
  top: 118px;
  width: 180px;
  height: 350px;
  z-index: 3;
  animation: objectFloat 5.6s ease-in-out infinite;
}
.avatar-head {
  position: absolute;
  left: 62px;
  top: 0;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(180deg, #24263d, #10111e);
}
.avatar-body {
  position: absolute;
  left: 34px;
  top: 54px;
  width: 116px;
  height: 150px;
  border-radius: 42px 42px 26px 26px;
  background: linear-gradient(180deg, #5b21b6, #1f1943 74%, #121525);
  transform: rotate(-7deg);
}
.avatar-arm {
  position: absolute;
  width: 26px;
  border-radius: 18px;
  background: linear-gradient(180deg, #24263d, #11131f);
}
.arm-left {
  left: 22px;
  top: 96px;
  height: 110px;
  transform: rotate(18deg);
}
.arm-right {
  left: 118px;
  top: 90px;
  height: 122px;
  transform: rotate(-28deg);
}
.avatar-phone {
  position: absolute;
  left: 118px;
  top: 152px;
  width: 34px;
  height: 58px;
  border-radius: 12px;
  background: linear-gradient(180deg, #0f172a, #111827);
  border: 2px solid rgba(255,255,255,.10);
  box-shadow: 0 0 24px rgba(139,92,246,.18);
  transform: rotate(-10deg);
}
.avatar-leg {
  position: absolute;
  width: 28px;
  border-radius: 18px;
  background: linear-gradient(180deg, #151728, #0f1220);
}
.leg-left {
  left: 58px;
  top: 190px;
  height: 142px;
  transform: rotate(8deg);
}
.leg-right {
  left: 98px;
  top: 188px;
  height: 152px;
  transform: rotate(-10deg);
}
.telegram-info-card {
  position: absolute;
  min-width: 168px;
  padding: 15px 16px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.04)),
    rgba(16,14,34,.54);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
  animation: objectFloat 5.4s ease-in-out infinite;
}
.info-chip {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 800;
  background: rgba(139,92,246,.18);
  color: #ebddff;
}
.telegram-info-card b {
  display: block;
  font-size: 14px;
  line-height: 1.45;
}
.info-card-a { left: 82px; top: 108px; }
.info-card-b { right: 70px; top: 110px; animation-delay: -1.3s; }
.info-card-c { left: 112px; bottom: 64px; animation-delay: -2s; }

body.light-theme .metro-bg-card,
body.light-theme .telegram-info-card {
  background: rgba(255,255,255,.80);
  color: #17131f;
  border-color: rgba(23,19,31,.11);
}
body.light-theme .metro-window {
  background:
    linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.52)),
    linear-gradient(180deg, #eef2ff, #e8eef9);
  border-color: rgba(23,19,31,.08);
}
body.light-theme .metro-pole {
  background: linear-gradient(180deg, #eef2ff, #b9c3d8);
}
body.light-theme .metro-handle {
  border-color: rgba(186, 194, 214, .98);
}
body.light-theme .avatar-head {
  background: linear-gradient(180deg, #434761, #202432);
}
body.light-theme .avatar-arm,
body.light-theme .avatar-leg {
  background: linear-gradient(180deg, #363b50, #171a25);
}

/* v15: 3rd slide moving communication bubbles */
.bubblehub-scene {
  display: grid;
  place-items: center;
}
.bubblehub-glow {
  right: 176px;
  top: 120px;
  background: rgba(244,114,182,.24);
}
.bubblehub-ring-back {
  width: 520px;
  height: 520px;
  right: 94px;
  top: 10px;
  opacity: .4;
}
.bubblehub-ring-front {
  width: 466px;
  height: 466px;
  right: 122px;
  top: 36px;
  border-top-color: transparent;
  animation: ringPulseViolet 5.4s ease-in-out infinite;
}
.hub-center {
  position: absolute;
  right: 188px;
  top: 162px;
  width: 286px;
  padding: 28px 24px;
  border-radius: 28px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.05)),
    rgba(28,10,20,.68);
  border: 1px solid rgba(255,255,255,.13);
  box-shadow: 0 44px 100px rgba(0,0,0,.32);
}
.hub-core-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 14px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(244,114,182,.96), rgba(251,113,133,.84));
  box-shadow: 0 18px 44px rgba(244,114,182,.20);
}
.hub-center b {
  display: block;
  font-size: 22px;
  margin-bottom: 8px;
}
.hub-center p {
  color: rgba(255,233,242,.62);
  line-height: 1.6;
}
.message-bubble {
  position: absolute;
  min-width: 154px;
  padding: 16px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.13);
  background:
    linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.04)),
    rgba(28,10,20,.58);
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(14px);
}
.bubble-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(244,114,182,.94), rgba(251,113,133,.82));
}
.message-bubble strong {
  font-size: 15px;
}
.whatsapp-bubble {
  left: 86px;
  top: 122px;
  animation: driftA 6.4s ease-in-out infinite;
}
.telegram-bubble {
  right: 86px;
  top: 108px;
  animation: driftB 6.8s ease-in-out infinite;
}
.mail-bubble {
  left: 120px;
  bottom: 92px;
  animation: driftC 7.1s ease-in-out infinite;
}
.offer-note {
  position: absolute;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.035)),
    rgba(28,10,20,.56);
  box-shadow: 0 22px 56px rgba(0,0,0,.24);
  font-weight: 700;
}
.note-a { right: 80px; bottom: 104px; animation: driftD 6.6s ease-in-out infinite; }
.note-b { left: 122px; top: 316px; animation: driftB 7.2s ease-in-out infinite; }
.note-c { right: 146px; top: 354px; animation: driftA 6.1s ease-in-out infinite; }

@keyframes driftA {
  0%,100% { transform: translate3d(0,0,0); }
  50% { transform: translate3d(0,-12px,0); }
}
@keyframes driftB {
  0%,100% { transform: translate3d(0,0,0); }
  50% { transform: translate3d(10px,-8px,0); }
}
@keyframes driftC {
  0%,100% { transform: translate3d(0,0,0); }
  50% { transform: translate3d(-8px,-14px,0); }
}
@keyframes driftD {
  0%,100% { transform: translate3d(0,0,0); }
  50% { transform: translate3d(8px,8px,0); }
}

body.light-theme .hub-center,
body.light-theme .message-bubble,
body.light-theme .offer-note {
  background: rgba(255,255,255,.80);
  color: #17131f;
  border-color: rgba(23,19,31,.11);
}
body.light-theme .hub-center p {
  color: rgba(23,19,31,.58);
}

@media (max-width: 760px) {
  .metro-bg-card {
    width: 330px;
    height: 372px;
    right: 90px;
  }
  .window-1 { left: 18px; }
  .window-2 { left: 118px; }
  .window-3 { left: 218px; }
  .pole-left { right: 292px; }
  .pole-right { right: 152px; }
  .handle-a { right: 244px; }
  .handle-b { right: 126px; }
  .commuter-avatar {
    right: 176px;
    transform: scale(.88);
    transform-origin: center top;
  }
  .info-card-a { left: 104px; }
  .info-card-b { right: 52px; }
  .info-card-c { left: 114px; }
  .hub-center {
    width: 254px;
    right: 108px;
  }
  .whatsapp-bubble { left: 106px; }
  .telegram-bubble { right: 74px; }
  .mail-bubble { left: 112px; }
  .note-b { left: 114px; }
}


/* v16: force visible embedded logo */
.brand-mark-logo {
  width: 112px !important;
  height: 64px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 auto !important;
  background: none !important;
  box-shadow: none !important;
  border: 0 !important;
  overflow: visible !important;
}
.brand-mark-logo::before,
.brand-mark-logo::after {
  display: none !important;
  content: none !important;
}
.brand-logo-frame {
  display: none !important;
}
.brand-logo-img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: contain !important;
  opacity: 1 !important;
  visibility: visible !important;
  filter: none !important;
  -webkit-mask: none !important;
  mask: none !important;
  mix-blend-mode: normal !important;
}
.brand-word {
  letter-spacing: .24em;
}
@media (max-width: 760px) {
  .brand-mark-logo { width: 90px !important; height: 52px !important; }
}

/* v16: smoother silhouette on slide 2 */
.commuter-scene {
  display: grid;
  place-items: center;
}
.commuter-glow {
  position: absolute;
  width: 390px;
  height: 390px;
  right: 168px;
  top: 118px;
  border-radius: 50%;
  background: rgba(139,92,246,.24);
  filter: blur(84px);
}
.commuter-ring {
  position: absolute;
  border-radius: 50%;
  border: 4px solid rgba(196,181,253,.22);
}
.commuter-ring-back {
  width: 520px;
  height: 520px;
  right: 96px;
  top: 10px;
  opacity: .4;
}
.commuter-ring-front {
  width: 466px;
  height: 466px;
  right: 122px;
  top: 36px;
  border-left-color: transparent;
  animation: ringPulseViolet 5.1s ease-in-out infinite;
}
.commuter-backdrop {
  position: absolute;
  right: 150px;
  top: 90px;
  width: 360px;
  height: 392px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.03)),
    rgba(16,14,34,.50);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 44px 100px rgba(0,0,0,.30);
  overflow: hidden;
}
.backdrop-line {
  position: absolute;
  left: 24px;
  right: 24px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.07);
}
.top-line { top: 42px; }
.mid-line { bottom: 64px; }
.backdrop-seat {
  position: absolute;
  width: 86px;
  height: 120px;
  bottom: 82px;
  border-radius: 26px 26px 20px 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.04)),
    linear-gradient(180deg, #1c1d31, #121321);
  border: 1px solid rgba(255,255,255,.08);
}
.seat-a { left: 48px; }
.seat-b { left: 156px; }

.person-silhouette {
  position: absolute;
  right: 250px;
  top: 112px;
  width: 170px;
  height: 330px;
  z-index: 3;
  animation: objectFloat 5.8s ease-in-out infinite;
}
.sil-head,
.sil-neck,
.sil-torso,
.sil-hip,
.sil-arm-back,
.sil-arm-front,
.sil-forearm,
.sil-leg-left,
.sil-leg-right {
  position: absolute;
  background: linear-gradient(180deg, #1f2034, #0d0f1a);
}
.sil-head {
  left: 62px;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
}
.sil-neck {
  left: 80px;
  top: 40px;
  width: 14px;
  height: 16px;
  border-radius: 10px;
}
.sil-torso {
  left: 42px;
  top: 50px;
  width: 86px;
  height: 120px;
  border-radius: 34px 34px 26px 26px;
  transform: rotate(-5deg);
}
.sil-hip {
  left: 50px;
  top: 150px;
  width: 72px;
  height: 38px;
  border-radius: 24px;
}
.sil-arm-back {
  left: 26px;
  top: 72px;
  width: 22px;
  height: 102px;
  border-radius: 18px;
  transform: rotate(18deg);
}
.sil-arm-front {
  left: 116px;
  top: 74px;
  width: 20px;
  height: 86px;
  border-radius: 18px;
  transform: rotate(-30deg);
}
.sil-forearm {
  left: 112px;
  top: 138px;
  width: 18px;
  height: 64px;
  border-radius: 18px;
  transform: rotate(22deg);
}
.sil-phone {
  position: absolute;
  left: 122px;
  top: 148px;
  width: 26px;
  height: 46px;
  border-radius: 10px;
  background: linear-gradient(180deg, #0f172a, #111827);
  border: 2px solid rgba(255,255,255,.10);
  box-shadow: 0 0 24px rgba(139,92,246,.18);
  transform: rotate(-8deg);
}
.sil-leg-left {
  left: 58px;
  top: 178px;
  width: 24px;
  height: 126px;
  border-radius: 18px;
  transform: rotate(5deg);
}
.sil-leg-right {
  left: 88px;
  top: 178px;
  width: 24px;
  height: 132px;
  border-radius: 18px;
  transform: rotate(-10deg);
}

.mini-info-card {
  position: absolute;
  width: 190px;
  padding: 15px 16px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.04)),
    rgba(16,14,34,.54);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
  animation: objectFloat 5.4s ease-in-out infinite;
}
.mini-chip {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 800;
  background: rgba(139,92,246,.18);
  color: #ebddff;
}
.mini-info-card b {
  display: block;
  font-size: 14px;
  line-height: 1.45;
}
.card-a { left: 80px; top: 108px; }
.card-b { right: 64px; top: 120px; animation-delay: -1.2s; }
.card-c { left: 116px; bottom: 62px; animation-delay: -2s; }

body.light-theme .commuter-backdrop,
body.light-theme .mini-info-card {
  background: rgba(255,255,255,.82);
  color: #17131f;
  border-color: rgba(23,19,31,.11);
}
body.light-theme .backdrop-seat {
  background:
    linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.55)),
    linear-gradient(180deg, #edf1ff, #e5ecf7);
  border-color: rgba(23,19,31,.08);
}
body.light-theme .sil-head,
body.light-theme .sil-neck,
body.light-theme .sil-torso,
body.light-theme .sil-hip,
body.light-theme .sil-arm-back,
body.light-theme .sil-arm-front,
body.light-theme .sil-forearm,
body.light-theme .sil-leg-left,
body.light-theme .sil-leg-right {
  background: linear-gradient(180deg, #383d56, #171b28);
}

@media (max-width: 760px) {
  .commuter-backdrop {
    width: 316px;
    height: 364px;
    right: 92px;
  }
  .person-silhouette {
    right: 180px;
    transform: scale(.92);
    transform-origin: center top;
  }
  .card-a { left: 104px; }
  .card-b { right: 58px; }
  .card-c { left: 106px; bottom: 58px; }
}


/* v17: inline SVG logo - guaranteed visible */
:root {
  --logo-c1: #28b0ff;
  --logo-c2: #1644ff;
}
.brand-mark-logo {
  width: 112px !important;
  height: 44px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 auto !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}
.brand-mark-logo img,
.brand-mark-logo::before,
.brand-mark-logo::after,
.brand-logo-frame {
  display: none !important;
  content: none !important;
}
.brand-mark-logo svg {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  overflow: visible !important;
}
body.light-theme .brand-mark-logo {
  filter: none !important;
}
@media (max-width: 760px) {
  .brand-mark-logo {
    width: 92px !important;
    height: 36px !important;
  }
}

/* v17: improved detailed silhouette */
.commuter-pro-scene {
  display: grid;
  place-items: center;
}
.commuter-pro-glow,
.contact-bubbles-glow {
  position: absolute;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  filter: blur(84px);
}
.commuter-pro-glow {
  right: 168px;
  top: 118px;
  background: rgba(139,92,246,.24);
}
.commuter-pro-ring,
.contact-bubbles-ring {
  position: absolute;
  border-radius: 50%;
  border: 4px solid rgba(196,181,253,.22);
}
.commuter-pro-ring-back {
  width: 520px;
  height: 520px;
  right: 96px;
  top: 10px;
  opacity: .4;
}
.commuter-pro-ring-front {
  width: 466px;
  height: 466px;
  right: 122px;
  top: 36px;
  border-left-color: transparent;
  animation: ringPulseViolet 5.1s ease-in-out infinite;
}
.commuter-pro-stage {
  position: absolute;
  right: 150px;
  top: 92px;
  width: 360px;
  height: 392px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.03)),
    rgba(16,14,34,.50);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 44px 100px rgba(0,0,0,.30);
  overflow: hidden;
}
.stage-rail {
  position: absolute;
  left: 30px;
  right: 30px;
  top: 54px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
}
.stage-seat {
  position: absolute;
  width: 92px;
  height: 118px;
  bottom: 78px;
  border-radius: 26px 26px 20px 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.04)),
    linear-gradient(180deg, #1c1d31, #121321);
  border: 1px solid rgba(255,255,255,.08);
}
.seat-left { left: 52px; }
.seat-right { left: 166px; }

.human-silhouette {
  position: absolute;
  right: 254px;
  top: 108px;
  width: 164px;
  height: 332px;
  z-index: 3;
  animation: objectFloat 5.8s ease-in-out infinite;
}
.human-silhouette > div {
  position: absolute;
  background: linear-gradient(180deg, #23253a, #0f111b);
}
.hs-head {
  left: 58px;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
}
.hs-neck {
  left: 74px;
  top: 42px;
  width: 14px;
  height: 14px;
  border-radius: 10px;
}
.hs-shoulder {
  left: 36px;
  top: 52px;
  width: 92px;
  height: 30px;
  border-radius: 20px;
}
.hs-torso {
  left: 42px;
  top: 70px;
  width: 84px;
  height: 102px;
  border-radius: 30px 30px 24px 24px;
  transform: rotate(-4deg);
}
.hs-hip {
  left: 48px;
  top: 160px;
  width: 72px;
  height: 32px;
  border-radius: 20px;
}
.hs-arm-left {
  left: 22px;
  top: 74px;
  width: 22px;
  height: 104px;
  border-radius: 18px;
  transform: rotate(18deg);
}
.hs-arm-right {
  left: 116px;
  top: 76px;
  width: 20px;
  height: 70px;
  border-radius: 18px;
  transform: rotate(-26deg);
}
.hs-forearm-right {
  left: 116px;
  top: 132px;
  width: 18px;
  height: 58px;
  border-radius: 18px;
  transform: rotate(18deg);
}
.hs-hand-right {
  left: 123px;
  top: 184px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
}
.hs-phone {
  position: absolute;
  left: 128px;
  top: 148px;
  width: 26px;
  height: 46px;
  border-radius: 10px;
  background: linear-gradient(180deg, #0f172a, #111827) !important;
  border: 2px solid rgba(255,255,255,.10);
  box-shadow: 0 0 24px rgba(139,92,246,.18);
  transform: rotate(-8deg);
}
.hs-leg-left {
  left: 58px;
  top: 184px;
  width: 24px;
  height: 120px;
  border-radius: 18px;
  transform: rotate(6deg);
}
.hs-leg-right {
  left: 88px;
  top: 184px;
  width: 24px;
  height: 126px;
  border-radius: 18px;
  transform: rotate(-8deg);
}
.hs-shoe-left {
  left: 48px;
  top: 294px;
  width: 42px;
  height: 18px;
  border-radius: 14px;
}
.hs-shoe-right {
  left: 86px;
  top: 302px;
  width: 42px;
  height: 18px;
  border-radius: 14px;
}

.tg-feature-card {
  position: absolute;
  width: 210px;
  padding: 16px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.04)),
    rgba(16,14,34,.54);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
  display: flex;
  gap: 12px;
  animation: objectFloat 5.4s ease-in-out infinite;
}
.tg-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(139,92,246,.96), rgba(96,165,250,.84));
  box-shadow: 0 12px 28px rgba(139,92,246,.20);
}
.tg-icon svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tg-feature-card b {
  display: block;
  font-size: 15px;
  margin-bottom: 5px;
}
.tg-feature-card small {
  display: block;
  color: rgba(238,232,255,.62);
  line-height: 1.55;
}
.tg-card-1 { left: 62px; top: 104px; }
.tg-card-2 { right: 52px; top: 130px; animation-delay: -1.2s; }
.tg-card-3 { left: 116px; bottom: 56px; animation-delay: -2s; }

body.light-theme .commuter-pro-stage,
body.light-theme .tg-feature-card {
  background: rgba(255,255,255,.82);
  color: #17131f;
  border-color: rgba(23,19,31,.11);
}
body.light-theme .stage-seat {
  background:
    linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.55)),
    linear-gradient(180deg, #edf1ff, #e5ecf7);
  border-color: rgba(23,19,31,.08);
}
body.light-theme .human-silhouette > div {
  background: linear-gradient(180deg, #3b405a, #181b28);
}
body.light-theme .tg-feature-card small {
  color: rgba(23,19,31,.58);
}

/* v17: simplified 3rd slide - only contact channel bubbles */
.contact-bubbles-scene {
  display: grid;
  place-items: center;
}
.contact-bubbles-glow {
  right: 176px;
  top: 120px;
  background: rgba(244,114,182,.24);
}
.contact-bubbles-ring-back {
  width: 520px;
  height: 520px;
  right: 94px;
  top: 10px;
  opacity: .4;
}
.contact-bubbles-ring-front {
  width: 466px;
  height: 466px;
  right: 122px;
  top: 36px;
  border-top-color: transparent;
  animation: ringPulseViolet 5.4s ease-in-out infinite;
}
.contact-center-hub {
  position: absolute;
  right: 186px;
  top: 166px;
  width: 286px;
  padding: 28px 24px;
  border-radius: 28px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.05)),
    rgba(28,10,20,.68);
  border: 1px solid rgba(255,255,255,.13);
  box-shadow: 0 44px 100px rgba(0,0,0,.32);
}
.center-logo-orb {
  width: 76px;
  height: 76px;
  margin: 0 auto 14px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(244,114,182,.96), rgba(251,113,133,.84));
  box-shadow: 0 18px 44px rgba(244,114,182,.20);
}
.contact-center-hub b {
  display: block;
  font-size: 22px;
  margin-bottom: 8px;
}
.contact-center-hub p {
  color: rgba(255,233,242,.62);
  line-height: 1.6;
}
.contact-channel-bubble {
  position: absolute;
  min-width: 162px;
  padding: 16px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.13);
  background:
    linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.04)),
    rgba(28,10,20,.58);
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(14px);
}
.channel-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(244,114,182,.94), rgba(251,113,133,.82));
}
.contact-channel-bubble strong {
  font-size: 15px;
}
.bubble-whatsapp {
  left: 86px;
  top: 124px;
  animation: driftA 6.4s ease-in-out infinite;
}
.bubble-telegram {
  right: 84px;
  top: 112px;
  animation: driftB 6.8s ease-in-out infinite;
}
.bubble-mail {
  left: 120px;
  bottom: 96px;
  animation: driftC 7.1s ease-in-out infinite;
}
body.light-theme .contact-center-hub,
body.light-theme .contact-channel-bubble {
  background: rgba(255,255,255,.80);
  color: #17131f;
  border-color: rgba(23,19,31,.11);
}
body.light-theme .contact-center-hub p {
  color: rgba(23,19,31,.58);
}

@media (max-width: 760px) {
  .commuter-pro-stage {
    width: 316px;
    height: 364px;
    right: 92px;
  }
  .human-silhouette {
    right: 182px;
    transform: scale(.92);
    transform-origin: center top;
  }
  .tg-card-1 { left: 92px; }
  .tg-card-2 { right: 48px; }
  .tg-card-3 { left: 100px; }
  .contact-center-hub {
    width: 256px;
    right: 108px;
  }
  .bubble-whatsapp { left: 106px; }
  .bubble-telegram { right: 74px; }
  .bubble-mail { left: 112px; }
}


/* v18: hard-fix logo visibility */
.brand-mark-logo {
  width: 116px !important;
  height: 44px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 auto !important;
  overflow: visible !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
.brand-mark-logo img,
.brand-logo-img,
.brand-logo-frame,
.brand-mark-logo::before,
.brand-mark-logo::after {
  display: none !important;
  content: none !important;
}
.qorvia-logo-inline,
.brand-mark-logo svg.qorvia-logo-inline {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  overflow: visible !important;
}
.qorvia-logo-inline * {
  visibility: visible !important;
  opacity: 1 !important;
}
@media (max-width: 760px) {
  .brand-mark-logo {
    width: 96px !important;
    height: 36px !important;
  }
}

/* v18: more premium 2nd slide silhouette */
.premium-commuter-scene {
  display: grid;
  place-items: center;
}
.premium-commuter-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  right: 165px;
  top: 112px;
  border-radius: 50%;
  filter: blur(86px);
  background: rgba(139,92,246,.24);
}
.premium-commuter-ring {
  position: absolute;
  border-radius: 50%;
  border: 4px solid rgba(196,181,253,.22);
}
.premium-commuter-ring.ring-back {
  width: 520px;
  height: 520px;
  right: 96px;
  top: 10px;
  opacity: .4;
}
.premium-commuter-ring.ring-front {
  width: 466px;
  height: 466px;
  right: 122px;
  top: 36px;
  border-left-color: transparent;
  animation: ringPulseViolet 5.1s ease-in-out infinite;
}
.premium-commuter-backdrop {
  position: absolute;
  right: 148px;
  top: 90px;
  width: 366px;
  height: 396px;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.03)),
    rgba(16,14,34,.52);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 44px 100px rgba(0,0,0,.30);
  overflow: hidden;
}
.pc-rail {
  position: absolute;
  left: 28px;
  right: 28px;
  top: 52px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
}
.pc-pole {
  position: absolute;
  top: 50px;
  width: 10px;
  height: 314px;
  border-radius: 999px;
  background: linear-gradient(180deg, #d7deef, #96a1ba);
  opacity: .86;
}
.pole-a { left: 62px; }
.pole-b { right: 70px; }
.pc-seat {
  position: absolute;
  width: 88px;
  height: 116px;
  bottom: 74px;
  border-radius: 26px 26px 20px 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.04)),
    linear-gradient(180deg, #1c1d31, #121321);
  border: 1px solid rgba(255,255,255,.08);
}
.seat-a { left: 86px; }
.seat-b { left: 194px; }

.premium-person-wrap {
  position: absolute;
  right: 236px;
  top: 86px;
  width: 228px;
  height: 384px;
  z-index: 3;
  animation: objectFloat 5.8s ease-in-out infinite;
}
.premium-person-svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 28px 40px rgba(0,0,0,.22));
}

.premium-card-1 { left: 62px; top: 106px; }
.premium-card-2 { right: 48px; top: 132px; animation-delay: -1.2s; }
.premium-card-3 { left: 112px; bottom: 58px; animation-delay: -2s; }

body.light-theme .premium-commuter-backdrop,
body.light-theme .tg-feature-card {
  background: rgba(255,255,255,.82);
  color: #17131f;
  border-color: rgba(23,19,31,.11);
}
body.light-theme .pc-seat {
  background:
    linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.55)),
    linear-gradient(180deg, #edf1ff, #e5ecf7);
  border-color: rgba(23,19,31,.08);
}
body.light-theme .pc-pole {
  background: linear-gradient(180deg, #eef2ff, #b9c3d8);
}

@media (max-width: 760px) {
  .premium-commuter-backdrop {
    width: 320px;
    height: 364px;
    right: 92px;
  }
  .premium-person-wrap {
    right: 168px;
    top: 104px;
    width: 190px;
    height: 324px;
  }
  .premium-card-1 { left: 92px; }
  .premium-card-2 { right: 52px; }
  .premium-card-3 { left: 100px; bottom: 58px; }
}


/* v19: focus only on 2nd slide character */
.cartoon-admin-scene {
  display: grid;
  place-items: center;
}
.cartoon-admin-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  right: 165px;
  top: 112px;
  border-radius: 50%;
  filter: blur(86px);
  background: rgba(139,92,246,.24);
}
.cartoon-admin-ring {
  position: absolute;
  border-radius: 50%;
  border: 4px solid rgba(196,181,253,.22);
}
.cartoon-admin-ring.admin-ring-back {
  width: 520px;
  height: 520px;
  right: 96px;
  top: 10px;
  opacity: .4;
}
.cartoon-admin-ring.admin-ring-front {
  width: 466px;
  height: 466px;
  right: 122px;
  top: 36px;
  border-left-color: transparent;
  animation: ringPulseViolet 5.1s ease-in-out infinite;
}
.cartoon-admin-stage {
  position: absolute;
  right: 148px;
  top: 90px;
  width: 366px;
  height: 396px;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.03)),
    rgba(16,14,34,.52);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 44px 100px rgba(0,0,0,.30);
  overflow: hidden;
}
.cartoon-stage-line {
  position: absolute;
  left: 28px;
  right: 28px;
  top: 52px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
}
.cartoon-stage-pole {
  position: absolute;
  top: 50px;
  width: 10px;
  height: 314px;
  border-radius: 999px;
  background: linear-gradient(180deg, #d7deef, #96a1ba);
  opacity: .86;
}
.pole-left { left: 62px; }
.pole-right { right: 70px; }
.cartoon-stage-seat {
  position: absolute;
  width: 88px;
  height: 116px;
  bottom: 74px;
  border-radius: 26px 26px 20px 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.04)),
    linear-gradient(180deg, #1c1d31, #121321);
  border: 1px solid rgba(255,255,255,.08);
}
.left-seat { left: 86px; }
.right-seat { left: 194px; }

.cartoon-character-wrap {
  position: absolute;
  right: 220px;
  top: 68px;
  width: 244px;
  height: 390px;
  z-index: 3;
  animation: objectFloat 5.8s ease-in-out infinite;
}
.cartoon-character-svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* keep the 3 cards but slightly rebalance around character */
.premium-card-1 { left: 62px; top: 106px; }
.premium-card-2 { right: 48px; top: 132px; animation-delay: -1.2s; }
.premium-card-3 { left: 112px; bottom: 58px; animation-delay: -2s; }

body.light-theme .cartoon-admin-stage,
body.light-theme .tg-feature-card {
  background: rgba(255,255,255,.82);
  color: #17131f;
  border-color: rgba(23,19,31,.11);
}
body.light-theme .cartoon-stage-seat {
  background:
    linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.55)),
    linear-gradient(180deg, #edf1ff, #e5ecf7);
  border-color: rgba(23,19,31,.08);
}
body.light-theme .cartoon-stage-pole {
  background: linear-gradient(180deg, #eef2ff, #b9c3d8);
}

@media (max-width: 760px) {
  .cartoon-admin-stage {
    width: 320px;
    height: 364px;
    right: 92px;
  }
  .cartoon-character-wrap {
    right: 156px;
    top: 94px;
    width: 206px;
    height: 330px;
  }
  .premium-card-1 { left: 92px; }
  .premium-card-2 { right: 52px; }
  .premium-card-3 { left: 100px; bottom: 58px; }
}


/* v20: hard force visible logo using uploaded image */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand-mark-logo {
  width: 112px !important;
  height: 48px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 auto !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
  position: relative !important;
  z-index: 20 !important;
}
.brand-mark-logo svg,
.brand-mark-logo::before,
.brand-mark-logo::after,
.brand-logo-img,
.brand-logo-frame,
.brand-logo-direct + svg {
  display: none !important;
  content: none !important;
}
.brand-logo-direct {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  opacity: 1 !important;
  visibility: visible !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}
@media (max-width: 760px) {
  .brand-mark-logo {
    width: 92px !important;
    height: 40px !important;
  }
}

/* v20: refined seated cartoon character for slide 2 */
.seated-admin-scene {
  display: grid;
  place-items: center;
}
.seated-admin-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  right: 165px;
  top: 112px;
  border-radius: 50%;
  filter: blur(86px);
  background: rgba(139,92,246,.24);
}
.seated-admin-ring {
  position: absolute;
  border-radius: 50%;
  border: 4px solid rgba(196,181,253,.22);
}
.seated-admin-ring.ring-back {
  width: 520px;
  height: 520px;
  right: 96px;
  top: 10px;
  opacity: .4;
}
.seated-admin-ring.ring-front {
  width: 466px;
  height: 466px;
  right: 122px;
  top: 36px;
  border-left-color: transparent;
  animation: ringPulseViolet 5.1s ease-in-out infinite;
}
.seated-admin-stage {
  position: absolute;
  right: 146px;
  top: 90px;
  width: 374px;
  height: 398px;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.03)),
    rgba(16,14,34,.52);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 44px 100px rgba(0,0,0,.30);
  overflow: hidden;
}
.stage-window {
  position: absolute;
  top: 56px;
  width: 108px;
  height: 132px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.04)),
    linear-gradient(180deg, #191c2f, #121321);
  border: 1px solid rgba(255,255,255,.09);
}
.window-left { left: 46px; }
.window-right { right: 46px; }
.stage-pole {
  position: absolute;
  top: 46px;
  width: 10px;
  height: 320px;
  border-radius: 999px;
  background: linear-gradient(180deg, #d7deef, #96a1ba);
  opacity: .9;
}
.stage-pole.pole-left { left: 172px; }
.stage-pole.pole-right { right: 52px; }
.stage-seat-base {
  position: absolute;
  left: 108px;
  bottom: 72px;
  width: 148px;
  height: 38px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.05)),
    linear-gradient(180deg, #1b1d30, #131523);
  border: 1px solid rgba(255,255,255,.08);
}
.stage-seat-back {
  position: absolute;
  left: 124px;
  bottom: 102px;
  width: 116px;
  height: 102px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.04)),
    linear-gradient(180deg, #22253b, #171927);
  border: 1px solid rgba(255,255,255,.08);
}
.seated-character-wrap {
  position: absolute;
  right: 180px;
  top: 44px;
  width: 280px;
  height: 404px;
  z-index: 3;
  animation: objectFloat 5.8s ease-in-out infinite;
}
.seated-character-svg {
  width: 100%;
  height: 100%;
  display: block;
}
.seated-card-1 { left: 64px; top: 100px; }
.seated-card-2 { right: 44px; top: 126px; animation-delay: -1.2s; }
.seated-card-3 { left: 98px; bottom: 50px; animation-delay: -2s; }

body.light-theme .seated-admin-stage,
body.light-theme .tg-feature-card {
  background: rgba(255,255,255,.82);
  color: #17131f;
  border-color: rgba(23,19,31,.11);
}
body.light-theme .stage-window,
body.light-theme .stage-seat-base,
body.light-theme .stage-seat-back {
  background:
    linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.55)),
    linear-gradient(180deg, #edf1ff, #e5ecf7);
  border-color: rgba(23,19,31,.08);
}
body.light-theme .stage-pole {
  background: linear-gradient(180deg, #eef2ff, #b9c3d8);
}

@media (max-width: 760px) {
  .seated-admin-stage {
    width: 322px;
    height: 360px;
    right: 90px;
  }
  .stage-window { width: 88px; height: 110px; top: 54px; }
  .window-left { left: 34px; }
  .window-right { right: 34px; }
  .stage-pole.pole-left { left: 146px; }
  .stage-pole.pole-right { right: 38px; }
  .stage-seat-base { left: 88px; width: 132px; }
  .stage-seat-back { left: 100px; width: 108px; }
  .seated-character-wrap {
    right: 132px;
    top: 62px;
    width: 236px;
    height: 342px;
  }
  .seated-card-1 { left: 88px; }
  .seated-card-2 { right: 46px; }
  .seated-card-3 { left: 96px; }
}


/* ===================== QWV21 clean fixes ===================== */
/* Root cause fix: use new class namespace to avoid legacy conflicting CSS */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.qwv21-logo-wrap {
  width: 116px;
  height: 48px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  position: relative;
  z-index: 50;
}
.qwv21-logo-img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.qwv21-brand-word {
  font-size: 0.9rem;
  letter-spacing: .24em;
  font-weight: 800;
  color: rgba(255,255,255,.9);
}
body.light-theme .qwv21-brand-word {
  color: #111827;
}
@media (max-width: 760px) {
  .qwv21-logo-wrap {
    width: 94px;
    height: 40px;
  }
  .qwv21-brand-word {
    letter-spacing: .18em;
    font-size: .82rem;
  }
}

.qwv21-slide2-scene {
  display: grid;
  place-items: center;
}
.qwv21-slide2-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  right: 165px;
  top: 112px;
  border-radius: 50%;
  filter: blur(86px);
  background: rgba(139,92,246,.24);
}
.qwv21-slide2-ring {
  position: absolute;
  border-radius: 50%;
  border: 4px solid rgba(196,181,253,.22);
}
.qwv21-slide2-ring-back {
  width: 520px;
  height: 520px;
  right: 96px;
  top: 10px;
  opacity: .4;
}
.qwv21-slide2-ring-front {
  width: 466px;
  height: 466px;
  right: 122px;
  top: 36px;
  border-left-color: transparent;
  animation: ringPulseViolet 5.1s ease-in-out infinite;
}
.qwv21-slide2-stage {
  position: absolute;
  right: 146px;
  top: 90px;
  width: 374px;
  height: 398px;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.03)), rgba(16,14,34,.52);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 44px 100px rgba(0,0,0,.30);
  overflow: hidden;
}
.qwv21-window {
  position: absolute;
  top: 56px;
  width: 108px;
  height: 132px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.04)), linear-gradient(180deg, #191c2f, #121321);
  border: 1px solid rgba(255,255,255,.09);
}
.qwv21-window-left { left: 46px; }
.qwv21-window-right { right: 46px; }
.qwv21-pole {
  position: absolute;
  top: 46px;
  width: 10px;
  height: 320px;
  border-radius: 999px;
  background: linear-gradient(180deg, #d7deef, #96a1ba);
  opacity: .9;
}
.qwv21-pole-left { left: 172px; }
.qwv21-pole-right { right: 52px; }
.qwv21-seat {
  position: absolute;
  left: 122px;
  bottom: 88px;
  width: 126px;
  height: 116px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.04)), linear-gradient(180deg, #22253b, #171927);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: inset 0 -14px 32px rgba(0,0,0,.16);
}
.qwv21-character-wrap {
  position: absolute;
  right: 188px;
  top: 54px;
  width: 244px;
  height: 384px;
  z-index: 4;
  animation: objectFloat 5.8s ease-in-out infinite;
}
.qwv21-character-svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 18px 24px rgba(0,0,0,.20));
}
.qwv21-card {
  position: absolute;
  width: 214px;
  padding: 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.04)), rgba(16,14,34,.54);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
  display: flex;
  gap: 12px;
  animation: objectFloat 5.4s ease-in-out infinite;
}
.qwv21-card b {
  display: block;
  font-size: 15px;
  margin-bottom: 5px;
}
.qwv21-card small {
  display: block;
  color: rgba(238,232,255,.62);
  line-height: 1.55;
}
.qwv21-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(139,92,246,.96), rgba(96,165,250,.84));
  box-shadow: 0 12px 28px rgba(139,92,246,.20);
}
.qwv21-icon svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.qwv21-card-a { left: 64px; top: 100px; }
.qwv21-card-b { right: 44px; top: 126px; animation-delay: -1.2s; }
.qwv21-card-c { left: 98px; bottom: 50px; animation-delay: -2s; }
body.light-theme .qwv21-slide2-stage,
body.light-theme .qwv21-card {
  background: rgba(255,255,255,.82);
  color: #17131f;
  border-color: rgba(23,19,31,.11);
}
body.light-theme .qwv21-window,
body.light-theme .qwv21-seat {
  background: linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.55)), linear-gradient(180deg, #edf1ff, #e5ecf7);
  border-color: rgba(23,19,31,.08);
}
body.light-theme .qwv21-pole {
  background: linear-gradient(180deg, #eef2ff, #b9c3d8);
}
body.light-theme .qwv21-card small {
  color: rgba(23,19,31,.58);
}
@media (max-width: 760px) {
  .qwv21-slide2-stage {
    width: 322px;
    height: 360px;
    right: 90px;
  }
  .qwv21-window { width: 88px; height: 110px; top: 54px; }
  .qwv21-window-left { left: 34px; }
  .qwv21-window-right { right: 34px; }
  .qwv21-pole-left { left: 146px; }
  .qwv21-pole-right { right: 38px; }
  .qwv21-seat { left: 102px; width: 118px; height: 104px; bottom: 84px; }
  .qwv21-character-wrap {
    right: 140px;
    top: 72px;
    width: 208px;
    height: 328px;
  }
  .qwv21-card-a { left: 88px; }
  .qwv21-card-b { right: 46px; }
  .qwv21-card-c { left: 96px; }
}
/* ============================================================ */


/* ===================== QWV22 slide-2 refinement ===================== */
.qwv22-slide2-scene {
  display: grid;
  place-items: center;
}
.qwv22-slide2-glow {
  position: absolute;
  width: 410px;
  height: 410px;
  right: 158px;
  top: 108px;
  border-radius: 50%;
  filter: blur(92px);
  background: rgba(139,92,246,.22);
}
.qwv22-slide2-ring {
  position: absolute;
  border-radius: 50%;
  border: 4px solid rgba(196,181,253,.18);
}
.qwv22-slide2-ring-back {
  width: 520px;
  height: 520px;
  right: 96px;
  top: 10px;
  opacity: .34;
}
.qwv22-slide2-ring-front {
  width: 466px;
  height: 466px;
  right: 122px;
  top: 36px;
  border-left-color: transparent;
  animation: ringPulseViolet 5.1s ease-in-out infinite;
}
.qwv22-character-wrap {
  position: absolute;
  right: 182px;
  top: 34px;
  width: 284px;
  height: 438px;
  z-index: 4;
  animation: objectFloat 5.8s ease-in-out infinite;
}
.qwv22-character-svg {
  width: 100%;
  height: 100%;
  display: block;
}
.qwv22-card {
  position: absolute;
  width: 214px;
  padding: 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.04)), rgba(16,14,34,.54);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
  display: flex;
  gap: 12px;
  animation: objectFloat 5.4s ease-in-out infinite;
}
.qwv22-card b {
  display: block;
  font-size: 15px;
  margin-bottom: 5px;
}
.qwv22-card small {
  display: block;
  color: rgba(238,232,255,.62);
  line-height: 1.55;
}
.qwv22-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(139,92,246,.96), rgba(96,165,250,.84));
  box-shadow: 0 12px 28px rgba(139,92,246,.20);
}
.qwv22-icon svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.qwv22-card-a { left: 64px; top: 100px; }
.qwv22-card-b { right: 44px; top: 126px; animation-delay: -1.2s; }
.qwv22-card-c { left: 98px; bottom: 50px; animation-delay: -2s; }
body.light-theme .qwv22-card {
  background: rgba(255,255,255,.84);
  color: #17131f;
  border-color: rgba(23,19,31,.11);
}
body.light-theme .qwv22-card small {
  color: rgba(23,19,31,.58);
}
@media (max-width: 760px) {
  .qwv22-character-wrap {
    right: 136px;
    top: 56px;
    width: 228px;
    height: 352px;
  }
  .qwv22-card-a { left: 88px; }
  .qwv22-card-b { right: 46px; }
  .qwv22-card-c { left: 96px; }
}
/* ================================================================ */


/* ===================== QWV23 slide-2 user character integration ===================== */
.qwv23-slide2-scene {
  display: grid;
  place-items: center;
}
.qwv23-slide2-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  right: 140px;
  top: 100px;
  border-radius: 50%;
  filter: blur(96px);
  background: rgba(139,92,246,.24);
}
.qwv23-slide2-ring {
  position: absolute;
  border-radius: 50%;
  border: 4px solid rgba(196,181,253,.18);
}
.qwv23-slide2-ring-back {
  width: 520px;
  height: 520px;
  right: 96px;
  top: 10px;
  opacity: .34;
}
.qwv23-slide2-ring-front {
  width: 466px;
  height: 466px;
  right: 122px;
  top: 36px;
  border-left-color: transparent;
  animation: ringPulseViolet 5.1s ease-in-out infinite;
}
.qwv23-character-wrap {
  position: absolute;
  right: 170px;
  top: 58px;
  width: 280px;
  height: 430px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: objectFloat 5.8s ease-in-out infinite;
}
.qwv23-character-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 32px rgba(0,0,0,.24));
}
.qwv23-card {
  position: absolute;
  width: 214px;
  padding: 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.04)), rgba(16,14,34,.54);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
  display: flex;
  gap: 12px;
  animation: objectFloat 5.4s ease-in-out infinite;
}
.qwv23-card b {
  display: block;
  font-size: 15px;
  margin-bottom: 5px;
}
.qwv23-card small {
  display: block;
  color: rgba(238,232,255,.62);
  line-height: 1.55;
}
.qwv23-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(139,92,246,.96), rgba(96,165,250,.84));
  box-shadow: 0 12px 28px rgba(139,92,246,.20);
}
.qwv23-icon svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.qwv23-card-a { left: 52px; top: 96px; }
.qwv23-card-b { right: 34px; top: 126px; animation-delay: -1.2s; }
.qwv23-card-c { left: 86px; bottom: 48px; animation-delay: -2s; }
body.light-theme .qwv23-card {
  background: rgba(255,255,255,.84);
  color: #17131f;
  border-color: rgba(23,19,31,.11);
}
body.light-theme .qwv23-card small {
  color: rgba(23,19,31,.58);
}
@media (max-width: 760px) {
  .qwv23-character-wrap {
    right: 124px;
    top: 80px;
    width: 220px;
    height: 336px;
  }
  .qwv23-card-a { left: 78px; top: 104px; }
  .qwv23-card-b { right: 38px; top: 138px; }
  .qwv23-card-c { left: 88px; bottom: 54px; }
}
/* ===================================================================================== */


/* ===================== QWV24 real transparent character fix ===================== */
.qwv23-character-wrap {
  right: 164px;
  top: 52px;
  width: 292px;
  height: 438px;
}
.qwv23-character-img {
  image-rendering: auto;
}
@media (max-width: 760px) {
  .qwv23-character-wrap {
    right: 118px;
    top: 74px;
    width: 226px;
    height: 344px;
  }
}
/* =============================================================================== */


/* ===================== QWV25 fringe cleanup ===================== */
.qwv23-character-wrap {
  right: 160px;
  top: 50px;
  width: 296px;
  height: 440px;
}
.qwv23-character-img {
  filter: drop-shadow(0 18px 32px rgba(0,0,0,.24));
}
@media (max-width: 760px) {
  .qwv23-character-wrap {
    right: 118px;
    top: 74px;
    width: 228px;
    height: 346px;
  }
}
/* ================================================================ */


/* ===================== QWV26 final character polish ===================== */
.qwv23-character-wrap {
  right: 148px;
  top: 46px;
  width: 308px;
  height: 452px;
}
.qwv23-character-img {
  filter: drop-shadow(0 18px 32px rgba(0,0,0,.24));
}
@media (max-width: 760px) {
  .qwv23-character-wrap {
    right: 110px;
    top: 72px;
    width: 236px;
    height: 356px;
  }
}
/* ======================================================================= */


/* ===================== QWV27 visible character update ===================== */
.qwv23-character-wrap {
  right: 178px !important;
  top: 40px !important;
  width: 330px !important;
  height: 478px !important;
}
.qwv23-character-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  filter: drop-shadow(0 20px 34px rgba(0,0,0,.24)) !important;
}
/* optional tiny re-balance so cards still frame character nicely */
.qwv23-card-a { left: 44px !important; top: 96px !important; }
.qwv23-card-b { right: 26px !important; top: 132px !important; }
.qwv23-card-c { left: 82px !important; bottom: 52px !important; }
@media (max-width: 760px) {
  .qwv23-character-wrap {
    right: 128px !important;
    top: 66px !important;
    width: 248px !important;
    height: 370px !important;
  }
}
/* ======================================================================== */


/* ===================== QWV28 internal hair cleanup ===================== */
.qwv23-character-img {
  image-rendering: auto;
}
/* ====================================================================== */


/* ===================== QWV31 third-slide 3D logo ===================== */
.qwv31-logo-stage {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 360px;
  height: 360px;
  transform: translate(-50%, -50%);
  z-index: 4;
  pointer-events: none;
}
.qwv31-logo-aura {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 280px;
  height: 280px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,114,182,.24) 0%, rgba(96,165,250,.14) 44%, rgba(0,0,0,0) 74%);
  filter: blur(20px);
  animation: qwv31AuraPulse 5.4s ease-in-out infinite;
}
.qwv31-logo-pedestal {
  position: absolute;
  left: 50%;
  bottom: 50px;
  width: 188px;
  height: 28px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(0,0,0,.40), rgba(0,0,0,.08) 65%, rgba(0,0,0,0) 100%);
  filter: blur(8px);
  opacity: .75;
}
.qwv31-logo-3d {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 250px;
  height: 184px;
  transform: translate(-50%, -50%);
  animation: qwv31LogoFloat 6s ease-in-out infinite;
  transform-style: preserve-3d;
}
.qwv31-logo-back,
.qwv31-logo-body {
  position: absolute;
  inset: 0;
  border-radius: 38px;
}
.qwv31-logo-back {
  transform: translate3d(12px, 12px, -1px);
  background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 26px 60px rgba(8, 6, 22, .42);
}
.qwv31-logo-body {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: linear-gradient(160deg, rgba(255,255,255,.16), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 22px 65px rgba(22, 14, 44, .38);
  backdrop-filter: blur(16px);
  transform: perspective(1000px) rotateX(9deg) rotateY(-14deg);
  animation: qwv31LogoTurn 10s ease-in-out infinite;
  overflow: hidden;
}
.qwv31-logo-img {
  width: 84%;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 16px rgba(17, 24, 39, .22));
}
.qwv31-logo-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0) 22%, rgba(255,255,255,.18) 42%, rgba(255,255,255,0) 62%);
  transform: translateX(-140%) skewX(-24deg);
  animation: qwv31Shine 4.8s ease-in-out infinite;
}
.qwv31-star {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  margin-top: -4px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.95) 0%, rgba(255,255,255,.88) 40%, rgba(255,255,255,0) 72%);
  box-shadow: 0 0 12px rgba(255,255,255,.65), 0 0 22px rgba(244,114,182,.40);
}
.qwv31-star::before,
.qwv31-star::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,.85);
  border-radius: 999px;
}
.qwv31-star::before { width: 2px; height: 16px; }
.qwv31-star::after { width: 16px; height: 2px; }
.qwv31-star-1 { animation: qwv31StarBurst 5s ease-in-out infinite; --tx: -116px; --ty: -74px; --scale: 1.05; --delay: 0s; }
.qwv31-star-2 { animation: qwv31StarBurst 5.6s ease-in-out infinite; --tx: 126px; --ty: -52px; --scale: .85; --delay: -.8s; animation-delay: -.8s; }
.qwv31-star-3 { animation: qwv31StarBurst 4.8s ease-in-out infinite; --tx: 92px; --ty: 78px; --scale: .92; animation-delay: -1.4s; }
.qwv31-star-4 { animation: qwv31StarBurst 5.2s ease-in-out infinite; --tx: -132px; --ty: 66px; --scale: 1.08; animation-delay: -2.3s; }
.qwv31-star-5 { animation: qwv31StarBurst 4.7s ease-in-out infinite; --tx: 0px; --ty: -126px; --scale: .75; animation-delay: -1s; }
.qwv31-star-6 { animation: qwv31StarBurst 5.3s ease-in-out infinite; --tx: -22px; --ty: 124px; --scale: .8; animation-delay: -2.8s; }
.qwv31-star-7 { animation: qwv31StarBurst 5.9s ease-in-out infinite; --tx: 148px; --ty: 18px; --scale: .72; animation-delay: -3.5s; }
.qwv31-star-8 { animation: qwv31StarBurst 4.9s ease-in-out infinite; --tx: -150px; --ty: -4px; --scale: .68; animation-delay: -2s; }

/* keep the three contact bubbles around the new logo */
.contact-channel-bubble { z-index: 5; }
.bubble-whatsapp { left: 72px; top: 96px; }
.bubble-telegram { right: 82px; bottom: 130px; }
.bubble-mail { left: 96px; bottom: 76px; }

body.light-theme .qwv31-logo-back {
  background: linear-gradient(145deg, rgba(255,255,255,.72), rgba(255,255,255,.46));
  border-color: rgba(84, 57, 180, .10);
  box-shadow: 0 24px 54px rgba(95, 85, 164, .16);
}
body.light-theme .qwv31-logo-body {
  background: linear-gradient(160deg, rgba(255,255,255,.88), rgba(255,255,255,.62));
  border-color: rgba(84, 57, 180, .10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85), 0 20px 55px rgba(95, 85, 164, .14);
}
body.light-theme .qwv31-logo-aura {
  background: radial-gradient(circle, rgba(167,139,250,.20) 0%, rgba(96,165,250,.14) 44%, rgba(255,255,255,0) 74%);
}
body.light-theme .qwv31-star {
  box-shadow: 0 0 10px rgba(99,102,241,.35), 0 0 18px rgba(244,114,182,.20);
}

@keyframes qwv31AuraPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(.94); opacity: .75; }
  50% { transform: translate(-50%, -50%) scale(1.04); opacity: 1; }
}
@keyframes qwv31LogoFloat {
  0%, 100% { transform: translate(-50%, -50%) translateY(0px); }
  50% { transform: translate(-50%, -50%) translateY(-10px); }
}
@keyframes qwv31LogoTurn {
  0%, 100% { transform: perspective(1000px) rotateX(9deg) rotateY(-14deg) rotateZ(-2deg); }
  25% { transform: perspective(1000px) rotateX(7deg) rotateY(-6deg) rotateZ(1deg); }
  50% { transform: perspective(1000px) rotateX(9deg) rotateY(14deg) rotateZ(2deg); }
  75% { transform: perspective(1000px) rotateX(7deg) rotateY(6deg) rotateZ(-1deg); }
}
@keyframes qwv31Shine {
  0%, 12% { transform: translateX(-145%) skewX(-24deg); opacity: 0; }
  18%, 42% { transform: translateX(145%) skewX(-24deg); opacity: 1; }
  50%, 100% { transform: translateX(145%) skewX(-24deg); opacity: 0; }
}
@keyframes qwv31StarBurst {
  0% {
    transform: translate(0,0) scale(.2);
    opacity: 0;
  }
  12% { opacity: 1; }
  50% {
    transform: translate(var(--tx), var(--ty)) scale(var(--scale));
    opacity: .95;
  }
  100% {
    transform: translate(calc(var(--tx) * .78), calc(var(--ty) * .78)) scale(.35);
    opacity: .15;
  }
}

@media (max-width: 760px) {
  .qwv31-logo-stage {
    width: 286px;
    height: 286px;
    top: 51%;
  }
  .qwv31-logo-3d {
    width: 202px;
    height: 150px;
  }
  .qwv31-logo-pedestal {
    width: 156px;
    bottom: 42px;
  }
  .bubble-whatsapp { left: 92px; top: 92px; }
  .bubble-telegram { right: 62px; bottom: 128px; }
  .bubble-mail { left: 98px; bottom: 72px; }
}
/* ==================================================================== */


/* ===================== QWV33 restore original logos from user zip ===================== */
.qwv21-logo-wrap {
  overflow: visible;
}
.qwv21-logo-img,
.qwv33-header-logo {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  image-rendering: auto;
}
.qwv33-header-logo {
  filter: none !important;
  mix-blend-mode: normal !important;
}
.qwv31-logo-body {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.qwv33-slide-logo {
  width: 84%;
  height: auto;
  display: block;
  object-fit: contain;
  image-rendering: auto;
}
.qwv33-slide-logo--light {
  display: none;
}
body.light-theme .qwv33-slide-logo--dark {
  display: none;
}
body.light-theme .qwv33-slide-logo--light {
  display: block;
}

/* third-slide contact bubble cleanup */
.contact-bubbles-scene {
  overflow: hidden;
}
.contact-channel-bubble {
  z-index: 6;
  min-width: 184px;
  justify-content: flex-start;
  padding: 16px 18px;
}
.contact-channel-bubble strong {
  font-size: 15px;
  line-height: 1.1;
  white-space: nowrap;
}
.channel-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 10px 18px rgba(12,7,27,.20);
}
.channel-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.channel-icon-whatsapp {
  color: #fb7185;
  background: linear-gradient(135deg, rgba(251,113,133,.22), rgba(244,114,182,.18));
}
.channel-icon-telegram {
  color: #c084fc;
  background: linear-gradient(135deg, rgba(192,132,252,.22), rgba(96,165,250,.16));
}
.channel-icon-mail {
  color: #f9a8d4;
  background: linear-gradient(135deg, rgba(249,168,212,.22), rgba(251,113,133,.14));
}
.bubble-whatsapp {
  left: 18px;
  top: 122px;
  animation: driftA 6.4s ease-in-out infinite;
}
.bubble-telegram {
  right: 18px;
  top: 122px;
  bottom: auto;
  animation: driftB 6.8s ease-in-out infinite;
}
.bubble-mail {
  left: 50%;
  right: auto;
  top: auto;
  bottom: 54px;
  transform: translateX(-50%);
  animation: driftC 7.1s ease-in-out infinite;
}
body.light-theme .contact-channel-bubble {
  background: rgba(255,255,255,.84);
  border-color: rgba(66,31,102,.10);
}
body.light-theme .channel-icon {
  border-color: rgba(66,31,102,.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7), 0 10px 16px rgba(86,79,154,.08);
}

@media (max-width: 760px) {
  .contact-channel-bubble {
    min-width: 152px;
    padding: 14px 15px;
  }
  .contact-channel-bubble strong {
    font-size: 14px;
  }
  .channel-icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }
  .channel-icon svg {
    width: 16px;
    height: 16px;
  }
  .bubble-whatsapp { left: 16px; top: 104px; }
  .bubble-telegram { right: 16px; top: 104px; bottom: auto; }
  .bubble-mail { bottom: 44px; }
}
/* =================================================================================== */


/* ===================== v34 coordinated theme + new sections ===================== */
body {
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.page-eyebrow,
.text-link,
.service-icon,
.stats span,
.pricing-card.featured .price-box strong,
.pricing-card.featured h3,
.comparison-head h2 strong,
.faq-question:hover span {
  color: rgb(var(--active-rgb));
}
.text-link {
  color: rgb(var(--active-rgb));
}
.service-card:hover {
  border-color: rgba(var(--active-rgb), .34);
  background: rgba(var(--active-rgb), .072);
}
.service-icon {
  color: rgb(var(--active-rgb));
}
.stats {
  border-color: rgba(var(--active-rgb), .24);
  background:
    radial-gradient(circle at 20% 0%, rgba(var(--active-rgb), .18), transparent 40%),
    rgba(255,255,255,.035);
}
body.light-theme .stats {
  background:
    radial-gradient(circle at 20% 0%, rgba(var(--active-rgb), .12), transparent 40%),
    rgba(255,255,255,.56);
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid rgba(var(--active-rgb), .28);
  background: rgba(255,255,255,.03);
  color: var(--text);
  font-weight: 800;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.secondary-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--active-rgb), .5);
  background: rgba(var(--active-rgb), .08);
}
body.light-theme .secondary-btn {
  background: rgba(255,255,255,.74);
}
.qwv33-footer-logo,
.qwv33-header-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* light theme slide-3 stars */
body.light-theme .qwv31-star,
body.light-theme .qwv31-star::before,
body.light-theme .qwv31-star::after {
  background: rgba(23, 19, 31, .78) !important;
  box-shadow: 0 0 12px rgba(23, 19, 31, .22);
}

/* contact icons + button readability */
.contact-card-icon svg,
.contact-bubble-svg,
.channel-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-card-icon {
  color: rgb(var(--active-rgb));
  background: linear-gradient(135deg, rgba(var(--active-rgb), .15), rgba(var(--active-rgb-2), .12));
  border: 1px solid rgba(var(--active-rgb), .18);
}
.contact-form-box .nav-cta {
  color: #ffffff;
}
body.light-theme .contact-form-box .nav-cta {
  color: #17131f;
}

/* comparison section */
.align-center {
  text-align: center;
  max-width: 920px;
  margin: 0 auto 36px;
}
.comparison-head h2 {
  font-size: clamp(38px, 4.5vw, 72px);
  line-height: 1.02;
  letter-spacing: -.055em;
  margin-bottom: 18px;
}
.comparison-head h2 strong {
  font-weight: 700;
}
.comparison-head p,
.comparison-note {
  color: var(--muted);
  line-height: 1.8;
}
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
}
.comparison-card {
  position: relative;
  padding: 34px 36px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03)),
    rgba(255,255,255,.02);
  box-shadow: 0 26px 60px rgba(0,0,0,.12);
}
.comparison-card h3 {
  font-size: 22px;
  margin-bottom: 22px;
}
.comparison-card ul {
  list-style: none;
  display: grid;
  gap: 14px;
}
.comparison-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.6;
  color: var(--text);
}
.comparison-card li::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex: 0 0 22px;
}
.comparison-card li.is-good::before {
  background: radial-gradient(circle at 50% 50%, rgba(16,185,129,.95) 0 28%, transparent 29%), rgba(16,185,129,.16);
  border: 1px solid rgba(16,185,129,.3);
}
.comparison-card li.is-bad::before {
  background: radial-gradient(circle at 50% 50%, rgba(239,68,68,.95) 0 24%, transparent 25%), rgba(239,68,68,.12);
  border: 1px solid rgba(239,68,68,.26);
}
.comparison-card.featured {
  border-color: rgba(var(--active-rgb), .55);
  box-shadow: 0 28px 70px rgba(var(--active-rgb), .12);
}
.comparison-badge {
  position: absolute;
  left: 50%;
  top: -14px;
  transform: translateX(-50%);
  padding: 8px 18px;
  border-radius: 999px;
  background: rgb(var(--active-rgb));
  color: #111;
  font-size: 14px;
  font-weight: 800;
}
.comparison-note {
  max-width: 920px;
  text-align: center;
  margin: 30px auto 0;
}
.comparison-note strong { color: rgb(var(--active-rgb)); }

/* pricing section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.pricing-card {
  position: relative;
  min-height: 100%;
  border-radius: 30px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04)),
    rgba(255,255,255,.02);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pricing-card.featured {
  background: #050507;
  border-color: rgba(var(--active-rgb), .32);
  box-shadow: 0 30px 64px rgba(0,0,0,.18), 0 0 0 1px rgba(var(--active-rgb), .08) inset;
}
body.light-theme .pricing-card.featured {
  background: #101014;
}
.pricing-badge {
  position: absolute;
  left: 50%;
  top: -12px;
  transform: translateX(-50%);
  padding: 8px 18px;
  border-radius: 999px;
  background: rgb(var(--active-rgb));
  color: #111;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.pricing-card h3 { font-size: 21px; }
.pricing-card p { color: var(--muted); line-height: 1.6; }
.price-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 6px 0 6px;
}
.price-old {
  color: var(--muted);
  font-size: 18px;
  text-decoration: line-through;
}
.price-box strong {
  font-size: clamp(30px, 2.2vw, 42px);
  line-height: 1;
}
.price-box small {
  color: var(--muted);
}
.pricing-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}
.pricing-card li {
  position: relative;
  padding-left: 26px;
  line-height: 1.6;
}
.pricing-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  color: #111;
  background: rgb(var(--active-rgb));
}
.pricing-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 18px;
  background: #08080b;
  border: 1px solid rgba(var(--active-rgb), .18);
  color: #fff;
  font-weight: 800;
}
.pricing-card.featured .pricing-cta {
  background: rgb(var(--active-rgb));
  color: #111;
}
body.light-theme .pricing-card:not(.featured) .pricing-cta {
  background: #111;
  color: #fff;
}

/* faq section */
.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}
.faq-copy h2 {
  font-size: clamp(42px, 4vw, 68px);
  line-height: 1.02;
  letter-spacing: -.06em;
  margin-bottom: 22px;
}
.faq-copy p {
  color: var(--muted);
  line-height: 1.8;
}
.faq-list {
  display: grid;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px 0;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 18px;
  text-align: left;
  cursor: pointer;
}
.faq-question i {
  font-style: normal;
  font-size: 34px;
  line-height: 1;
  color: var(--text);
  transition: transform .25s ease, color .25s ease;
}
.faq-item.open .faq-question i {
  transform: rotate(45deg);
  color: rgb(var(--active-rgb));
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
}
.faq-answer p {
  padding: 0 0 22px;
  color: var(--muted);
  line-height: 1.8;
}
.faq-item.open .faq-answer {
  max-height: 240px;
}

@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .comparison-grid,
  .faq-layout,
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .hero-cta-row { width: 100%; }
  .secondary-btn,
  .slide .primary-btn { width: 100%; justify-content: center; }
  .pricing-grid { grid-template-columns: 1fr; }
  .comparison-card,
  .pricing-card { padding: 24px; }
  .comparison-head h2 { font-size: 38px; }
  .faq-copy h2 { font-size: 40px; }
}
/* ============================================================================ */


/* ===================== v35 refinements ===================== */
/* Theme toggle redesign */
.theme-toggle {
  min-width: 116px;
  padding: 0 16px 0 8px;
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.03));
  border-color: rgba(255,255,255,.12);
  box-shadow: 0 10px 26px rgba(0,0,0,.10), inset 0 1px 0 rgba(255,255,255,.06);
}
.theme-toggle-dot {
  background:
    radial-gradient(circle at 35% 30%, #fff 0 18%, rgba(255,255,255,.16) 19% 31%, transparent 32%),
    linear-gradient(135deg, #0f172a, #2563eb 60%, #7c3aed);
  box-shadow: 0 0 18px rgba(37,99,235,.28);
}
body.light-theme .theme-toggle {
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,250,252,.92));
  border-color: rgba(15,23,42,.08);
  box-shadow: 0 10px 24px rgba(15,23,42,.08), inset 0 1px 0 rgba(255,255,255,.95);
}
body.light-theme .theme-toggle-dot {
  background:
    radial-gradient(circle at 36% 34%, #ffffff 0 18%, rgba(255,255,255,.18) 19% 27%, transparent 28%),
    linear-gradient(135deg, #dbeafe, #93c5fd 56%, #3b82f6);
  box-shadow: 0 0 16px rgba(59,130,246,.18);
}
body.light-theme .theme-toggle strong {
  color: #0f172a;
}

/* Slide 1 eyebrow darker blue for readability */
.slide[data-theme="cyan"] .hero-copy .eyebrow {
  color: #3b82f6;
}
body.light-theme .slide[data-theme="cyan"] .hero-copy .eyebrow {
  color: #1d4ed8;
}

/* Mobile hero layout improvements */
@media (max-width: 760px) {
  .hero-slider {
    height: 980px;
    min-height: 980px;
  }
  .hero-content {
    display: block;
    padding-top: 120px;
  }
  .hero-copy {
    position: relative;
    z-index: 10;
    padding-bottom: 24px;
  }
  .hero-copy > p {
    max-width: calc(100% - 6px);
  }
  .hero-visual {
    width: 520px;
    height: 470px;
    top: 470px;
    right: -165px;
    z-index: 4;
    opacity: .98;
  }
  .hero-cta-row {
    position: relative;
    z-index: 12;
    gap: 10px;
    margin-top: 18px;
  }
  .hero-cta-row .primary-btn,
  .hero-cta-row .secondary-btn,
  .slide .primary-btn {
    min-height: 52px;
  }
  .slide[data-theme="violet"] .hero-visual,
  .slide[data-theme="rose"] .hero-visual {
    top: 500px;
  }
}

/* Contact form phone field + visible button text */
.contact-form-box .nav-cta,
.contact-form-box .nav-cta span {
  color: #ffffff;
}
body.light-theme .contact-form-box .nav-cta,
body.light-theme .contact-form-box .nav-cta span {
  color: #0f172a;
}

/* Floating WhatsApp button */
.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 60px;
  padding: 0 18px 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(var(--active-rgb), .98), rgba(var(--active-rgb-2), .90));
  color: #ffffff;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 40px rgba(0,0,0,.22), 0 8px 20px rgba(var(--active-rgb), .25);
  backdrop-filter: blur(12px);
}
.floating-whatsapp:hover {
  transform: translateY(-2px);
}
.floating-whatsapp-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.18);
  flex: 0 0 36px;
}
.floating-whatsapp-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.floating-whatsapp span:last-child {
  font-size: 14px;
  font-weight: 800;
}
body.light-theme .floating-whatsapp {
  color: #0f172a;
  background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(248,250,252,.96));
  border-color: rgba(15,23,42,.08);
  box-shadow: 0 16px 34px rgba(15,23,42,.10), 0 10px 22px rgba(var(--active-rgb), .12);
}
body.light-theme .floating-whatsapp-icon {
  color: rgb(var(--active-rgb));
  background: rgba(var(--active-rgb), .10);
}

/* Featured pricing readability in light theme */
body.light-theme .pricing-card.featured,
body.light-theme .pricing-card.featured h3,
body.light-theme .pricing-card.featured .price-box strong,
body.light-theme .pricing-card.featured li,
body.light-theme .pricing-card.featured .pricing-cta {
  color: #ffffff;
}
body.light-theme .pricing-card.featured p,
body.light-theme .pricing-card.featured .price-old,
body.light-theme .pricing-card.featured .price-box small {
  color: rgba(255,255,255,.72);
}
body.light-theme .pricing-card.featured {
  background: linear-gradient(180deg, #0b0b10, #11131a);
  border-color: rgba(var(--active-rgb), .34);
}
body.light-theme .pricing-card.featured .pricing-badge {
  color: #111;
}
body.light-theme .pricing-card.featured .pricing-cta {
  background: rgb(var(--active-rgb));
  color: #111827;
}

@media (max-width: 760px) {
  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    min-height: 54px;
    padding: 0 16px 0 12px;
  }
  .floating-whatsapp span:last-child {
    font-size: 13px;
  }
}
/* ========================================================= */


/* ===================== v36 mobile-only refinements ===================== */

/* 1) Mobil tema butonu yazısı */
.theme-toggle-label,
.theme-toggle strong {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  line-height: 1;
}
body.light-theme .theme-toggle-label,
body.light-theme .theme-toggle strong {
  color: #0f172a;
}

/* 4) Dark temada butonlar düz siyah değil, glass/blur efektli olsun */
.primary-btn,
.secondary-btn,
.nav-cta,
.pricing-cta,
.floating-whatsapp {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

body:not(.light-theme) .primary-btn,
body:not(.light-theme) .nav-cta {
  background:
    linear-gradient(135deg, rgba(var(--active-rgb), .88), rgba(var(--active-rgb-2), .58)),
    rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.14),
    0 18px 42px rgba(var(--active-rgb), .18);
}

body:not(.light-theme) .secondary-btn,
body:not(.light-theme) .pricing-cta {
  background:
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.035)),
    rgba(10,10,16,.48);
  border: 1px solid rgba(255,255,255,.13);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 16px 34px rgba(0,0,0,.18);
}

body:not(.light-theme) .floating-whatsapp {
  background:
    linear-gradient(135deg, rgba(var(--active-rgb), .82), rgba(var(--active-rgb-2), .58)),
    rgba(12,10,20,.52);
}

/* 5) Yıldız katmanında ani sağa kayma hissini azaltmak için transform izolasyonu */
.star-canvas {
  transform: translate3d(0,0,0) !important;
  will-change: auto;
  contain: layout paint;
}

/* 2-3) Mobilde slider nesnelerini ve yazı alanını yeniden konumlandır */
@media (max-width: 760px) {
  .theme-toggle {
    min-width: auto;
    width: auto;
    height: 42px;
    padding: 0 12px 0 6px;
    gap: 8px;
  }

  .theme-toggle-label,
  .theme-toggle strong {
    display: inline-flex !important;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
    opacity: 1;
    visibility: visible;
  }

  .theme-toggle-dot {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
  }

  .hero-slider {
    height: 940px;
    min-height: 940px;
    overflow: hidden;
  }

  .hero-content {
    width: calc(100% - 32px);
    display: block;
    padding-top: 112px;
  }

  /* Mobilde üstteki kategori/eyebrow metnini gizle */
  .slide .hero-copy .eyebrow {
    display: none !important;
  }

  .hero-copy {
    position: relative;
    z-index: 20;
    max-width: 100%;
    padding-top: 0;
  }

  .hero-copy h1,
  .slide h1 {
    font-size: clamp(40px, 12vw, 54px);
    line-height: 1.02;
    margin-bottom: 18px;
  }

  .hero-copy > p {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.65;
  }

  .hero-cta-row {
    position: relative;
    z-index: 22;
    margin-top: 18px;
  }

  .hero-cta-row .primary-btn,
  .hero-cta-row .secondary-btn,
  .slide .primary-btn {
    width: 100%;
    justify-content: center;
    min-height: 52px;
  }

  /* Genel mobil visual alanı: sağa dayalı durmasın, merkeze çekilsin */
  .hero-visual {
    left: 50% !important;
    right: auto !important;
    top: 430px !important;
    width: min(560px, 118vw) !important;
    height: 470px !important;
    transform: translateX(-50%) !important;
    transform-origin: center center !important;
    z-index: 5;
  }

  /* Slide 1 telefon sahnesi */
  .phone-scene {
    width: min(560px, 116vw) !important;
    height: 470px !important;
    top: 438px !important;
  }

  .phone-shell {
    left: 50% !important;
    right: auto !important;
    top: 34px !important;
    transform: translateX(-50%) rotate(-8deg) scale(.72) !important;
    transform-origin: center center !important;
  }

  .phone-orbit {
    left: 50% !important;
    right: auto !important;
    top: 26px !important;
    transform: translateX(-50%) scale(.82) !important;
  }

  .float-widget {
    transform: scale(.86) !important;
    max-width: 210px;
  }

  .widget-a {
    left: 28px !important;
    top: 76px !important;
  }

  .widget-b {
    right: 18px !important;
    top: 214px !important;
  }

  .widget-c {
    left: 46px !important;
    bottom: 38px !important;
  }

  /* Slide 2 karakter + kartlar: sağa yaslanmayı ve üst üste binmeyi azalt */
  .qwv23-slide2-scene {
    width: min(560px, 118vw) !important;
    height: 470px !important;
    top: 448px !important;
  }

  .qwv23-character-wrap {
    left: 50% !important;
    right: auto !important;
    top: 22px !important;
    width: 230px !important;
    height: 350px !important;
    transform: translateX(-50%) !important;
  }

  .qwv23-slide2-ring-back,
  .qwv23-slide2-ring-front {
    left: 50% !important;
    right: auto !important;
    top: 10px !important;
    transform: translateX(-50%) scale(.78) !important;
  }

  .qwv23-card {
    width: 188px !important;
    padding: 12px !important;
    gap: 10px !important;
    border-radius: 18px !important;
  }

  .qwv23-card b {
    font-size: 13px !important;
  }

  .qwv23-card small {
    font-size: 11px !important;
    line-height: 1.4 !important;
  }

  .qwv23-icon {
    width: 34px !important;
    height: 34px !important;
    flex-basis: 34px !important;
  }

  .qwv23-card-a {
    left: 4px !important;
    top: 34px !important;
  }

  .qwv23-card-b {
    right: 4px !important;
    top: 154px !important;
  }

  .qwv23-card-c {
    left: 34px !important;
    bottom: 20px !important;
  }

  /* Slide 3 3D logo + iletişim baloncukları */
  .contact-bubbles-scene,
  .qwv31-slide3-scene {
    width: min(560px, 118vw) !important;
    height: 470px !important;
    top: 448px !important;
  }

  .qwv31-logo-stage {
    left: 50% !important;
    top: 47% !important;
    width: 250px !important;
    height: 250px !important;
    transform: translate(-50%, -50%) !important;
  }

  .qwv31-logo-3d {
    width: 184px !important;
    height: 136px !important;
  }

  .contact-channel-bubble {
    min-width: 150px !important;
    max-width: 168px !important;
    padding: 12px 13px !important;
    gap: 9px !important;
    border-radius: 18px !important;
  }

  .contact-channel-bubble strong {
    font-size: 13px !important;
  }

  .channel-icon {
    width: 32px !important;
    height: 32px !important;
    flex-basis: 32px !important;
  }

  .bubble-whatsapp {
    left: 10px !important;
    top: 52px !important;
  }

  .bubble-telegram {
    right: 10px !important;
    top: 126px !important;
    bottom: auto !important;
  }

  .bubble-mail {
    left: 50% !important;
    bottom: 34px !important;
    transform: translateX(-50%) !important;
  }

  .slider-index {
    bottom: 18px;
  }
}

@media (max-width: 420px) {
  .hero-slider {
    height: 900px;
    min-height: 900px;
  }

  .hero-visual {
    top: 420px !important;
    width: 122vw !important;
    height: 440px !important;
  }

  .qwv23-card,
  .contact-channel-bubble {
    transform: scale(.9) !important;
  }

  .qwv23-card-a {
    left: -4px !important;
  }

  .qwv23-card-b {
    right: -6px !important;
  }

  .widget-a {
    left: 4px !important;
  }

  .widget-b {
    right: 0 !important;
  }
}
/* ========================================================== */

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  min-height: 18px;
  margin: -2px 0 2px;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(238, 242, 255, 0.72);
}

.form-status:empty {
  display: none;
}

.form-status[data-state="success"] {
  color: #67e8f9;
}

.form-status[data-state="error"] {
  color: #fda4af;
}

.contact-form-box button:disabled {
  cursor: wait;
  opacity: 0.72;
}

body.light-theme .form-status {
  color: rgba(15, 23, 42, 0.68);
}

body.light-theme .form-status[data-state="success"] {
  color: #0891b2;
}

body.light-theme .form-status[data-state="error"] {
  color: #be123c;
}
