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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Futura PT', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
  line-height: 1.5;
}

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

button {
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  font-family: inherit;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

::selection {
  background: rgba(0, 255, 100, 0.3);
  color: #fff;
}
/* ============================================
   Font Faces — Futura PT (local)
   ============================================ */
@font-face {
  font-family: 'Futura PT';
  src: url('../fonts/FuturaPT-Book.woff2') format('woff2'),
       url('../fonts/FuturaPT-Book.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Futura PT';
  src: url('../fonts/FuturaPT-Medium.woff2') format('woff2'),
       url('../fonts/FuturaPT-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Futura PT';
  src: url('../fonts/FuturaPT-Demi.woff2') format('woff2'),
       url('../fonts/FuturaPT-Demi.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Futura PT';
  src: url('../fonts/FuturaPT-Bold.woff2') format('woff2'),
       url('../fonts/FuturaPT-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Futura PT';
  src: url('../fonts/FuturaPT-ExtraBold.woff2') format('woff2'),
       url('../fonts/FuturaPT-ExtraBold.woff') format('woff');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Futura PT';
  src: url('../fonts/FuturaPT-Heavy.woff2') format('woff2'),
       url('../fonts/FuturaPT-Heavy.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Black.woff2') format('woff2'),
       url('../fonts/Montserrat-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ============================================
   CSS Custom Properties
   ============================================ */
:root {
  --color-bg: #000000;
  --color-text: #ffffff;
  --color-text-muted: rgba(255, 255, 255, 0.6);
  --color-accent: #00ff64;
  --color-accent-dim: rgba(0, 255, 100, 0.15);
  --color-border: rgba(255, 255, 255, 0.08);

  --font-main: 'Futura PT', -apple-system, BlinkMacSystemFont, sans-serif;

  --container-max: 1200px;
  --container-padding: 32px;

  --header-height: 80px;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

@media (max-width: 768px) {
  :root {
    --container-padding: 20px;
    --header-height: 60px;
  }
}

/* ============================================
   Header
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 0 var(--container-padding);
  height: var(--header-height);
  transition: background 0.4s ease;
}

.header.is-scrolled {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
}

.header__container {
  max-width: var(--container-max);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__status {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__status-pulse {
  width: 28px;
  height: 12px;
  display: flex;
  align-items: center;
  position: relative;
}

.header__status-pulse svg {
  width: 100%;
  height: 100%;
}

.header__pulse-line {
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
  animation: pulse-strike 2.5s ease-in-out infinite;
  filter: drop-shadow(0 0 2px var(--color-accent));
}

@keyframes pulse-strike {
  0% {
    stroke-dashoffset: 80;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  40% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  60% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  70% {
    opacity: 0.4;
  }
  80% {
    stroke-dashoffset: 0;
    opacity: 0;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 0;
  }
}

.header__status-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}

/* Burger */
.header__burger {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  position: relative;
  z-index: 110;
}

.header__burger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.4s var(--ease-out-expo);
}

.header__burger span:nth-child(1) { width: 28px; }
.header__burger span:nth-child(2) { width: 20px; }
.header__burger span:nth-child(3) { width: 24px; }

.header__burger:hover span { width: 28px; }

.header__burger.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  width: 28px;
}
.header__burger.is-active span:nth-child(2) {
  opacity: 0;
  transform: translateX(10px);
}
.header__burger.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  width: 28px;
}

/* ============================================
   Sidebar Navigation
   ============================================ */
.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 110;
  width: min(88vw, 380px);
  height: 100vh;
  height: 100dvh;
  padding: 28px;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-left: 1px solid var(--color-border);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out-expo);
  display: flex;
  flex-direction: column;
}

.sidebar.is-open {
  transform: translateX(0);
}

.sidebar__backdrop {
  position: fixed;
  inset: 0;
  z-index: 105;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.sidebar__backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.sidebar__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.sidebar__title {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.03em;
}

.sidebar__close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.2s ease;
}

.sidebar__close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.sidebar__nav a {
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  font-weight: 500;
  transition: color 0.25s ease;
}

.sidebar__nav a:first-child {
  border-top: 1px solid var(--color-border);
}

.sidebar__nav a:hover {
  color: var(--color-accent);
}

.sidebar__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding-top: 28px;
}

.sidebar__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-main);
  transition: all 0.3s ease;
}

.sidebar__btn--primary {
  background: var(--color-accent);
  color: #000;
}

.sidebar__btn--primary:hover {
  background: #00e65a;
  box-shadow: 0 4px 20px rgba(0, 255, 100, 0.3);
}

.sidebar__btn--outline {
  border: 1px solid var(--color-border);
  color: rgba(255, 255, 255, 0.6);
}

.sidebar__btn--outline:hover {
  border-color: rgba(0, 255, 100, 0.3);
  color: #fff;
}

@media (max-width: 480px) {
  .header__status-text {
    font-size: 12px;
  }

  .header__status-pulse {
    width: 22px;
    height: 10px;
  }

  .sidebar {
    padding: 20px;
  }
}
/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--header-height) var(--container-padding) 160px;
}

/* ============================================
   Background Photo
   ============================================ */
.hero__photo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__photo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
  filter: saturate(0.45) brightness(0.85);
}

.hero__photo-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.45) 50%, rgba(0, 0, 0, 0.65) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, transparent 30%, transparent 65%, rgba(0, 0, 0, 0.97) 100%);
}

/* ============================================
   Particles Canvas
   ============================================ */
.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* ============================================
   Container
   ============================================ */
.hero__container {
  max-width: var(--container-max);
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero__content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ============================================
   Badge
   ============================================ */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.03em;
  margin-bottom: 32px;
  opacity: 0;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}

/* ============================================
   Title — fits within 1200px container
   ============================================ */
.hero__title {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  line-height: 1;
  white-space: nowrap;
}

.hero__title-line {
  font-size: clamp(64px, 12vw, 180px);
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  opacity: 0;
  color: #fff;
}

/* ============================================
   Description
   ============================================ */
.hero__desc {
  max-width: 720px;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.7;
  color: var(--color-text-muted);
  font-weight: 400;
  opacity: 0;
}

/* ============================================
   Scroll Indicator — mouse + line
   ============================================ */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.hero__scroll:hover .hero__scroll-mouse {
  border-color: var(--color-accent);
}

.hero__scroll:hover .hero__scroll-wheel {
  background: var(--color-accent);
}

.hero__scroll:hover .hero__scroll-text {
  color: var(--color-accent);
}

.hero__scroll:hover .hero__scroll-line {
  background: linear-gradient(to bottom, var(--color-accent), transparent);
}

/* Mouse shape */
.hero__scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  position: relative;
  transition: border-color 0.3s ease;
}

/* Scroll wheel dot */
.hero__scroll-wheel {
  width: 3px;
  height: 8px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 3px;
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  animation: wheel-scroll 2s ease-in-out infinite;
  transition: background 0.3s ease;
}

@keyframes wheel-scroll {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(14px);
  }
}

/* Text label */
.hero__scroll-text {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.3s ease;
}

/* Animated line */
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--color-accent), transparent);
  animation: line-drop 2s ease-in-out infinite;
}

@keyframes line-drop {
  0% { top: -100%; }
  50% { top: 100%; }
  100% { top: 100%; }
}

/* ============================================
   Glow Effect
   ============================================ */
.hero__glow {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(0, 255, 100, 0.05) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
  filter: blur(80px);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
  .hero__title {
    gap: 0.08em;
    margin-bottom: 28px;
  }

  .hero__title-line {
    font-size: clamp(48px, 14vw, 100px);
  }

  .hero__desc {
    max-width: 90%;
    font-size: 15px;
    line-height: 1.6;
  }

  .hero__scroll {
    bottom: 24px;
  }

  .hero__glow {
    width: 600px;
    height: 400px;
  }
}

@media (max-width: 480px) {
  .hero__title {
    white-space: nowrap;
    flex-direction: row;
    gap: 3vw;
    width: 100%;
    justify-content: center;
  }

  .hero__title-line {
    font-size: 14vw;
  }

  .hero__desc {
    font-size: 14px;
  }

  .hero__glow {
    width: 400px;
    height: 300px;
  }
}
/* ============================================
   Ticker / Бегущая строка
   ============================================ */
.ticker {
  width: 100%;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  position: relative;
}

/* Fade edges */
.ticker::before,
.ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--color-bg), transparent);
}

.ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--color-bg), transparent);
}

.ticker__inner {
  padding: 18px 0;
}

.ticker__track {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
  width: max-content;
}

.ticker__item {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  cursor: default;
}

.ticker__sep {
  color: var(--color-accent);
  font-size: 10px;
  opacity: 0.6;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
  .ticker__inner {
    padding: 14px 0;
  }

  .ticker__item {
    font-size: 12px;
  }

  .ticker__track {
    gap: 20px;
    animation-duration: 25s;
  }

  .ticker::before,
  .ticker::after {
    width: 40px;
  }
}
/* ============================================
   Steps Section
   ============================================ */
.steps {
  padding: 100px 0;
  position: relative;
}

.steps__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Header */
.steps__header {
  margin-bottom: 56px;
}

.steps__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.steps__subtitle {
  font-size: 17px;
  color: var(--color-text-muted);
  font-weight: 400;
}

/* Grid */
.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

/* Card */
.steps__card {
  position: relative;
  padding: 36px 32px 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.steps__card:hover {
  border-color: rgba(0, 255, 100, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

/* Number */
.steps__number {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #000;
  background: var(--color-accent);
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 8px;
  margin-bottom: 24px;
}

/* Icon */
.steps__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 255, 100, 0.08);
  border: 1px solid rgba(0, 255, 100, 0.12);
  border-radius: 14px;
  margin-bottom: 24px;
  color: var(--color-accent);
}

/* Card text */
.steps__card-title {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.steps__card-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-text-muted);
  font-weight: 400;
}

/* Bottom note */
.steps__note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: rgba(0, 255, 100, 0.06);
  border: 1px solid rgba(0, 255, 100, 0.15);
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.steps__note svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
  .steps {
    padding: 64px 0;
  }

  .steps__header {
    margin-bottom: 40px;
  }

  .steps__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .steps__card {
    padding: 28px 24px 32px;
  }
}
/* ============================================
   Requirements Section
   ============================================ */
.reqs {
  padding: 100px 0;
  position: relative;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 255, 100, 0.015) 50%, transparent 100%);
}

.reqs__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Header */
.reqs__header {
  margin-bottom: 56px;
}

.reqs__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.reqs__subtitle {
  font-size: 17px;
  color: var(--color-text-muted);
  font-weight: 400;
}

/* Layout: list + visual */
.reqs__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}

/* ============================================
   Numbered items (left column)
   ============================================ */
.reqs__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.reqs__item {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--color-border);
  position: relative;
}

.reqs__item:first-child {
  padding-top: 0;
}

.reqs__item:last-child {
  border-bottom: none;
}

/* Number circle */
.reqs__item-num {
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--color-accent);
  border: 1.5px solid rgba(0, 255, 100, 0.3);
  border-radius: 10px;
  margin-top: 2px;
}

.reqs__item-body {
  flex: 1;
}

/* Icon */
.reqs__item-icon {
  display: none; /* icons hidden — clean numbered list look */
}

/* Text */
.reqs__item-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
}

.reqs__item-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* ============================================
   Visual (right column)
   ============================================ */
.reqs__visual {
  position: sticky;
  top: 120px;
}

.reqs__visual-inner {
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  position: relative;
}

.reqs__visual-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Placeholder when no image */
.reqs__visual-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.12);
}

.reqs__visual-placeholder span {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.reqs__visual-inner img + .reqs__visual-placeholder {
  display: none;
}

.reqs__visual-inner img[style*="display: none"] + .reqs__visual-placeholder {
  display: flex;
}

/* ============================================
   Download link
   ============================================ */
.reqs__download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 1px solid var(--color-border);
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.reqs__download svg {
  color: var(--color-accent);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.reqs__download:hover {
  border-color: rgba(0, 255, 100, 0.3);
  color: #fff;
  background: rgba(0, 255, 100, 0.05);
}

.reqs__download:hover svg {
  opacity: 1;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
  .reqs {
    padding: 64px 0;
  }

  .reqs__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .reqs__visual {
    position: static;
    order: -1;
  }

  .reqs__visual-inner {
    aspect-ratio: 16 / 9;
  }

  .reqs__item {
    padding: 20px 0;
  }
}
/* ============================================
   Services Section
   ============================================ */
.services {
  padding: 100px 0;
  position: relative;
  border-top: 1px solid var(--color-border);
}

.services__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Header with price */
.services__header {
  margin-bottom: 56px;
  position: relative;
}

.services__price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 20px;
  padding: 10px 24px;
  background: var(--color-accent);
  border-radius: 10px;
}

.services__price {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: #000;
  letter-spacing: -0.02em;
}

.services__price-label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.6);
}

.services__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
  max-width: 700px;
}

.services__subtitle {
  font-size: 17px;
  color: var(--color-text-muted);
  font-weight: 400;
  max-width: 600px;
}

/* ============================================
   Grid — 3x2
   ============================================ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

/* ============================================
   Card
   ============================================ */
.services__card {
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.services__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.services__card:hover {
  border-color: rgba(0, 255, 100, 0.15);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.services__card:hover::before {
  transform: scaleX(1);
}

/* Accent card */
.services__card--accent {
  border-color: rgba(0, 255, 100, 0.2);
  background: rgba(0, 255, 100, 0.04);
}

.services__card--accent::before {
  transform: scaleX(1);
}

/* Icon */
.services__card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 255, 100, 0.08);
  border-radius: 12px;
  margin-bottom: 20px;
  color: var(--color-accent);
  transition: background 0.3s ease;
}

.services__card:hover .services__card-icon {
  background: rgba(0, 255, 100, 0.12);
}

/* Text */
.services__card-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.services__card-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-text-muted);
}

/* ============================================
   Bonus banner
   ============================================ */
.services__bonus {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 32px;
  background: rgba(0, 255, 100, 0.04);
  border: 1px solid rgba(0, 255, 100, 0.12);
  border-radius: 14px;
}

.services__bonus-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  border-radius: 10px;
  color: #000;
}

.services__bonus-text strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.services__bonus-text p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
  .services {
    padding: 64px 0;
  }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .services__card {
    padding: 24px 20px;
  }

  .services__bonus {
    flex-direction: column;
    padding: 20px 24px;
  }

  .services__price {
    font-size: 24px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ============================================
   KP Section (Коммерческое предложение)
   ============================================ */
.kp-section {
  padding: 100px 0;
  position: relative;
  border-top: 1px solid var(--color-border);
}

.kp-section__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.kp-section__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 48px 52px;
  position: relative;
  overflow: hidden;
}

.kp-section__content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/img/kp-section-bg.webp') center/cover no-repeat;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.kp-section__content > * {
  position: relative;
  z-index: 1;
}

.kp-section__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(80, 140, 255, 0.08);
  border: 1px solid rgba(80, 140, 255, 0.2);
  color: #508cff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.kp-section__title {
  font-family: 'Montserrat', 'Futura PT', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.2;
  margin: 0 0 14px;
}

.kp-section__desc {
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0;
}

/* Форма */
.kp-section__form-wrap {
  width: 100%;
}

.kp-section__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.kp-section__row {
  display: flex;
  gap: 12px;
  align-items: flex-end;
}

.kp-section__row .kp-section__field {
  flex: 1;
  min-width: 0;
}

.kp-section__bottom {
  display: flex;
  align-items: center;
  gap: 16px;
}

.kp-section__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.kp-section__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
}

.kp-section__input {
  width: 100%;
  padding: 14px 18px;
  font-size: 15px;
  font-family: var(--font-main, 'Futura PT', sans-serif);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
  box-sizing: border-box;
}

.kp-section__input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.kp-section__input:focus {
  border-color: rgba(0, 255, 100, 0.4);
  background: rgba(255, 255, 255, 0.06);
}

.kp-section__agree {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.kp-section__agree input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 2px;
  accent-color: var(--color-accent, #00ff64);
  cursor: pointer;
}

.kp-section__agree label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.4;
  cursor: pointer;
}

.kp-section__agree a {
  color: var(--color-accent, #00ff64);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.kp-section__agree a:hover {
  opacity: 1;
}

.kp-section__submit {
  padding: 13px 28px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Futura PT', sans-serif;
  color: #000;
  background: var(--color-accent, #00ff64);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
}

.kp-section__submit:hover:not(:disabled) {
  background: #00e65a;
  box-shadow: 0 4px 20px rgba(0, 255, 100, 0.3);
}

.kp-section__submit:active:not(:disabled) {
  transform: translateY(1px);
}

.kp-section__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.kp-section__submit-loader {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-top-color: #000;
  border-radius: 50%;
  display: none;
  animation: kp-spin 0.7s linear infinite;
}

.kp-section__submit--loading .kp-section__submit-loader {
  display: inline-block;
}

.kp-section__error {
  display: none;
  font-size: 13px;
  color: #ff4d4d;
  line-height: 1.4;
}

/* Успех */
.kp-section__success {
  text-align: center;
  padding: 24px 0;
}

.kp-section__success svg {
  margin-bottom: 12px;
}

.kp-section__success p {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-accent);
  margin: 0 0 16px;
}

.kp-section__again {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Futura PT', sans-serif;
  color: rgba(255, 255, 255, 0.5);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.kp-section__again:hover {
  color: #fff;
  border-color: rgba(80, 140, 255, 0.3);
}

/* Мобилка */
@media (max-width: 768px) {
  .kp-section {
    padding: 64px 0;
  }

  .kp-section__content {
    gap: 28px;
    padding: 28px 20px;
    border-radius: 16px;
  }

  .kp-section__row {
    flex-direction: column;
    gap: 16px;
  }

  .kp-section__row .kp-section__field {
    width: 100%;
  }

  .kp-section__row .kp-section__input {
    width: 100%;
  }

  .kp-section__submit {
    width: 100%;
    padding: 16px 24px;
  }

  .kp-section__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .kp-section__badge {
    font-size: 11px;
    padding: 5px 12px;
    margin-bottom: 14px;
  }

  .kp-section__field {
    gap: 8px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .kp-section__content {
    padding: 36px 32px;
  }
}

/* ============================================
   Trust Section
   ============================================ */
.trust {
  padding: 120px 0 80px;
  position: relative;
  border-top: 1px solid var(--color-border);
}

.trust__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ============================================
   Hero block — title + big stats
   ============================================ */
.trust__hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 80px;
}

.trust__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.trust__subtitle {
  font-size: 17px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Big stats */
.trust__hero-stats {
  display: flex;
  gap: 32px;
}

.trust__big-stat {
  flex: 1;
  text-align: center;
  padding: 28px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  transition: border-color 0.3s ease;
}

.trust__big-stat:hover {
  border-color: rgba(0, 255, 100, 0.2);
}

.trust__big-num {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--color-accent);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.trust__big-label {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* ============================================
   Feature rows — alternating image + text
   ============================================ */
.trust__rows {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 64px;
}

.trust__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 48px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  transition: border-color 0.3s ease;
}

.trust__row:hover {
  border-color: rgba(0, 255, 100, 0.12);
}

.trust__row--reverse {
  direction: rtl;
}

.trust__row--reverse > * {
  direction: ltr;
}

/* Image */
.trust__row-img {
  aspect-ratio: 21 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0, 255, 100, 0.03);
  position: relative;
}

.trust__row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trust__row-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust__row-img-placeholder span {
  font-family: 'Montserrat', sans-serif;
  font-size: 120px;
  font-weight: 900;
  color: rgba(0, 255, 100, 0.06);
  user-select: none;
}

/* Hide placeholder when image loads */
.trust__row-img img + .trust__row-img-placeholder {
  display: none;
}

.trust__row-img.is-empty img {
  display: none;
}

.trust__row-img.is-empty .trust__row-img-placeholder {
  display: flex;
}

/* Content */
.trust__row-content {
  padding: 8px 0;
}

.trust__row-num {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: var(--color-accent);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  padding: 4px 12px;
  border: 1px solid rgba(0, 255, 100, 0.2);
  border-radius: 6px;
}

.trust__row-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.trust__row-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-muted);
}

/* ============================================
   Legal
   ============================================ */
.trust__legal {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-border);
  border-radius: 12px;
}

.trust__legal svg {
  flex-shrink: 0;
  color: var(--color-accent);
  opacity: 0.5;
  margin-top: 1px;
}

.trust__legal p {
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.35);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .trust__hero {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .trust {
    padding: 64px 0;
  }

  .trust__hero {
    margin-bottom: 48px;
  }

  .trust__hero-stats {
    flex-direction: row;
    gap: 12px;
  }

  .trust__big-stat {
    padding: 20px 8px;
  }

  .trust__big-num {
    font-size: 28px;
  }

  .trust__rows {
    gap: 16px;
  }

  .trust__row {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 24px;
  }

  .trust__row--reverse {
    direction: ltr;
  }

  .trust__row-img {
    aspect-ratio: 16 / 9;
  }
}
/* ============================================
   Reviews Section — Slider
   ============================================ */
.reviews {
  padding: 100px 0;
  border-top: 1px solid var(--color-border);
}

.reviews__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.reviews__header {
  margin-bottom: 48px;
}

.reviews__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.reviews__subtitle {
  font-size: 17px;
  color: var(--color-text-muted);
}

/* Slider wrapper */
.reviews__slider {
  position: relative;
  padding: 0 36px;
  margin: 0 -36px;
}

.reviews__slider-overflow {
  overflow: hidden;
}

.reviews__track {
  display: flex;
  transition: transform 0.5s var(--ease-out-expo);
  cursor: grab;
}

.reviews__track.is-dragging {
  cursor: grabbing;
  transition: none;
}

/* Card */
.reviews__card {
  flex: 0 0 calc(50% - 12px);
  margin-right: 24px;
  padding: 36px 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.reviews__card:hover {
  border-color: rgba(0, 255, 100, 0.15);
  background: rgba(255, 255, 255, 0.05);
}

/* Card header — avatar + info + platform */
.reviews__card-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.reviews__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-border);
}

.reviews__card-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.reviews__company {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.reviews__inn {
  font-size: 12px;
  color: var(--color-text-muted);
  font-weight: 500;
}

.reviews__platform {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent);
  padding: 5px 14px;
  border: 1px solid rgba(0, 255, 100, 0.2);
  border-radius: 100px;
  white-space: nowrap;
}

/* Rating */
.reviews__rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviews__stars {
  display: flex;
  gap: 2px;
  color: #ffb400;
}

.reviews__stars svg {
  width: 16px;
  height: 16px;
}

.reviews__score {
  font-size: 13px;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* Deal title */
.reviews__deal {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

/* Text */
.reviews__text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-muted);
}

/* Navigation arrows */
.reviews__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--color-accent);
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  z-index: 5;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 255, 100, 0.15);
}

.reviews__arrow svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.5;
}

.reviews__arrow:hover {
  background: var(--color-accent);
  color: #000;
  box-shadow: 0 0 32px rgba(0, 255, 100, 0.4);
  transform: translateY(-50%) scale(1.1);
}

.reviews__arrow--prev {
  left: 0;
}

.reviews__arrow--next {
  right: 0;
}

/* Dots */
.reviews__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.reviews__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.reviews__dot:hover {
  background: rgba(255, 255, 255, 0.3);
}

.reviews__dot.is-active {
  background: var(--color-accent);
  box-shadow: 0 0 12px rgba(0, 255, 100, 0.4);
}

/* "All reviews" link */
.reviews__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding: 12px 28px;
  border: 1px solid rgba(0, 255, 100, 0.2);
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-accent);
  transition: all 0.3s ease;
}

.reviews__more:hover {
  background: rgba(0, 255, 100, 0.08);
  border-color: var(--color-accent);
  box-shadow: 0 0 20px rgba(0, 255, 100, 0.15);
}

.reviews__more svg {
  transition: transform 0.3s ease;
}

.reviews__more:hover svg {
  transform: translate(3px, -3px);
}

/* ============================================
   Reviews Responsive
   ============================================ */
@media (max-width: 1024px) {
  .reviews__card {
    flex: 0 0 calc(100% - 24px);
  }
}

@media (max-width: 768px) {
  .reviews {
    padding: 64px 0;
  }

  .reviews__card {
    flex: 0 0 100%;
    margin-right: 16px;
    padding: 28px 24px;
  }

  .reviews__track {
    gap: 0;
  }

  .reviews__slider {
    padding: 0 24px;
    margin: 0 -24px;
  }

  .reviews__arrow {
    width: 44px;
    height: 44px;
  }

  .reviews__arrow svg {
    width: 20px;
    height: 20px;
  }

  .reviews__arrow--prev {
    left: 0;
  }

  .reviews__arrow--next {
    right: 0;
  }
}

@media (max-width: 480px) {
  .reviews__card-header {
    flex-wrap: wrap;
    gap: 10px;
  }

  .reviews__platform {
    margin-left: auto;
  }

  .reviews__card {
    padding: 24px 20px;
    gap: 14px;
  }
}
/* ============================================
   FAQ Section
   ============================================ */
.faq {
  padding: 100px 0;
  border-top: 1px solid var(--color-border);
}

.faq__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.faq__header {
  margin-bottom: 48px;
}

.faq__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.faq__subtitle {
  font-size: 17px;
  color: var(--color-text-muted);
}

/* ============================================
   Accordion list
   ============================================ */
.faq__list {
  margin-bottom: 40px;
}

.faq__item {
  border-bottom: 1px solid var(--color-border);
}

.faq__item:first-child {
  border-top: 1px solid var(--color-border);
}

/* Question (summary) */
.faq__question {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color 0.3s ease;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::before {
  content: counter(faq-counter, decimal-leading-zero);
  counter-increment: faq-counter;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--color-accent);
  min-width: 32px;
  opacity: 0.7;
}

.faq__question::after {
  content: '';
  margin-left: auto;
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2300ff64' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease;
}

.faq__item:hover .faq__question {
  color: #fff;
}

.faq__item:hover .faq__question::after {
  border-color: rgba(0, 255, 100, 0.3);
}

/* Open state */
.faq__item[open] .faq__question::after {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M5 12h14'/%3E%3C/svg%3E");
  transform: rotate(0);
}

.faq__item[open] .faq__question::before {
  opacity: 1;
}

/* Counter */
.faq__list {
  counter-reset: faq-counter;
}

/* Answer */
.faq__answer {
  padding: 0 0 24px 52px;
  animation: faqSlide 0.3s ease;
}

.faq__answer p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-muted);
  padding-left: 16px;
  border-left: 2px solid rgba(0, 255, 100, 0.2);
}

@keyframes faqSlide {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   Bottom note
   ============================================ */
.faq__note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-border);
  border-radius: 12px;
}

.faq__note svg {
  flex-shrink: 0;
  color: var(--color-accent);
  opacity: 0.5;
  margin-top: 1px;
}

.faq__note p {
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.35);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
  .faq {
    padding: 64px 0;
  }

  .faq__question {
    font-size: 15px;
    padding: 20px 0;
    gap: 14px;
  }

  .faq__question::after {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }

  .faq__answer {
    padding-left: 46px;
  }
}

@media (max-width: 480px) {
  .faq__question {
    font-size: 14px;
    gap: 12px;
  }

  .faq__question::after {
    width: 28px;
    height: 28px;
    min-width: 28px;
  }

  .faq__answer {
    padding-left: 38px;
  }

  .faq__answer p {
    padding-left: 10px;
    font-size: 13px;
  }
}
/* ============================================
   Contact Section
   ============================================ */
.contact {
  padding: 120px 0 48px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
}

.contact__glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(0, 255, 100, 0.06) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.contact__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  position: relative;
  z-index: 1;
}

/* ============================================
   Header
   ============================================ */
.contact__header {
  text-align: center;
  margin-bottom: 64px;
}

.contact__badge {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid rgba(0, 255, 100, 0.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.contact__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 20px;
}

.contact__title em {
  font-style: italic;
  color: var(--color-accent);
}

.contact__subtitle {
  font-size: 17px;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   Grid: form + info
   ============================================ */
.contact__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 64px;
}

/* ============================================
   Form
   ============================================ */
.contact__form {
  padding: 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  border-radius: 24px;
}

.contact__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact__field {
  margin-bottom: 20px;
}

.contact__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
}

.contact__input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  color: #fff;
  font-family: var(--font-main);
  font-size: 15px;
  transition: border-color 0.3s ease, background 0.3s ease;
  outline: none;
}

.contact__input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.contact__input:focus {
  border-color: rgba(0, 255, 100, 0.4);
  background: rgba(255, 255, 255, 0.06);
}

.contact__textarea {
  resize: vertical;
  min-height: 100px;
  max-height: 200px;
}

/* Custom scrollbar */
.contact__textarea::-webkit-scrollbar {
  width: 6px;
}

.contact__textarea::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 3px;
}

.contact__textarea::-webkit-scrollbar-thumb {
  background: rgba(0, 255, 100, 0.3);
  border-radius: 3px;
}

.contact__textarea::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 255, 100, 0.5);
}

.contact__textarea {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 255, 100, 0.3) rgba(255, 255, 255, 0.03);
}

/* Checkboxes group */
.contact__checkboxes {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact__checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}

.contact__checkbox:hover {
  color: rgba(255, 255, 255, 0.85);
}

.contact__checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-accent);
  cursor: pointer;
  flex-shrink: 0;
}

/* Checkbox */
.contact__agree {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
}

.contact__agree input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--color-accent);
  cursor: pointer;
  flex-shrink: 0;
}

.contact__agree label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.5;
  cursor: pointer;
}

.contact__agree a {
  color: var(--color-accent);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.contact__agree a:hover {
  opacity: 1;
}

/* Submit button */
.contact__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px 32px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-main);
  color: #000;
  background: var(--color-accent);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact__submit:hover {
  background: #00e65a;
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(0, 255, 100, 0.3);
}

.contact__submit:active {
  transform: translateY(0);
}

/* ============================================
   Info sidebar
   ============================================ */
.contact__info {
  padding-top: 8px;
}

.contact__info-heading {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 24px;
}

.contact__info-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 24px;
}

.contact__info-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.25s ease;
}

.contact__info-link svg {
  color: var(--color-accent);
  opacity: 0.6;
  flex-shrink: 0;
  transition: opacity 0.25s ease;
}

a.contact__info-link:hover {
  color: #fff;
}

a.contact__info-link:hover svg {
  opacity: 1;
}

.contact__info-link--address {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
}

.contact__info-schedule {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.25);
  padding-left: 34px;
}

.contact__slots {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 14px 18px;
  background: rgba(255, 180, 0, 0.06);
  border: 1px solid rgba(255, 180, 0, 0.15);
  border-radius: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.contact__slots svg {
  color: #ffb400;
  flex-shrink: 0;
}

.contact__slots strong {
  color: #ffb400;
  font-weight: 800;
}

.contact__info-note {
  margin-top: 24px;
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.35);
}

/* ============================================
   Map
   ============================================ */
.contact__map {
  position: relative;
  width: 100%;
  height: 400px;
  margin-bottom: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-bottom: none;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  isolation: isolate;
}

.contact__map iframe,
.contact__map > :not(.contact__map-overlay) {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

/* Overlay */
.contact__map-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.contact__map-overlay-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.contact__map-overlay-btn svg {
  width: 18px;
  height: 18px;
}

.contact__map-overlay:hover .contact__map-overlay-btn {
  background: rgba(10, 10, 10, 0.95);
  color: #fff;
  border-color: rgba(0, 255, 100, 0.3);
}

.contact__map-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
  .contact {
    padding: 64px 0 0;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact__form {
    padding: 24px;
  }

  .contact__form-row {
    grid-template-columns: 1fr;
  }

  .contact__map {
    height: 260px;
    border-radius: 16px;
  }

  .contact__glow {
    width: 600px;
    height: 400px;
  }

  .contact__header {
    margin-bottom: 40px;
  }

  .contact__header {
    text-align: left;
  }

  .contact__subtitle {
    margin: 0;
  }
}

@media (max-width: 480px) {
  .contact__map {
    height: 200px;
  }

  .contact__glow {
    width: 400px;
    height: 300px;
  }

  .contact__map-overlay-btn {
    font-size: 12px;
    padding: 10px 20px;
  }
}
/* ============================================
   Footer
   ============================================ */
.footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--color-border);
  background: #030303;
  position: relative;
  z-index: 2;
}

.footer__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Grid: brand + nav + contacts */
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

/* Brand column */
.footer__logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.footer__logo-accent {
  color: var(--color-accent);
}

.footer__tagline {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 16px;
  max-width: 280px;
}

.footer__ip {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.3);
}

.footer__ip + .footer__ip {
  margin-top: 2px;
}

.footer__ip + .footer__privacy-link {
  margin-top: 12px;
}

.footer__privacy-link + .footer__ip {
  margin-top: 12px;
}

.footer__analyzer-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-main);
  color: var(--color-accent);
  border: 1px solid rgba(0, 255, 100, 0.25);
  border-radius: 8px;
  background: rgba(0, 255, 100, 0.04);
  text-decoration: none;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  letter-spacing: 0.02em;
}

.footer__analyzer-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.footer__analyzer-btn:hover {
  border-color: var(--color-accent);
  background: rgba(0, 255, 100, 0.08);
  box-shadow: 0 0 20px rgba(0, 255, 100, 0.1);
}

.footer__socials {
  display: flex;
  gap: 10px;
}

.footer__socials a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border);
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.footer__socials a:hover {
  color: var(--color-accent);
  border-color: rgba(0, 255, 100, 0.3);
  background: rgba(0, 255, 100, 0.06);
}

/* Columns */
.footer__col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a,
.footer__links span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.25s ease;
  line-height: 1.5;
}

.footer__links a:hover {
  color: var(--color-accent);
}

.footer__links span {
  cursor: default;
}

/* Divider */
.footer__divider {
  height: 1px;
  background: var(--color-border);
  margin-bottom: 0;
}

/* Notes — license + disclaimer */
.footer__notes {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 24px;
}

.footer__note-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer__note-icon {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-top: 2px;
  color: rgba(0, 255, 100, 0.3);
}

.footer__note-icon svg {
  width: 100%;
  height: 100%;
}

.footer__note-item p {
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .footer__notes {
    gap: 12px;
  }
}

.footer__privacy-link {
  display: inline-block;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
  transition: color 0.25s ease;
  flex-shrink: 0;
}

.footer__privacy-link:hover {
  color: var(--color-accent);
}

/* ============================================
   Footer Responsive
   ============================================ */
@media (max-width: 768px) {
  .footer {
    padding: 48px var(--container-padding) 24px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 36px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
  }

  .footer__disclaimer {
    text-align: left;
  }
}

/* ============================================
   Modal — Pamyatka
   ============================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal__dialog {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 16px;
  padding: 48px 40px 40px;
  background: #0a0a0a;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6), 0 0 80px rgba(0, 255, 100, 0.04);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.4s var(--ease-out-expo);
}

.modal.is-open .modal__dialog {
  transform: translateY(0) scale(1);
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.2s ease;
}

.modal__close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.modal__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 255, 100, 0.08);
  border: 1px solid rgba(0, 255, 100, 0.15);
  border-radius: 16px;
  color: var(--color-accent);
  margin-bottom: 24px;
}

.modal__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}

.modal__desc {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 28px;
  line-height: 1.5;
}

.modal__field {
  margin-bottom: 16px;
}

.modal__label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 6px;
}

.modal__input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  color: #fff;
  font-family: var(--font-main);
  font-size: 15px;
  transition: border-color 0.3s ease, background 0.3s ease;
  outline: none;
}

.modal__input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.modal__input:focus {
  border-color: rgba(0, 255, 100, 0.4);
  background: rgba(255, 255, 255, 0.06);
}

.modal__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 24px;
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-main);
  color: #000;
  background: var(--color-accent);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal__submit:hover {
  background: #00e65a;
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(0, 255, 100, 0.3);
}

.modal__submit:active {
  transform: translateY(0);
}

.modal__agree {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
}

.modal__agree input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--color-accent);
  cursor: pointer;
  flex-shrink: 0;
}

.modal__agree label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.5;
  cursor: pointer;
}

.modal__agree a {
  color: var(--color-accent);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.modal__agree a:hover {
  opacity: 1;
}

.modal__privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}

.modal__privacy svg {
  color: rgba(0, 255, 100, 0.35);
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .modal__dialog {
    padding: 36px 24px 28px;
  }

  .modal__title {
    font-size: 20px;
  }
}

/* ============================================
   Inner Header (for all pages except home)
   ============================================ */
.header--inner {
  background: rgba(3, 3, 3, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
}

.header__logo {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.header__logo-accent {
  color: var(--color-accent);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__nav a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  letter-spacing: 0.01em;
  transition: color 0.3s ease;
}

.header__nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}

.header__nav a:hover {
  color: #fff;
}

.header__nav a:hover::after {
  width: 100%;
}

.header__cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-accent);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.header__cta:hover {
  color: #fff;
  text-shadow: 0 0 12px rgba(0, 255, 100, 0.4);
}

.header--inner .header__status {
  text-decoration: none;
}

/* На внутренних страницах: бургер скрыт на десктопе, nav видна */
.header--inner .header__burger {
  display: none;
}

@media (max-width: 768px) {
  .header__nav {
    display: none;
  }

  .header__cta {
    display: none;
  }

  .header--inner .header__burger {
    display: flex;
  }
}

/* ============================================
   Page Hero (inner pages title section)
   ============================================ */
.page-hero {
  padding: calc(var(--header-height) + 60px) var(--container-padding) 40px;
  background: var(--color-bg);
}

.page-hero__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 12px;
}

.page-hero__subtitle {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 600px;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 24px;
  font-size: 13px;
}

.breadcrumbs__link {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs__link:hover {
  color: var(--color-accent);
}

.breadcrumbs__sep {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.2);
  margin: 0 8px;
}

.breadcrumbs__sep::after {
  content: '';
  width: 6px;
  height: 6px;
  border-right: 1.5px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.25);
  transform: rotate(-45deg);
}

.breadcrumbs__current {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   Contacts Page
   ============================================ */
.contacts {
  padding: 40px var(--container-padding) 48px;
  background: var(--color-bg);
}


.contacts__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.contacts__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.contacts__card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 28px 24px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

a.contacts__card:hover {
  border-color: var(--color-accent);
  background: rgba(0, 255, 100, 0.03);
  transform: translateY(-2px);
}

.contacts__card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(0, 255, 100, 0.1);
  margin-bottom: 20px;
}

.contacts__card-icon svg {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
}

.contacts__card-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
}

.contacts__card-value {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  word-break: break-word;
}

.contacts__card-hint {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.4;
}

/* Contacts Info Blocks */
.contacts__info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0 40px;
}

.contacts__info-block {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  border-radius: 16px;
}

.contacts__info-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(0, 255, 100, 0.1);
}

.contacts__info-icon svg {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
}

.contacts__info-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.contacts__info-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.contacts__info-text--muted {
  color: rgba(255, 255, 255, 0.35);
  margin-top: 4px;
  font-size: 13px;
}

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


@media (max-width: 1024px) {
  .contacts__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

}

/* ============================================
   Legal Page (Privacy Policy)
   ============================================ */
.legal {
  padding: 0 var(--container-padding) 80px;
  background: var(--color-bg);
}

.legal__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.legal__updated {
  font-size: 13px;
  color: var(--color-accent);
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}

.legal__container h2 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  margin: 40px 0 16px;
}

.legal__container h2:first-of-type {
  margin-top: 0;
}

.legal__container p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 10px;
}

.legal__container strong {
  color: rgba(255, 255, 255, 0.85);
}

.legal__container a {
  color: var(--color-accent);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.legal__container a:hover {
  opacity: 0.7;
}

.legal__container ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 16px;
}

.legal__container ul li {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
  margin-bottom: 4px;
}

.legal__container ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.5;
}

/* ============================================
   404 Page
   ============================================ */

.e404 {
  position: relative;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 140px 0 80px;
}

.e404__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.e404__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  animation: e404float 8s ease-in-out infinite;
}

.e404__glow--1 {
  width: 500px;
  height: 500px;
  background: #00ff64;
  top: -150px;
  left: -100px;
}

.e404__glow--2 {
  width: 400px;
  height: 400px;
  background: #00ff64;
  bottom: -100px;
  right: -100px;
  animation-delay: -4s;
}

.e404__glow--3 {
  width: 300px;
  height: 300px;
  background: #00cc50;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.05;
  animation-delay: -2s;
}

@keyframes e404float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

.e404__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 255, 100, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 100, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: e404grid 20s linear infinite;
}

@keyframes e404grid {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, 60px); }
}

.e404__scanline {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
}

.e404__scanline::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 100, 0.15), transparent);
  animation: e404scan 4s linear infinite;
}

@keyframes e404scan {
  0% { top: -4px; }
  100% { top: 100%; }
}

.e404__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 32px;
}

.e404__code {
  font-family: 'FuturaPT', sans-serif;
  font-weight: 800;
  font-size: clamp(120px, 25vw, 280px);
  line-height: 0.8;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, rgba(0, 255, 100, 0.9) 0%, rgba(0, 255, 100, 0.2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  user-select: none;
  animation: e404glitch 3s ease-in-out infinite;
}

.e404__code::after {
  content: '404';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 255, 100, 0.4) 0%, transparent 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: blur(30px);
}

@keyframes e404glitch {
  0%, 100% { transform: translate(0); }
  2% { transform: translate(-2px, 1px); }
  4% { transform: translate(2px, -1px); }
  6% { transform: translate(0); }
}

.e404__pulse {
  width: 200px;
  height: 20px;
  margin: 24px auto;
  opacity: 0.4;
}

.e404__pulse path {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: e404draw 2s ease forwards, e404pulseGlow 2s ease-in-out infinite 2s;
}

@keyframes e404draw {
  to { stroke-dashoffset: 0; }
}

@keyframes e404pulseGlow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.e404__title {
  font-family: 'FuturaPT', sans-serif;
  font-weight: 800;
  font-size: clamp(20px, 3vw, 28px);
  margin-bottom: 12px;
}

.e404__desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  max-width: 400px;
  margin: 0 auto 36px;
}

.e404__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.e404__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'FuturaPT', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border-radius: 12px;
  text-decoration: none;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.e404__btn--primary {
  background: var(--color-accent);
  color: #000;
}

.e404__btn--primary:hover {
  box-shadow: 0 0 40px rgba(0, 255, 100, 0.35);
  transform: translateY(-2px);
}

.e404__btn--outline {
  background: transparent;
  color: var(--color-accent);
  border: 1px solid rgba(0, 255, 100, 0.25);
}

.e404__btn--outline:hover {
  background: rgba(0, 255, 100, 0.06);
  box-shadow: 0 0 20px rgba(0, 255, 100, 0.12);
  transform: translateY(-2px);
}

@media (max-width: 480px) {
  .e404__actions {
    flex-direction: column;
  }
  .e404__btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   Blog Page
   ============================================ */

.blog__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px 80px;
}

/* Empty state */
.blog__empty {
  text-align: center;
  padding: 80px 32px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  margin-bottom: 60px;
}

.blog__empty-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 255, 100, 0.08);
  border-radius: 14px;
  color: var(--color-accent);
}

.blog__empty-title {
  font-family: 'FuturaPT', sans-serif;
  font-weight: 800;
  font-size: 24px;
  margin-bottom: 12px;
}

.blog__empty-desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  max-width: 520px;
  margin: 0 auto 28px;
}

.blog__empty-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  background: transparent;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 14px;
  border: 1px solid rgba(0, 255, 100, 0.3);
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.blog__empty-btn:hover {
  background: rgba(0, 255, 100, 0.08);
  box-shadow: 0 0 20px rgba(0, 255, 100, 0.15);
}

/* Grid for articles */
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.blog__card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s ease, transform 0.2s ease;
}

.blog__card:hover {
  border-color: rgba(0, 255, 100, 0.2);
  transform: translateY(-4px);
}

.blog__card--checked .blog__card-img {
  position: relative;
}

.blog__card--checked .blog__card-img::after {
  content: '';
  position: absolute;
  top: 14px;
  left: 14px;
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  box-shadow: 0 0 4px rgba(0, 255, 100, 0.35);
}

.blog__card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}

.blog__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog__card-body {
  padding: 24px;
}

.blog__card-date {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 8px;
  display: block;
}

.blog__card-title {
  font-family: 'FuturaPT', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 8px;
}

.blog__card-excerpt {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.45);
}

/* Author */
.blog__author {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
}

.blog__author-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(0, 255, 100, 0.2);
}

.blog__author-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  opacity: 0.6;
  display: block;
  margin-bottom: 6px;
}

.blog__author-name {
  font-family: 'FuturaPT', sans-serif;
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 12px;
}

.blog__author-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 16px;
}

.blog__author-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* ============================================
   Sitemap Page
   ============================================ */
.sitemap-page {
  padding: 40px var(--container-padding) 80px;
}

.sitemap-page__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.sitemap-page__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.sitemap-page__group-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  opacity: 0.6;
  margin-bottom: 20px;
}

.sitemap-page__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sitemap-page__link {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  text-decoration: none;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.2s ease;
}

.sitemap-page__link:hover {
  border-color: rgba(0, 255, 100, 0.2);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.sitemap-page__link--main {
  border-color: rgba(0, 255, 100, 0.15);
  background: rgba(0, 255, 100, 0.03);
}

.sitemap-page__link-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--color-accent);
  opacity: 0.5;
}

.sitemap-page__link-icon svg {
  width: 100%;
  height: 100%;
}

.sitemap-page__link:hover .sitemap-page__link-icon {
  opacity: 1;
}

.sitemap-page__link-text {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.sitemap-page__link-desc {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.5;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .sitemap-page__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Flat list variant */
.sitemap-page__flat-list {
  list-style: none;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0;
  counter-reset: sm-counter;
}

.sitemap-page__flat-list li {
  counter-increment: sm-counter;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sitemap-page__flat-list li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sitemap-page__flat-list a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.sitemap-page__flat-list a::before {
  content: counter(sm-counter, decimal-leading-zero);
  font-family: 'FuturaPT', 'Futura PT', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: var(--color-accent);
  opacity: 0.4;
  min-width: 28px;
  flex-shrink: 0;
}

.sitemap-page__flat-list a:hover {
  color: var(--color-accent);
  padding-left: 8px;
}

.sitemap-page__flat-list a:hover::before {
  opacity: 1;
}

.blog__author-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.blog__author-links a:hover {
  opacity: 1;
}

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

  .blog__author {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px;
  }

  .blog__author-links {
    justify-content: center;
  }

  .blog__empty {
    padding: 48px 24px;
  }
}

/* ============================================
   Article (Blog Post)
   ============================================ */

.article__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding) 60px;
}

/* Meta */
.article__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.article__meta-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0, 255, 100, 0.2);
}

.article__meta-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.article__meta-author {
  font-weight: 700;
  font-size: 14px;
}

.article__meta-date {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.article__meta-read {
  margin-left: auto;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  white-space: nowrap;
}

/* Cover */
.article__cover {
  margin-bottom: 40px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.article__cover img {
  width: 100%;
  height: auto;
  display: block;
}

/* Body — Typography */
.article__body {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.article__body p {
  margin-bottom: 20px;
}

.article__body h2 {
  font-family: 'FuturaPT', 'Futura PT', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 3vw, 28px);
  color: #fff;
  margin: 48px 0 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.article__body h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.article__body h3 {
  font-family: 'FuturaPT', 'Futura PT', sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 2.5vw, 22px);
  color: #fff;
  margin: 32px 0 12px;
}

.article__body a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(0, 255, 100, 0.3);
  transition: text-decoration-color 0.2s ease;
}

.article__body a:hover {
  text-decoration-color: var(--color-accent);
}

/* Lists */
.article__body ul,
.article__body ol {
  margin: 0 0 24px 0;
  padding-left: 0;
}

.article__body ul {
  list-style: none;
}

.article__body ul li,
.article__body ol:not(.article__toc-list) li {
  position: relative;
  padding: 6px 0 6px 28px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}

.article__body ul li::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.5;
}

/* Reset article body styles inside FAQ accordion */
.article__body .faq__answer p {
  margin-bottom: 0;
}

.article__body .faq__list {
  margin-bottom: 32px;
}

.article__body ol:not(.article__toc-list) {
  counter-reset: article-ol;
  list-style: none;
}

.article__body ol:not(.article__toc-list) li {
  counter-increment: article-ol;
}

.article__body ol:not(.article__toc-list) li::before {
  content: counter(article-ol) '.';
  position: absolute;
  left: 4px;
  top: 6px;
  font-weight: 700;
  font-size: 14px;
  color: var(--color-accent);
  opacity: 0.6;
}

/* Blockquote */
.article__body blockquote {
  margin: 32px 0;
  padding: 24px 28px;
  border-left: 3px solid var(--color-accent);
  background: rgba(0, 255, 100, 0.03);
  border-radius: 0 12px 12px 0;
}

.article__body blockquote p {
  margin-bottom: 0;
  font-size: 16px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

/* Table */
.article__table-wrap {
  margin: 28px 0;
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  scrollbar-width: thin;
  scrollbar-color: var(--color-accent) rgba(255, 255, 255, 0.06);
}

.article__table-wrap::-webkit-scrollbar {
  height: 6px;
}

.article__table-wrap::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
}

.article__table-wrap::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border-radius: 3px;
}

.article__table-wrap::-webkit-scrollbar-thumb:hover {
  background: #00cc50;
}

.article__body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.article__body thead {
  background: rgba(0, 255, 100, 0.06);
}

.article__body th {
  padding: 14px 20px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-accent);
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.article__body td {
  padding: 12px 20px;
  color: rgba(255, 255, 255, 0.65);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.article__body tr:last-child td {
  border-bottom: none;
}

.article__body tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

/* Figure */
.article__figure {
  margin: 32px 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.article__figure img {
  width: 100%;
  height: auto;
  display: block;
}

.article__figure figcaption {
  padding: 12px 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
  line-height: 1.5;
}

/* Callout */
.article__callout {
  display: flex;
  gap: 16px;
  margin: 28px 0;
  padding: 20px 24px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.article__callout--tip {
  background: rgba(0, 255, 100, 0.04);
  border-color: rgba(0, 255, 100, 0.12);
}

.article__callout--warning {
  background: rgba(255, 170, 0, 0.04);
  border-color: rgba(255, 170, 0, 0.15);
}

.article__callout-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-accent);
}

.article__callout--warning .article__callout-icon {
  color: #ffaa00;
}

.article__callout-text {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.article__callout-text strong {
  color: #fff;
}

/* TOC */
.article__toc {
  margin-bottom: 36px;
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
}

.article__toc-title {
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-accent);
  opacity: 0.6;
  margin-bottom: 14px;
}

.article__toc-list {
  counter-reset: toc;
  list-style: none;
  padding: 0;
  margin: 0;
}

.article__toc-list li {
  counter-increment: toc;
  padding: 6px 0;
}

.article__toc-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s ease;
}

.article__toc-list li a::before {
  content: '0' counter(toc);
  font-size: 12px;
  font-weight: 800;
  color: var(--color-accent);
  opacity: 0.4;
  min-width: 20px;
}

.article__toc-list li a:hover {
  color: var(--color-accent);
}

/* Footer: Tags */
/* Download link */
.article__download {
  margin: 32px 0;
}

.article__download-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(0, 255, 100, 0.04);
  border: 1px solid rgba(0, 255, 100, 0.15);
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  transition: border-color 0.2s, background 0.2s;
}

.article__download-link:hover {
  background: rgba(0, 255, 100, 0.08);
  border-color: rgba(0, 255, 100, 0.3);
}

.article__download-icon {
  font-size: 32px;
  line-height: 1;
  flex-shrink: 0;
}

.article__download-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.article__download-text strong {
  font-size: 16px;
  color: var(--color-accent);
}

.article__download-text span {
  font-size: 13px;
  color: var(--color-text-muted);
}

.article__footer {
  padding: 28px 0;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 40px;
}

.article__tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.article__tag {
  display: inline-block;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.article__tag:hover {
  border-color: rgba(0, 255, 100, 0.2);
  color: var(--color-accent);
}

/* Article CTA */
.article-cta {
  padding: 0 var(--container-padding) 80px;
}

.article-cta__container {
  position: relative;
  max-width: calc(var(--container-max) - var(--container-padding) * 2);
  margin: 0 auto;
  text-align: center;
  padding: 64px 40px;
  background: rgba(0, 255, 100, 0.02);
  border: 1px solid rgba(0, 255, 100, 0.12);
  border-radius: 24px;
  overflow: hidden;
}

.article-cta__glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 255, 100, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.article-cta__title {
  font-family: 'FuturaPT', 'Futura PT', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 3.5vw, 34px);
  margin-bottom: 12px;
  position: relative;
}

.article-cta__title .accent {
  color: var(--color-accent);
}

.article-cta__desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 32px;
  max-width: 100%;
  line-height: 1.6;
  position: relative;
}

.article-cta__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
}

.article-cta__btn {
  display: inline-flex;
  align-items: center;
  padding: 16px 36px;
  background: var(--color-accent);
  color: #000;
  font-weight: 700;
  font-size: 15px;
  border-radius: 12px;
  text-decoration: none;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.article-cta__btn:hover {
  box-shadow: 0 0 40px rgba(0, 255, 100, 0.35);
  transform: translateY(-2px);
}

.article-cta__btn--outline {
  background: transparent;
  color: var(--color-accent);
  border: 1px solid rgba(0, 255, 100, 0.25);
}

.article-cta__btn--outline:hover {
  background: rgba(0, 255, 100, 0.06);
  box-shadow: 0 0 20px rgba(0, 255, 100, 0.15);
}

.article-cta__stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  position: relative;
}

.article-cta__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.article-cta__stat-num {
  font-family: 'FuturaPT', 'Futura PT', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--color-accent);
}

.article-cta__stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Article responsive */
@media (max-width: 768px) {
  .article__container {
    padding: 0 calc(var(--container-padding) * 2) 40px;
  }

  .article__meta {
    flex-wrap: wrap;
  }

  .article__meta-read {
    margin-left: 0;
    width: 100%;
    margin-top: 4px;
  }

  .article__body {
    font-size: 15px;
  }

  .article__body h2 {
    margin-top: 36px;
    padding-top: 20px;
  }

  .article__body h3 {
    margin-top: 24px;
  }

  .article__callout {
    flex-direction: column;
    gap: 10px;
    padding: 16px 18px;
  }

  .article__toc {
    padding: 20px 22px;
  }

  .article__cover {
    border-radius: 12px;
    margin-bottom: 28px;
  }

  .article__body blockquote {
    padding: 18px 20px;
    margin: 24px 0;
  }

  .article__figure {
    margin: 24px -8px;
    border-radius: 10px;
  }

  .article__table-wrap {
    margin: 24px -8px;
    border-radius: 10px;
  }

  .article__body th,
  .article__body td {
    padding: 10px 14px;
    font-size: 13px;
  }

  .article__footer {
    padding: 20px 0;
  }

  .article-cta__container {
    padding: 40px 24px;
  }

  .article-cta__btn {
    width: 100%;
    justify-content: center;
  }

  .article-cta__stats {
    gap: 24px;
  }

  .article-cta__stat-num {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .article-cta__stats {
    flex-direction: column;
    gap: 16px;
  }

  .article__tags {
    gap: 8px;
  }

  .article__tag {
    font-size: 12px;
    padding: 5px 12px;
  }
}

/* ============================================
   FAQ Page
   ============================================ */

.faq-page__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px 80px;
  counter-reset: faq-counter;
}

.faq-page__category {
  margin-bottom: 48px;
}

.faq-page__cat-title {
  font-family: 'FuturaPT', sans-serif;
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--color-accent);
}

.faq-page .faq__item {
  margin-bottom: 0;
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-top: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-page .faq__item:last-child {
  border-bottom: none;
}

.faq-page .faq__answer ul {
  list-style: none;
  margin: 12px 0 0;
}

.faq-page .faq__answer ul li {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  padding: 4px 0 4px 20px;
  position: relative;
}

.faq-page .faq__answer ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.5;
}

/* CTA */
.faq-page__cta {
  text-align: center;
  padding: 64px 32px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  margin-top: 32px;
}

.faq-page__cta-title {
  font-family: 'FuturaPT', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: 8px;
}

.faq-page__cta-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 28px;
}

.faq-page__cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.faq-page__cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background: var(--color-accent);
  color: #000;
  font-weight: 700;
  font-size: 15px;
  border-radius: 12px;
  text-decoration: none;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.faq-page__cta-btn:hover {
  box-shadow: 0 0 30px rgba(0, 255, 100, 0.3);
  transform: translateY(-2px);
}

.faq-page__cta-btn--outline {
  background: transparent;
  color: var(--color-accent);
  border: 1px solid rgba(0, 255, 100, 0.3);
}

.faq-page__cta-btn--outline:hover {
  background: rgba(0, 255, 100, 0.08);
  box-shadow: 0 0 20px rgba(0, 255, 100, 0.15);
}

@media (max-width: 768px) {
  .faq-page__cta {
    padding: 40px 24px;
  }

  .faq-page__cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   About Page
   ============================================ */

.about__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px 80px;
}

.about__heading {
  font-family: 'FuturaPT', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 20px;
}

/* Intro */
.about__intro {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
  margin-bottom: 80px;
}

.about__intro-text p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}

.about__intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about__stat {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
}

.about__stat-num {
  display: block;
  font-family: 'FuturaPT', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--color-accent);
  margin-bottom: 4px;
}

.about__stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
}

/* Values */
.about__values {
  margin-bottom: 80px;
}

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

.about__value {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px 24px;
  transition: border-color 0.3s ease;
}

.about__value:hover {
  border-color: rgba(0, 255, 100, 0.2);
}

.about__value-num {
  font-family: 'FuturaPT', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: var(--color-accent);
  opacity: 0.5;
  margin-bottom: 16px;
}

.about__value-title {
  font-family: 'FuturaPT', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
}

.about__value-desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}

/* Expertise */
.about__expertise {
  margin-bottom: 80px;
}

.about__expertise-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 28px;
  max-width: 700px;
}

.about__expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.about__exp-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  background: rgba(0, 255, 100, 0.03);
  border: 1px solid rgba(0, 255, 100, 0.08);
  border-radius: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: border-color 0.3s ease;
}

.about__exp-item:hover {
  border-color: rgba(0, 255, 100, 0.2);
}

.about__exp-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 255, 100, 0.1);
  border-radius: 8px;
  color: var(--color-accent);
}

.about__expertise-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-accent);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.about__expertise-link:hover {
  opacity: 0.7;
}

/* Legal */
.about__legal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 60px;
}

.about__legal-block {
  padding: 28px 32px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 3px solid rgba(0, 255, 100, 0.3);
  border-radius: 12px;
}

.about__legal-title {
  font-family: 'FuturaPT', sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 10px;
}

.about__legal-block p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 4px;
}

/* CTA */
.about__cta {
  text-align: center;
  padding: 64px 32px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
}

.about__cta-title {
  font-family: 'FuturaPT', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: 8px;
}

.about__cta-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 28px;
}

.about__cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.about__cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background: var(--color-accent);
  color: #000;
  font-weight: 700;
  font-size: 15px;
  border-radius: 12px;
  text-decoration: none;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.about__cta-btn:hover {
  box-shadow: 0 0 30px rgba(0, 255, 100, 0.3);
  transform: translateY(-2px);
}

.about__cta-btn--outline {
  background: transparent;
  color: var(--color-accent);
  border: 1px solid rgba(0, 255, 100, 0.3);
}

.about__cta-btn--outline:hover {
  background: rgba(0, 255, 100, 0.08);
  box-shadow: 0 0 20px rgba(0, 255, 100, 0.15);
}

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

  .about__intro-stats {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

@media (max-width: 768px) {
  .about__intro-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__values-grid {
    grid-template-columns: 1fr;
  }

  .about__expertise-grid {
    grid-template-columns: 1fr;
  }

  .about__legal {
    grid-template-columns: 1fr;
  }

  .about__cta {
    padding: 40px 24px;
  }

  .about__cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   Services Page
   ============================================ */

.svc__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px 80px;
}

/* Featured card */
.svc__featured {
  background: linear-gradient(135deg, rgba(0, 255, 100, 0.08), rgba(0, 255, 100, 0.02));
  border: 1px solid rgba(0, 255, 100, 0.15);
  border-radius: 20px;
  padding: 48px;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.svc__featured::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 255, 100, 0.08), transparent 70%);
  pointer-events: none;
}

.svc__featured-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  background: rgba(0, 255, 100, 0.1);
  border: 1px solid rgba(0, 255, 100, 0.2);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 24px;
}

.svc__featured-title {
  font-family: 'FuturaPT', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  margin-bottom: 16px;
}

.svc__featured-desc {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  max-width: 700px;
  margin-bottom: 28px;
}

.svc__featured-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 32px;
  margin-bottom: 36px;
}

.svc__featured-list li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  padding-left: 20px;
  position: relative;
}

.svc__featured-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
}

.svc__featured-footer {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.svc__featured-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.svc__featured-price-value {
  font-family: 'FuturaPT', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: var(--color-accent);
}

.svc__featured-price-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
}

.svc__featured-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background: var(--color-accent);
  color: #000;
  font-weight: 700;
  font-size: 15px;
  border-radius: 12px;
  text-decoration: none;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.svc__featured-btn:hover {
  box-shadow: 0 0 30px rgba(0, 255, 100, 0.3);
  transform: translateY(-2px);
}

/* Section titles */
.svc__section-title {
  font-family: 'FuturaPT', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 8px;
}

.svc__section-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 32px;
}

/* Card grid */
.svc__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}

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

/* Cards */
.svc__card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.3s ease, background 0.3s ease;
  display: flex;
  flex-direction: column;
}

.svc__card:hover {
  border-color: rgba(0, 255, 100, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.svc__card--dark {
  background: rgba(0, 255, 100, 0.03);
  border-color: rgba(0, 255, 100, 0.1);
}

.svc__card--dark:hover {
  border-color: rgba(0, 255, 100, 0.25);
  background: rgba(0, 255, 100, 0.06);
}

.svc__card-num {
  font-family: 'FuturaPT', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--color-accent);
  margin-bottom: 16px;
  opacity: 0.6;
}

.svc__card-title {
  font-family: 'FuturaPT', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 12px;
}

.svc__card-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 16px;
  flex: 1;
}

.svc__card-features {
  list-style: none;
  margin-bottom: 20px;
}

.svc__card-features li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  padding: 6px 0;
  padding-left: 16px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.svc__card-features li:last-child {
  border-bottom: none;
}

.svc__card-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.6;
}

.svc__card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-accent);
  text-decoration: none;
  transition: opacity 0.2s ease;
  margin-top: auto;
}

.svc__card-link:hover {
  opacity: 0.7;
}

/* CTA */
.svc__cta {
  text-align: center;
  padding: 64px 32px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
}

.svc__cta-title {
  font-family: 'FuturaPT', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: 8px;
}

.svc__cta-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 28px;
}

.svc__cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.svc__cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background: var(--color-accent);
  color: #000;
  font-weight: 700;
  font-size: 15px;
  border-radius: 12px;
  text-decoration: none;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.svc__cta-btn:hover {
  box-shadow: 0 0 30px rgba(0, 255, 100, 0.3);
  transform: translateY(-2px);
}

.svc__cta-btn--outline {
  background: transparent;
  color: var(--color-accent);
  border: 1px solid rgba(0, 255, 100, 0.3);
}

.svc__cta-btn--outline:hover {
  background: rgba(0, 255, 100, 0.08);
  box-shadow: 0 0 20px rgba(0, 255, 100, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
  .svc__featured {
    padding: 28px 24px;
  }

  .svc__featured-list {
    grid-template-columns: 1fr;
  }

  .svc__grid {
    grid-template-columns: 1fr;
  }

  .svc__grid--2 {
    grid-template-columns: 1fr;
  }

  .svc__featured-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .svc__featured-btn {
    width: 100%;
    justify-content: center;
  }

  .svc__cta {
    padding: 40px 24px;
  }

  .svc__cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   EduDocs Page
   ============================================ */

.ed {
  padding: 0 var(--container-padding);
}

.ed__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding) 80px;
}

/* Badge */
.ed__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  background: rgba(0, 255, 100, 0.1);
  border: 1px solid rgba(0, 255, 100, 0.2);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 20px;
}

/* Intro */
.ed__intro {
  margin-bottom: 80px;
}

.ed__intro-title {
  font-family: 'FuturaPT', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  margin-bottom: 16px;
}

.ed__intro-desc {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  max-width: 700px;
  margin-bottom: 28px;
}

.ed__intro-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ed__stat {
  text-align: center;
  padding: 24px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: border-color 0.3s ease;
}

.ed__stat:hover {
  border-color: rgba(0, 255, 100, 0.2);
}

.ed__stat-num {
  display: block;
  font-family: 'FuturaPT', sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: var(--color-accent);
  margin-bottom: 6px;
}

.ed__stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
}

/* Sections */
.ed__section {
  margin-bottom: 80px;
}

.ed__section-title {
  font-family: 'FuturaPT', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 8px;
}

.ed__section-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 32px;
}

/* Problems */
.ed__problems {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.ed__problem {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.3s ease, background 0.3s ease;
  display: flex;
  flex-direction: column;
}

.ed__problem:hover {
  border-color: rgba(0, 255, 100, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.ed__problem-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 255, 100, 0.08);
  border-radius: 12px;
  margin-bottom: 20px;
  color: var(--color-accent);
}

.ed__problem-title {
  font-family: 'FuturaPT', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
}

.ed__problem-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
  flex: 1;
}

.ed__problem-fix {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent);
  padding: 8px 14px;
  background: rgba(0, 255, 100, 0.08);
  border-radius: 8px;
  align-self: flex-start;
}

/* Features */
.ed__features {
  display: grid;
  gap: 20px;
}

.ed__feature {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px;
  transition: border-color 0.3s ease;
}

.ed__feature:hover {
  border-color: rgba(0, 255, 100, 0.15);
}

.ed__feature--accent {
  background: linear-gradient(135deg, rgba(0, 255, 100, 0.08), rgba(0, 255, 100, 0.02));
  border-color: rgba(0, 255, 100, 0.15);
}

.ed__feature-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  background: rgba(0, 255, 100, 0.1);
  border: 1px solid rgba(0, 255, 100, 0.2);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 16px;
}

.ed__feature-title {
  font-family: 'FuturaPT', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 2.5vw, 30px);
  margin-bottom: 12px;
}

.ed__feature-desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  max-width: 700px;
  margin-bottom: 24px;
}

.ed__feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 32px;
}

.ed__feature-list li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  padding-left: 20px;
  position: relative;
}

.ed__feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
}

/* Extras grid */
.ed__extras {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ed__extra {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.ed__extra:hover {
  border-color: rgba(0, 255, 100, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.ed__extra-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 255, 100, 0.08);
  border-radius: 12px;
  margin-bottom: 16px;
  color: var(--color-accent);
}

.ed__extra-title {
  font-family: 'FuturaPT', sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
}

.ed__extra-desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
}

/* Modules */
.ed__modules {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.ed__module {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px;
  transition: border-color 0.3s ease;
}

.ed__module:hover {
  border-color: rgba(0, 255, 100, 0.15);
}

.ed__module-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 12px;
  opacity: 0.7;
}

.ed__module-title {
  font-family: 'FuturaPT', sans-serif;
  font-weight: 800;
  font-size: 36px;
  margin-bottom: 4px;
}

.ed__module-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.ed__module-desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 20px;
}

.ed__module-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ed__module-list li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  padding-left: 20px;
  position: relative;
}

.ed__module-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
}

/* Compare table */
.ed__compare-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  scrollbar-width: thin;
  scrollbar-color: var(--color-accent) rgba(255, 255, 255, 0.06);
}

.ed__compare-wrap::-webkit-scrollbar {
  height: 6px;
}

.ed__compare-wrap::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
}

.ed__compare-wrap::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border-radius: 3px;
}

.ed__compare-wrap::-webkit-scrollbar-thumb:hover {
  background: #00cc50;
}

.ed__compare {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.ed__compare th,
.ed__compare td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ed__compare th {
  font-family: 'FuturaPT', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
  padding-bottom: 20px;
}

.ed__compare th.ed__compare-highlight {
  color: var(--color-accent);
}

.ed__compare td {
  color: rgba(255, 255, 255, 0.6);
}

.ed__compare td:first-child {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.ed__compare td.ed__compare-highlight {
  color: var(--color-accent);
  font-weight: 700;
}

.ed__compare tbody tr {
  transition: background 0.2s ease;
}

.ed__compare tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.ed__compare-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 16px;
}

/* Steps */
.ed__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ed__step {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: border-color 0.3s ease;
}

.ed__step:hover {
  border-color: rgba(0, 255, 100, 0.2);
}

.ed__step-num {
  display: block;
  font-family: 'FuturaPT', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--color-accent);
  opacity: 0.5;
  margin-bottom: 16px;
}

.ed__step-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 255, 100, 0.08);
  border-radius: 16px;
  margin: 0 auto 20px;
  color: var(--color-accent);
}

.ed__step-title {
  font-family: 'FuturaPT', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
}

.ed__step-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.ed__step-time {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-accent);
  padding: 4px 12px;
  background: rgba(0, 255, 100, 0.08);
  border-radius: 100px;
}

/* Pricing */
.ed__pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.ed__price-card {
  background: linear-gradient(135deg, rgba(0, 255, 100, 0.1), rgba(0, 255, 100, 0.03));
  border: 1px solid rgba(0, 255, 100, 0.2);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
}

.ed__price-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  background: rgba(0, 255, 100, 0.1);
  border: 1px solid rgba(0, 255, 100, 0.2);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 20px;
}

.ed__price-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 4px;
}

.ed__price-value {
  font-family: 'FuturaPT', sans-serif;
  font-weight: 800;
  font-size: 48px;
  color: var(--color-accent);
}

.ed__price-period {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.5);
}

.ed__price-monthly {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 28px;
}

.ed__price-features {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.ed__price-features li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  padding-left: 24px;
  position: relative;
}

.ed__price-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300ff64' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.ed__price-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 32px;
  background: var(--color-accent);
  color: #000;
  font-weight: 700;
  font-size: 15px;
  border-radius: 12px;
  text-decoration: none;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
  margin-bottom: 16px;
}

.ed__price-btn:hover {
  box-shadow: 0 0 30px rgba(0, 255, 100, 0.3);
  transform: translateY(-2px);
}

.ed__price-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.ed__price-note svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

/* Price info */
.ed__price-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ed__price-info-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
}

.ed__price-info-item h4 {
  font-family: 'FuturaPT', sans-serif;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 6px;
}

.ed__price-info-item p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
}

/* CTA */
.ed__cta {
  position: relative;
  background: linear-gradient(135deg, rgba(0, 255, 100, 0.08), rgba(0, 255, 100, 0.02));
  border: 1px solid rgba(0, 255, 100, 0.15);
  border-radius: 24px;
  padding: 60px 48px;
  text-align: center;
  overflow: hidden;
}

.ed__cta-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(0, 255, 100, 0.12), transparent 70%);
  pointer-events: none;
}

.ed__cta-title {
  position: relative;
  font-family: 'FuturaPT', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: 8px;
}

.ed__cta-desc {
  position: relative;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  max-width: 600px;
  margin: 0 auto 28px;
}

.ed__cta-actions {
  position: relative;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.ed__cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background: var(--color-accent);
  color: #000;
  font-weight: 700;
  font-size: 15px;
  border-radius: 12px;
  text-decoration: none;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.ed__cta-btn:hover {
  box-shadow: 0 0 30px rgba(0, 255, 100, 0.3);
  transform: translateY(-2px);
}

.ed__cta-btn--outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ed__cta-btn--outline:hover {
  border-color: rgba(0, 255, 100, 0.4);
  box-shadow: 0 0 20px rgba(0, 255, 100, 0.1);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .ed__container {
    padding: 0 20px 60px;
  }

  .ed__intro-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .ed__problems {
    grid-template-columns: 1fr;
  }

  .ed__feature-list {
    grid-template-columns: 1fr;
  }

  .ed__feature {
    padding: 28px;
  }

  .ed__extras {
    grid-template-columns: 1fr;
  }

  .ed__modules {
    grid-template-columns: 1fr;
  }

  .ed__module {
    padding: 28px;
  }

  .ed__steps {
    grid-template-columns: 1fr;
  }

  .ed__pricing {
    grid-template-columns: 1fr;
  }

  .ed__price-card {
    padding: 28px;
  }

  .ed__cta {
    padding: 40px 24px;
  }

  .ed__cta-btn {
    width: 100%;
    justify-content: center;
  }

  .ed__compare th,
  .ed__compare td {
    padding: 12px 14px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .ed__intro-stats {
    grid-template-columns: 1fr;
  }

  .ed__stat-num {
    font-size: 26px;
  }

  .ed__price-value {
    font-size: 36px;
  }
}

/* ============================================
   Floating EduDocs Widget
   ============================================ */

.fab-ed {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%) translateX(-100%);
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.4s ease;
  /* Не мешаем кликам по контенту пока скрыт */
  pointer-events: none;
}

.fab-ed.is-visible {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
  pointer-events: auto;
}

/* Общая подложка — единый фон для иконки + текста */
.fab-ed__inner {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(0, 255, 100, 0.1), rgba(0, 255, 100, 0.04));
  border: 1px solid rgba(0, 255, 100, 0.15);
  border-left: none;
  border-radius: 0 14px 14px 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.fab-ed:hover .fab-ed__inner {
  background: linear-gradient(135deg, rgba(0, 255, 100, 0.12), rgba(0, 255, 100, 0.06));
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.5);
}

/* Иконка */
.fab-ed__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  color: var(--color-accent);
}

/* Текстовая часть — скрыта по умолчанию */
.fab-ed__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1px;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  padding: 8px 0;
  opacity: 0;
  transition: max-width 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              padding 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.3s ease;
}

/* Раскрытие при наведении */
.fab-ed:hover .fab-ed__body {
  max-width: 180px;
  padding: 8px 18px 8px 0;
  opacity: 1;
}

.fab-ed__title {
  font-family: 'FuturaPT', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  color: var(--color-accent);
}

.fab-ed__sub {
  font-size: 11px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.5);
}

/* Лёгкая пульсация при появлении — привлекает внимание один раз */
.fab-ed.is-visible .fab-ed__inner {
  animation: fabPulse 2s ease-in-out 0.6s 2;
}

@keyframes fabPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4); }
  50% { box-shadow: 0 4px 24px rgba(0, 255, 100, 0.2), 0 0 0 6px rgba(0, 255, 100, 0.06); }
}

/* Мобилка — скрываем виджет */
@media (max-width: 768px) {
  .fab-ed {
    display: none;
  }
}

/* ============================================
   Floating KP Widget (Коммерческое предложение)
   ============================================ */

.fab-kp {
  position: fixed;
  left: 0;
  top: calc(50% + 70px);
  transform: translateY(-50%) translateX(-100%);
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.4s ease;
  pointer-events: none;
  border: none;
  background: none;
  padding: 0;
  font-family: inherit;
}

.fab-kp.is-visible {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.fab-kp__inner {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(80, 140, 255, 0.12), rgba(80, 140, 255, 0.04));
  border: 1px solid rgba(80, 140, 255, 0.2);
  border-left: none;
  border-radius: 0 14px 14px 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.fab-kp:hover .fab-kp__inner {
  background: linear-gradient(135deg, rgba(80, 140, 255, 0.18), rgba(80, 140, 255, 0.08));
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.5);
}

.fab-kp__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  color: #508cff;
}

.fab-kp__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1px;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  padding: 8px 0;
  opacity: 0;
  transition: max-width 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              padding 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.3s ease;
}

.fab-kp:hover .fab-kp__body {
  max-width: 180px;
  padding: 8px 18px 8px 0;
  opacity: 1;
}

.fab-kp__title {
  font-family: 'FuturaPT', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  color: #508cff;
}

.fab-kp__sub {
  font-size: 11px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.5);
}

.fab-kp.is-visible .fab-kp__inner {
  animation: fabKpPulse 2s ease-in-out 1.2s 2;
}

@keyframes fabKpPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4); }
  50% { box-shadow: 0 4px 24px rgba(80, 140, 255, 0.2), 0 0 0 6px rgba(80, 140, 255, 0.06); }
}

@media (max-width: 768px) {
  .fab-kp {
    display: none;
  }
}

/* ── Floating button: Analyzer ── */
.fab-analyzer {
  position: fixed;
  left: 0;
  top: calc(50% + 140px);
  transform: translateY(-50%) translateX(-100%);
  z-index: 900;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.4s ease;
  pointer-events: none;
}

.fab-analyzer.is-visible {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.fab-analyzer__inner {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 160, 40, 0.12), rgba(255, 160, 40, 0.04));
  border: 1px solid rgba(255, 160, 40, 0.2);
  border-left: none;
  border-radius: 0 14px 14px 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.fab-analyzer:hover .fab-analyzer__inner {
  background: linear-gradient(135deg, rgba(255, 160, 40, 0.18), rgba(255, 160, 40, 0.08));
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.5);
}

.fab-analyzer__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  color: #ffa028;
}

.fab-analyzer__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1px;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  padding: 8px 0;
  opacity: 0;
  transition: max-width 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              padding 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.3s ease;
}

.fab-analyzer:hover .fab-analyzer__body {
  max-width: 220px;
  padding: 8px 18px 8px 0;
  opacity: 1;
}

.fab-analyzer__title {
  font-family: 'FuturaPT', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  color: #ffa028;
}

.fab-analyzer__sub {
  font-size: 11px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.5);
}

.fab-analyzer.is-visible .fab-analyzer__inner {
  animation: fabAnalyzerPulse 2s ease-in-out 1.5s 2;
}

@keyframes fabAnalyzerPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4); }
  50% { box-shadow: 0 4px 24px rgba(255, 160, 40, 0.2), 0 0 0 6px rgba(255, 160, 40, 0.06); }
}

@media (max-width: 768px) {
  .fab-analyzer {
    display: none;
  }
}
