/* Общие стили проекта (подключается после normalize.css и fonts.css) */

.grainient-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* ── fbrand-components.js — ServicesGrid (опциональный WebGL-фон, как в Hero) ── */
.services-grid-grainient {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.services-grid-scrim {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0) 100%);
  pointer-events: none;
}

/* Утилита для текста, скрытого визуально, но доступного скринридерам */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── fbrand-components.js — UI primitives ──────── */
.ui-glass-card {
  background: rgba(14,14,31,0.035);
  backdrop-filter: blur(28px);
  border: 1px solid rgba(14,14,31,0.12);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.ui-glass-card__top-line {
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(14,14,31,0.08), transparent);
}

.ui-card {
  border-radius: 20px;
  transition: background 0.25s, border-color 0.25s;
}

.ui-primary-btn {
  position: relative;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 50px;
  padding: 15px 30px;
  font-family: 'Futura New Book', sans-serif;
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  white-space: nowrap;
}

/* Hover gradient lives on its own layer so it can crossfade in via opacity —
   `background` can't be transitioned between a solid color and a gradient. */
.ui-primary-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: linear-gradient(135deg, #0D2C94, #5B10A5);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 0;
}

.ui-primary-btn:hover::before {
  opacity: 1;
}

/* Canvas extends past the button so the specular rim can bleed outside the edge */
.ui-primary-btn__fx {
  position: absolute;
  inset: -20px;
  pointer-events: none;
  z-index: 1;
}

.ui-primary-btn__fx canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.ui-primary-btn__label {
  position: relative;
  z-index: 2;
}

.ui-outline-btn {
  color: #0E0E1F;
  border-radius: 50px;
  padding: 15px 30px;
  font-family: 'Futura New Book', sans-serif;
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
}

.ui-label {
  font-size: 18px;
  color: oklch(0.65 0.27 272);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.ui-h1 {
  font-family: 'Futura New Demi', sans-serif;
  font-weight: 900;
  font-size: 62px;
  line-height: 1.08;
  color: #0E0E1F;
  letter-spacing: -0.03em;
  margin: 0;
}

.ui-h2 {
  font-family: 'Futura New Demi', sans-serif;
  font-weight: 400;
  font-size: 62px;
  line-height: 1.05;
  color: #0E0E1F;
  letter-spacing: -0.03em;
  margin: 0;
}

.ui-accent {
  background: linear-gradient(90deg, #2690DF, #822CD7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ui-grid12 {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(16px, 2vw, 32px);
  row-gap: clamp(16px, 2vw, 32px);
}

.ui-col {
  min-width: 0;
}

.ui-wrap {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 72px);
  box-sizing: border-box;
}

.ui-messenger-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 50px;
  border: 1px solid rgba(14,14,31,0.14);
  color: #0E0E1F;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
}

/* ── fbrand-components.js — Nav ────────────────── */
.ui-nav {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1200px, calc(100vw - 48px));
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 28px;
  height: 64px;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  transition: all 0.35s ease;
}

@media (max-width: 599px) {
  .ui-nav {
    top: 8px;
    width: calc(100vw - 16px);
    padding: 0 14px;
    height: 56px;
    border-radius: 16px;
  }
}

/* Between the mobile nav (JS swaps layout under 768px) and the point where the
   nav's own min(1200px, ...) width has room for everything, the tagline was the
   widest optional piece — dropping it first is what buys back the space; menu
   and social gaps get a little tighter too so the button doesn't crowd Блог. */
@media (min-width: 768px) and (max-width: 1180px) {
  .ui-nav__divider,
  .ui-nav__tagline {
    display: none !important;
  }
  .ui-nav__menu {
    gap: clamp(14px, 2vw, 28px);
  }
  .ui-nav__right {
    gap: clamp(10px, 1.5vw, 18px);
  }
}

/* Dropping the tagline alone still isn't enough right above the mobile cutoff —
   logo, links, socials and the CTA button no longer fit on one row. Drop the
   social icons too; they're not load-bearing here since the CTA is the primary
   action and VK/Telegram links are repeated in the hero below. */
@media (min-width: 768px) and (max-width: 899px) {
  .ui-nav__socials {
    display: none !important;
  }
}

.ui-nav__left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ui-nav__brand-link {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
}

/* Shared F-Brand wordmark (mask → can recolor / gradient like old text logo) */
.ui-brand-logo {
  display: block;
  width: 96px;
  height: 25px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #0E0E1F 30%, #822CD7);
  -webkit-mask: url('/assets/img/logo.svg') no-repeat center / contain;
  mask: url('/assets/img/logo.svg') no-repeat center / contain;
}

.ui-brand-logo--on-dark {
  background: linear-gradient(135deg, #FFFFFF 30%, #C9A6F5);
}

.ui-nav__divider {
  width: 1px;
  height: 28px;
  background: rgba(14,14,31,0.12);
}

.ui-nav__tagline {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.ui-nav__tagline-line {
  font-size: 18px;
  color: rgba(14,14,31,0.45);
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}

.ui-nav__right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.ui-nav__menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.ui-nav__menu-link {
  font-size: 18px;
  font-weight: 500;
  color: rgba(14, 14, 31, 0.45);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}

.ui-nav__menu-link:hover {
  color: #0E0E1F;
}

.ui-nav__socials {
  display: flex;
  gap: 10px;
}

.ui-nav__social-link {
  display: flex;
  text-decoration: none;
  transition: transform 0.2s;
}

/* ── fbrand-components.js — Nav dark variant (over the dark hero, pre-scroll) ── */
.ui-nav--dark .ui-brand-logo {
  background: linear-gradient(135deg, #FFFFFF 30%, #C9A6F5);
}

.ui-nav--dark .ui-nav__divider {
  background: rgba(255,255,255,0.2);
}

.ui-nav--dark .ui-nav__tagline-line {
  color: rgba(255,255,255,0.7);
}

.ui-nav--dark .ui-nav__menu-link {
  color: rgba(255, 255, 255, 0.7);
}

.ui-nav--dark .ui-nav__menu-link:hover {
  color: #FFFFFF;
}

.ui-nav--dark .ui-nav__social-link {
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  padding: 3px;
}

.ui-nav--dark .ui-nav__social-link img {
  filter: invert(1);
}

/* ── fbrand-components.js — Breadcrumb ─────────── */
.ui-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 18px;
  color: rgba(14,14,31,0.35);
  margin-bottom: 24px;
}

.ui-breadcrumb__link {
  color: rgba(14,14,31,0.45);
  text-decoration: none;
}

/* ── fbrand-components.js — ServiceHero ────────── */
.ui-service-hero__h2 {
  font-family: 'Futura New Demi', sans-serif;
  font-weight: 700;
  font-size: 62px;
  color: rgba(14,14,31,0.55);
  margin-top: 10px;
}

.ui-service-hero__sub {
  color: rgba(14,14,31,0.55);
  font-size: 18px;
  margin-top: 18px;
  line-height: 1.65;
  max-width: 480px;
}

.ui-service-hero__results-box {
  margin-top: 28px;
  padding: 20px 22px;
  background: rgba(14,14,31,0.03);
  border: 1px solid rgba(14,14,31,0.08);
  border-radius: 16px;
  max-width: 480px;
}

.ui-service-hero__results-label {
  font-size: 18px;
  font-weight: 700;
  color: rgba(14,14,31,0.45);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.ui-service-hero__results-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ui-service-hero__results-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ui-service-hero__results-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2690DF, #822CD7);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ui-service-hero__results-text {
  font-size: 18px;
  font-weight: 600;
  color: #0E0E1F;
}

.ui-service-hero__cta-wrap {
  margin-top: 28px;
}

.ui-service-hero__results-note {
  font-size: 18px;
  color: rgba(14,14,31,0.4);
  margin-top: 16px;
  font-weight: 500;
}

/* ── fbrand-components.js — CTABlock ───────────── */
.ui-cta-block {
  background: rgba(14,14,31,0.04);
  border: 1px solid rgba(14,14,31,0.08);
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
}

.ui-cta-block__title {
  font-family: 'Futura New Demi', sans-serif;
  font-weight: 800;
  font-size: 62px;
  margin-bottom: 12px;
}

.ui-cta-block__subtitle {
  color: rgba(14,14,31,0.45);
  font-size: 18px;
  margin-bottom: 28px;
}

/* ── fbrand-components.js — PageFooter ─────────── */
.ui-page-footer {
  padding: 60px 0 40px;
  border-top: 1px solid rgba(14,14,31,0.07);
}

.ui-page-footer__brand-link {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 8px;
  text-decoration: none;
}

.ui-page-footer__tagline {
  font-size: 18px;
  color: rgba(14,14,31,0.3);
  line-height: 1.5;
}

.ui-page-footer__copyright {
  font-size: 18px;
  color: rgba(14,14,31,0.22);
  margin-top: 8px;
}

.ui-page-footer__legal-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ui-page-footer__legal-link {
  font-size: 18px;
  color: rgba(14,14,31,0.25);
  text-decoration: none;
}

.ui-page-footer__address {
  font-size: 18px;
  color: rgba(14,14,31,0.18);
  text-align: right;
}

/* ── fbrand-app.js — Hero ─────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #0E0E1F;
}

.hero-grainient {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-section .ui-h1 {
  color: #FFFFFF;
}

/* JS always renders the H1 at a fixed 150px (desktop) inline style — the word-fit
   script (HeroWordBlob) auto-shrinks via transform:scale only down to a 0.6 floor,
   which was tuned for the wide desktop column and still overflows a phone-width
   h1. Override the base size here so mobile starts from a size that already fits. */
@media (max-width: 768px) {
  .hero-section .ui-h1 {
    font-size: clamp(40px, 11vw, 84px) !important;
  }
}

/* Between mobile and the 2560px design breakpoint, the fixed 150px inline size
   was overflowing the 7-col hero column (e.g. ~1500px) faster than the JS
   scale-to-fit floor could compensate. Scale it down fluidly instead, meeting
   150px at 2560px and the mobile clamp's ~84px ceiling at 769px. */
@media (min-width: 769px) and (max-width: 2560px) {
  .hero-section .ui-h1 {
    font-size: clamp(84px, calc(3.69vw + 55.6px), 150px) !important;
  }
}

.hero-word-blob {
  position: relative;
  display: inline-block;
  min-width: 13ch;
  white-space: nowrap;
  font-family: 'Futura New Book Oblique', sans-serif;
}

.hero-title-tail {
  letter-spacing: 0em;
}

.hero-lead {
  color: rgba(255,255,255,0.68);
  font-size: 18px;
  margin-top: 20px;
  line-height: 1.65;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

#messenger-hero-btns {
  display: flex;
  gap: 10px;
}

.hero-messenger-link {
  display: flex;
  text-decoration: none;
  transition: transform 0.2s;
  padding: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.14);
}

.hero-messenger-link img {
  filter: invert(1);
}

.hero-proof-text {
  font-size: 18px;
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
  font-weight: 500;
}

/* ── Shared liquid glass fill (ClientResultsPlate + ServicesGrid cards) ── */
.ui-liquid-glass {
  position: relative;
  overflow: hidden;
  background: rgba(14, 14, 31, 0.08);
  backdrop-filter: blur(28px) saturate(1.55);
  -webkit-backdrop-filter: blur(28px) saturate(1.55);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 8px 32px rgba(0, 0, 0, 0.22);
}

.ui-liquid-glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  pointer-events: none;
  z-index: 1;
}

/* ── fbrand-components.js — ClientResultsPlate (liquid glass) ── */
.client-results-plate {
  margin-top: 16px;
  padding: 22px 20px;
  max-width: 520px;
  box-sizing: border-box;
  border-radius: 15px;
}

.service-grid-card {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  border-radius: 15px;
  text-decoration: none;
  transition: transform 0.25s;
}

/* JS sets a fixed height (334px) on every non-mobile render, sized for the
   grid's own design width (capped at 1200px / 3 cols → ~374px per card no
   matter how wide the viewport gets). The 5-bullet cards (e.g. "Маркетинговая
   упаковка сообщества ВКонтакте") don't actually fit that height even at full
   design width, so this clipped via this card's own overflow:hidden at every
   non-mobile size, not just the narrow end. min-height keeps rows visually
   even without truncating. */
@media (min-width: 900px) {
  .service-grid-card {
    height: auto !important;
    min-height: 334px !important;
  }
}

.service-grid-card__title {
  position: relative;
  margin-top: 24px;
  padding: 0 28px;
  font-family: 'Futura New Book', sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: #FFFFFF;
  line-height: 1.2;
  box-sizing: border-box;
}

.service-grid-card__list {
  position: relative;
  list-style: none;
  margin: 18px 0 0;
  padding: 0 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-sizing: border-box;
}

.service-grid-card__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Futura New Light', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.service-grid-card__dot {
  width: 5px;
  height: 5px;
  margin-top: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  flex-shrink: 0;
}

.service-grid-cursor-badge {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  pointer-events: none;
  transform: translate3d(-9999px, -9999px, 0) translate(-50%, -50%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 124px;
  height: 124px;
  box-sizing: border-box;
  padding: 10px;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(19, 72, 112, 0.5), rgba(65, 22, 108, 0.5));
  backdrop-filter: blur(18px) saturate(1.55);
  -webkit-backdrop-filter: blur(18px) saturate(1.55);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #FFFFFF;
  font-family: 'Futura New Book', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: 0.01em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 12px 32px rgba(14, 14, 31, 0.35);
  will-change: transform, opacity;
}

.service-grid-cursor-badge--visible {
  opacity: 1;
}

.service-grid-discount {
  position: relative;
  z-index: 2;
  width: 270px;
  max-width: 100%;
  height: 38px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 26px;
  background: linear-gradient(90deg, #2690DF, #822CD7);
  font-family: 'Futura New Book Oblique', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #FEFEFE;
  line-height: 1.2;
  white-space: nowrap;
  padding: 0 16px;
}

.client-results-plate__label {
  position: relative;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.client-results-plate__stats {
  position: relative;
  display: flex;
}

.client-results-plate__stat {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
}

.client-results-plate__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 2px 10px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.client-results-plate__mult {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  line-height: 1.3;
}

.client-results-plate__word {
  font-family: 'Futura New Demi', sans-serif;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.client-results-plate__desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  line-height: 1.35;
  margin-top: 2px;
}

.client-results-plate__divider {
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.22);
}

.client-results-plate__divider--v {
  width: 1px;
  align-self: stretch;
  margin: 0 18px;
}

.client-results-plate__divider--h {
  height: 1px;
  width: 100%;
}

.hero-bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, #0E0E1F);
  pointer-events: none;
  z-index: 10;
}

/* ── fbrand-app.js — Latest Cases ─────────────── */
.latest-cases-section {
  padding: 80px 0;
  position: relative;
}

.latest-cases-grid {
  display: grid;
  gap: clamp(16px,2.2vw,28px);
}

.latest-cases-more {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

/* ── fbrand-app.js — Achievement ───────────────── */
.achievement-section {
  position: relative;
}

.achievement-center {
  display: flex;
  justify-content: center;
}

.achievement-inner {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 100%;
  box-sizing: border-box;
}

.achievement-titles {
  text-align: left;
}

.achievement-accent-purple {
  font-family: 'Futura New Book Oblique', sans-serif;
  display: inline-block;
  padding-right: 0.08em;
  background: linear-gradient(90deg, #822CD7, #2690DF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.achievement-accent-cyan {
  font-family: 'Futura New Book Oblique', sans-serif;
  display: inline-block;
  padding-right: 0.12em;
  background: linear-gradient(90deg, #2690DF, #00C8E8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.achievement-lowercase {
  text-transform: lowercase;
}

.achievement-cases-grid {
  display: grid;
  text-align: left;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* Mobile fallback: the React component sizes this grid/heading via inline styles keyed off
   `window.innerWidth < 600` (measured on the initial render, no CSS media query behind it),
   so before/without hydration it stays 2-up with a non-wrapping heading and overflows.
   `!important` here is necessary to win over those inline styles. */
@media (max-width: 599px) {
  .achievement-cases-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    margin-top: 36px !important;
  }

  .achievement-titles h2:first-child {
    font-size: 28px !important;
  }

  .achievement-titles h2:nth-child(2),
  .achievement-titles h2:nth-child(3) {
    font-size: 34px !important;
    white-space: normal !important;
  }

  .achievement-titles .achievement-accent-purple,
  .achievement-titles .achievement-accent-cyan {
    font-size: 34px !important;
  }

  .achievement-titles .achievement-lowercase {
    font-size: 28px !important;
  }
}

.achievement-card {
  /* same glass as Nav dark past-hero */
  background: rgba(14, 14, 31, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  color: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}

.achievement-card-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  flex-shrink: 0;
}

.achievement-logo--urbex {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
}

.achievement-logo--sobor {
  height: 170px;
  width: auto;
  display: block;
}

.achievement-subtitle {
  font-family: 'Futura New Light', sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: none;
  color: rgba(255,255,255,0.88);
  margin-top: 14px;
  line-height: 1.4;
  max-width: 300px;
}

.achievement-subtitle--upper {
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.achievement-list {
  list-style-type: disc;
  list-style-position: outside;
  padding-left: 18px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #fff;
  flex: 1;
}

.achievement-list-item {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  line-height: 1.55;
  padding-left: 4px;
}

/* ── fbrand-app.js — Why Us (GlobeViz/AIViz/EventViz) ── */
.viz-icon {
  position: relative;
  width: 96px;
  height: 96px;
  flex-shrink: 0;
}

.viz-icon-svg-abs {
  position: absolute;
  inset: 0;
}

.globe-viz-sphere {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(145deg,rgba(14,14,31,0.28) 0%,rgba(14,14,31,0.08) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(14,14,31,0.28);
  transition: box-shadow 0.4s;
}

.globe-viz-highlight {
  position: absolute;
  top: 14%;
  left: 18%;
  width: 32%;
  height: 26%;
  border-radius: 50%;
  background: rgba(14,14,31,0.36);
  filter: blur(5px);
}

.globe-viz-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.globe-viz-dot {
  position: absolute;
  top: 32%;
  left: 58%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: oklch(0.78 0.24 265);
  transition: box-shadow 0.4s;
}

.globe-viz-orbit-outer {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1.5px solid transparent;
  transition: border-color 0.4s;
}

.globe-viz-orbit-inner {
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1px solid transparent;
  transition: border-color 0.4s;
}

.ai-viz-bg {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(145deg,rgba(14,14,31,0.22) 0%,rgba(14,14,31,0.08) 100%);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(14,14,31,0.28);
  transition: box-shadow 0.4s;
}

.ai-viz-edge {
  transition: stroke 0.4s, stroke-width 0.4s;
}

.ai-viz-node {
  transition: all 0.35s;
}

.ai-viz-pulse {
  animation: pulse 2s ease-in-out infinite;
}

.event-viz-blob {
  position: absolute;
  inset: 6px;
  background: linear-gradient(145deg,rgba(14,14,31,0.28) 0%,rgba(14,14,31,0.08) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(14,14,31,0.28);
  border-radius: 60% 40% 55% 45%/50% 55% 45% 50%;
  transition: box-shadow 0.4s;
}

.event-viz-highlight {
  position: absolute;
  top: 12%;
  left: 16%;
  width: 30%;
  height: 22%;
  border-radius: 50%;
  background: rgba(14,14,31,0.32);
  filter: blur(4px);
}

.event-viz-number-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-viz-number {
  font-family: 'Futura New Demi', sans-serif;
  font-weight: 900;
  font-size: 18px;
  background: linear-gradient(90deg, #2690DF, #822CD7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.35s;
  line-height: 1;
}

.event-viz-dot {
  position: absolute;
  border-radius: 50%;
  background: oklch(0.74 0.24 265);
  transition: opacity 0.4s, width 0.4s, height 0.4s;
}

.why-us-section .ui-h2,
.reviews-section .ui-h2,
.cases-carousel-section .ui-h2 {
  font-family: 'Futura New Book', sans-serif;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.why-us-section .ui-h2 {
  font-size: 40px;
}

.reviews-section .ui-h2,
.cases-carousel-section .ui-h2 {
  font-size: 48px;
}

.cases-carousel-section .ui-accent {
  font-family: 'Futura New Book Oblique', sans-serif;
}

@media (max-width: 599px) {
  .why-us-section .ui-h2,
  .reviews-section .ui-h2,
  .cases-carousel-section .ui-h2 {
    font-size: 32px;
  }
}

.why-us-gifts-grid {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.why-us-gift-card {
  background: rgba(14, 14, 31, 0.04);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(14, 14, 31, 0.12);
  box-sizing: border-box;
}

.why-us-gift-card__n {
  font-family: 'Futura New Demi', sans-serif;
  font-size: 18px;
  color: #2690DF;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-us-gift-card__title {
  font-family: 'Futura New Demi', sans-serif;
  font-size: 18px;
  color: #0E0E1F;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
}

.why-us-gift-card__desc {
  font-size: 18px;
  color: rgba(14, 14, 31, 0.58);
  line-height: 1.5;
}

/* ── fbrand-app.js — Cases Carousel ────────────── */
.cases-carousel-section {
  padding: 100px 0;
  position: relative;
}

.cases-carousel-section .ui-wrap {
  max-width: 1200px;
}

.cases-carousel-wrap {
  position: relative;
}

.cases-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  box-shadow: 0 4px 16px rgba(14,14,31,0.12);
  border: 1px solid rgba(14,14,31,0.1);
  color: #0E0E1F;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

.cases-carousel-arrow--prev {
  left: -20px;
}

.cases-carousel-arrow--next {
  right: -20px;
}

.cases-carousel-all-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px;
}

.cases-carousel-all-text {
  color: rgba(14,14,31,0.5);
  font-size: 18px;
  text-align: center;
}

.cases-carousel-all-link {
  background: linear-gradient(135deg,#2690DF,#822CD7);
  color: #fff;
  border-radius: 50px;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
}

.cases-carousel-media {
  border-radius: 0;
  overflow: hidden;
}

.cases-carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cases-carousel-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cases-carousel-tag {
  display: inline-block;
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 18px;
  font-weight: 600;
  align-self: flex-start;
  margin-bottom: 20px;
}

.cases-carousel-title {
  font-family: 'Futura New Demi', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #0E0E1F;
  margin-bottom: 24px;
  line-height: 1.25;
}

.cases-carousel-label {
  font-size: 18px;
  color: rgba(14,14,31,0.35);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.cases-carousel-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.cases-carousel-list--done {
  margin: 0 0 20px 0;
}

.cases-carousel-list--result {
  margin: 0 0 28px 0;
}

.cases-carousel-list-item {
  font-size: 18px;
  color: rgba(14,14,31,0.65);
  display: flex;
  gap: 8px;
}

.cases-carousel-bullet {
  flex-shrink: 0;
}

.cases-carousel-cta-row {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.cases-carousel-more {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

/* ── fbrand-app.js — Reviews ────────────────────── */
.review-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 20px;
  /* same glass as Nav dark past-hero / achievement-card */
  background: rgba(14, 14, 31, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  box-sizing: border-box;
}

.review-card-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  align-self: flex-start;
}

.review-card-text {
  font-size: 18px;
  color: rgba(255,255,255,0.88);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.review-card-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.18);
}

.review-card-badge {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
}

.reviews-section {
  padding: 100px 0;
  position: relative;
}

.reviews-scroller {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.reviews-scroller-item {
  flex: 0 0 85vw;
  scroll-snap-align: start;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

/* Safety net for the mobile Reviews layout: the React component swaps this grid for a
   .reviews-scroller (horizontal scroll-snap) once it detects a narrow viewport — but that
   swap only happens after hydration. Until then (or if JS is slow/blocked), the grid below
   would otherwise render 3-up and overflow. Mirror the scroller as pure CSS so it degrades
   the same way regardless of hydration timing. */
@media (max-width: 599px) {
  .reviews-grid {
    display: flex;
    grid-template-columns: none;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .reviews-grid > .review-card {
    flex: 0 0 85vw;
    scroll-snap-align: start;
  }
}

/* ── fbrand-app.js — About ──────────────────────── */
.about-section {
  padding: 100px 0;
}

.about-grid {
  display: grid;
}

.about-heading-cell {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
}

.about-intro-text {
  font-size: 18px;
  color: rgba(14,14,31,0.50);
  line-height: 1.55;
  margin: 0;
  max-width: 420px;
}

.about-photo-cell {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.about-photo-inner {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
}

.about-photo-img {
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: bottom center;
  display: block;
}

.about-bio-card {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 28px rgba(14,14,31,0.10);
  max-width: 92%;
  box-sizing: border-box;
  z-index: 2;
}

.about-bio-text {
  font-size: 18px;
  color: rgba(14,14,31,0.50);
  line-height: 1.65;
  margin: 0;
}

.about-name-cell {
  grid-column: 1;
  grid-row: 3;
  align-self: end;
}

.about-founder-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #2690DF, #822CD7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.about-founder-name {
  font-family: 'Futura New Book Oblique', sans-serif;
  line-height: 0.92;
  color: #0E0E1F;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* ── fbrand-app.js — Contact ────────────────────── */
.contact-section {
  position: relative;
}

.contact-card {
  max-width: 100%;
  box-sizing: border-box;
  background: #FDFDFD;
  border-radius: 15px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  display: grid;
  overflow: hidden;
}

.contact-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 200px;
  gap: 16px;
}

.contact-success-check {
  font-size: 28px;
  color: #181818;
}

.contact-success-title {
  font-family: 'Futura New Book', sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: #181818;
}

.contact-success-sub {
  font-family: 'Futura New Light', sans-serif;
  font-size: 18px;
  color: rgba(24,24,24,0.5);
}

.contact-title {
  font-family: 'Futura New Book', sans-serif;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #181818;
  margin: 0 0 16px;
}

.contact-title-accent {
  background: linear-gradient(90deg, #2690DF, #822CD7);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-desc {
  font-family: 'Futura New Light', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: rgba(24,24,24,0.45);
  line-height: 1.55;
  margin: 0 0 28px;
  max-width: 560px;
}

.contact-form-row {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.contact-input {
  flex: 1;
  min-width: 0;
  background: #ECECED;
  border: none;
  border-radius: 50px;
  padding: 16px 22px;
  font-size: 18px;
  color: #181818;
  outline: none;
  font-family: 'Futura New Light', sans-serif;
  box-sizing: border-box;
}

.contact-consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-checkbox {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-checkbox-mark {
  color: #fff;
  font-size: 11px;
  line-height: 1;
}

.contact-consent-text {
  font-family: 'Futura New Light', sans-serif;
  font-size: 13px;
  color: rgba(24,24,24,0.38);
  line-height: 1.5;
}

.contact-link {
  color: #6B66DA;
  text-decoration: none;
}

.contact-alt-text {
  font-family: 'Futura New Light', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: rgba(24,24,24,0.45);
  line-height: 1.45;
  margin-bottom: 22px;
}

.contact-messenger-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── fbrand-app.js — Blog ───────────────────────── */
.blog-section {
  position: relative;
}

.blog-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 100%;
  box-sizing: border-box;
}

.blog-label {
  font-size: 18px;
  color: #181818;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.blog-grid {
  display: grid;
  width: 100%;
  align-items: stretch;
}

.blog-card-link {
  text-decoration: none;
  display: flex;
  height: 100%;
  min-width: 0;
}

/* Mobile: horizontal scroll-snap slider instead of a 4-up (or JS-collapsed 1-up) grid —
   pure CSS so it works the same before/after hydration, independent of the React
   component's own `mob` breakpoint. */
@media (max-width: 900px) {
  .blog-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .blog-card-link {
    flex: 0 0 78vw;
    scroll-snap-align: start;
  }
}

.blog-card {
  background: #FDFDFD;
  border-radius: 15px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  box-sizing: border-box;
  transition: transform 0.25s, box-shadow 0.25s;
}

.blog-card-tag {
  display: inline-block;
  background: linear-gradient(90deg, #2690DF, #822CD7);
  border-radius: 50px;
  padding: 5px 14px;
  font-family: 'Futura New Book Oblique', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #FEFEFE;
  align-self: flex-start;
  line-height: 1.2;
}

.blog-card-title {
  font-family: 'Futura New Book', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #181818;
  line-height: 1.4;
  flex: 1;
}

.blog-card-cta {
  font-size: 18px;
  color: #822CD7;
  font-weight: 600;
  margin-top: auto;
}

/* ── fbrand-app.js — Lamp lead-magnet ──────────── */
.lamp-badge {
  position: fixed;
  right: 0;
  top: 38%;
  z-index: 900;
  background: linear-gradient(135deg, #2690DF, #822CD7);
  color: #fff;
  border: none;
  border-radius: 14px 0 0 14px;
  padding: 16px 10px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 24px oklch(0.55 0.28 280/0.4);
  display: flex;
  align-items: center;
  gap: 8px;
}

.lamp-badge-icon {
  transform: rotate(180deg);
  display: flex;
}

@keyframes smokeRise {
  0%   { transform: translate(-50%, 0) scale(0.5) rotate(0deg); opacity: 0; }
  12%  { opacity: 0.5; }
  55%  { opacity: 0.32; }
  100% { transform: translate(calc(-50% + var(--drift)), -78px) scale(2.1) rotate(var(--spin)); opacity: 0; }
}

.smoke-puff-wrap {
  position: absolute;
  left: 50%;
  bottom: 90%;
  width: 0;
  height: 0;
  pointer-events: none;
}

.smoke-puff {
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(210,206,214,0.75) 0%, rgba(190,186,196,0.4) 50%, transparent 78%);
  filter: blur(2.5px);
}

.lamp-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}

.lamp-modal-card {
  background: #FFFFFF;
  box-shadow: 0 24px 64px rgba(14,14,31,0.25);
  border: 1px solid rgba(14,14,31,0.08);
  border-radius: 28px;
  max-width: 720px;
  width: 100%;
  position: relative;
  text-align: center;
  margin: auto;
}

.lamp-modal-card .ui-h2 {
  font-family: 'Futura New Book', sans-serif;
}

.lamp-modal-card .ui-accent {
  font-family: 'Futura New Book Oblique', sans-serif;
}

.lead-modal-card .ui-h2 {
  font-family: 'Futura New Book', sans-serif;
}

.lead-modal-card .ui-accent {
  font-family: 'Futura New Book Oblique', sans-serif;
}

.lamp-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(14,14,31,0.06);
  border: none;
  color: #0E0E1F;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
}

.lamp-modal-desc {
  font-size: 18px;
  color: rgba(14,14,31,0.5);
  margin-bottom: 22px;
  line-height: 1.55;
}

.lamp-modal-info-box {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 26px;
  text-align: left;
  background: rgba(14,14,31,0.03);
  border: 1px solid rgba(14,14,31,0.08);
  border-radius: 14px;
  padding: 16px 18px;
}

.lamp-modal-info-label {
  font-size: 18px;
  font-weight: 700;
  color: rgba(14,14,31,0.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.lamp-modal-bonus-row {
  display: flex;
  gap: 9px;
  align-items: center;
  font-size: 18px;
  line-height: 1.4;
  transition: color 0.35s;
}

.lamp-modal-orbs-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
  min-height: 110px;
  align-items: flex-end;
}

.lamp-modal-orb-btn {
  position: relative;
  background: none;
  border: none;
  transition: opacity 0.4s;
  padding: 6px;
}

.lamp-modal-orb-icon {
  display: block;
}

.lamp-modal-status-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Futura New Demi', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 24px;
}

/* ── fbrand-app.js — Footer ─────────────────────── */
.site-footer {
  padding: 60px 0 40px;
  border-top: 1px solid rgba(14,14,31,0.07);
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 0;
}

.footer-tagline {
  font-size: 18px;
  color: rgba(14,14,31,0.3);
  margin-top: 6px;
  line-height: 1.5;
}

.footer-copyright {
  font-size: 18px;
  color: rgba(14,14,31,0.22);
  margin-top: 8px;
}

.footer-right-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-nav-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-nav-link {
  font-size: 18px;
  color: rgba(14,14,31,0.38);
  text-decoration: none;
}

.footer-socials-row {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  font-size: 18px;
  color: rgba(14,14,31,0.45);
  text-decoration: none;
  padding: 6px 14px;
  border: 1px solid rgba(14,14,31,0.12);
  border-radius: 50px;
}

.footer-legal-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-legal-link {
  font-size: 18px;
  color: rgba(14,14,31,0.25);
  text-decoration: none;
}

.footer-address {
  font-size: 18px;
  color: rgba(14,14,31,0.18);
}

/* ── fbrand-app.js — Floating Messengers ───────── */
.floating-messengers {
  position: fixed;
  bottom: 32px;
  right: 12px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.floating-messengers-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.floating-messenger-link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(145deg,rgba(14,14,31,0.18) 0%,rgba(14,14,31,0.06) 100%);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(14,14,31,0.22);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35),inset 0 1px 0 rgba(14,14,31,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s,box-shadow 0.2s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.floating-messenger-shine {
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg,transparent,rgba(14,14,31,0.5),transparent);
}

.floating-messenger-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg,#2690DF,#822CD7);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 12px 40px oklch(0.55 0.28 280/0.5),inset 0 1px 0 rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s,box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.floating-messenger-toggle-shine {
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg,transparent,rgba(255,255,255,0.45),transparent);
}

/* ── fbrand-app.js — App root ───────────────────── */
.app-root {
  background: #FFFFFF;
  min-height: 100vh;
  color: #0E0E1F;
  font-family: 'Futura New Light', sans-serif;
  font-size: 18px;
}

/* ── price-app.js — Page layout ───────────────── */
.price-page {
  min-height: 100vh;
  background: #FFFFFF;
}

.price-section {
  padding-bottom: 80px;
}

.price-eyebrow-label {
  font-size: 18px;
  color: oklch(0.65 0.27 272);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.price-hero-section {
  padding: 140px 0 80px;
  position: relative;
}

.price-hero-lead {
  font-size: 18px;
  color: rgba(14,14,31,0.45);
  max-width: 540px;
  margin-bottom: 36px;
}

.price-hero-cta-row {
  display: flex;
  gap: 12px;
}

.price-hero-btn-primary {
  background: linear-gradient(135deg, #2690DF, #822CD7);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}

.price-hero-btn-outline {
  background: rgba(14,14,31,0.06);
  border: 1px solid rgba(14,14,31,0.14);
  color: #0E0E1F;
  border-radius: 50px;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
}

.price-service-category {
  margin-bottom: 64px;
}

.price-service-category__label {
  font-size: 18px;
  color: rgba(14,14,31,0.35);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(14,14,31,0.07);
}

.price-service-category__hscroll-item {
  min-width: 300px;
  max-width: 320px;
  flex-shrink: 0;
}

.price-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.price-abonement-title {
  font-family: 'Futura New Demi', sans-serif;
  font-weight: 800;
  font-size: 62px;
  margin-bottom: 20px;
}

.price-abonement-desc {
  font-size: 18px;
  color: rgba(14,14,31,0.55);
  line-height: 1.8;
  margin-bottom: 28px;
}

.price-abonement-cost-wrap {
  margin-bottom: 28px;
}

.price-abonement-cost-label {
  font-size: 18px;
  color: rgba(14,14,31,0.35);
  margin-bottom: 8px;
}

.price-abonement-cost-value {
  font-family: 'Futura New Demi', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: oklch(0.65 0.27 272);
}

.price-abonement-cost-period {
  font-size: 18px;
  color: rgba(14,14,31,0.35);
}

.price-abonement-btn {
  background: linear-gradient(135deg, #2690DF, #822CD7);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 28px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}

.price-abonement-schedule {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.price-abonement-schedule__period {
  font-size: 18px;
  color: oklch(0.65 0.27 272);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.price-abonement-schedule__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.price-abonement-schedule__item {
  font-size: 18px;
  color: rgba(14,14,31,0.6);
  display: flex;
  gap: 8px;
}

.price-abonement-schedule__bullet {
  color: oklch(0.65 0.27 272);
}

.price-packages-title {
  font-family: 'Futura New Demi', sans-serif;
  font-weight: 800;
  font-size: 62px;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.price-packages-desc {
  font-size: 18px;
  color: rgba(14,14,31,0.45);
  margin-bottom: 40px;
}

.price-packages-hscroll-item {
  min-width: 320px;
  max-width: 360px;
  flex-shrink: 0;
}

.price-footer {
  padding: 60px 0 40px;
  border-top: 1px solid rgba(14,14,31,0.07);
}

.price-footer-logo-link {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 8px;
  text-decoration: none;
}

.price-footer-tagline {
  font-size: 18px;
  color: rgba(14,14,31,0.3);
  line-height: 1.5;
}

.price-footer-copyright {
  font-size: 18px;
  color: rgba(14,14,31,0.22);
  margin-top: 8px;
}

.price-footer-right-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.price-footer-nav-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.price-footer-nav-link {
  font-size: 18px;
  color: rgba(14,14,31,0.38);
  text-decoration: none;
}

.price-footer-socials-row {
  display: flex;
  gap: 12px;
}

.price-footer-social-link {
  font-size: 18px;
  color: rgba(14,14,31,0.45);
  text-decoration: none;
  padding: 6px 14px;
  border: 1px solid rgba(14,14,31,0.12);
  border-radius: 50px;
}

.price-footer-legal-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.price-footer-legal-link {
  font-size: 18px;
  color: rgba(14,14,31,0.25);
  text-decoration: none;
}

.price-footer-address {
  font-size: 18px;
  color: rgba(14,14,31,0.18);
}

/* ── price-app.js — Service Card ──────────────── */
.price-service-card {
  background: rgba(14,14,31,0.055);
  border: 1px solid rgba(14,14,31,0.09);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-service-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.price-service-card__title {
  font-family: 'Futura New Demi', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 4px;
}

.price-service-card__sub {
  font-size: 18px;
  color: rgba(14,14,31,0.45);
}

.price-service-card__price-wrap {
  text-align: right;
  flex-shrink: 0;
}

.price-service-card__price {
  font-family: 'Futura New Demi', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: oklch(0.65 0.27 272);
}

.price-service-card__period {
  font-size: 18px;
  color: rgba(14,14,31,0.35);
}

.price-service-card__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 18px;
}

.price-service-card__th {
  padding: 8px 12px;
  background: rgba(14,14,31,0.05);
  color: rgba(14,14,31,0.5);
  font-size: 18px;
  font-weight: 600;
}

.price-service-card__th--first {
  text-align: left;
  border-radius: 8px 0 0 0;
}

.price-service-card__th--last {
  border-radius: 0 8px 0 0;
}

.price-service-card__td {
  padding: 10px 12px;
  border-top: 1px solid rgba(14,14,31,0.07);
  font-size: 18px;
}

.price-service-card__td--price {
  text-align: center;
  color: oklch(0.65 0.27 272);
  font-weight: 600;
}

.price-service-card__desc {
  font-size: 18px;
  color: rgba(14,14,31,0.55);
  line-height: 1.7;
}

.price-service-card__result {
  background: rgba(91,110,245,0.08);
  border: 1px solid rgba(91,110,245,0.2);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 18px;
  color: rgba(14,14,31,0.75);
  line-height: 1.6;
}

.price-service-card__btn {
  background: linear-gradient(135deg, #2690DF, #822CD7);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  margin-top: auto;
}

/* ── price-app.js — Package Card ──────────────── */
.price-package-card {
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  min-width: 260px;
  max-width: 300px;
  flex-shrink: 0;
}

.price-package-card__highlight-bar {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2690DF, #822CD7);
  border-radius: 24px 24px 0 0;
}

.price-package-card__badge {
  display: inline-block;
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.price-package-card__name {
  font-family: 'Futura New Demi', sans-serif;
  font-weight: 800;
  font-size: 62px;
  margin-bottom: 4px;
  line-height: 1.2;
}

.price-package-card__desc {
  font-size: 18px;
  color: rgba(14,14,31,0.45);
  margin-bottom: 10px;
  line-height: 1.5;
}

.price-package-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.price-package-card__price {
  font-family: 'Futura New Demi', sans-serif;
  font-weight: 800;
  font-size: 18px;
}

.price-package-card__old-price {
  font-size: 18px;
  color: rgba(14,14,31,0.3);
  text-decoration: line-through;
}

.price-package-card__saving {
  font-size: 18px;
  color: rgba(14,14,31,0.35);
  background: rgba(14,14,31,0.06);
  padding: 3px 10px;
  border-radius: 50px;
}

.price-package-card__items-label {
  font-size: 18px;
  color: rgba(14,14,31,0.35);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.price-package-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-package-card__list-item {
  display: flex;
  gap: 8px;
  font-size: 18px;
  color: rgba(14,14,31,0.6);
  line-height: 1.5;
}

.price-package-card__check {
  flex-shrink: 0;
}

.price-package-card__btn {
  border-radius: 50px;
  padding: 11px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  margin-top: auto;
}

/* ── price-app.js — HScroll ────────────────────── */
.price-hscroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

/* ── fbrand-components.js — CaseTile (shared: homepage + cases.html) ── */
.case-tile-link {
  text-decoration: none;
  display: block;
}

.case-tile-media-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #0E0E1F;
  transition: box-shadow 0.35s;
  cursor: pointer;
}

.case-tile-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s;
}

.case-tile-media-wrap--svg-preview {
  background: #e8e8ea;
}

.case-tile-media-wrap--round-preview {
  background: #2a2a2a;
}

.case-tile-media--contain {
  object-fit: contain;
  padding: 14%;
  box-sizing: border-box;
}

.case-tile-media--fade {
  animation: caseTilePreviewIn 0.45s ease;
}

@keyframes caseTilePreviewIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.case-tile-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: clamp(20px, 3vw, 32px);
  padding-top: clamp(36px, 6vw, 56px);
  background: linear-gradient(to top, rgba(6,6,16,0.92) 0%, rgba(6,6,16,0.65) 55%, transparent 100%);
  pointer-events: none;
}

.case-tile-tag {
  font-size: 18px;
  color: rgba(255,255,255,0.78);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.case-card__title {
  color: #fff;
  margin-bottom: 8px;
}

.case-tile-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
}

/* ── cases-app.js — Page layout ───────────────── */
.cases-page {
  min-height: 100vh;
  background: #FFFFFF;
}

.cases-hero-section {
  padding: 140px 0 80px;
  position: relative;
}

.cases-hero-section .ui-h1 {
  font-family: 'Futura New Book', sans-serif;
  font-weight: 400;
}

.cases-hero-accent {
  font-family: 'Futura New Book Oblique', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}

.cases-eyebrow-label {
  font-size: 18px;
  color: oklch(0.65 0.27 272);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.cases-hero-lead {
  font-size: 18px;
  color: rgba(14,14,31,0.45);
  max-width: 520px;
}

.cases-filter-section {
  padding-bottom: 60px;
}

.cases-filter-wrap {
  width: 100%;
  padding: 0 clamp(16px, 4vw, 72px);
}

.cases-cat-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.cases-cat-btn {
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
}

.cases-grid {
  display: grid;
  gap: clamp(16px, 2.2vw, 28px);
}

/* Реклама — компактная сетка, 5 карточек в экран */
.cases-ads-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(10px, 1.2vw, 16px);
  margin-top: clamp(16px, 2.2vw, 28px);
}

.cases-ads-grid .case-tile-media-wrap {
  border-radius: 14px;
}

.cases-ads-grid .case-tile-overlay {
  padding: 12px;
  padding-top: 26px;
}

.cases-ads-grid .case-tile-tag {
  font-size: 12px;
  margin-bottom: 4px;
}

.cases-ads-grid .case-card__title {
  font-size: 15px;
  margin-bottom: 4px;
}

.cases-ads-grid .case-tile-desc {
  font-size: 12px;
  line-height: 1.35;
}

@media (max-width: 1100px) {
  .cases-ads-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 700px) {
  .cases-ads-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 460px) {
  .cases-ads-grid { grid-template-columns: 1fr; }
}

/* Центрированная карточка под блоком рекламы */
.cases-centered-grid {
  display: flex;
  justify-content: center;
  margin-top: clamp(16px, 2.2vw, 28px);
}

.cases-centered-grid .case-tile-link {
  width: min(100%, 640px);
}

.cases-cta-box {
  text-align: center;
  margin-top: 72px;
  padding: 60px 40px;
  background: rgba(14,14,31,0.04);
  border: 1px solid rgba(14,14,31,0.08);
  border-radius: 24px;
}

.cases-cta-title {
  font-family: 'Futura New Demi', sans-serif;
  font-weight: 800;
  font-size: 62px;
  margin-bottom: 16px;
}

.cases-cta-desc {
  color: rgba(14,14,31,0.45);
  font-size: 18px;
  margin-bottom: 28px;
}

.cases-cta-btn {
  background: linear-gradient(135deg, #2690DF, #822CD7);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 16px 36px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}

.cases-footer {
  padding: 40px 0;
  border-top: 1px solid rgba(14,14,31,0.07);
}

.cases-footer-logo-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 6px;
}

.cases-footer-copyright {
  font-size: 18px;
  color: rgba(14,14,31,0.25);
}

.cases-footer-links-row {
  display: flex;
  gap: 20px;
}

.cases-footer-link {
  font-size: 18px;
  color: rgba(14,14,31,0.38);
  text-decoration: none;
}

/* ── cases-app.js — Messenger Widget ──────────── */
.cases-messenger-widget {
  position: fixed;
  bottom: 32px;
  right: 12px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.cases-messenger-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.cases-messenger-link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(14,14,31,0.10);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(14,14,31,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.cases-messenger-label {
  font-size: 18px;
  font-weight: 800;
  color: #0E0E1F;
}

.cases-messenger-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2690DF, #822CD7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ── article*-app.js — shared article page layout ── */
.article-page {
  min-height: 100vh;
  background: #FFFFFF;
}

.article-main {
  padding-top: 100px;
}

.article-header {
  background: #FFFFFF;
  border-bottom: 1px solid rgba(14,14,31,0.07);
  padding: 48px 0 56px;
}

.article-tag-badge {
  display: inline-block;
  background: rgba(91,110,245,0.1);
  border: 1px solid rgba(91,110,245,0.3);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: 18px;
  color: oklch(0.65 0.27 272);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.article-h1 {
  font-family: 'Futura New Demi', sans-serif;
  font-weight: 800;
  font-size: 62px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 800px;
}

.article-intro {
  font-size: 18px;
  line-height: 1.75;
  color: rgba(14,14,31,0.6);
  max-width: 700px;
  border-left: 3px solid oklch(0.65 0.27 272);
  padding-left: 20px;
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 56px 0 80px;
}

.article-section {
  margin-bottom: 40px;
}

.article-section__h2 {
  font-family: 'Futura New Demi', sans-serif;
  font-weight: 700;
  font-size: 62px;
  color: #0E0E1F;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(14,14,31,0.07);
}

.article-section__p {
  font-size: 18px;
  line-height: 1.85;
  color: rgba(14,14,31,0.65);
}

.article-conclusion {
  background: rgba(91,110,245,0.06);
  border-left: 3px solid oklch(0.65 0.27 272);
  border-radius: 0 16px 16px 0;
  padding: 28px 32px;
  margin-bottom: 48px;
}

.article-conclusion__p {
  font-size: 18px;
  line-height: 1.85;
  color: rgba(14,14,31,0.75);
}

/* ── article1/2/4/5-app.js — legacy pre-shared-components markup ── */
.article-legacy-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  color: rgba(14,14,31,0.35);
  margin-bottom: 24px;
}

.article-legacy-cta-btn {
  background: linear-gradient(135deg,#2690DF,#822CD7);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 15px 36px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}

.article-legacy-footer-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
}

/* ── privacy/oferta/consent/cookies-app.js — legal pages ── */
.legal-main {
  padding-top: 140px;
}

.legal-footer-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
}

/* ── sites-app.js ── */
.sites-compare-row {
  display: grid;
  margin-bottom: 10px;
}

.sites-compare-row__bad {
  padding: 16px 20px;
  background: rgba(220,38,38,0.05);
  border-left: 3px solid rgba(220,38,38,0.35);
  font-size: 18px;
  color: rgba(14,14,31,0.55);
}

.sites-compare-row__bad-label {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(220,38,38,0.6);
  display: block;
  margin-bottom: 4px;
}

.sites-compare-row__good {
  padding: 16px 20px;
  background: rgba(14,14,31,0.035);
  font-size: 18px;
  color: #0E0E1F;
  font-weight: 500;
}

.sites-compare-row__good-label {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: oklch(0.65 0.27 272);
  display: block;
  margin-bottom: 4px;
}

.sites-intl-case-section {
  padding: 0 0 80px;
}

.sites-intl-case-banner {
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2690DF, #822CD7);
  box-shadow: 0 20px 50px oklch(0.50 0.28 280 / 0.3);
}

.sites-intl-case-inner {
  display: flex;
  align-items: center;
  position: relative;
}

.sites-intl-case-text {
  flex: 1;
}

.sites-intl-case-badge {
  display: inline-block;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.sites-intl-case-title {
  font-family: 'Futura New Demi', sans-serif;
  font-weight: 800;
  font-size: 62px;
  margin: 0 0 14px;
  color: #fff;
}

.sites-intl-case-desc {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0;
}

.sites-intl-case-brand-name {
  color: #fff;
}

.sites-section-pad-90 {
  padding: 0 0 90px;
}

.sites-project-types-grid {
  display: grid;
  gap: 20px;
}

.sites-project-type-title {
  font-family: 'Futura New Demi', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 14px;
}

.sites-project-type-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sites-project-type-item {
  font-size: 18px;
  color: rgba(14,14,31,0.6);
  display: flex;
  gap: 8px;
}

.sites-project-type-dash {
  color: oklch(0.65 0.27 272);
}

.sites-methodology-section {
  padding: 90px 0;
  background: #FFFFFF;
  border-top: 1px solid rgba(14,14,31,0.06);
  border-bottom: 1px solid rgba(14,14,31,0.06);
}

.sites-methodology-intro {
  font-size: 18px;
  color: rgba(14,14,31,0.55);
  margin-bottom: 32px;
}

.sites-analysis-grid {
  display: grid;
  gap: 20px;
  margin-bottom: 56px;
}

.sites-analysis-title {
  font-family: 'Futura New Demi', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
}

.sites-analysis-text {
  font-size: 18px;
  color: rgba(14,14,31,0.55);
  line-height: 1.6;
  margin: 0;
}

.sites-subsection-h3 {
  font-family: 'Futura New Demi', sans-serif;
  font-weight: 700;
  font-size: 62px;
  margin-bottom: 16px;
}

.sites-compare-group {
  margin-bottom: 40px;
}

.sites-compare-group-last {
  margin-bottom: 48px;
}

.sites-glass-cta-text {
  font-size: 18px;
  color: rgba(14,14,31,0.6);
  margin-bottom: 20px;
}

.sites-glass-cta-footnote {
  font-size: 18px;
  color: rgba(14,14,31,0.45);
  margin-top: 22px;
  margin-bottom: 0;
}

.sites-cases-grid {
  display: grid;
  gap: 24px;
}

/* ── platforms-app.js ── */
.platforms-features-grid {
  display: grid;
  gap: 20px;
}

.platforms-feature-title {
  font-family: 'Futura New Demi', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 12px;
}

.platforms-feature-text {
  font-size: 18px;
  color: rgba(14,14,31,0.6);
  line-height: 1.65;
  margin: 0;
}

.platforms-case-grid {
  display: grid;
  gap: 32px;
  align-items: center;
}

.platforms-case-desc {
  font-size: 18px;
  color: rgba(14,14,31,0.6);
  line-height: 1.75;
  margin-bottom: 20px;
}

.platforms-case-card-link {
  display: block;
  text-decoration: none;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(14,14,31,0.1);
  box-shadow: 0 6px 20px rgba(14,14,31,0.06);
}

.platforms-case-card-top {
  height: 180px;
  background: linear-gradient(135deg, #2690DF 0%, #822CD7 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.platforms-case-card-logo {
  font-family: 'Futura New Demi', sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: #fff;
  letter-spacing: -0.02em;
  position: relative;
}

.platforms-case-card-logo-suffix {
  color: oklch(0.78 0.18 80);
}

.platforms-case-card-body {
  padding: 22px 24px;
  background: #fff;
}

.platforms-case-card-label {
  font-size: 18px;
  color: oklch(0.65 0.27 272);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.platforms-case-card-title {
  font-family: 'Futura New Demi', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: #0E0E1F;
  margin-bottom: 8px;
}

.platforms-case-card-desc {
  font-size: 18px;
  color: rgba(14,14,31,0.55);
  line-height: 1.6;
  margin: 0;
}

.platforms-case-card-link-text {
  font-size: 18px;
  font-weight: 600;
  color: oklch(0.65 0.27 272);
  margin-top: 14px;
}

/* ── vk-ads-app.js ── */
.vk-ads-features-grid {
  display: grid;
  gap: 20px;
}

.vk-ads-feature-card {
  padding: 28px 26px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(14,14,31,0.12);
}

.vk-ads-feature-title {
  font-family: 'Futura New Demi', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 12px;
  color: #fff;
}

.vk-ads-feature-text {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  margin: 0;
}

/* ── vk-pack-app.js ── */
.vk-pack-steps-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vk-pack-step {
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg,rgba(38,144,223,0.08),rgba(130,44,215,0.06));
  border: 1px solid oklch(0.62 0.27 272/0.18);
}

.vk-pack-step-number {
  font-family: 'Futura New Demi', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  background: linear-gradient(135deg, #2690DF, #822CD7);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vk-pack-step-title {
  font-family: 'Futura New Demi', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 6px;
}

.vk-pack-step-text {
  font-size: 18px;
  color: rgba(14,14,31,0.55);
  line-height: 1.6;
  margin: 0;
}

/* ── yandex-app.js ── */
.yandex-hero-banner {
  border-radius: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2690DF, #822CD7);
  box-shadow: 0 20px 50px oklch(0.50 0.28 280 / 0.3);
}

.yandex-hero-underline {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.4);
}

.yandex-hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto 28px;
  position: relative;
}

/* ── Cookie consent plate (index.html, outside #root) — same glass as .ui-nav--dark ── */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 9999;
  display: none;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  width: min(1200px, calc(100vw - 48px));
  padding: 20px 28px;
  box-sizing: border-box;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(14, 14, 31, 0.18);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.cookie-banner--past-hero {
  background: rgba(14, 14, 31, 0.92);
  border-color: rgba(255, 255, 255, 0.10);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.cookie-banner__text {
  margin: 0;
  flex: 1 1 320px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
  font-family: 'Futura New Light', sans-serif;
}

.cookie-banner__link {
  color: #C9A6F5;
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.cookie-banner__btn {
  flex: 1 1 auto;
  min-width: 0;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 16px;
  cursor: pointer;
  font-family: 'Futura New Book', sans-serif;
}

.cookie-banner__btn--decline {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
}

.cookie-banner__btn--accept {
  border: none;
  background: linear-gradient(135deg, #2690DF, #822CD7);
  color: #fff;
  font-weight: 600;
}

@media (max-width: 599px) {
  .cookie-banner {
    left: 50%;
    bottom: 12px;
    width: calc(100vw - 16px);
    max-height: calc(100vh - 24px);
    overflow-y: auto;
    padding: 16px 14px;
    border-radius: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .cookie-banner__text {
    /* Base rule's `flex: 1 1 320px` is tuned for the row layout (desktop), where 320px
       is a sensible min-width to wrap at. In the column layout here that basis is read
       as a min-HEIGHT instead, forcing the paragraph to 320px tall regardless of how
       little text there is — that's what was ballooning the banner to half the screen. */
    flex: 0 1 auto;
    font-size: 14px;
  }

  .cookie-banner__actions {
    width: 100%;
  }
}
