:root {
  --orange: #FF6600;
  --orange-h: #E55A00;
  --orange-soft: #FFF3EC;
  --black: #111111;
  --dark: #1C1C1C;
  --gray: #6B6B6B;
  --gray-light: #F5F5F5;
  --gray-border: #E8E8E8;
  --white: #FFFFFF;
  --max: 1400px;
  --pad: 40px;
  --r: 10px;
  --r2: 16px;
}

@font-face {
  font-family: 'Bebas Neue Cyrillic';
  src: url('/fonts/bebasneuecyrillic.woff2') format('woff2'),
       url('/fonts/bebasneuecyrillic.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  font-family: 'Manrope', sans-serif;
  background: var(--white);
  color: var(--black);
  font-size: 15px;
  line-height: 1.65;
  overflow-x: clip;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Bebas Neue Cyrillic', sans-serif; text-transform: uppercase; letter-spacing: 0.07em; }
h2 { font-size: clamp(24px, 5vw, 46px); font-weight: 700; line-height: 1.1; color: var(--black); margin-bottom: 16px; }
h3 { font-size: clamp(17px, 3vw, 22px); font-weight: 700; line-height: 1.25; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  box-sizing: border-box;
}

/* в”Ђв”Ђ HEADER в”Ђв”Ђ */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
header.scrolled {
  border-color: var(--gray-border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.logo img { height: 40px; width: auto; display: block; }
.logo-text {
  font-family: 'Manrope', sans-serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--black);
}
.logo-text span { color: var(--orange); }

nav { display: flex; gap: 28px; }
nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  transition: color 0.2s;
  white-space: nowrap;
}
nav a:hover { color: var(--orange); }

.header-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.hdr-phone {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  white-space: nowrap;
}
.hdr-phone:hover { color: var(--orange); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: 6px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  letter-spacing: 0.03em;
  transition: all 0.2s;
  white-space: nowrap;
  text-decoration: none;
}
.btn-orange { background: var(--orange); color: var(--white); }
.btn-orange:hover { background: var(--orange-h); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(255,102,0,0.3); }

/* в”Ђв”Ђ BURGER в”Ђв”Ђ */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.burger span { display: block; width: 22px; height: 2px; background: var(--black); border-radius: 2px; transition: all 0.3s; }

/* в”Ђв”Ђ MOBILE MENU в”Ђв”Ђ */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 600;
  background: var(--white);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px 24px 40px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu nav a {
  font-family: 'Manrope', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-border);
  display: block;
}
.mobile-menu nav a:hover { color: var(--orange); }
.m-logo { margin-bottom: 12px; padding-right: 25px; margin-left: -15px; }
.m-logo img { height: 42px; width: auto; }
.m-logo .logo-text { font-family: 'Manrope', sans-serif; font-size: 22px; font-weight: 900; color: var(--black); }
.m-logo .logo-text span { color: var(--orange); }
.mobile-menu .m-bottom { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.m-phone { font-family: 'Manrope', sans-serif; font-size: 18px; font-weight: 700; color: var(--black); }
.m-phone:hover { color: var(--orange); }
.mobile-close {
  position: absolute; top: 18px; right: 18px;
  background: none; border: none;
  font-size: 28px; color: var(--black); cursor: pointer; line-height: 1;
}

/* в”Ђв”Ђ PORTFOLIO GRID в”Ђв”Ђ */
.portfolio-hero {
  padding: 152px 0 96px;
  background: var(--gray-light);
}

.section-tag {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 12px;
}

h1 {
  font-family: 'Bebas Neue Cyrillic', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4.5vw, 60px);
  line-height: 1.07;
  color: var(--black);
  margin-bottom: 20px;
}

.portfolio-filters {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 18px;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 100px;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--gray);
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn.active, .filter-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-soft);
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding-bottom: 96px;
}

.case {
  background: var(--white);
  border-radius: var(--r2);
  overflow: hidden;
  border: 1px solid var(--gray-border);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.case:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }

.case-img { aspect-ratio: 16/9; overflow: hidden; background: #E0E0E0; position: relative; }
.case-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.case:hover .case-img img { transform: scale(1.04); }

.case-result-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(255, 102, 0, 0.9);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

.case-body { padding: 24px; flex-grow: 1; display: flex; flex-direction: column; }
.case-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.case-tag {
  padding: 3px 10px;
  background: var(--gray-light);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gray);
}
.case-name { font-size: 19px; font-weight: 700; color: var(--black); margin-bottom: 16px; line-height: 1.3; }

.case-metrics {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed var(--gray-border);
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.metric { display: flex; flex-direction: column; gap: 2px; }
.metric-val { font-family: 'Manrope', sans-serif; font-size: 16px; font-weight: 800; color: var(--orange); }
.metric-lbl { font-size: 11px; color: var(--gray); font-weight: 500; }

.case-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: gap 0.2s;
}
.case-link:hover { gap: 10px; }
.case-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; }

/* в”Ђв”Ђ FOOTER в”Ђв”Ђ */
footer { background: var(--dark); padding: 64px 0 32px; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
.footer-top > * { min-width: 0; }
.footer-logo { display: block; margin-bottom: 14px; }
.footer-logo img { height: 36px; filter: brightness(0) invert(1); }
.footer-logo-text {
  font-family: 'Manrope', sans-serif;
  font-size: 20px; font-weight: 900;
  color: var(--white);
}
.footer-logo-text span { color: var(--orange); }
.footer-about { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.social {
  width: 36px; height: 36px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; color: rgba(255,255,255,0.4);
}
.social:hover { border-color: var(--orange); color: var(--orange); background: rgba(255,102,0,0.1); }
.social svg { width: 16px; height: 16px; fill: currentColor; }
.footer-col h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.3); margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col li a:hover { color: var(--orange); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; flex-wrap: wrap;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-phone { font-size: 14px; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-phone:hover { color: var(--orange); }

/* в”Ђв”Ђ FLOATING BUTTONS в”Ђв”Ђ */
.fab {
  position: fixed;
  right: 20px;
  bottom: 32px;
  z-index: 400;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.fab-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}
.fab-btn:hover { transform: scale(1.1); }
.fab-btn-up { background: var(--white); color: var(--dark); box-shadow: 0 2px 12px rgba(0,0,0,0.15); opacity: 0; transition: opacity 0.3s, transform 0.2s, box-shadow 0.2s; }
.fab-btn-up.visible { opacity: 1; }
.fab-btn-tg { background: #29A8EB; color: #fff; box-shadow: 0 2px 12px rgba(41,168,235,0.4); }
.fab-btn-max { background: #6A3FBF; color: #fff; box-shadow: 0 2px 12px rgba(106,63,191,0.4); }
.fab-btn-call { background: var(--orange); color: #fff; box-shadow: 0 2px 12px rgba(255,102,0,0.4); }

/* в”Ђв”Ђ MOBILE BOTTOM BAR в”Ђв”Ђ */
.fab-mobile {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--white);
  border-top: 1px solid var(--gray-border);
  box-shadow: 0 -2px 12px rgba(0,0,0,0.06);
  z-index: 500;
  justify-content: space-around;
  align-items: center;
  padding: 0 0.5rem;
  touch-action: manipulation;
}
.fab-mobile a,
.fab-mobile button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: 44px;
  min-height: 44px;
  font-size: 0.625rem;
  color: var(--gray);
  padding: 0.375rem 0.25rem;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
}
.fab-m-tg { color: #29A8EB !important; }
.fab-m-max { color: #6A3FBF !important; }
.fab-m-call { color: var(--orange) !important; }
.fab-m-menu {
  color: var(--white) !important;
  background: var(--orange) !important;
  border-radius: var(--r);
  padding: 0.375rem 0.75rem !important;
  min-width: 52px;
}
.fab-m-menu:active { transform: scale(0.95); }
.fab-mobile svg { width: 20px; height: 20px; }

/* в”Ђв”Ђ REVEAL в”Ђв”Ђ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .cases-grid { grid-template-columns: 1fr; }
  :root { --pad: 24px; }
  .portfolio-hero { padding: 100px 0 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  nav { display: none; }
  .burger { display: flex; }
  .hdr-phone { display: none; }
}

@media (max-width: 700px) {
  .fab { display: none !important; }
  .fab-mobile { display: flex !important; }
  body { padding-bottom: 60px; }
}

/* в”Ђв”Ђ PAGINATION в”Ђв”Ђ */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
}
.page-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--gray);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.page-btn:hover, .page-btn.active {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-soft);
}
.page-btn.dots {
  border-color: transparent;
  background: transparent;
  cursor: default;
}
.page-btn.prev, .page-btn.next {
  width: auto;
  padding: 0 16px;
}
.page-btn svg { width: 16px; height: 16px; }

/* в”Ђв”Ђ FORM ELEMENTS в”Ђв”Ђ */
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 11px; font-weight: 700;
  font-family: 'Manrope', sans-serif;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--gray); margin-bottom: 6px;
}
.field input, .field textarea {
  width: 100%;
  background: var(--gray-light);
  border: 1.5px solid var(--gray-border);
  border-radius: 8px;
  padding: 13px 16px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px; color: var(--black);
  outline: none;
  appearance: none;
  transition: border-color 0.2s, background 0.2s;
}
.field input:focus, .field textarea:focus { border-color: var(--orange); background: var(--white); }
.field textarea { resize: vertical; min-height: 100px; }

.channel-label {
  display: block;
  font-size: 11px; font-weight: 700;
  font-family: 'Manrope', sans-serif;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--gray); margin-bottom: 8px;
}
.channels { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.ch-btn {
  padding: 10px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--gray-border);
  background: var(--white);
  font-family: 'Manrope', sans-serif; font-size: 13px; font-weight: 700;
  color: var(--gray); cursor: pointer; transition: all 0.2s;
}
.ch-btn.active, .ch-btn:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-soft); }

.consent { display: flex; align-items: flex-start; gap: 10px; margin: 18px 0 22px; }
.consent input[type=checkbox] { flex-shrink: 0; width: 16px; height: 16px; margin-top: 2px; accent-color: var(--orange); }
.consent label { font-size: 12px; color: var(--gray); line-height: 1.5; cursor: pointer; }
.consent label a { color: var(--orange); }

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 8px;
  justify-content: center;
}

/* в”Ђв”Ђ AI SERVICE CARD в”Ђв”Ђ */
.svc-ai {
  grid-column: 1 / -1;
  background: var(--black);
  border-color: var(--black);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
  border-radius: var(--r2);
  margin: 20px 0;
}
.svc-ai:hover { border-color: var(--orange); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(255,102,0,0.15); }
.svc-ai-left {
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}
.svc-ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 100px;
  width: fit-content;
}
.svc-ai h3 {
  font-size: clamp(20px, 2.5vw, 28px);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0;
}
.svc-ai p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 0; }
.svc-ai-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.svc-ai-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}
.svc-ai-feat::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}
.svc-ai-right {
  background: var(--orange);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 36px;
  gap: 20px;
  text-align: center;
}
.svc-ai-price {
  font-family: 'Manrope', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 4vw, 56px);
  color: #fff;
  line-height: 1;
}
.svc-ai-price span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  margin-top: 4px;
}
.btn-ai {
  background: #fff;
  color: var(--orange);
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
  width: 100%;
  text-align: center;
  letter-spacing: 0.03em;
}
.btn-ai:hover { background: var(--black); color: #fff; }
.svc-ai-note { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.5; }

/* в”Ђв”Ђ UTILITIES в”Ђв”Ђ */
.glass {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 32px rgba(0,0,0,0.03);
}

.bg-text {
  position: absolute;
  top: 100px; left: 50%;
  transform: translateX(-50%);
  font-family: 'Manrope', sans-serif;
  font-size: 20vw;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0,0,0,0.03);
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
  user-select: none;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1); opacity: 0; }
}
.pulse {
  position: relative;
  display: inline-block;
  width: 12px; height: 12px;
  background: var(--orange);
  border-radius: 50%;
}
.pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  animation: pulse 2s infinite;
}

/* в”Ђв”Ђ TOOLTIP в”Ђв”Ђ */
.tooltip-wrap { position: relative; display: flex; align-items: center; }
.tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  background: var(--dark);
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--dark);
}
.tooltip-wrap:hover .tooltip { opacity: 1; transform: translateX(-50%) translateY(0); }
.tooltip-wrap:hover svg { opacity: 1 !important; color: var(--orange); }

/* ── FLOATING VIDEO TEASER ── */
.video-teaser {
  position: fixed;
  left: 32px;
  bottom: 32px;
  width: 200px;
  aspect-ratio: 16/9;
  background: var(--black);
  border-radius: 12px;
  overflow: hidden;
  z-index: 450;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  border: 2px solid var(--white);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.video-teaser:hover { transform: scale(1.05) translateY(-5px); }

.flicker-box {
  width: 100%;
  height: 100%;
  position: relative;
}
.flicker-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: flickerAnimation 4s infinite;
}
.flicker-img:nth-child(2) { animation-delay: 1s; }
.flicker-img:nth-child(3) { animation-delay: 2s; }
.flicker-img:nth-child(4) { animation-delay: 3s; }

@keyframes flickerAnimation {
  0%, 20% { opacity: 0; }
  25%, 45% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

.teaser-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 102, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.video-teaser:hover .teaser-overlay { background: rgba(0,0,0,0.2); }

.teaser-play-icon {
  width: 40px;
  height: 40px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(255,102,0,0.4);
}
.teaser-play-icon svg { width: 20px; height: 20px; fill: currentColor; margin-left: 2px; }

.teaser-minimize,
.teaser-close {
  position: absolute;
  top: 4px;
  z-index: 10;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}
.video-teaser:hover .teaser-minimize,
.video-teaser:hover .teaser-close { opacity: 1; }
.teaser-minimize:hover,
.teaser-close:hover { background: rgba(0,0,0,0.9); }
.teaser-minimize { right: 30px; }
.teaser-close { right: 4px; }

.video-teaser-pill {
  display: none;
  position: fixed;
  left: 32px;
  bottom: 32px;
  z-index: 260;
  background: var(--white);
  border: 2px solid var(--orange);
  border-radius: 24px;
  padding: 8px 16px;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  gap: 8px;
  align-items: center;
  box-shadow: 0 4px 16px rgba(255,102,0,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.video-teaser-pill:hover { transform: scale(1.05); box-shadow: 0 6px 20px rgba(255,102,0,0.4); }
.video-teaser-pill svg { flex-shrink: 0; }

@media (max-width: 700px) {
  .video-teaser {
    left: 16px;
    bottom: 80px;
    width: 100px;
    aspect-ratio: 9/16;
  }
  .teaser-minimize,
  .teaser-close {
    width: 18px;
    height: 18px;
    font-size: 11px;
    opacity: 1;
  }
  .teaser-minimize { right: 24px; }
  .teaser-close { right: 2px; }
  .video-teaser-pill {
    left: 16px;
    bottom: 80px;
  }
  #videoModal > div {
    width: 85% !important;
    aspect-ratio: 9/16 !important;
  }
}

/* ── CONTACT SECTION ── */
.contact { background: var(--gray-light); padding: 96px 0; border-bottom: none; text-align: left; overflow: visible; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-inner > * { min-width: 0; }
.contact-left h2 { margin-bottom: 16px; }
.contact-left > p { font-size: 15px; color: var(--gray); line-height: 1.7; margin-bottom: 28px; }

/* ── Employee slider (card deck) ── */
.emp-slider { position: relative; max-width: 320px; }
.emp-slider-viewport { position: relative; width: 100%; height: 280px; }
.emp-slide { position: absolute; width: 100%; height: 100%; border-radius: var(--r2); overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.12); transition: transform 0.5s cubic-bezier(0.23,1,0.32,1), opacity 0.35s ease, box-shadow 0.5s ease; will-change: transform, opacity; cursor: pointer; }
.emp-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.emp-slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--gray-border); background: var(--white); box-shadow: 0 2px 8px rgba(0,0,0,0.08); cursor: pointer; font-size: 22px; line-height: 1; color: var(--black); display: flex; align-items: center; justify-content: center; transition: all 0.25s ease; z-index: 20; padding: 0; outline: none; }
.emp-slider-arrow:hover { background: var(--orange); border-color: var(--orange); color: #fff; box-shadow: 0 4px 20px rgba(255,102,0,0.25); }
.emp-slider-prev { left: -18px; }
.emp-slider-next { right: -18px; }
.emp-slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 12px; }
.emp-slider-dot { width: 10px; height: 10px; border-radius: 50%; border: none; background: var(--gray-border); cursor: pointer; transition: background 0.3s, transform 0.3s; padding: 0; }
.emp-slider-dot.active { background: var(--orange); transform: scale(1.25); }
.emp-slider-caption { text-align: center; margin-top: 10px; transition: opacity 0.25s ease; }
.emp-slide-name { font-family: 'Bebas Neue Cyrillic', sans-serif; font-size: 18px; font-weight: 700; text-transform: uppercase; color: var(--black); line-height: 1.2; }
.emp-slide-position { font-size: 13px; color: var(--gray); margin-top: 2px; }
@media (max-width: 600px) {
  .emp-slider-viewport { height: 220px; }
  .emp-slider-arrow { width: 30px; height: 30px; font-size: 18px; }
  .emp-slider-prev { left: -12px; }
  .emp-slider-next { right: -12px; }
}
.address {
  display: flex; align-items: flex-start; gap: 12px;
  margin-top: 28px; padding-top: 24px;
  border-top: 1px solid var(--gray-border);
}
.address svg { width: 18px; height: 18px; stroke: var(--orange); fill: none; stroke-width: 1.8; stroke-linecap: round; flex-shrink: 0; margin-top: 2px; }
.address p { font-size: 14px; color: var(--gray); line-height: 1.6; }
.address strong { color: var(--black); font-weight: 600; }

.form-box {
  background: var(--white);
  border-radius: var(--r2);
  padding: 44px;
  border: 1px solid var(--gray-border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}
.form-box h3 { font-size: 22px; margin-bottom: 28px; }
.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-size: 11px; font-weight: 700;
  font-family: 'Manrope', sans-serif;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--gray); margin-bottom: 6px;
}
.field input, .field textarea {
  width: 100%;
  background: var(--gray-light);
  border: 1.5px solid var(--gray-border);
  border-radius: 8px;
  padding: 13px 16px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px; color: var(--black);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  appearance: none;
}
.field input::placeholder, .field textarea::placeholder { color: #ABABAB; }
.field input:focus, .field textarea:focus { border-color: var(--orange); background: var(--white); }
.field input.field-error, .field textarea.field-error { border-color: #e53e3e; background: #FFF5F5; }
.field-error-msg {
  display: block;
  font-size: 12px;
  color: #e53e3e;
  margin-top: 4px;
  font-weight: 500;
}
.field textarea { resize: vertical; min-height: 90px; }

.channel-label {
  display: block;
  font-size: 11px; font-weight: 700;
  font-family: 'Manrope', sans-serif;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--gray); margin-bottom: 8px;
}
.channels { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.ch-btn {
  padding: 8px 16px;
  border-radius: 100px;
  border: 1.5px solid var(--gray-border);
  background: var(--white);
  font-family: 'Manrope', sans-serif; font-size: 13px; font-weight: 500;
  color: var(--gray); cursor: pointer; transition: all 0.18s;
}
.ch-btn.active, .ch-btn:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-soft); }
.consent { display: flex; align-items: flex-start; gap: 10px; margin: 18px 0 22px; }
.consent input[type=checkbox] { flex-shrink: 0; width: 32px; height: 32px; margin-top: 0; accent-color: var(--orange); cursor: pointer; position: relative; z-index: 1; }
.consent input[type=checkbox]:not(:checked) { animation: consent-pulse 2s ease-in-out infinite; }
@keyframes consent-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,102,0,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(255,102,0,0); }
}
.consent label { font-size: 12px; color: var(--gray); line-height: 1.5; cursor: pointer; padding-left: 4px; }
.consent label a { color: var(--orange); }
.form-submit { width: 100%; padding: 15px; font-size: 14px; border-radius: 8px; }

@media (max-width: 900px) {
  .contact-inner { gap: 48px; }
}
@media (max-width: 600px) {
  .contact-inner { grid-template-columns: 1fr; }
}
