:root {
  --accent: #FE4C33;
  --accent-hover: #E3280E;
  --bg-dark: #100E0D;
  --bg-card: #181615;
  --bg-card-hover: #221F1D;
  --border-dark: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(254, 76, 51, 0.3);
  --text-main: #FFFFFF;
  --text-muted: rgba(255, 255, 255, 0.65);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 15px; background: var(--bg-dark); color: var(--text-main); font-family: 'Noto Sans', 'Inter', sans-serif; scroll-padding-top: 80px; }
body { width: 100%; min-height: 100%; line-height: 1.5; overflow-x: hidden; -webkit-font-smoothing: antialiased; background: var(--bg-dark); color: #fff; }
a { text-decoration: none; color: inherit; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
button { background: none; border: none; cursor: pointer; font-family: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container { max-width: 1320px; width: 100%; margin: 0 auto; padding: 0 20px; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 700; border-radius: 10px; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); cursor: pointer; }
.btn-orange { background: linear-gradient(135deg, #FE4C33 0%, #E3280E 50%, #FE4C33 100%); background-size: 200% 200%; color: #fff; padding: 11px 22px; font-size: 15px; box-shadow: 0 4px 20px rgba(254, 76, 51, 0.35); border: 1px solid rgba(254, 76, 51, 0.8); }
.btn-orange:hover { background-position: 100% 50%; transform: translateY(-2px); box-shadow: 0 6px 25px rgba(254, 76, 51, 0.55); color: #fff; }
.btn-black { background: linear-gradient(112deg, #3A3533 0%, #1E1D1D 50%, #2D2A29 100%); color: #fff; padding: 11px 22px; font-size: 15px; border: 1px solid rgba(255, 255, 255, 0.15); }
.btn-black:hover { border-color: rgba(255, 255, 255, 0.35); transform: translateY(-2px); color: #fff; }
.btn-border { border: 1.5px solid rgba(255, 255, 255, 0.3); color: #FFFFFF; padding: 11px 22px; border-radius: 10px; font-size: 15px; font-weight: 700; }
.btn-border:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* UNIVERSAL SECTION HEADERS & CYBER-GLASS CAPSULES */
.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 820px;
  margin: 0 auto 46px auto;
}
.section-head h2 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 14px 0;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}
.section-head p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  max-width: 660px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(254, 76, 51, 0.08);
  border: 1px solid rgba(254, 76, 51, 0.28);
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FE4C33;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 14px rgba(254, 76, 51, 0.14);
  margin-bottom: 16px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  width: fit-content;
}
.section-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FE4C33;
  box-shadow: 0 0 8px #FE4C33;
}
.section-tag:hover {
  background: rgba(254, 76, 51, 0.16);
  border-color: rgba(254, 76, 51, 0.55);
  box-shadow: 0 4px 18px rgba(254, 76, 51, 0.3);
  transform: translateY(-1px);
}

/* HEADER */
header.header-pwa { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 18px 0; background: rgba(16, 14, 13, 0.85); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.header-logo img { width: 170px; height: auto; display: block; }
.header-nav { display: flex; align-items: center; gap: 28px; }
.header-nav a { font-size: 15px; font-weight: 600; color: rgba(255, 255, 255, 0.85); transition: all 0.3s; padding: 4px 0; position: relative; }
.header-nav a:hover { color: var(--accent); }
.header-nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--accent); transition: width 0.3s; }
.header-nav a:hover::after { width: 100%; }
.header-right { display: flex; align-items: center; gap: 14px; }

/* MOBILE BURGER BUTTON */
.mobile-burger-btn {
  display: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  padding: 11px 9px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 990;
}
.mobile-burger-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(254, 76, 51, 0.4);
}
.mobile-burger-btn .burger-line {
  width: 100%;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* MOBILE GLASSMORPHISM DRAWER */
.mobile-drawer-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.mobile-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 350px;
  height: 100vh;
  height: 100dvh;
  background: linear-gradient(180deg, rgba(22, 19, 18, 0.98) 0%, rgba(12, 10, 9, 0.99) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: -15px 0 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(254, 76, 51, 0.1);
  z-index: 1000;
  transform: translateX(105%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
}
.mobile-drawer.active {
  transform: translateX(0);
}
.mobile-drawer-inner {
  padding: 16px 18px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 100%;
  box-sizing: border-box;
}

/* DRAWER TOP BAR (LANG + CLOSE) */
.mobile-drawer-header {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}
.mobile-drawer-header .mobile-lang-segmented {
  flex: 1;
}
.mobile-drawer-close {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
}
.mobile-drawer-close svg {
  width: 18px !important;
  height: 18px !important;
  display: block;
  stroke: currentColor;
}
.mobile-drawer-close:hover, .mobile-drawer-close:active {
  background: rgba(254, 76, 51, 0.18);
  border-color: rgba(254, 76, 51, 0.45);
  color: #FE4C33;
  transform: rotate(90deg);
}

.mobile-lang-segmented {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 4px;
  gap: 4px;
}
.mobile-lang-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 9px;
  font-size: 13.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}
.mobile-lang-tab.active {
  background: #FE4C33;
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(254, 76, 51, 0.4);
}
.mobile-lang-tab:not(.active):hover {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
}
.mobile-lang-flag-svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.mobile-lang-flag-svg svg {
  width: 18px;
  height: 18px;
  display: block;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0;
}
.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  background: transparent;
}
.mobile-nav-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mobile-nav-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  min-height: 34px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.25s ease;
  flex-shrink: 0;
}
.mobile-nav-icon svg {
  width: 18px !important;
  height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}
.mobile-nav-arrow {
  color: rgba(255, 255, 255, 0.25);
  transition: transform 0.25s ease, color 0.25s ease;
  flex-shrink: 0;
  width: 16px !important;
  height: 16px !important;
  display: block;
}
.mobile-nav-link:hover, .mobile-nav-link:active {
  background: rgba(255, 255, 255, 0.04);
  color: #FFFFFF;
  transform: translateX(3px);
}
.mobile-nav-link:hover .mobile-nav-icon, .mobile-nav-link:active .mobile-nav-icon {
  background: rgba(254, 76, 51, 0.16);
  border-color: rgba(254, 76, 51, 0.45);
  color: #FE4C33;
  box-shadow: 0 0 14px rgba(254, 76, 51, 0.3);
}
.mobile-nav-link:hover .mobile-nav-arrow, .mobile-nav-link:active .mobile-nav-arrow {
  color: var(--accent);
  transform: translateX(2px);
}

.mobile-drawer-auth {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-auth-btn {
  width: 100%;
  padding: 12px 18px;
  font-size: 14.5px;
  font-weight: 700;
  border-radius: 10px;
  text-align: center;
  justify-content: center;
  box-sizing: border-box;
}

.mobile-drawer-support {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  padding-top: 10px;
}
.mobile-support-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile-support-link svg {
  width: 16px !important;
  height: 16px !important;
  max-width: 16px !important;
  max-height: 16px !important;
  min-width: 16px !important;
  fill: currentColor;
  flex-shrink: 0;
  display: block;
}
.mobile-support-link:hover {
  color: var(--accent);
  border-color: rgba(254, 76, 51, 0.35);
  background: rgba(254, 76, 51, 0.08);
}

/* LANGUAGE SWITCHER COMPACT */
.language-switcher4 { position: relative; font-family: 'Noto Sans', sans-serif; }
.lang-button4 { display: flex; align-items: center; gap: 7px; background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 10px; padding: 7px 12px; color: #FFFFFF; font-size: 14px; font-weight: 700; transition: all 0.3s; white-space: nowrap; }
.lang-button4:hover { background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.3); }
.lang-flag-round { width: 20px; height: 20px; border-radius: 50%; overflow: hidden; display: flex; flex-shrink: 0; border: 1px solid rgba(255, 255, 255, 0.2); }
.rotatik4 { transition: transform 0.3s; }
.lang-button4.active .rotatik4 { transform: rotate(180deg); }
.lang-dropdown4 { display: none; position: absolute; top: calc(100% + 8px); right: 0; background: #1C1A19; border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 10px; padding: 4px; min-width: 90px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6); z-index: 100; }
.lang-dropdown4.active { display: flex; flex-direction: column; animation: fadikUp 0.25s cubic-bezier(0.16, 1, 0.3, 1); }
.lang-option4 { display: flex; align-items: center; gap: 8px; padding: 7px 10px; border-radius: 6px; font-size: 14px; font-weight: 700; color: rgba(255, 255, 255, 0.9); transition: all 0.2s; white-space: nowrap; }
.lang-option4:hover { background: rgba(254, 76, 51, 0.18); color: #FE4C33; }

@keyframes fadikUp { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }

/* SCREEN 1: HERO */
.hero { position: relative; padding-top: 135px; padding-bottom: 60px; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: 0; left: 25%; width: 550px; height: 550px; background: radial-gradient(circle, rgba(254, 76, 51, 0.14) 0%, rgba(16, 14, 13, 0) 70%); pointer-events: none; z-index: 0; }
.hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; position: relative; z-index: 1; }

.hero-left { display: flex; flex-direction: column; gap: 20px; max-width: 620px; padding-top: 14px; }

/* ENHANCED PROPORTIONAL H1 */
.hero-left h1 { font-family: 'Noto Sans', sans-serif; font-size: 38px; font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; color: #FFFFFF; }
.hero-left h1 .highlight-big { font-size: 58px; font-weight: 900; line-height: 1.05; letter-spacing: -0.03em; background: linear-gradient(135deg, #FE4C33 0%, #E3280E 45%, #FF7544 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; display: block; margin: 4px 0; filter: drop-shadow(0 2px 14px rgba(254, 76, 51, 0.25)); }
.hero-left h1 .h1-subtext { font-size: 32px; font-weight: 700; color: rgba(255, 255, 255, 0.9); display: block; }

/* HERO SUBTITLE WITH EDITORIAL GAP */
.hero-sub { display: flex; flex-direction: column; gap: 10px; font-size: 15.5px; font-weight: 400; line-height: 1.6; color: var(--text-muted); }
.hero-sub p { margin: 0; }

/* HERO BTNS ROW */
.hero_left-btns { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero_left-btnCont { display: flex; align-items: center; gap: 12px; }
.reg-btn, .log-btn { padding: 12px 24px; border-radius: 10px; font-size: 15px; }

.hero-left-btnRecomend { display: flex; align-items: center; gap: 10px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 10px; padding: 9px 14px; }
.rec-score { font-size: 18px; font-weight: 800; color: #FE4C33; letter-spacing: -0.02em; white-space: nowrap; }
.rec-text { font-size: 13px; font-weight: 500; line-height: 1.25; color: rgba(255, 255, 255, 0.7); }

/* CTA PLASH: COMPACT 420PX, SNUG & CLEAN */
.hero-left-plash { width: 100%; max-width: 420px; background: linear-gradient(112deg, #252220 0%, #171514 100%); border: 1px solid rgba(255, 255, 255, 0.12); padding: 14px 18px; border-radius: 14px; display: flex; align-items: center; justify-content: space-between; position: relative; overflow: hidden; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45); }
.hero-plash-left { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; z-index: 2; }
.plash-title { font-size: 17px; font-weight: 800; color: #FFFFFF; letter-spacing: -0.01em; white-space: nowrap; }
.plash-btn { padding: 7px 16px; font-size: 13px; font-weight: 700; border-radius: 8px; white-space: nowrap; }

.hero-plash-right { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; z-index: 1; }
.plash-slots-iso { display: flex; gap: 5px; transform: rotate(-6deg) skewX(-4deg); filter: drop-shadow(0 0 12px rgba(254, 76, 51, 0.35)); margin-top: -3px; margin-bottom: 3px; }
.plash-slot-thumb { width: 36px; height: 36px; border-radius: 8px; overflow: hidden; border: 1.5px solid rgba(255, 255, 255, 0.25); box-shadow: 0 4px 10px rgba(0,0,0,0.5); }
.plash-slot-thumb img { width: 100%; height: 100%; object-fit: cover; }
.plash-metrics-bottom { font-size: 10.5px; font-weight: 600; color: rgba(255, 255, 255, 0.6); letter-spacing: 0.01em; white-space: nowrap; text-align: right; margin-top: 2px; }

/* HERO RIGHT: Continuous Swiper Carousel */
.hero-right-container { position: relative; width: 100%; height: 560px; overflow: hidden; border-radius: 24px; margin-top: -14px; }
.hero-right-container::before { content: ''; position: absolute; top: 0; left: 0; width: 60px; height: 100%; background: linear-gradient(90deg, #100E0D 0%, rgba(16, 14, 13, 0) 100%); z-index: 10; pointer-events: none; }
.hero-right-container::after { content: ''; position: absolute; top: 0; right: 0; width: 60px; height: 100%; background: linear-gradient(270deg, #100E0D 0%, rgba(16, 14, 13, 0) 100%); z-index: 10; pointer-events: none; }

.hero-right.swiper { width: 100%; height: 100%; }
.hero__right-inner { transition-timing-function: linear !important; display: flex; align-items: center; }
.hero-right-elem.swiper-slide { width: 280px; height: 520px; flex-shrink: 0; border-radius: 26px; overflow: hidden; border: 2px solid rgba(255, 255, 255, 0.1); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5); background: #161413; display: flex; align-items: center; justify-content: center; }
.hero-right-elem img { width: 100%; height: 100%; object-fit: cover; }

/* SCREEN 2: PREIMUSH / PLATFORM CAPABILITIES (5-CARD INTERACTIVE GRID) */
.preimush {
  position: relative;
  padding: 100px 0;
  background: #141211;
}
.preimush::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 1100px;
  height: 1px;
  background: radial-gradient(50% 100% at 50% 50%, rgba(254, 76, 51, 0.35) 0%, rgba(255, 255, 255, 0.08) 50%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}
.preimush-inner { display: flex; flex-direction: column; gap: 40px; }

.preimush-head-row { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.preimush-title-area { max-width: 720px; }
.preimush-title-area h2 { font-size: 38px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 10px; color: #FFFFFF; }
.preimush-title-area p { font-size: 16px; color: var(--text-muted); line-height: 1.6; margin: 0; }

.preimush-rating-badge { display: inline-flex; align-items: center; gap: 14px; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 14px; padding: 10px 18px; }
.rating-stars { display: flex; align-items: center; gap: 8px; color: #FE4C33; font-size: 16px; font-weight: 800; }
.rating-reviews { font-size: 14px; font-weight: 500; color: rgba(255, 255, 255, 0.65); white-space: nowrap; }

/* 5-CARD GRID — выровнено: Konstrukt↔GEO, Analitik↔CAPI+Play */
.preimush-grid { display: flex; flex-direction: column; gap: 24px; }
.preimush-row-top { display: grid; grid-template-columns: 1.5fr 2fr; gap: 24px; }
.preimush-row-bottom { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 24px; }

/* COMMON CARD STYLES */
.preimush-card { background: var(--bg-card); border: 1px solid var(--border-dark); border-radius: 24px; padding: 32px; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35); }
.preimush-card:hover { transform: translateY(-4px); border-color: rgba(254, 76, 51, 0.35); background: var(--bg-card-hover); box-shadow: 0 16px 45px rgba(0, 0, 0, 0.5), 0 0 25px rgba(254, 76, 51, 0.12); }

.card-head { display: flex; flex-direction: column; gap: 8px; z-index: 2; position: relative; }
.card-head h3 { font-size: 24px; font-weight: 800; color: #FFFFFF; letter-spacing: -0.01em; margin: 0; }
.card-head p { font-size: 14.5px; font-weight: 400; color: var(--text-muted); line-height: 1.5; margin: 0; }

/* CARD 1: KONSTRUKT */
.card-konstrukt { min-height: 400px; padding-bottom: 0; }
.konstrukt-canvas { position: relative; width: 100%; height: 340px; margin-top: -10px; overflow: hidden; display: flex; align-items: flex-start; justify-content: center; background: transparent; border-radius: 0 0 22px 22px; }
.konstrukt-image { position: relative; width: 120%; height: 100%; display: flex; align-items: flex-start; justify-content: center; margin-left: -10%; margin-top: -20px; }
.konstrukt-image .konstrukt-bg { width: 100%; height: auto; display: block; }
.konstrukt-image .mobile { width: 100%; height: auto; position: absolute; top: 0%; right: -1%; z-index: 2; animation: dvizh 4.5s ease alternate-reverse infinite; }
.konstrukt-image .appheader { width: 100%; position: absolute; top: 6%; left: -10%; z-index: 3; animation: dvizh 4.5s ease alternate infinite; }
.konstrukt-image .s1 { width: 100%; position: absolute; top: 6.2%; left: -10.5%; z-index: 4; animation: dvizh 3s ease-in-out infinite; }
.konstrukt-image .s2 { width: 100%; position: absolute; top: 6.2%; left: -10%; z-index: 5; animation: dvizh 3s ease-in-out infinite; animation-delay: 0.5s; }
.konstrukt-image .s3 { width: 100%; position: absolute; top: 6.2%; left: -10%; z-index: 6; animation: dvizh 3s ease-in-out infinite; animation-delay: 1s; }
.konstrukt-image .s4 { width: 100%; position: absolute; top: 6.2%; left: -10%; z-index: 7; animation: dvizh 3s ease-in-out infinite; animation-delay: 1.5s; }
.konstrukt-image .s5 { width: 100%; position: absolute; top: 6.2%; left: -10%; z-index: 8; animation: dvizh 3s ease-in-out infinite; animation-delay: 2s; }
.konstrukt-image .s6 { width: 100%; position: absolute; top: 6.2%; left: -9%; z-index: 9; animation: dvizh 3s ease-in-out infinite; animation-delay: 2.5s; }

/* CARD 2: ANALITIK */
.card-analitik { min-height: 400px; overflow: hidden; padding-bottom: 0; }
.analitik-anim { position: relative; width: 100%; height: 300px; margin: 10px auto 0; overflow: hidden; border-radius: 0 0 22px 22px; box-shadow: none; }
.analitik-anim img#analitik-img { width: 100%; height: 100%; position: absolute; top: 0; left: 0; z-index: 1; border-radius: 14px; object-fit: cover; object-position: top left; }
.analitik-anim video#analitik-video { width: 100%; height: 100%; position: absolute; top: 0; left: 0; z-index: 2; border-radius: 14px; object-fit: cover; object-position: top left; }

/* CARD 3: GEO */
.card-geo { min-height: 310px; padding-bottom: 0; background: linear-gradient(125deg, #221E1C 0%, #151312 100%); }
.geo-interactive { position: relative; width: 100%; height: 160px; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; padding-bottom: 0; margin-top: 6px; }
.geo-lang-header { position: absolute; top: 6px; display: flex; align-items: center; gap: 10px; z-index: 4; }
.geo-lang-badge { font-size: 11px; font-weight: 700; color: var(--accent); background: rgba(254, 76, 51, 0.15); border: 1px solid rgba(254, 76, 51, 0.3); border-radius: 6px; padding: 3px 8px; letter-spacing: 0.08em; text-transform: uppercase; }
.geo-lang-name { font-size: 26px; font-weight: 900; color: #FFFFFF; letter-spacing: 0.04em; text-transform: uppercase; text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6); }
.geo-watermark { font-family: 'Noto Sans', sans-serif; font-size: 84px; font-weight: 900; color: rgba(254, 76, 51, 0.07); filter: blur(1.5px); letter-spacing: -0.02em; user-select: none; transition: all 0.4s ease; text-transform: uppercase; line-height: 1; position: absolute; top: 0; pointer-events: none; }
.geo-flags-row { display: flex; align-items: center; z-index: 3; position: relative; margin-top: 40px; padding-bottom: 16px; }
.geo-flag-bubble { width: 54px; height: 54px; border-radius: 50%; overflow: hidden; border: 2.5px solid rgba(255, 255, 255, 0.35); box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6); margin-left: -16px; cursor: pointer; transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1); background: #1A1817; flex-shrink: 0; }
.geo-flag-bubble:first-child { margin-left: 0; }
.geo-flag-bubble svg { width: 100%; height: 100%; object-fit: cover; }
.geo-flag-bubble:hover, .geo-flag-bubble.active { transform: translateY(-12px) scale(1.15); border-color: var(--accent); box-shadow: 0 10px 25px rgba(254, 76, 51, 0.45); z-index: 20 !important; }

/* CARD 4: INTEGRAC (CAPI & TRACKERS) */
.card-integrac { min-height: 310px; padding-bottom: 0; background: linear-gradient(135deg, #102B5E 0%, #0F1D38 100%); border-color: rgba(30, 94, 218, 0.3); }
.card-integrac:hover { border-color: rgba(30, 94, 218, 0.6); box-shadow: 0 16px 45px rgba(0, 0, 0, 0.5), 0 0 25px rgba(30, 94, 218, 0.25); }
.integrac-stage { position: relative; width: 100%; height: 170px; display: flex; flex-direction: column; align-items: center; justify-content: center; margin-top: 8px; }
.integr-floating-img { width: 100%; max-width: 200px; animation: verxniz 3s ease-in-out alternate infinite; z-index: 2; }
.integr-shadow-img { width: 100%; max-width: 155px; animation: shadow 3s ease-in-out alternate infinite; z-index: 1; margin-top: -15px; }

/* CARD 5: IMPORT GOOGLE PLAY */
.card-import { min-height: 310px; padding-bottom: 0; }
.import-stage { position: relative; width: 100%; height: 210px; display: flex; align-items: center; justify-content: center; margin-top: 8px; overflow: hidden; }
.import-phone-wrapper { position: relative; display: flex; align-items: center; justify-content: center; }
.import-phone-frame { width: 200px; height: auto; z-index: 2; filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.6)); }
.import-store-badge { position: absolute; right: -24px; top: 35%; background: rgba(25, 23, 22, 0.9); border: 1px solid rgba(255, 255, 255, 0.25); border-radius: 12px; padding: 10px 16px; display: flex; align-items: center; gap: 8px; color: #fff; font-size: 14px; font-weight: 700; z-index: 3; backdrop-filter: blur(10px); transition: all 0.3s ease; box-shadow: 0 8px 24px rgba(0,0,0,0.6); }
.card-import:hover .import-store-badge { transform: scale(1.08) translateX(-4px); border-color: var(--accent); }

/* KEYFRAME ANIMATIONS */
@keyframes dvizh {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

@keyframes verxniz {
  0% { transform: translateY(6px); }
  100% { transform: translateY(-10px); }
}

@keyframes shadow {
  0% { transform: scale(1.08); opacity: 0.8; filter: blur(1px); }
  100% { transform: scale(0.85); opacity: 0.4; filter: blur(5px); }
}

/* SCREEN 3: Rental Hero & Interactive Slots Hub (Variant 1) */
.rental-section {
  position: relative;
  padding: 100px 0;
  background: var(--bg-dark);
  color: #fff;
  overflow: hidden;
}
.rental-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 1100px;
  height: 1px;
  background: radial-gradient(50% 100% at 50% 50%, rgba(255, 255, 255, 0.12) 0%, rgba(254, 76, 51, 0.2) 40%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
  z-index: 1;
}
.rental-section::after {
  content: '';
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(254, 76, 51, 0.16) 0%, rgba(16, 14, 13, 0) 70%);
  z-index: 1;
  pointer-events: none;
}
.rental-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; position: relative; z-index: 2; }
.rental-left h2 { font-size: 42px; font-weight: 800; line-height: 1.15; margin-bottom: 16px; color: #fff; }
.rental-left h3.rental-sub { font-size: 22px; font-weight: 600; color: #FE4C33; margin-bottom: 20px; }
.rental-left p { font-size: 16px; color: var(--text-muted); line-height: 1.6; margin-bottom: 30px; }

.rental-pills { display: flex; flex-direction: column; gap: 14px; margin-bottom: 35px; }
.rental-pill { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 500; color: #ECECEC; }
.rental-pill::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; box-shadow: 0 0 10px var(--accent); }

/* SLOTS HUB STAGE */
.slots-hub-stage {
  position: relative;
  width: 100%;
  max-width: 620px;
  height: 540px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Central Metrics Core */
.slots-hub-core {
  position: relative;
  z-index: 4;
  background: linear-gradient(135deg, rgba(32, 28, 26, 0.95), rgba(20, 18, 17, 0.92));
  border: 1px solid rgba(254, 76, 51, 0.35);
  border-radius: 24px;
  padding: 22px 28px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 35px rgba(254, 76, 51, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
  min-width: 210px;
}
.slots-hub-core:hover {
  transform: scale(1.04);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8), 0 0 50px rgba(254, 76, 51, 0.3);
  border-color: var(--accent);
}
.hub-core-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(254, 76, 51, 0.22) 0%, rgba(254, 76, 51, 0) 70%);
  pointer-events: none;
  z-index: -1;
}
.hub-core-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.06);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.hub-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 8px #10B981;
  animation: hubPulse 2s infinite ease-in-out;
}
@keyframes hubPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}
.hub-core-metric {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 10px;
}
.hub-metric-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hub-metric-val {
  font-size: 26px;
  font-weight: 900;
  background: linear-gradient(135deg, #FFF 20%, #FE4C33 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}
.hub-core-sub {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}
.hub-core-sub svg {
  color: var(--accent);
}

/* Glassmorphism Slot Cards - 100% Uncropped Square PWA Icons */
.slot-hub-card {
  position: absolute;
  width: 160px;
  background: linear-gradient(145deg, rgba(28, 25, 24, 0.95), rgba(15, 13, 12, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  overflow: hidden;
  padding: 0;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s, box-shadow 0.35s;
  cursor: pointer;
  z-index: 3;
}
.slot-hub-card:hover {
  transform: scale(1.08) translateY(-6px) !important;
  border-color: var(--accent);
  box-shadow: 0 20px 45px rgba(254, 76, 51, 0.4);
  z-index: 10;
  animation-play-state: paused;
}
.slot-card-thumb {
  position: relative;
  width: 100%;
  height: 120px;
  overflow: hidden;
  background: radial-gradient(circle at center, rgba(42, 36, 34, 0.55) 0%, rgba(14, 12, 11, 0.95) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  box-sizing: border-box;
}
.slot-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.55));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.slot-hub-card:hover .slot-card-thumb img {
  transform: scale(1.08);
}
.slot-badge-cr {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(14, 12, 11, 0.85);
  border: 1px solid rgba(254, 76, 51, 0.55);
  color: #FE4C33;
  font-size: 10.5px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 7px;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.6);
  letter-spacing: 0.02em;
  z-index: 2;
}
.slot-card-body {
  padding: 10px 12px 12px;
  background: rgba(18, 15, 14, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}
.slot-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.slot-rating {
  font-size: 11.5px;
  font-weight: 700;
  color: #FBBF24;
  flex-shrink: 0;
}

/* Staggered Non-overlapping Positions & Smooth GPU Animations */
.slot-pos-1 { top: 8px; left: 12px; animation: floatGPU 5.6s ease-in-out infinite; }
.slot-pos-2 { top: 8px; right: 12px; animation: floatGPU 6.2s ease-in-out 0.8s infinite; }
.slot-pos-3 { top: 195px; left: -14px; animation: floatGPU 5.8s ease-in-out 1.6s infinite; }
.slot-pos-4 { top: 195px; right: -14px; animation: floatGPU 6.4s ease-in-out 2.4s infinite; }
.slot-pos-5 { bottom: 8px; left: 16px; animation: floatGPU 5.4s ease-in-out 3.2s infinite; }
.slot-pos-6 { bottom: 8px; right: 16px; animation: floatGPU 6.0s ease-in-out 4.0s infinite; }

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

/* SCREEN 4 & 5: Platform & Constructor Deep Dive */
.platform-section {
  position: relative;
  padding: 100px 0;
  background: #141211;
  overflow: hidden;
}
.platform-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  max-width: 1200px;
  height: 1px;
  background: radial-gradient(50% 100% at 50% 50%, rgba(254, 76, 51, 0.4) 0%, rgba(255, 255, 255, 0.08) 50%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}
.platform-section::after {
  content: '';
  position: absolute;
  top: 30%;
  right: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(254, 76, 51, 0.09) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  z-index: 0;
}
.platform-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: 32px;
  padding: 50px;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  position: relative;
  overflow: visible;
  transition: border-color 0.3s;
}
.platform-card:hover {
  border-color: rgba(254, 76, 51, 0.35);
}
.platform-card.card-reversed {
  grid-template-columns: 1.15fr 1fr;
  margin-bottom: 0;
}

.platform-info h2 { font-size: 36px; font-weight: 800; margin-bottom: 16px; color: #fff; line-height: 1.2; }
.platform-info p { font-size: 15px; color: var(--text-muted); line-height: 1.6; margin-bottom: 24px; }
.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.4; }
.check-item svg { width: 18px; height: 18px; fill: var(--accent); flex-shrink: 0; margin-top: 2px; }

/* 3D SHOWCASE WITH BRANDED MASCOT */
.platform-showcase {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-screen-wrap {
  position: relative;
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.65), 0 0 30px rgba(254, 76, 51, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0E0C0B;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s, border-color 0.4s;
}
.platform-card:hover .showcase-screen-wrap {
  transform: translateY(-4px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.75), 0 0 40px rgba(254, 76, 51, 0.22);
  border-color: rgba(254, 76, 51, 0.4);
}

.showcase-screen-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Branded 3D Mascot Integration */
.showcase-mascot {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.7));
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  animation: mascotFloat 5.5s ease-in-out infinite;
}
.platform-card:hover .showcase-mascot {
  transform: scale(1.06) translateY(-8px) !important;
}

.platform-mascot {
  right: -58px;
  bottom: -40px;
  width: 250px;
  max-width: 45%;
}

.constr-mascot {
  right: -35px;
  bottom: -40px;
  width: 310px;
  max-width: 54%;
  animation-delay: 1.5s;
}

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

/* SCREEN 6: "И еще кое-что..." (2x2 Apple-Style Feature Grid) */
.anymore-section {
  position: relative;
  padding: 100px 0;
  background: var(--bg-dark);
  overflow: hidden;
}
.anymore-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 1100px;
  height: 1px;
  background: radial-gradient(50% 100% at 50% 50%, rgba(255, 255, 255, 0.12) 0%, rgba(254, 76, 51, 0.22) 40%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}
.anymore-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 50px;
}
.anymore-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: 28px;
  padding: 32px 36px;
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 28px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s, box-shadow 0.4s;
}
.anymore-card:hover {
  border-color: rgba(254, 76, 51, 0.45);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 35px rgba(254, 76, 51, 0.12);
}
.anymore-media {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.anymore-media img {
  width: 100%;
  max-width: 210px;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.6));
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.anymore-card:hover .anymore-media img {
  transform: scale(1.08) translateY(-4px);
}
.anymore-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.anymore-num {
  font-size: 13px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 2px;
}
.anymore-body h3 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin: 0;
}
.anymore-body p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* SCREEN 7: Video Review */
.video-section {
  position: relative;
  padding: 100px 0;
  background: #141211;
  text-align: center;
  overflow: hidden;
}
.video-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  max-width: 1000px;
  height: 1px;
  background: radial-gradient(50% 100% at 50% 50%, rgba(254, 76, 51, 0.4) 0%, rgba(255, 255, 255, 0.08) 50%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}
.video-section::after {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(circle, rgba(254, 76, 51, 0.07) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  z-index: 0;
}
.video-wrapper {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 48px auto 0 auto;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 50px rgba(254, 76, 51, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #000;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s, border-color 0.4s;
}
.video-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.9), 0 0 60px rgba(254, 76, 51, 0.25);
  border-color: rgba(254, 76, 51, 0.4);
}
.video-wrapper iframe {
  width: 100%;
  height: 518px;
  display: block;
  border: none;
}

/* SCREEN 8: Pricing Section */
.price-section {
  position: relative;
  padding: 100px 0;
  background: var(--bg-dark);
  color: #fff;
  overflow: hidden;
}
.price-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 1100px;
  height: 1px;
  background: radial-gradient(50% 100% at 50% 50%, rgba(254, 76, 51, 0.35) 0%, rgba(255, 255, 255, 0.08) 50%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}
.price-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; margin-bottom: 40px; }
.price-card { background: var(--bg-card); border: 1px solid var(--border-dark); border-radius: 24px; padding: 36px; display: flex; flex-direction: column; transition: all 0.3s; position: relative; }
.price-card.featured { border-color: var(--accent); box-shadow: 0 10px 40px rgba(254,76,51,0.25); background: #1F1B1A; }
.price-card-badge { position: absolute; top: -12px; right: 24px; background: var(--accent); color: #fff; padding: 4px 14px; border-radius: 20px; font-size: 12px; font-weight: 700; }
.price-card h3 { font-size: 24px; font-weight: 700; margin-bottom: 8px; color: #fff; }
.price-tier-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
.price-rate { font-size: 48px; font-weight: 900; color: var(--accent); line-height: 1; margin-bottom: 4px; }
.price-rate span { font-size: 16px; font-weight: 500; color: rgba(255,255,255,0.6); }
.price-countries { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; margin-top: 20px; font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.price-countries strong { color: #fff; display: block; margin-bottom: 4px; }

.price-notice { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 20px 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.price-notice-text { font-size: 15px; color: rgba(255,255,255,0.85); }
.price-notice-text strong { color: var(--accent); }

/* SCREEN 9: Sleek Graphite CTA Banner */
.brutalist-cta-section {
  position: relative;
  padding: 90px 0;
  background: #141211;
  overflow: hidden;
}
.brutalist-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  max-width: 1000px;
  height: 1px;
  background: radial-gradient(50% 100% at 50% 50%, rgba(254, 76, 51, 0.35) 0%, rgba(255, 255, 255, 0.08) 50%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}
.brutalist-banner {
  background: linear-gradient(135deg, rgba(34, 30, 28, 0.95) 0%, rgba(18, 16, 15, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 36px;
  padding: 50px 64px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.65), 0 0 40px rgba(254, 76, 51, 0.12);
}
.brutalist-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(254, 76, 51, 0.15) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
  z-index: 1;
}
.brutalist-text {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.brutalist-text h2 {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: #fff;
}
.brutalist-text h3 {
  font-size: 24px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
}
.brutalist-banner img {
  position: relative;
  z-index: 2;
  max-height: 290px;
  width: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.7));
  transition: transform 0.4s ease;
}
.brutalist-banner:hover img {
  transform: scale(1.05) translateY(-4px);
}

/* SCREEN 10: FAQ (Dark Accordion) */
.faq-section {
  position: relative;
  padding: 100px 0;
  background: var(--bg-dark);
  overflow: hidden;
}
.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 1100px;
  height: 1px;
  background: radial-gradient(50% 100% at 50% 50%, rgba(255, 255, 255, 0.12) 0%, rgba(254, 76, 51, 0.22) 40%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}
.faq-grid { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border-dark); border-radius: 16px; overflow: hidden; transition: all 0.3s; }
.faq-item:hover { border-color: rgba(255, 255, 255, 0.15); }
.faq-question { padding: 22px 28px; font-size: 17px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: space-between; user-select: none; color: #fff; }
.faq-icon { width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 400; transition: transform 0.3s; color: var(--accent); }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 28px 22px; font-size: 15px; line-height: 1.6; color: var(--text-muted); border-top: 1px solid rgba(255, 255, 255, 0.05); padding-top: 16px; }
.faq-item.active .faq-answer { display: block; }

.faq-footer-support { text-align: center; margin-top: 40px; font-size: 15px; color: var(--text-muted); }
.faq-footer-support a { color: var(--accent); font-weight: 700; }

/* FOOTER & SILO MESH */
footer.footer-pwa {
  position: relative;
  background: #0A0908;
  color: #fff;
  padding-top: 90px;
  padding-bottom: 40px;
  overflow: hidden;
}
footer.footer-pwa::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1300px;
  height: 1px;
  background: radial-gradient(50% 100% at 50% 50%, rgba(254, 76, 51, 0.4) 0%, rgba(255, 255, 255, 0.08) 50%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}
.footer-top-cta { text-align: center; max-width: 600px; margin: 0 auto 60px; }
.footer-top-cta h2 { font-size: 36px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 12px; }
.footer-top-cta p { font-size: 16px; color: var(--text-muted); margin-bottom: 26px; }
.footer-top-cta .btn-orange {
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(254, 76, 51, 0.35);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.footer-top-cta .btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(254, 76, 51, 0.55), 0 0 30px rgba(254, 76, 51, 0.4);
}

.footer-nav-panel {
  position: relative;
  padding-top: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-nav-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: 1px;
  background: radial-gradient(50% 100% at 50% 50%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.03) 60%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}
.footer-logo img { width: 170px; }
.footer-anchors { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-anchors a { font-size: 14px; color: var(--text-muted); font-weight: 500; transition: color 0.25s; }
.footer-anchors a:hover { color: var(--accent); }

.fbm-ecosystem-silo {
  position: relative;
  margin-top: 40px;
  padding-top: 32px;
  text-align: center;
}
.fbm-ecosystem-silo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 900px;
  height: 1px;
  background: radial-gradient(50% 100% at 50% 50%, rgba(254, 76, 51, 0.25) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}
.silo-title { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.6); margin-bottom: 14px; display: inline-block; transition: color 0.3s; }
.silo-title:hover { color: var(--accent); }
.silo-links { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; font-size: 14px; color: rgba(255,255,255,0.65); }
.silo-links a { color: rgba(255,255,255,0.85); font-weight: 500; transition: color 0.25s; }
.silo-links a:hover { color: var(--accent); }
.footer-copyright { margin-top: 32px; text-align: center; font-size: 13px; color: rgba(255,255,255,0.4); letter-spacing: 0.01em; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-inner, .rental-grid { grid-template-columns: 1fr; gap: 40px; }
  .platform-card, .platform-card.card-reversed { grid-template-columns: 1fr; gap: 36px; padding: 36px 24px; overflow: visible; }
  .platform-mascot { right: -25px; bottom: -28px; width: 200px; }
  .constr-mascot { right: -20px; bottom: -30px; width: 240px; }
  .preimush-row-top, .preimush-row-bottom { grid-template-columns: 1fr; }
  .preimush-head-row { flex-direction: column; align-items: flex-start; }
  .anymore-grid { grid-template-columns: 1fr; gap: 20px; }
  .anymore-card { grid-template-columns: 180px 1fr; padding: 26px 28px; }
  .price-cards { grid-template-columns: 1fr; }
  .header-nav { display: none; }
  .header-desktop-item { display: none !important; }
  .mobile-burger-btn { display: flex; }
  .mobile-drawer-overlay { display: block; }
  .hero-right-container { height: 480px; }
  .slots-hub-stage { max-width: 560px; height: 500px; }
  .slot-hub-card { width: 150px; }
  .slot-card-thumb { height: 90px; }
  .slot-pos-3 { left: -4px; }
  .slot-pos-4 { right: -4px; }
}
@media (max-width: 768px) {
  .header-pwa { padding: 14px 0; }
  .header-logo img { width: 148px; }
  .header-right { gap: 10px; }
  .header-cta-btn { padding: 8px 15px; font-size: 13.5px; }

  .hero-left h1 { font-size: 30px; }
  .hero-left h1 .highlight-big { font-size: 46px; }
  .hero-left h1 .h1-subtext { font-size: 24px; }
  
  .hero_left-btns { width: 100%; gap: 10px; }
  .hero-left-btnRecomend { width: 100%; justify-content: center; }

  .hero-left-plash { max-width: 100%; padding: 12px 14px; }
  .plash-slot-thumb { width: 32px; height: 32px; border-radius: 7px; }
  .plash-metrics-bottom { font-size: 9.5px; }

  .preimush-title-area h2 { font-size: 28px; }
  .preimush-card { padding: 24px; }
  .card-head h3 { font-size: 20px; }
  .geo-watermark { font-size: 50px; }
  .geo-flag-bubble { width: 44px; height: 44px; margin-left: -12px; }
  .card-konstrukt, .card-analitik { min-height: 400px; }

  .section-head { margin-bottom: 32px; }
  .section-head h2 { font-size: 28px; }
  .preimush, .rental-section, .platform-section, .anymore-section, .price-section, .brutalist-cta-section, .faq-section {
    padding: 70px 0;
  }
  .video-section { padding: 60px 0; }
  .video-wrapper { margin-top: 28px; border-radius: 18px; }
  .video-wrapper iframe { height: 230px; }

  .platform-card, .platform-card.card-reversed { padding: 26px 18px 30px; }
  .platform-info h2 { font-size: 24px; }
  .platform-mascot { right: -12px; bottom: -20px; width: 140px; }
  .constr-mascot { right: -12px; bottom: -20px; width: 180px; }

  .anymore-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 30px; }
  .anymore-card { grid-template-columns: 1fr; padding: 24px 20px; text-align: center; gap: 16px; }
  .anymore-media img { max-width: 160px; margin: 0 auto; }
  .anymore-body { align-items: center; }

  .brutalist-banner { flex-direction: column; text-align: center; padding: 40px 24px; }
  .brutalist-text h2 { font-size: 34px; }
  .brutalist-banner img { margin-top: 20px; max-height: 200px; }
  .hero-right-container { height: 380px; }
  .hero-right-elem.swiper-slide { width: 210px; height: 360px; }

  /* Slots Hub Responsive on Mobile */
  .slots-hub-stage {
    height: auto;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 24px;
  }
  .slots-hub-core {
    position: static;
    grid-column: span 2;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin-bottom: 6px;
  }
  .slot-hub-card {
    position: static;
    width: 100%;
    box-sizing: border-box;
    animation: none !important;
    padding: 0;
  }
  .slot-card-thumb {
    height: 110px;
    padding: 6px 8px;
  }
  .slot-title {
    font-size: 12px;
  }
  .slot-rating {
    font-size: 11px;
  }
}

