/* =========================================================
   ROW & CELLS — V13
   - краща геометрія лівих іконок
   - timing прихованого руху точки через PNG
   - підписи у делікатних blue-glass капсулах
   - flash центрального вузла тільки ПІСЛЯ прибуття точки
   ========================================================= */

:root {
  --rc-blue-1: #073b8c;
  --rc-blue-2: #0752ab;
  --rc-blue-3: #06499e;
  --rc-blue-4: #03357e;
  --rc-line: rgba(255,255,255,.92);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}


/* =========================================================
   TOP NAVIGATION — V11
   ========================================================= */

.rc-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  z-index: 100;

  padding: 18px 0;

  background:
    linear-gradient(
      180deg,
      rgba(2, 30, 82, .88),
      rgba(3, 43, 105, .72)
    );

  border-bottom:
    1px solid
    rgba(255,255,255,.12);

  backdrop-filter:
    blur(8px);

  -webkit-backdrop-filter:
    blur(8px);

  transition:
    padding .28s ease,
    background .28s ease,
    border-color .28s ease,
    box-shadow .28s ease;
}

.rc-topbar.is-scrolled {
  padding: 11px 0;

  background:
    rgba(2, 29, 78, .95);

  border-bottom-color:
    rgba(255,255,255,.10);

  box-shadow:
    0 12px 34px
    rgba(0, 24, 75, .18);

  backdrop-filter:
    blur(16px);

  -webkit-backdrop-filter:
    blur(16px);
}

.rc-topbar-inner {
  width:
    min(1760px, calc(100% - 64px));

  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 28px;
}

.rc-topbar-brand {
  display: inline-flex;
  align-items: center;

  gap: 10px;

  color: rgba(255,255,255,.98);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 25px;
  font-weight: 700;

  letter-spacing: -.035em;

  text-decoration: none;

  white-space: nowrap;
}

.rc-brand-mark {
  position: relative;

  width: 18px;
  height: 18px;

  display: inline-block;

  border:
    1.5px solid
    rgba(255,255,255,.92);

  border-radius: 5px;

  box-shadow:
    0 0 12px
    rgba(123,192,255,.10);
}

.rc-brand-mark::before,
.rc-brand-mark::after {
  content: "";

  position: absolute;

  width: 4px;
  height: 4px;

  border:
    1px solid
    rgba(255,255,255,.90);

  border-radius: 1px;
}

.rc-brand-mark::before {
  left: 3px;
  top: 3px;
}

.rc-brand-mark::after {
  right: 3px;
  bottom: 3px;
}

.rc-main-nav {
  display: flex;
  align-items: center;

  gap: 8px;
}

.rc-main-nav a {
  position: relative;

  padding:
    10px 14px;

  color:
    rgba(255,255,255,.80);

  font-size: 15px;
  font-weight: 500;

  letter-spacing: .01em;

  text-decoration: none;

  border-radius: 999px;

  transition:
    color .22s ease,
    background .22s ease,
    transform .22s ease;
}

.rc-main-nav a::after {
  content: "";

  position: absolute;

  left: 17px;
  right: 17px;
  bottom: 5px;

  height: 1px;

  background:
    rgba(255,255,255,.82);

  transform:
    scaleX(0);

  transform-origin:
    center;

  transition:
    transform .24s ease;
}

.rc-main-nav a:hover {
  color: #fff;

  background:
    rgba(255,255,255,.055);
}

.rc-main-nav a:hover::after {
  transform:
    scaleX(1);
}

.rc-main-nav .rc-nav-cta {
  margin-left: 4px;

  padding:
    10px 17px;

  color: #fff;

  border:
    1px solid
    rgba(255,255,255,.30);

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,.09),
      rgba(120,187,255,.08)
    );

  box-shadow:
    inset
    0 1px 0
    rgba(255,255,255,.06);
}

.rc-main-nav .rc-nav-cta:hover {
  transform:
    translateY(-1px);

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,.14),
      rgba(120,187,255,.13)
    );

  border-color:
    rgba(255,255,255,.46);
}

.rc-main-nav .rc-nav-cta::after {
  display: none;
}


/* =========================================================
   MOBILE NAV
   ========================================================= */

.rc-menu-toggle {
  display: none;

  width: 44px;
  height: 44px;

  padding: 0;

  border:
    1px solid
    rgba(255,255,255,.18);

  border-radius: 12px;

  background:
    rgba(255,255,255,.045);

  cursor: pointer;
}

.rc-menu-toggle span {
  display: block;

  width: 19px;
  height: 1.5px;

  margin: 4px auto;

  background:
    rgba(255,255,255,.96);

  border-radius: 10px;

  transform-origin: center;

  transition:
    transform .24s ease,
    opacity .24s ease;
}

.rc-menu-toggle.is-open span:nth-child(1) {
  transform:
    translateY(5.5px)
    rotate(45deg);
}

.rc-menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.rc-menu-toggle.is-open span:nth-child(3) {
  transform:
    translateY(-5.5px)
    rotate(-45deg);
}

@media (max-width: 1050px) {
  .rc-main-nav {
    gap: 2px;
  }

  .rc-main-nav a {
    padding:
      9px 10px;

    font-size: 14px;
  }
}

@media (max-width: 900px) {
  .rc-topbar {
    padding: 12px 0;
  }

  .rc-topbar-inner {
    width:
      min(100% - 30px, 1760px);
  }

  .rc-menu-toggle {
    display: block;
  }

  .rc-main-nav {
    position: absolute;

    top: calc(100% + 8px);
    right: 15px;

    width:
      min(340px, calc(100vw - 30px));

    padding: 10px;

    display: grid;

    gap: 4px;

    background:
      rgba(3, 43, 105, .96);

    border:
      1px solid
      rgba(255,255,255,.11);

    border-radius: 18px;

    box-shadow:
      0 22px 55px
      rgba(0,18,60,.32);

    backdrop-filter:
      blur(18px);

    -webkit-backdrop-filter:
      blur(18px);

    opacity: 0;

    visibility: hidden;

    transform:
      translateY(-8px)
      scale(.98);

    transform-origin:
      top right;

    transition:
      opacity .22s ease,
      visibility .22s ease,
      transform .22s ease;
  }

  .rc-main-nav.is-open {
    opacity: 1;

    visibility: visible;

    transform:
      translateY(0)
      scale(1);
  }

  .rc-main-nav a {
    padding:
      12px 14px;

    border-radius: 12px;

    font-size: 15px;
  }

  .rc-main-nav a::after {
    display: none;
  }

  .rc-main-nav .rc-nav-cta {
    margin: 4px 0 0;
  }
}

@media (max-width: 520px) {
  .rc-topbar-brand {
    font-size: 21px;
  }

  .rc-brand-mark {
    width: 16px;
    height: 16px;
  }
}


body {
  overflow-x: hidden;
  background: #062f73;

  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}


/* =========================================================
   HERO
   ========================================================= */

.rc-hero {
  position: relative;

  width: 100%;
  height: clamp(770px,43vw,900px);

  overflow: hidden;
  isolation: isolate;

  color: #fff;

  background:
    radial-gradient(
      ellipse at 50% 43%,
      rgba(42,137,255,.20) 0%,
      rgba(20,105,220,.09) 30%,
      transparent 58%
    ),
    radial-gradient(
      circle at 8% 30%,
      rgba(44,141,255,.12),
      transparent 34%
    ),
    radial-gradient(
      circle at 92% 40%,
      rgba(44,141,255,.11),
      transparent 34%
    ),
    linear-gradient(
      120deg,
      var(--rc-blue-1) 0%,
      var(--rc-blue-2) 47%,
      var(--rc-blue-3) 70%,
      var(--rc-blue-4) 100%
    );
}


/* =========================================================
   CENTER
   ========================================================= */

.rc-center {
  position: absolute;

  z-index: 10;

  left: 50%;
  top: 45%;

  width: 53%;

  transform:
    translate(-50%,-50%);

  text-align: center;

  pointer-events: none;
}

.rc-center h1 {
  margin: 0;

  color: #fff;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(78px,8vw,158px);

  font-weight: 700;

  line-height: .88;

  letter-spacing: -.065em;

  white-space: nowrap;

  text-shadow:
    0 5px 18px rgba(1,28,82,.13),
    0 18px 50px rgba(0,25,90,.12);
}

.rc-categories {
  margin-top: 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 14px;

  /* Другорядний підпис до бренду */
  font-size:
    clamp(14px,1.02vw,18px);

  font-weight: 500;
  letter-spacing: .025em;

  color:
    rgba(255,255,255,.68);

  white-space: nowrap;

  /*
    Опускаємо тільки рядок категорій під центральну лінію.
    Назва Row&Cells залишається на тому самому місці.
  */
  transform: translateY(52px);
}

.rc-categories i {
  width: 5px;
  height: 5px;

  flex: 0 0 auto;

  display: block;

  border-radius: 999px;

  background:
    rgba(255,255,255,.62);
}
.rc-categories-highlight {
  gap: 0;
  max-width: min(92vw, 980px);
  white-space: normal;
  transform: translateY(46px);
}

.rc-categories-highlight span {
  display: inline-block;
  font-size: clamp(16px, 1.35vw, 26px);
  line-height: 1.24;
  font-weight: 800;
  letter-spacing: .01em;
  background-image:
    linear-gradient(
      100deg,
      transparent 8%,
      rgba(255,255,255,0.08) 28%,
      rgba(255,255,255,0.95) 50%,
      rgba(255,255,255,0.10) 72%,
      transparent 92%
    ),
    linear-gradient(
      180deg,
      #fff9d6 0%,
      #fbe792 18%,
      #f3cb58 42%,
      #d79a25 72%,
      #fff1b0 100%
    );
  background-size: 240% 100%, 100% 100%;
  background-position: 220% 0, 0 0;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow:
    0 0 8px rgba(250, 219, 113, 0.22),
    0 0 16px rgba(244, 196, 67, 0.14),
    0 6px 18px rgba(125, 81, 0, 0.14);
  animation: rcForbesShine 2s linear infinite;
  will-change: background-position;
}

@keyframes rcForbesShine {
  from {
    background-position: 220% 0, 0 0;
  }

  to {
    background-position: -120% 0, 0 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rc-categories-highlight span {
    animation: none;
    background-position: 0 0, 0 0;
  }
}


.rc-center-lower {
  position: absolute;
  z-index: 10;

  left: 50%;
  top: 69%;

  width: 53%;

  transform: translateX(-50%);

  text-align: center;

  pointer-events: none;
}

.rc-center-description {
  /*
    Головна думка + спокійніший пояснювальний рядок.
    Це відділяє опис від службового переліку послуг вище.
  */
  margin-top: 0;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 8px;

  color: #fff;

  letter-spacing: .005em;
}

.rc-center-description strong {
  display: block;

  font-size:
    clamp(23px,1.65vw,30px);

  font-weight: 600;
  line-height: 1.16;

  color:
    rgba(255,255,255,.98);

  text-shadow:
    0 4px 18px rgba(0,28,86,.14);
}

.rc-center-description span {
  display: block;

  font-size:
    clamp(17px,1.18vw,21px);

  font-weight: 400;
  line-height: 1.35;

  color:
    rgba(255,255,255,.74);
}


.rc-hero-cta {
  position: relative;
  z-index: 12;

  /*
    Більша дистанція від тексту + більша сама кнопка.
  */
  margin: 54px auto 0;

  width: max-content;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;

  padding: 20px 34px;

  color: #fff;

  font-size: 19px;
  font-weight: 700;

  letter-spacing: .01em;

  text-decoration: none;

  border:
    1px solid
    rgba(255,255,255,.40);

  border-radius: 999px;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,.14),
      rgba(112,184,255,.14)
    );

  box-shadow:
    0 12px 30px
    rgba(0,26,85,.20),

    inset
    0 1px 0
    rgba(255,255,255,.10);

  backdrop-filter:
    blur(10px);

  -webkit-backdrop-filter:
    blur(10px);

  pointer-events: auto;

  transition:
    transform .24s ease,
    border-color .24s ease,
    background .24s ease,
    box-shadow .24s ease;
}

.rc-hero-cta svg {
  width: 22px;
  height: 22px;

  fill: none;

  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;

  transition:
    transform .24s ease;
}

.rc-hero-cta:hover {
  transform:
    translateY(-2px);

  border-color:
    rgba(255,255,255,.48);

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,.18),
      rgba(112,184,255,.18)
    );

  box-shadow:
    0 14px 34px
    rgba(0,26,85,.24),

    0 0 20px
    rgba(111,185,255,.10),

    inset
    0 1px 0
    rgba(255,255,255,.10);
}

.rc-hero-cta:hover svg {
  transform:
    translateX(3px);
}

.rc-hero-cta:active {
  transform:
    translateY(0);
}


/* =========================================================
   NETWORK
   ========================================================= */

.rc-network {
  position: absolute;

  inset: 0;

  z-index: 4;

  width: 100%;
  height: 100%;

  pointer-events: none;

  overflow: visible;
}

.rc-line {
  fill: none;

  stroke:
    var(--rc-line);

  stroke-width: 2;

  vector-effect:
    non-scaling-stroke;

  stroke-linecap: round;
  stroke-linejoin: round;

  opacity: .95;

  filter:
    drop-shadow(
      0 0 1px
      rgba(255,255,255,.12)
    );
}

.rc-chain {
  animation:
    rcLineAppear
    1.15s
    ease
    both;
}

@keyframes rcLineAppear {
  from {
    opacity: 0;
  }

  to {
    opacity: .95;
  }
}

.rc-center-line {
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;

  animation:
    rcDrawCenter
    2s
    cubic-bezier(.3,.7,.3,1)
    forwards;
}

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


/* =========================================================
   DOTS + NODES
   ========================================================= */

.rc-node {
  fill: #0753aa;

  stroke: #fff;

  stroke-width: 2.4;

  vector-effect:
    non-scaling-stroke;
}

.rc-moving-dot {
  fill: #fff;

  transition:
    opacity .08s linear;

  filter:
    drop-shadow(
      0 0 4px
      rgba(255,255,255,1)
    )
    drop-shadow(
      0 0 11px
      rgba(75,164,255,.9)
    );
}

.rc-center-dot {
  filter:
    drop-shadow(
      0 0 6px #fff
    )
    drop-shadow(
      0 0 16px
      rgba(76,164,255,.95)
    );
}


/* =========================================================
   CENTER FLASH
   ========================================================= */

.rc-flash-ring,
.rc-flash-core {
  pointer-events: none;

  opacity: 0;

  transform-box: fill-box;
  transform-origin: center;

  vector-effect:
    non-scaling-stroke;
}

.rc-flash-ring {
  fill: none;

  stroke:
    rgba(255,255,255,.98);

  stroke-width: 2.2;

  filter:
    drop-shadow(
      0 0 8px
      rgba(255,255,255,.95)
    )
    drop-shadow(
      0 0 20px
      rgba(89,173,255,.95)
    );
}

.rc-flash-core {
  fill:
    rgba(255,255,255,.95);

  filter:
    drop-shadow(
      0 0 12px
      rgba(255,255,255,1)
    )
    drop-shadow(
      0 0 28px
      rgba(84,170,255,.95)
    );
}

.rc-flash-ring.is-flashing {
  animation:
    rcFlashRing
    .52s
    cubic-bezier(.12,.68,.22,1)
    forwards;
}

.rc-flash-core.is-flashing {
  animation:
    rcFlashCore
    .32s
    ease-out
    forwards;
}

.rc-center-node.is-flashing {
  animation:
    rcNodePulse
    .42s
    ease-out;
}

@keyframes rcFlashRing {
  0% {
    opacity: .95;
    transform: scale(.8);
  }

  100% {
    opacity: 0;
    transform: scale(4.4);
  }
}

@keyframes rcFlashCore {
  0% {
    opacity: .95;
    transform: scale(.65);
  }

  100% {
    opacity: 0;
    transform: scale(2.3);
  }
}

@keyframes rcNodePulse {
  0% {
    filter:
      drop-shadow(
        0 0 0
        rgba(255,255,255,0)
      );
  }

  42% {
    filter:
      drop-shadow(
        0 0 14px
        rgba(255,255,255,1)
      )
      drop-shadow(
        0 0 24px
        rgba(84,170,255,.9)
      );
  }

  100% {
    filter:
      drop-shadow(
        0 0 0
        rgba(255,255,255,0)
      );
  }
}


/* =========================================================
   ICON LAYER
   ========================================================= */

.rc-icons-layer {
  position: absolute;

  inset: 0;

  z-index: 6;

  pointer-events: none;

  /*
    V13:
    увесь блок іконок опущений нижче,
    щоб верхні картинки не заходили під fixed-меню.
    Лінії продовжують автоматично підлаштовуватися під PNG через JS.
  */
  transform: translateY(46px);
}

.rc-service {
  position: absolute;

  z-index: 7;

  text-align: center;

  transform:
    translate(-50%,-50%);

  pointer-events: auto;

  cursor: default;

  perspective: 900px;

  padding:
    16px 18px 20px;
}

.rc-float {
  will-change: transform;
}


/* =========================================================
   LABELS
   Лінія проходить ПОЗАДУ, а капсула акуратно її маскує.
   ========================================================= */

.rc-service span {
  position: relative;

  z-index: 5;

  display: inline-block;

  margin-top: 10px;

  padding:
    5px 11px 6px;

  color:
    rgba(255,255,255,.98);

  font-size:
    clamp(13px,1.13vw,21px);

  font-weight: 500;

  line-height: 1.1;

  white-space: nowrap;

  border:
    1px solid
    rgba(255,255,255,.08);

  border-radius: 999px;

  background:
    linear-gradient(
      135deg,
      rgba(3,55,132,.87),
      rgba(8,83,172,.80)
    );

  box-shadow:
    0 5px 16px
    rgba(0,28,80,.16),

    inset
    0 1px 0
    rgba(255,255,255,.035);

  backdrop-filter:
    blur(7px);

  -webkit-backdrop-filter:
    blur(7px);

  text-shadow:
    0 2px 9px
    rgba(0,24,75,.2);

  transition:
    transform .24s ease,
    border-color .24s ease,
    background .24s ease;
}

.rc-service:hover span {
  transform:
    translateY(3px);

  border-color:
    rgba(255,255,255,.14);

  background:
    linear-gradient(
      135deg,
      rgba(4,61,145,.94),
      rgba(12,91,185,.88)
    );
}


/* =========================================================
   HOVER
   ========================================================= */

.rc-hover {
  --hover-x: 0px;
  --hover-y: 0px;
  --rotate-x: 0deg;
  --rotate-y: 0deg;

  transform:
    translate3d(
      var(--hover-x),
      var(--hover-y),
      0
    )
    rotateX(var(--rotate-x))
    rotateY(var(--rotate-y))
    scale(1);

  transform-style:
    preserve-3d;

  will-change:
    transform,
    filter;

  transition:
    transform
    .24s
    cubic-bezier(.2,.8,.2,1),

    filter
    .24s
    ease;
}

.rc-service:hover .rc-hover {
  transform:
    translate3d(
      var(--hover-x),
      calc(var(--hover-y) - 9px),
      0
    )
    rotateX(var(--rotate-x))
    rotateY(var(--rotate-y))
    scale(1.075);

  filter:
    drop-shadow(
      0 13px 26px
      rgba(0,24,84,.18)
    )
    drop-shadow(
      0 0 15px
      rgba(125,190,255,.27)
    );
}

.rc-service img {
  position: relative;

  z-index: 6;

  display: block;

  height: auto;

  margin: 0 auto;

  object-fit: contain;

  user-select: none;

  -webkit-user-drag: none;

  filter:
    drop-shadow(
      0 5px 11px
      rgba(0,22,76,.10)
    );

  transition:
    filter .24s ease;
}

.rc-service:hover img {
  filter:
    drop-shadow(
      0 8px 15px
      rgba(0,22,76,.18)
    )
    drop-shadow(
      0 0 10px
      rgba(255,255,255,.15)
    );
}


/* =========================================================
   POSITIONS
   ЛІВА КОЛОНКА РОЗНЕСЕНА СИЛЬНІШЕ ПО ВИСОТІ.
   ========================================================= */

.rc-website {
  left: 18.5%;
  top: 20.5%;
}

.rc-website img {
  width:
    clamp(150px,10vw,206px);
}


.rc-webapps {
  left: 7.5%;
  top: 52.5%;
}

.rc-webapps img {
  width:
    clamp(105px,6.4vw,132px);
}


.rc-crm {
  left: 19%;
  top: 76%;
}

.rc-crm img {
  width:
    clamp(125px,7.8vw,160px);
}


/* RIGHT */

.rc-uiux {
  left: 80%;
  top: 19%;
}

.rc-uiux img {
  width:
    clamp(120px,7.4vw,152px);
}


.rc-ecommerce {
  left: 89%;
  top: 39%;
}

.rc-ecommerce img {
  width:
    clamp(95px,5.9vw,120px);
}


.rc-automation {
  left: 78%;
  top: 58%;
}

.rc-automation img {
  width:
    clamp(86px,5vw,104px);
}


.rc-integration {
  left: 90%;
  top: 76%;
}

.rc-integration img {
  width:
    clamp(92px,5.7vw,116px);
}


/* =========================================================
   FLOATING
   ========================================================= */

.rc-float-a {
  animation:
    rcFloatA
    7.2s
    cubic-bezier(.45,0,.55,1)
    infinite alternate;
}

.rc-float-b {
  animation:
    rcFloatB
    8.7s
    cubic-bezier(.45,0,.55,1)
    infinite alternate;
}

.rc-float-c {
  animation:
    rcFloatC
    7.9s
    cubic-bezier(.45,0,.55,1)
    infinite alternate;
}

.rc-float-d {
  animation:
    rcFloatD
    9.2s
    cubic-bezier(.45,0,.55,1)
    infinite alternate;
}

@keyframes rcFloatA {
  0% {
    transform:
      translate3d(-4px,-12px,0)
      rotate(-.15deg);
  }

  50% {
    transform:
      translate3d(2px,2px,0)
      rotate(.10deg);
  }

  100% {
    transform:
      translate3d(5px,14px,0)
      rotate(-.07deg);
  }
}

@keyframes rcFloatB {
  0% {
    transform:
      translate3d(5px,13px,0)
      rotate(.10deg);
  }

  50% {
    transform:
      translate3d(-2px,0,0)
      rotate(-.10deg);
  }

  100% {
    transform:
      translate3d(-5px,-13px,0)
      rotate(.06deg);
  }
}

@keyframes rcFloatC {
  0% {
    transform:
      translate3d(-5px,11px,0);
  }

  50% {
    transform:
      translate3d(2px,-2px,0);
  }

  100% {
    transform:
      translate3d(6px,-14px,0);
  }
}

@keyframes rcFloatD {
  0% {
    transform:
      translate3d(4px,-13px,0);
  }

  50% {
    transform:
      translate3d(-1px,2px,0);
  }

  100% {
    transform:
      translate3d(-6px,12px,0);
  }
}


/* =========================================================
   HERO BACKGROUND BLOBS
   ========================================================= */

.rc-hero-blobs {
  position: absolute;
  inset: 0;

  z-index: 1;

  width: 100%;
  height: 100%;

  display: block;

  pointer-events: none;

  /*
    V10: фонові кола тепер добре видно,
    але вони все ще залишаються фоновим шаром.
  */
  opacity: 1;

  filter:
    saturate(1.08)
    brightness(1.08);
}


/* =========================================================
   MINI MATRIX BLOCKS — STATIC TO CURSOR
   ========================================================= */

.rc-mini-pixels {
  position: absolute;

  z-index: 4;

  display: grid;

  grid-template-columns:
    repeat(3, 8px);

  grid-template-rows:
    repeat(4, 8px);

  gap: 5px;

  width: max-content;
  height: max-content;

  pointer-events: none;

  /*
    Тут теж немає parallax / mouse transform.
  */
}


.rc-mini-cell {
  width: 8px;
  height: 8px;

  border:
    1px solid
    rgba(255,255,255,.30);

  background:
    rgba(128,192,255,.018);

  opacity: .24;

  animation:
    rcMatrixFlow
    2.8s
    ease-in-out
    infinite;

  animation-delay:
    calc(var(--delay) * -1);
}


/*
  "Матриця":
  окрема клітинка підсвічується,
  потім гасне. Delay задає напрям хвилі.
*/

@keyframes rcMatrixFlow {
  0%,
  18% {
    opacity: .18;

    background:
      rgba(126,190,255,.015);

    box-shadow:
      0 0 0
      rgba(98,176,255,0);
  }

  38% {
    opacity: .58;

    background:
      rgba(125,193,255,.075);

    box-shadow:
      0 0 5px
      rgba(91,173,255,.08);
  }

  50% {
    opacity: .95;

    background:
      rgba(158,211,255,.16);

    box-shadow:
      0 0 9px
      rgba(91,173,255,.17);
  }

  67% {
    opacity: .42;

    background:
      rgba(125,193,255,.055);

    box-shadow:
      0 0 3px
      rgba(91,173,255,.05);
  }

  82%,
  100% {
    opacity: .18;

    background:
      rgba(126,190,255,.015);

    box-shadow:
      0 0 0
      rgba(98,176,255,0);
  }
}


/*
  Розташування маленьких груп приблизно як у банері.
*/

.rc-mini-a {
  left: 5%;
  top: 25%;
}

.rc-mini-b {
  left: 22.3%;
  top: 42.5%;

  opacity: .72;

  transform:
    scale(.90);
}

.rc-mini-c {
  right: 5%;
  top: 46.5%;
}

.rc-mini-d {
  right: 23.5%;
  top: 18.5%;

  opacity: .64;

  transform:
    scale(.86);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width:1200px) {

  .rc-hero {
    height: 810px;
  }

  .rc-center {
    width: 60%;
  }

  .rc-center-lower {
    top: 69%;
    width: 60%;
  }

}


@media (max-width:850px) {

  .rc-icons-layer {
    transform: translateY(56px);
  }


  .rc-mini-pixels {
    transform: scale(.82);
  }

  .rc-mini-b {
    transform: scale(.72);
  }

  .rc-mini-d {
    transform: scale(.70);
  }

  .rc-hero {
    height: 880px;
  }

  .rc-center {
    width: 92%;
    top: 43%;
  }

  .rc-center h1 {
    font-size:
      clamp(58px,14vw,95px);
  }

  .rc-categories {
    gap: 8px;

    font-size: 12px;

    flex-wrap: wrap;

    color:
      rgba(255,255,255,.66);

    transform: translateY(40px);
  }

  .rc-categories i {
    width: 4px;
    height: 4px;
  }

  .rc-center-lower {
    top: 68%;
    width: 92%;
  }

  .rc-center-description {
    margin-top: 0;

    gap: 6px;
  }

  .rc-center-description strong {
    font-size: 21px;
  }

  .rc-center-description span {
    font-size: 15px;
  }


  .rc-hero-cta {
    margin-top: 50px;

    padding: 13px 20px;

    font-size: 15px;
  }

  .rc-service {
    padding: 10px;
  }

  .rc-service span {
    font-size: 11px;

    padding:
      4px 8px 5px;
  }

  .rc-website {
    left: 18%;
    top: 11%;
  }

  .rc-webapps {
    left: 8%;
    top: 65%;
  }

  .rc-crm {
    left: 24%;
    top: 84%;
  }

  .rc-uiux {
    left: 82%;
    top: 11%;
  }

  .rc-ecommerce {
    left: 92%;
    top: 64%;
  }

  .rc-automation {
    display: none;
  }

  .rc-integration {
    left: 76%;
    top: 84%;
  }

  .rc-network {
    opacity: .48;
  }

}






/* =========================================================
   MOBILE HERO — SEPARATE COMPOSITION
   Desktop hero remains unchanged.
   ========================================================= */

.rc-network-mobile {
  display: none;
}


/* Mobile/tablet hero */
@media (max-width:850px) {

  .rc-hero {
    height: 760px;

    background:
      radial-gradient(
        ellipse at 50% 39%,
        rgba(56,145,255,.19) 0%,
        rgba(20,105,220,.075) 33%,
        transparent 60%
      ),
      radial-gradient(
        circle at 12% 17%,
        rgba(70,157,255,.09),
        transparent 30%
      ),
      radial-gradient(
        circle at 88% 18%,
        rgba(70,157,255,.08),
        transparent 30%
      ),
      linear-gradient(
        145deg,
        var(--rc-blue-1) 0%,
        var(--rc-blue-2) 52%,
        var(--rc-blue-4) 100%
      );
  }


  /* Desktop network is too complex for a narrow screen. */
  .rc-network {
    display: none;
  }

  .rc-network-mobile {
    position: absolute;
    inset: 0;

    z-index: 4;

    width: 100%;
    height: 100%;

    display: block;

    pointer-events: none;

    opacity: .58;
  }

  .rc-mobile-line {
    fill: none;

    stroke:
      rgba(255,255,255,.70);

    stroke-width: 1.35;

    vector-effect:
      non-scaling-stroke;

    stroke-linecap: round;
    stroke-linejoin: round;

    stroke-dasharray:
      8 13;

    animation:
      rcMobileLineFlow
      9s
      linear
      infinite;
  }

  .rc-mobile-line-b,
  .rc-mobile-line-d,
  .rc-mobile-line-f {
    animation-direction: reverse;
  }

  .rc-mobile-node {
    fill:
      #0753aa;

    stroke:
      rgba(255,255,255,.94);

    stroke-width: 1.6;

    vector-effect:
      non-scaling-stroke;

    filter:
      drop-shadow(
        0 0 5px
        rgba(111,190,255,.42)
      );
  }

  @keyframes rcMobileLineFlow {
    to {
      stroke-dashoffset: -84;
    }
  }


  /* Decorative squares are much quieter on mobile. */
  .rc-mini-pixels {
    opacity: .25;

    transform:
      scale(.64);
  }

  .rc-mini-a {
    left: 7%;
    top: 28%;
  }

  .rc-mini-d {
    right: 7%;
    top: 29%;
  }

  .rc-mini-b,
  .rc-mini-c {
    display: none;
  }


  /* The icons now form a clean four-corner composition. */
  .rc-icons-layer {
    transform: none;
  }

  .rc-service {
    padding:
      6px 7px 9px;
  }

  .rc-service span {
    margin-top: 6px;

    padding:
      4px 8px 5px;

    font-size: 10px;

    background:
      linear-gradient(
        135deg,
        rgba(3,55,132,.86),
        rgba(8,83,172,.76)
      );

    backdrop-filter:
      blur(6px);

    -webkit-backdrop-filter:
      blur(6px);
  }


  .rc-website {
    left: 18%;
    top: 18%;
  }

  .rc-uiux {
    left: 82%;
    top: 18%;
  }

  .rc-webapps {
    left: 16%;
    top: 84%;
  }

  .rc-ecommerce {
    left: 84%;
    top: 84%;
  }

  /*
    The full services list already exists directly below,
    so the mobile hero only keeps four representative icons.
  */
  .rc-crm,
  .rc-automation,
  .rc-integration {
    display: none;
  }


  .rc-website img {
    width:
      clamp(86px,24vw,108px);
  }

  .rc-uiux img {
    width:
      clamp(68px,18vw,82px);
  }

  .rc-webapps img {
    width:
      clamp(72px,19vw,88px);
  }

  .rc-ecommerce img {
    width:
      clamp(68px,18vw,82px);
  }


  /* Main brand group */
  .rc-center {
    top: 40%;
    width: 92%;
  }

  .rc-center h1 {
    font-size:
      clamp(52px,14.5vw,82px);

    line-height: .92;

    letter-spacing: -.06em;
  }

  .rc-categories {
    max-width: 330px;

    margin:
      18px auto 0;

    gap:
      7px 8px;

    font-size: 11px;
    line-height: 1.35;

    white-space: normal;

    transform:
      translateY(18px);
  }

  .rc-categories i {
    width: 3px;
    height: 3px;
  }


  /* Separate clean lower text group. */
  .rc-center-lower {
    top: 59.5%;

    width:
      min(90%, 520px);
  }

  .rc-center-description {
    gap: 6px;
  }

  .rc-center-description strong {
    font-size:
      clamp(19px,5vw,23px);

    line-height: 1.18;
  }

  .rc-center-description span {
    max-width: 330px;

    font-size:
      clamp(13px,3.6vw,15px);

    line-height: 1.42;
  }

  .rc-hero-cta {
    margin-top: 30px;

    padding:
      14px 22px;

    gap: 10px;

    font-size: 15px;
  }

  .rc-hero-cta svg {
    width: 19px;
    height: 19px;
  }


  /* Keep background motion subtle behind the smaller composition. */
  .rc-hero-blobs {
    opacity: .74;

    filter:
      saturate(.94)
      brightness(1.02);
  }
}


/* Phones */
@media (max-width:520px) {

  .rc-hero {
    height: 740px;
  }

  .rc-network-mobile {
    opacity: .47;
  }

  .rc-mini-pixels {
    display: none;
  }

  .rc-center {
    top: 40.5%;
  }

  .rc-center h1 {
    font-size:
      clamp(48px,14.5vw,62px);
  }

  .rc-categories {
    max-width: 290px;

    margin-top: 16px;

    gap:
      6px 7px;

    font-size: 10.5px;

    transform:
      translateY(16px);
  }

  .rc-center-lower {
    top: 60.5%;

    width: 91%;
  }

  .rc-center-description strong {
    font-size: 19px;
  }

  .rc-center-description span {
    max-width: 295px;

    font-size: 13px;
  }

  .rc-hero-cta {
    margin-top: 26px;

    padding:
      13px 19px;

    font-size: 14px;
  }


  .rc-website {
    left: 17%;
    top: 17.5%;
  }

  .rc-uiux {
    left: 83%;
    top: 17.5%;
  }

  .rc-webapps {
    left: 15%;
    top: 85%;
  }

  .rc-ecommerce {
    left: 85%;
    top: 85%;
  }

  .rc-service span {
    font-size: 9px;

    padding:
      3px 7px 4px;
  }

  .rc-website img {
    width:
      clamp(78px,25vw,92px);
  }

  .rc-uiux img {
    width:
      clamp(60px,19vw,72px);
  }

  .rc-webapps img {
    width:
      clamp(64px,20vw,76px);
  }

  .rc-ecommerce img {
    width:
      clamp(60px,19vw,72px);
  }
}


/* =========================================================
   PROJECTS SECTION
   ========================================================= */

.rc-projects {
  position: relative;
  z-index: 20;

  overflow: hidden;

  padding:
    120px 0;

  color: #11274b;

  background:
    radial-gradient(
      circle at 82% 12%,
      rgba(43,116,214,.08),
      transparent 27%
    ),
    radial-gradient(
      circle at 14% 92%,
      rgba(28,93,184,.06),
      transparent 28%
    ),
    #f4f6f9;
}

.rc-projects::before {
  content: "";

  position: absolute;

  top: 0;
  left: 50%;

  width:
    min(1760px, calc(100% - 64px));

  height: 1px;

  transform:
    translateX(-50%);

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(14,55,116,.18) 16%,
      rgba(14,55,116,.18) 84%,
      transparent
    );
}

.rc-projects-shell {
  position: relative;

  width:
    min(1760px, calc(100% - 64px));

  margin:
    0 auto;
}


/* HEADER */

.rc-projects-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 40px;

  margin-bottom: 56px;
}

.rc-projects-heading {
  max-width: 720px;
}

.rc-section-kicker {
  display: inline-flex;
  align-items: center;

  gap: 9px;

  margin-bottom: 16px;

  color:
    #1d5fb8;

  font-size: 13px;
  font-weight: 700;

  letter-spacing: .13em;

  text-transform: uppercase;
}

.rc-section-kicker::before {
  content: "";

  width: 28px;
  height: 1px;

  background:
    #1d5fb8;
}

.rc-projects-heading h2 {
  margin: 0;

  color:
    #10264a;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(48px,5vw,82px);

  font-weight: 700;

  line-height: .95;

  letter-spacing: -.045em;
}

.rc-projects-heading p {
  max-width: 610px;

  margin:
    22px 0 0;

  color:
    rgba(17,39,75,.62);

  font-size:
    clamp(16px,1.2vw,20px);

  line-height: 1.55;
}


/* CONTROLS */

.rc-projects-controls {
  display: flex;
  align-items: center;

  gap: 10px;
}

.rc-project-arrow {
  width: 54px;
  height: 54px;

  display: grid;
  place-items: center;

  padding: 0;

  color:
    #163c78;

  border:
    1px solid
    rgba(15,54,111,.15);

  border-radius:
    50%;

  background:
    rgba(255,255,255,.68);

  box-shadow:
    0 12px 30px
    rgba(23,62,119,.06);

  cursor: pointer;

  transition:
    color .22s ease,
    background .22s ease,
    border-color .22s ease,
    transform .22s ease,
    opacity .22s ease;
}

.rc-project-arrow svg {
  width: 20px;
  height: 20px;

  fill: none;

  stroke: currentColor;
  stroke-width: 1.8;

  stroke-linecap: round;
  stroke-linejoin: round;
}

.rc-project-arrow:hover:not(:disabled) {
  color: #fff;

  background:
    #0d4ea5;

  border-color:
    #0d4ea5;

  transform:
    translateY(-2px);
}

.rc-project-arrow:disabled {
  opacity: .35;

  cursor: default;
}


/* CAROUSEL */

.rc-projects-viewport {
  /*
    Дозволяє наступній картці трохи виглядати справа,
    щоб одразу читалось як карусель.
  */
  overflow: visible;
}

.rc-projects-track {
  display: flex;

  gap: 24px;

  overflow-x: auto;
  overflow-y: hidden;

  padding:
    4px 11vw 30px 0;

  scroll-snap-type:
    x mandatory;

  overscroll-behavior-inline:
    contain;

  scrollbar-width: none;

  cursor: grab;

  touch-action: pan-x pan-y;
  -webkit-overflow-scrolling: touch;
}

.rc-projects-track::-webkit-scrollbar {
  display: none;
}

.rc-projects-track.is-dragging {
  cursor: grabbing;

  scroll-snap-type:
    none;

  user-select: none;
}

.rc-project-card {
  flex:
    0 0
    min(620px, 48vw);

  min-width: 0;

  scroll-snap-align:
    start;
  scroll-snap-stop: always;
}

.rc-project-link {
  height: 100%;

  display: block;

  overflow: hidden;

  color: inherit;

  text-decoration: none;

  border:
    1px solid
    rgba(23,57,107,.10);

  border-radius:
    30px;

  background:
    rgba(255,255,255,.72);

  box-shadow:
    0 20px 60px
    rgba(23,56,108,.065);

  backdrop-filter:
    blur(12px);

  -webkit-backdrop-filter:
    blur(12px);

  transition:
    transform .35s
    cubic-bezier(.2,.8,.2,1),

    box-shadow .35s ease,
    border-color .35s ease;
}

.rc-project-link:hover {
  transform:
    translateY(-8px);

  border-color:
    rgba(27,84,166,.18);

  box-shadow:
    0 30px 75px
    rgba(23,56,108,.11);
}


/* VISUAL */

.rc-project-visual {
  position: relative;

  height:
    clamp(310px,26vw,440px);

  overflow: hidden;

  display: grid;
  place-items: center;

  border-bottom:
    1px solid
    rgba(255,255,255,.10);

  isolation: isolate;
}

.rc-project-visual::after {
  content: "";

  position: absolute;
  inset: 0;

  z-index: -1;

  background:
    linear-gradient(
      180deg,
      transparent,
      rgba(0,26,70,.05)
    );
}

.rc-project-number {
  position: absolute;

  right: 22px;
  top: 18px;

  color:
    rgba(255,255,255,.52);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 17px;

  letter-spacing: .05em;
}


/* PROJECT 1 */

.rc-project-visual-meat {
  background:
    radial-gradient(
      circle at 80% 10%,
      rgba(255,227,198,.16),
      transparent 25%
    ),
    linear-gradient(
      145deg,
      #4b1119,
      #8d2834 60%,
      #52131c
    );
}

.rc-browser {
  width: 76%;
  aspect-ratio: 1.42;

  overflow: hidden;

  border:
    1px solid
    rgba(255,255,255,.22);

  border-radius:
    16px;

  background:
    #f1e9df;

  box-shadow:
    0 32px 70px
    rgba(43,4,10,.28);

  transform:
    perspective(1000px)
    rotateY(-5deg)
    rotateX(3deg);

  transition:
    transform .5s ease;
}

.rc-project-link:hover
.rc-browser {
  transform:
    perspective(1000px)
    rotateY(-1deg)
    rotateX(1deg)
    translateY(-6px);
}

.rc-browser-top {
  height: 30px;

  display: flex;
  align-items: center;

  gap: 5px;

  padding:
    0 11px;

  background:
    #fff9f1;
}

.rc-browser-top span {
  width: 6px;
  height: 6px;

  border-radius: 50%;

  background:
    #8e4c54;
}

.rc-browser-content {
  height:
    calc(100% - 30px);

  padding: 12px;

  background:
    #f4ece4;
}

.rc-mock-hero {
  height: 57%;

  display: flex;
  align-items: flex-end;

  padding: 18px;

  border-radius: 10px;

  color: #fff;

  background:
    linear-gradient(
      120deg,
      rgba(64,12,17,.35),
      rgba(64,12,17,.05)
    ),
    linear-gradient(
      135deg,
      #7d2330,
      #3d1518
    );
}

.rc-mock-hero span {
  display: block;

  margin-bottom: 5px;

  font-size: 9px;

  opacity: .65;
}

.rc-mock-hero strong {
  font-family:
    Georgia,
    serif;

  font-size:
    clamp(15px,1.5vw,25px);
}

.rc-mock-products {
  height: 37%;

  display: grid;

  grid-template-columns:
    repeat(3,1fr);

  gap: 8px;

  margin-top: 8px;
}

.rc-mock-products i {
  border-radius: 8px;

  background:
    linear-gradient(
      145deg,
      #d8c7b9,
      #f5eee8
    );
}


/* PROJECT 2 */

.rc-project-visual-bvk {
  background:
    radial-gradient(
      circle at 22% 20%,
      rgba(98,175,255,.22),
      transparent 27%
    ),
    linear-gradient(
      145deg,
      #092963,
      #0a51a6 62%,
      #082f70
    );
}

.rc-dashboard {
  width: 78%;
  aspect-ratio: 1.5;

  display: grid;

  grid-template-columns:
    21% 1fr;

  overflow: hidden;

  border:
    1px solid
    rgba(255,255,255,.19);

  border-radius: 16px;

  background:
    rgba(245,249,255,.94);

  box-shadow:
    0 30px 70px
    rgba(0,20,60,.28);

  transform:
    perspective(1000px)
    rotateY(5deg)
    rotateX(2deg);

  transition:
    transform .5s ease;
}

.rc-project-link:hover
.rc-dashboard {
  transform:
    perspective(1000px)
    rotateY(1deg)
    rotateX(0)
    translateY(-6px);
}

.rc-dashboard-side {
  padding: 18px 10px;

  background:
    #0b316f;
}

.rc-dashboard-side span {
  display: block;

  height: 7px;

  margin-bottom: 10px;

  border-radius: 999px;

  background:
    rgba(255,255,255,.20);
}

.rc-dashboard-side span:first-child {
  background:
    rgba(255,255,255,.72);
}

.rc-dashboard-main {
  padding:
    16px 18px;
}

.rc-dashboard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;

  color:
    #163765;

  font-size: 14px;
}

.rc-dashboard-head i {
  width: 24px;
  height: 24px;

  border-radius: 50%;

  background:
    #d8e6fb;
}

.rc-dashboard-stats {
  display: grid;

  grid-template-columns:
    repeat(3,1fr);

  gap: 8px;

  margin-top: 16px;
}

.rc-dashboard-stats span {
  height: 54px;

  border-radius: 9px;

  background:
    linear-gradient(
      145deg,
      #e5eefb,
      #f5f8fd
    );
}

.rc-dashboard-table {
  display: grid;

  gap: 7px;

  margin-top: 15px;
}

.rc-dashboard-table i {
  height: 9px;

  border-radius: 999px;

  background:
    #e1e9f4;
}


/* PROJECT 3 */

.rc-project-visual-yatut {
  background:
    radial-gradient(
      circle at 50% 30%,
      rgba(255,255,255,.22),
      transparent 28%
    ),
    linear-gradient(
      145deg,
      #5d2890,
      #214eac 60%,
      #0a377a
    );
}

.rc-phone {
  position: absolute;

  width: 31%;
  aspect-ratio: .52;

  padding: 7px;

  border:
    1px solid
    rgba(255,255,255,.25);

  border-radius:
    27px;

  background:
    #eef4ff;

  box-shadow:
    0 28px 60px
    rgba(11,15,71,.25);

  transition:
    transform .5s
    cubic-bezier(.2,.8,.2,1);
}

.rc-phone-left {
  left: 27%;

  transform:
    rotate(-7deg)
    translateY(10px);
}

.rc-phone-right {
  right: 25%;

  transform:
    rotate(7deg)
    translateY(-8px);
}

.rc-project-link:hover
.rc-phone-left {
  transform:
    rotate(-3deg)
    translate(-8px,-4px);
}

.rc-project-link:hover
.rc-phone-right {
  transform:
    rotate(3deg)
    translate(8px,-15px);
}

.rc-phone-screen {
  position: relative;

  width: 100%;
  height: 100%;

  overflow: hidden;

  border-radius: 21px;

  background:
    linear-gradient(
      155deg,
      #b8d8ff,
      #f8fbff
    );
}

.rc-map-dot {
  position: absolute;

  left: 23%;
  top: 26%;

  width: 13px;
  height: 13px;

  border:
    3px solid #3468bb;

  border-radius: 50%;
}

.rc-map-line {
  position: absolute;

  height: 2px;

  background:
    rgba(45,93,169,.35);

  transform-origin:
    left center;
}

.rc-map-line.one {
  left: 25%;
  top: 38%;

  width: 62%;

  transform:
    rotate(25deg);
}

.rc-map-line.two {
  left: 14%;
  top: 62%;

  width: 72%;

  transform:
    rotate(-18deg);
}

.rc-map-pin {
  position: absolute;

  right: 18%;
  bottom: 24%;

  width: 19px;
  height: 19px;

  border-radius:
    50% 50% 50% 0;

  background:
    #5a2b91;

  transform:
    rotate(-45deg);
}

.rc-phone-list {
  padding: 18px 12px;

  background:
    #f8fbff;
}

.rc-phone-list b {
  display: block;

  margin-bottom: 17px;

  color:
    #1f4b94;

  font-size: 14px;
}

.rc-phone-list span {
  display: block;

  height: 42px;

  margin-bottom: 9px;

  border-radius: 10px;

  background:
    #e5eefb;
}


/* PROJECT 4 */

.rc-project-visual-pwa {
  background:
    radial-gradient(
      circle at 75% 22%,
      rgba(255,255,255,.16),
      transparent 26%
    ),
    linear-gradient(
      145deg,
      #112e60,
      #1c6b94 65%,
      #0c3b63
    );
}

.rc-pwa-device {
  width: 41%;
  aspect-ratio: .64;

  padding: 16px;

  border:
    1px solid
    rgba(255,255,255,.23);

  border-radius: 30px;

  background:
    #f7f9fc;

  box-shadow:
    0 30px 65px
    rgba(3,24,50,.27);

  transform:
    perspective(900px)
    rotateY(-5deg);

  transition:
    transform .5s ease;
}

.rc-project-link:hover
.rc-pwa-device {
  transform:
    perspective(900px)
    rotateY(0)
    translateY(-7px);
}

.rc-pwa-header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  color:
    #163b68;

  font-size: 13px;
}

.rc-pwa-header i {
  width: 25px;
  height: 25px;

  border-radius: 8px;

  background:
    #d9e7f4;
}

.rc-pwa-search {
  height: 28px;

  margin-top: 15px;

  border-radius: 999px;

  background:
    #e9eef4;
}

.rc-pwa-orders {
  display: grid;

  gap: 9px;

  margin-top: 14px;
}

.rc-pwa-orders span {
  height: 56px;

  border:
    1px solid
    #e0e8f0;

  border-radius: 12px;

  background:
    #fff;
}


/* PROJECT 5 */

.rc-project-visual-selo {
  background:
    radial-gradient(
      circle at 22% 28%,
      rgba(255,235,197,.16),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      #754b20,
      #b97b36 58%,
      #603919
    );
}

.rc-selo-window {
  width: 72%;

  padding: 18px;

  border:
    1px solid
    rgba(255,255,255,.22);

  border-radius: 18px;

  background:
    #f8f3e9;

  box-shadow:
    0 30px 60px
    rgba(49,24,5,.25);

  transform:
    perspective(900px)
    rotateY(-4deg);

  transition:
    transform .5s ease;
}

.rc-project-link:hover
.rc-selo-window {
  transform:
    perspective(900px)
    rotateY(0)
    translateY(-7px);
}

.rc-selo-title {
  display: flex;
  align-items: center;

  gap: 8px;

  color:
    #563413;
}

.rc-selo-title i {
  width: 20px;
  height: 20px;

  border-radius: 7px;

  background:
    #d89b53;
}

.rc-selo-grid {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 10px;

  margin-top: 16px;
}

.rc-selo-grid span {
  height: 70px;

  border-radius: 10px;

  background:
    linear-gradient(
      145deg,
      #ead8be,
      #fffaf1
    );
}


/* CARD BODY */

.rc-project-body {
  padding:
    28px 30px 30px;
}

.rc-project-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  color:
    rgba(18,50,97,.48);

  font-size: 12px;
  font-weight: 700;

  letter-spacing: .11em;

  text-transform: uppercase;
}

.rc-project-body h3 {
  margin:
    13px 0 0;

  color:
    #10264a;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(28px,2.4vw,40px);

  font-weight: 700;

  letter-spacing: -.025em;
}

.rc-project-body p {
  min-height: 54px;

  margin:
    13px 0 0;

  color:
    rgba(17,39,75,.61);

  font-size: 15px;

  line-height: 1.55;
}

.rc-project-tags {
  display: flex;
  flex-wrap: wrap;

  gap: 7px;

  margin-top: 30px;
}

.rc-project-tags span {
  padding:
    7px 11px;

  color:
    #1c579f;

  font-size: 11px;
  font-weight: 600;

  border:
    1px solid
    rgba(28,87,159,.10);

  border-radius: 999px;

  background:
    rgba(25,91,173,.055);
}

.rc-project-more {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-top: 27px;

  padding-top: 20px;

  color:
    #133c78;

  font-size: 14px;
  font-weight: 700;

  border-top:
    1px solid
    rgba(18,54,107,.09);
}

.rc-project-more svg {
  width: 19px;
  height: 19px;

  fill: none;

  stroke: currentColor;
  stroke-width: 1.8;

  stroke-linecap: round;
  stroke-linejoin: round;

  transition:
    transform .25s ease;
}

.rc-project-link:hover
.rc-project-more svg {
  transform:
    translateX(5px);
}


/* FOOTER / PROGRESS */

.rc-projects-footer {
  margin-top: 25px;

  display: flex;
  align-items: center;

  gap: 22px;
}

.rc-project-progress {
  position: relative;

  width:
    min(440px,50vw);

  height: 2px;

  overflow: hidden;

  background:
    rgba(14,53,109,.10);
}

.rc-project-progress span {
  position: absolute;

  inset: 0;

  transform:
    scaleX(.12);

  transform-origin:
    left center;

  background:
    #1457ad;

  transition:
    transform .35s ease;
}

.rc-project-counter {
  display: inline-flex;
  align-items: center;

  gap: 9px;

  color:
    rgba(15,45,90,.42);

  font-size: 12px;
}

.rc-project-counter b {
  color:
    #173e78;

  font-size: 14px;
}

.rc-project-counter i {
  width: 18px;
  height: 1px;

  background:
    rgba(15,45,90,.20);
}


/* RESPONSIVE PROJECTS */

@media (max-width: 1050px) {

  .rc-projects {
    padding:
      95px 0;
  }

  .rc-projects-head {
    margin-bottom: 42px;
  }

  .rc-project-card {
    flex-basis:
      min(560px,68vw);
  }

}


@media (max-width: 720px) {

  .rc-projects {
    padding:
      76px 0;
  }

  .rc-projects-shell {
    width:
      calc(100% - 30px);
  }

  .rc-projects::before {
    width:
      calc(100% - 30px);
  }

  .rc-projects-head {
    align-items: flex-start;

    margin-bottom: 32px;
  }

  .rc-projects-heading p {
    margin-top: 16px;
  }

  .rc-projects-controls {
    position: absolute;

    right: 0;
    top: 4px;
  }

  .rc-project-arrow {
    width: 44px;
    height: 44px;
  }

  .rc-project-card {
    flex-basis:
      min(88vw,520px);
  }

  .rc-projects-track {
    gap: 14px;

    padding-right: 7vw;
  }

  .rc-project-visual {
    height: 300px;
  }

  .rc-project-body {
    padding:
      23px 22px 24px;
  }

}


@media (max-width: 520px) {

  .rc-projects-heading {
    padding-top: 68px;
  }

  .rc-projects-controls {
    left: 0;
    right: auto;

    top: 0;
  }

  .rc-project-card {
    flex-basis:
      calc(100vw - 42px);
  }

  .rc-project-visual {
    height: 265px;
  }

  .rc-browser,
  .rc-dashboard,
  .rc-selo-window {
    width: 84%;
  }

  .rc-pwa-device {
    width: 50%;
  }

  .rc-phone {
    width: 37%;
  }

  .rc-phone-left {
    left: 21%;
  }

  .rc-phone-right {
    right: 19%;
  }

  .rc-project-body p {
    min-height: 0;
  }

  .rc-project-progress {
    flex: 1;
  }

}




/* =========================================================
   SERVICES SECTION
   ========================================================= */

.rc-services {
  position: relative;
  z-index: 20;

  overflow: hidden;

  padding:
    120px 0 115px;

  color: #f4f8ff;

  background:
    radial-gradient(
      circle at 13% 18%,
      rgba(39,109,203,.16),
      transparent 28%
    ),
    radial-gradient(
      circle at 89% 80%,
      rgba(38,116,219,.12),
      transparent 27%
    ),
    linear-gradient(
      145deg,
      #081a33 0%,
      #0a203e 52%,
      #07182f 100%
    );
}

.rc-services::before {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  opacity: .20;

  background-image:
    linear-gradient(
      rgba(255,255,255,.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,.025) 1px,
      transparent 1px
    );

  background-size:
    56px 56px;

  mask-image:
    linear-gradient(
      90deg,
      transparent,
      #000 20%,
      #000 80%,
      transparent
    );

  -webkit-mask-image:
    linear-gradient(
      90deg,
      transparent,
      #000 20%,
      #000 80%,
      transparent
    );
}

.rc-services-shell {
  position: relative;
  z-index: 2;

  width:
    min(1760px, calc(100% - 64px));

  margin:
    0 auto;
}


/* HEAD */

.rc-services-head {
  display: grid;

  grid-template-columns:
    minmax(0,1.25fr)
    minmax(300px,.75fr);

  align-items: end;

  gap: 60px;

  margin-bottom: 52px;
}

.rc-section-kicker-light {
  color:
    #7eb8ff;
}

.rc-section-kicker-light::before {
  background:
    #7eb8ff;
}

.rc-services-heading h2 {
  margin: 0;

  color: #fff;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(52px,5vw,82px);

  line-height: .96;

  letter-spacing: -.045em;
}

.rc-services-intro {
  max-width: 620px;

  margin: 0;

  color:
    rgba(225,236,252,.62);

  font-size:
    clamp(15px,1.1vw,19px);

  line-height: 1.6;
}


/* GRID */

.rc-services-grid {
  display: grid;

  grid-template-columns:
    repeat(4,minmax(0,1fr));

  border-top:
    1px solid
    rgba(255,255,255,.09);

  border-left:
    1px solid
    rgba(255,255,255,.09);
}

.rc-service-card {
  position: relative;

  min-height: 330px;

  padding:
    28px 27px 26px;

  overflow: hidden;

  border-right:
    1px solid
    rgba(255,255,255,.09);

  border-bottom:
    1px solid
    rgba(255,255,255,.09);

  background:
    rgba(255,255,255,.018);

  transition:
    background .32s ease,
    transform .32s
    cubic-bezier(.2,.8,.2,1),
    box-shadow .32s ease;
}

.rc-service-card::before {
  content: "";

  position: absolute;

  left: -25%;
  bottom: -55%;

  width: 70%;
  aspect-ratio: 1;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(70,145,241,.22),
      transparent 67%
    );

  opacity: 0;

  transform:
    scale(.76);

  transition:
    opacity .35s ease,
    transform .45s ease;
}

.rc-service-card:hover {
  z-index: 3;

  transform:
    translateY(-5px);

  background:
    rgba(255,255,255,.045);

  box-shadow:
    0 24px 50px
    rgba(0,10,30,.16);
}

.rc-service-card:hover::before {
  opacity: 1;

  transform:
    scale(1);
}

.rc-service-card-accent {
  background:
    linear-gradient(
      145deg,
      rgba(29,99,190,.18),
      rgba(255,255,255,.025)
    );
}


/* ICON / INDEX */

.rc-service-card-top {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;
}

.rc-service-index {
  color:
    rgba(219,233,252,.32);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 15px;

  letter-spacing: .08em;
}

.rc-service-icon {
  width: 50px;
  height: 50px;

  display: grid;
  place-items: center;

  color:
    #a8d2ff;

  border:
    1px solid
    rgba(156,205,255,.16);

  border-radius: 15px;

  background:
    rgba(255,255,255,.025);

  transition:
    color .28s ease,
    background .28s ease,
    border-color .28s ease,
    transform .32s ease;
}

.rc-service-icon svg {
  width: 25px;
  height: 25px;

  fill: none;

  stroke: currentColor;
  stroke-width: 1.5;

  stroke-linecap: round;
  stroke-linejoin: round;
}

.rc-service-card:hover
.rc-service-icon {
  color: #fff;

  border-color:
    rgba(141,199,255,.32);

  background:
    rgba(49,126,222,.16);

  transform:
    rotate(-4deg)
    scale(1.06);
}


/* TEXT */

.rc-service-card h3 {
  position: relative;
  z-index: 2;

  max-width: 300px;

  margin:
    44px 0 0;

  color:
    #f7faff;

  font-size:
    clamp(21px,1.55vw,27px);

  font-weight: 650;

  line-height: 1.14;

  letter-spacing: -.018em;
}

.rc-service-card p {
  position: relative;
  z-index: 2;

  max-width: 310px;

  margin:
    16px 0 0;

  color:
    rgba(221,234,251,.56);

  font-size: 14px;

  line-height: 1.55;
}

.rc-service-tags {
  position: absolute;
  z-index: 2;

  left: 27px;
  right: 27px;
  bottom: 25px;

  display: flex;
  flex-wrap: wrap;

  gap: 6px;
}

.rc-service-tags span {
  padding:
    6px 9px;

  color:
    rgba(190,219,255,.70);

  font-size: 10px;
  font-weight: 600;

  border:
    1px solid
    rgba(142,193,255,.11);

  border-radius: 999px;

  background:
    rgba(83,147,229,.04);

  transition:
    color .25s ease,
    background .25s ease,
    border-color .25s ease;
}

.rc-service-card:hover
.rc-service-tags span {
  color:
    rgba(220,238,255,.92);

  border-color:
    rgba(142,193,255,.19);

  background:
    rgba(83,147,229,.08);
}


/* CTA */

.rc-services-cta {
  margin-top: 34px;

  padding:
    23px 25px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;

  border:
    1px solid
    rgba(255,255,255,.08);

  border-radius: 20px;

  background:
    rgba(255,255,255,.023);
}

.rc-services-cta > div {
  display: grid;

  gap: 5px;
}

.rc-services-cta strong {
  color:
    rgba(247,251,255,.95);

  font-size: 16px;
}

.rc-services-cta > div span {
  color:
    rgba(218,232,250,.48);

  font-size: 13px;
}

.rc-services-cta a {
  display: inline-flex;
  align-items: center;

  gap: 10px;

  flex: 0 0 auto;

  padding:
    12px 17px;

  color: #fff;

  font-size: 13px;
  font-weight: 700;

  text-decoration: none;

  border:
    1px solid
    rgba(148,202,255,.20);

  border-radius: 999px;

  background:
    rgba(39,107,198,.15);

  transition:
    background .25s ease,
    border-color .25s ease,
    transform .25s ease;
}

.rc-services-cta a:hover {
  transform:
    translateY(-2px);

  border-color:
    rgba(148,202,255,.38);

  background:
    rgba(39,107,198,.26);
}

.rc-services-cta a svg {
  width: 17px;
  height: 17px;

  fill: none;

  stroke: currentColor;
  stroke-width: 1.8;

  stroke-linecap: round;
  stroke-linejoin: round;

  transition:
    transform .24s ease;
}

.rc-services-cta a:hover svg {
  transform:
    translateX(4px);
}


/* RESPONSIVE SERVICES */

@media (max-width: 1180px) {

  .rc-services-grid {
    grid-template-columns:
      repeat(2,minmax(0,1fr));
  }

  .rc-service-card {
    min-height: 305px;
  }

}


@media (max-width: 850px) {

  .rc-services {
    padding:
      90px 0 85px;
  }

  .rc-services-head {
    grid-template-columns:
      1fr;

    gap: 25px;

    margin-bottom: 38px;
  }

  .rc-services-intro {
    max-width: 570px;
  }

}


@media (max-width: 620px) {

  .rc-services-shell {
    width:
      calc(100% - 30px);
  }

  .rc-services {
    padding:
      74px 0 70px;
  }

  .rc-services-grid {
    grid-template-columns:
      1fr;
  }

  .rc-service-card {
    min-height: 290px;
  }

  .rc-service-card h3 {
    margin-top: 32px;
  }

  .rc-services-cta {
    align-items: flex-start;
    flex-direction: column;

    padding:
      20px;
  }

}



/* =========================================================
   CONTACT
   ========================================================= */

.rc-contact {
  position: relative;
  padding: 115px 0;
  color: #10264a;
  background: #f5f7fa;
}

.rc-contact-shell,
.rc-social-shell,
.rc-about-shell {
  width: min(1760px, calc(100% - 64px));
  margin: 0 auto;
}

.rc-contact-shell {
  display: grid;
  grid-template-columns: minmax(0,.82fr) minmax(520px,1.18fr);
  gap: clamp(70px,8vw,150px);
  align-items: start;
}

.rc-contact-copy h2,
.rc-social-head h2 {
  margin: 0;
  color: #10264a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px,4.6vw,76px);
  line-height: .98;
  letter-spacing: -.045em;
}

.rc-contact-copy > p {
  max-width: 620px;
  margin: 25px 0 0;
  color: rgba(17,39,75,.62);
  font-size: clamp(16px,1.15vw,19px);
  line-height: 1.62;
}

.rc-contact-points {
  display: grid;
  margin-top: 46px;
  border-top: 1px solid rgba(19,57,111,.10);
}

.rc-contact-points > div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(19,57,111,.10);
}

.rc-contact-points span {
  color: rgba(24,74,144,.42);
  font-family: Georgia, serif;
  font-size: 13px;
}

.rc-contact-points p {
  margin: 0;
  color: rgba(17,39,75,.78);
  font-size: 14px;
}

.rc-contact-form {
  padding: 34px;
  border: 1px solid rgba(24,65,125,.10);
  border-radius: 28px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 28px 75px rgba(26,62,114,.08);
}

.rc-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.rc-field {
  display: grid;
  gap: 8px;
  margin-bottom: 17px;
}

.rc-field > span {
  color: rgba(17,39,75,.72);
  font-size: 12px;
  font-weight: 700;
}

.rc-field input,
.rc-field select,
.rc-field textarea {
  width: 100%;
  padding: 14px 15px;
  color: #10264a;
  font: inherit;
  border: 1px solid rgba(22,61,119,.12);
  border-radius: 13px;
  outline: none;
  background: rgba(245,248,252,.92);
  transition: border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

.rc-field textarea {
  min-height: 145px;
  resize: vertical;
}

.rc-field input:focus,
.rc-field select:focus,
.rc-field textarea:focus {
  border-color: rgba(29,94,184,.38);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(45,112,203,.07);
}

.rc-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.rc-form-footer p {
  max-width: 370px;
  margin: 0;
  color: rgba(17,39,75,.42);
  font-size: 11px;
  line-height: 1.45;
}

.rc-form-footer button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg,#0e4fa7,#176cc7);
  box-shadow: 0 12px 28px rgba(24,87,170,.18);
  cursor: pointer;
  transition: transform .24s ease, box-shadow .24s ease;
}

.rc-form-footer button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(24,87,170,.25);
}

.rc-form-footer button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* =========================================================
   SOCIAL
   ========================================================= */

.rc-social {
  padding: 105px 0;
  background: linear-gradient(180deg,#eef2f7,#f8fafc);
}

.rc-social-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 42px;
}

.rc-social-head > p {
  max-width: 570px;
  margin: 0;
  color: rgba(17,39,75,.58);
  font-size: clamp(15px,1vw,18px);
  line-height: 1.6;
}

.rc-social-grid {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 14px;
}

.rc-social-card {
  position: relative;
  min-height: 205px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #10264a;
  text-decoration: none;
  border: 1px solid rgba(21,61,119,.09);
  border-radius: 24px;
  background: rgba(255,255,255,.76);
  box-shadow: 0 16px 40px rgba(22,58,107,.04);
  transition: transform .3s ease, box-shadow .3s ease;
}

.rc-social-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 54px rgba(22,58,107,.09);
}

.rc-social-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: #164f9d;
  font-size: 24px;
  font-weight: 700;
  border: 1px solid rgba(23,76,153,.11);
  border-radius: 16px;
  background: rgba(22,88,177,.05);
}

.rc-social-card > div:nth-child(2) {
  display: grid;
  gap: 4px;
  margin-top: auto;
}

.rc-social-card > div:nth-child(2) span {
  color: rgba(17,39,75,.46);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.rc-social-card > div:nth-child(2) strong {
  font-size: 18px;
}

.rc-social-go {
  position: absolute;
  right: 20px;
  bottom: 22px;
  color: #164f9d;
  opacity: .45;
  transition: opacity .25s ease, transform .25s ease;
}

.rc-social-card:hover .rc-social-go {
  opacity: 1;
  transform: translate(3px,-3px);
}


/* =========================================================
   ABOUT
   ========================================================= */

.rc-about {
  position: relative;
  padding: 120px 0 110px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 82% 14%,rgba(53,134,234,.18),transparent 26%),
    linear-gradient(145deg,#06172e,#092144 60%,#06172e);
}

.rc-about-main {
  max-width: 1050px;
}

.rc-about-main h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(50px,5.7vw,92px);
  line-height: .94;
  letter-spacing: -.052em;
}

.rc-about-main h2 span {
  color: rgba(166,205,255,.78);
}

.rc-about-main > p {
  max-width: 820px;
  margin: 31px 0 0;
  color: rgba(223,235,251,.60);
  font-size: clamp(16px,1.15vw,20px);
  line-height: 1.64;
}

.rc-about-facts {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  margin-top: 72px;
  border-top: 1px solid rgba(255,255,255,.09);
  border-left: 1px solid rgba(255,255,255,.09);
}

.rc-about-facts article {
  min-height: 245px;
  padding: 26px;
  border-right: 1px solid rgba(255,255,255,.09);
  border-bottom: 1px solid rgba(255,255,255,.09);
  background: rgba(255,255,255,.018);
  transition: transform .28s ease, background .28s ease;
}

.rc-about-facts article:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.04);
}

.rc-about-facts article > span {
  color: rgba(173,208,250,.34);
  font-family: Georgia, serif;
  font-size: 13px;
}

.rc-about-facts strong {
  display: block;
  margin-top: 48px;
  font-size: clamp(20px,1.5vw,25px);
}

.rc-about-facts p {
  max-width: 330px;
  margin: 14px 0 0;
  color: rgba(220,234,251,.52);
  font-size: 14px;
  line-height: 1.55;
}

.rc-about-bottom {
  margin-top: 34px;
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-top: 1px solid rgba(255,255,255,.07);
}

.rc-about-bottom p {
  max-width: 740px;
  margin: 0;
  color: rgba(222,235,251,.52);
  font-size: 14px;
  line-height: 1.6;
}

.rc-about-bottom a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  padding: 13px 18px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(152,204,255,.18);
  border-radius: 999px;
  background: rgba(49,121,215,.12);
  transition: transform .24s ease, background .24s ease;
}

.rc-about-bottom a:hover {
  transform: translateY(-2px);
  background: rgba(49,121,215,.23);
}


/* =========================================================
   RESPONSIVE ADDITIONS
   ========================================================= */

@media (max-width:1100px) {
  .rc-contact-shell {
    grid-template-columns: 1fr 1fr;
    gap: 55px;
  }

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

@media (max-width:850px) {
  .rc-contact {
    padding: 88px 0;
  }

  .rc-contact-shell {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .rc-social {
    padding: 85px 0;
  }

  .rc-social-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .rc-about {
    padding: 90px 0 85px;
  }

  .rc-about-facts {
    grid-template-columns: 1fr;
  }
}

@media (max-width:620px) {
  .rc-contact-shell,
  .rc-social-shell,
  .rc-about-shell {
    width: calc(100% - 30px);
  }

  .rc-form-grid,
  .rc-social-grid {
    grid-template-columns: 1fr;
  }

  .rc-contact-form {
    padding: 22px 18px;
  }

  .rc-form-footer,
  .rc-about-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .rc-form-footer button {
    width: 100%;
    justify-content: center;
  }

  .rc-social-card {
    min-height: 175px;
  }

  .rc-about {
    padding: 76px 0 70px;
  }
}




/* =========================================================
   PREMIUM CONTACT + BRANDED SOCIAL — V17
   ========================================================= */

/* ---------- CONTACT ---------- */

.rc-contact-premium {
  padding: 118px 0 126px;

  background:
    radial-gradient(circle at 12% 18%, rgba(37,105,204,.09), transparent 30%),
    radial-gradient(circle at 88% 82%, rgba(80,153,255,.08), transparent 28%),
    linear-gradient(180deg, #f5f8fc 0%, #eef3f9 100%);
}

.rc-contact-premium .rc-contact-shell {
  display: block;
}

.rc-contact-card {
  position: relative;

  display: grid;
  grid-template-columns:
    minmax(0, .95fr)
    minmax(560px, 1.05fr);

  overflow: hidden;

  border:
    1px solid
    rgba(20,61,119,.09);

  border-radius: 38px;

  background:
    rgba(255,255,255,.82);

  box-shadow:
    0 35px 90px rgba(14,48,101,.13),
    0 8px 28px rgba(14,48,101,.06);

  isolation: isolate;
}

.rc-contact-side {
  position: relative;

  overflow: hidden;

  min-height: 690px;

  padding:
    clamp(42px,4.5vw,72px);

  color: #fff;

  background:
    linear-gradient(
      145deg,
      #071c3a 0%,
      #0b2f67 48%,
      #0d4f9a 100%
    );
}

.rc-contact-side::before {
  content: "";

  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);

  background-size: 46px 46px;

  mask-image:
    linear-gradient(135deg,#000,rgba(0,0,0,.28) 72%,transparent);

  -webkit-mask-image:
    linear-gradient(135deg,#000,rgba(0,0,0,.28) 72%,transparent);

  pointer-events: none;
}

.rc-contact-glow {
  position: absolute;

  border-radius: 50%;

  filter: blur(8px);

  pointer-events: none;
}

.rc-contact-glow-a {
  width: 420px;
  height: 420px;

  top: -150px;
  right: -130px;

  background:
    radial-gradient(circle,
      rgba(107,191,255,.28),
      rgba(107,191,255,.05) 45%,
      transparent 70%);
}

.rc-contact-glow-b {
  width: 330px;
  height: 330px;

  left: -120px;
  bottom: -120px;

  background:
    radial-gradient(circle,
      rgba(48,118,238,.28),
      rgba(48,118,238,.03) 58%,
      transparent 72%);
}

.rc-contact-side-inner {
  position: relative;
  z-index: 2;
}

.rc-contact-badge {
  display: inline-flex;
  align-items: center;

  gap: 9px;

  padding:
    8px 12px;

  color:
    rgba(218,235,255,.84);

  font-size: 12px;
  font-weight: 700;

  letter-spacing: .08em;

  text-transform: uppercase;

  border:
    1px solid
    rgba(190,220,255,.14);

  border-radius: 999px;

  background:
    rgba(255,255,255,.05);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.05);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.rc-contact-badge i {
  width: 6px;
  height: 6px;

  border-radius: 50%;

  background:
    #70c6ff;

  box-shadow:
    0 0 12px rgba(112,198,255,.95);
}

.rc-contact-side h2 {
  max-width: 720px;

  margin:
    34px 0 0;

  color: #fff;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(48px,4.9vw,84px);

  line-height: .94;

  letter-spacing: -.052em;
}

.rc-contact-side h2 span {
  color:
    rgba(171,212,255,.82);
}

.rc-contact-lead {
  max-width: 650px;

  margin:
    28px 0 0;

  color:
    rgba(226,238,255,.68);

  font-size:
    clamp(15px,1.05vw,18px);

  line-height: 1.68;
}

.rc-contact-flow {
  display: grid;

  gap: 10px;

  margin-top: 42px;
}

.rc-contact-step {
  display: grid;
  grid-template-columns:
    42px 1fr;

  gap: 14px;

  align-items: start;

  padding:
    15px 16px;

  border:
    1px solid
    rgba(255,255,255,.07);

  border-radius: 16px;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,.045),
      rgba(255,255,255,.018)
    );

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.03);

  transition:
    transform .26s ease,
    background .26s ease,
    border-color .26s ease;
}

.rc-contact-step:hover {
  transform:
    translateX(5px);

  border-color:
    rgba(159,209,255,.16);

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,.07),
      rgba(68,145,236,.045)
    );
}

.rc-contact-step > span {
  padding-top: 2px;

  color:
    rgba(150,202,255,.58);

  font-family:
    Georgia,
    serif;

  font-size: 13px;
}

.rc-contact-step strong {
  display: block;

  color:
    rgba(248,251,255,.96);

  font-size: 14px;
}

.rc-contact-step p {
  margin:
    5px 0 0;

  color:
    rgba(218,233,251,.52);

  font-size: 12px;

  line-height: 1.45;
}

.rc-contact-mini-panel {
  margin-top: 26px;

  padding:
    16px 18px;

  border:
    1px solid
    rgba(180,216,255,.11);

  border-radius: 16px;

  background:
    rgba(255,255,255,.035);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.03);
}

.rc-contact-mini-panel span {
  display: block;

  margin-bottom: 5px;

  color:
    rgba(167,211,255,.66);

  font-size: 11px;
  font-weight: 700;

  letter-spacing: .06em;

  text-transform: uppercase;
}

.rc-contact-mini-panel strong {
  color:
    rgba(242,248,255,.90);

  font-size: 13px;

  line-height: 1.45;
}


/* FORM HALF */

.rc-contact-form-wrap {
  position: relative;

  padding:
    clamp(38px,4.2vw,68px);

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.98),
      rgba(249,252,255,.96)
    );
}

.rc-contact-form-wrap::before {
  content: "";

  position: absolute;

  width: 240px;
  height: 240px;

  right: -90px;
  top: -90px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(43,122,224,.10),
      transparent 68%
    );

  pointer-events: none;
}

.rc-contact-form-head {
  position: relative;
  z-index: 1;

  max-width: 620px;

  margin-bottom: 28px;
}

.rc-contact-form-kicker {
  color:
    #1c60bb;

  font-size: 11px;
  font-weight: 800;

  letter-spacing: .11em;

  text-transform: uppercase;
}

.rc-contact-form-head h3 {
  margin:
    10px 0 0;

  color:
    #10264a;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(30px,2.8vw,46px);

  line-height: 1.03;

  letter-spacing: -.035em;
}

.rc-contact-form-head p {
  margin:
    12px 0 0;

  color:
    rgba(17,39,75,.52);

  font-size: 14px;

  line-height: 1.55;
}

.rc-contact-premium .rc-contact-form {
  position: relative;
  z-index: 1;

  padding: 0;

  border: 0;

  border-radius: 0;

  background: transparent;

  box-shadow: none;
}

.rc-contact-premium .rc-field {
  gap: 9px;

  margin-bottom: 18px;
}

.rc-contact-premium .rc-field > span {
  color:
    rgba(17,39,75,.68);

  font-size: 11px;
  font-weight: 750;

  letter-spacing: .045em;

  text-transform: uppercase;
}

.rc-contact-premium .rc-field input,
.rc-contact-premium .rc-field select,
.rc-contact-premium .rc-field textarea {
  padding:
    15px 16px;

  border:
    1px solid
    rgba(22,61,119,.11);

  border-radius: 14px;

  background:
    linear-gradient(
      180deg,
      #f7faff,
      #f3f7fb
    );

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.8),
    0 6px 16px rgba(17,45,86,.025);
}

.rc-contact-premium .rc-field input:focus,
.rc-contact-premium .rc-field select:focus,
.rc-contact-premium .rc-field textarea:focus {
  border-color:
    rgba(35,104,195,.36);

  background:
    #fff;

  box-shadow:
    0 0 0 4px rgba(48,115,205,.07),
    0 12px 30px rgba(18,58,115,.05);
}

.rc-contact-premium .rc-field textarea {
  min-height: 170px;
}

.rc-contact-premium .rc-form-footer {
  margin-top: 8px;

  padding-top: 20px;

  border-top:
    1px solid
    rgba(19,57,111,.08);
}

.rc-contact-premium .rc-form-footer button {
  padding:
    15px 22px;

  box-shadow:
    0 14px 28px rgba(24,87,170,.20),
    inset 0 1px 0 rgba(255,255,255,.18);
}


/* ---------- SOCIAL ---------- */

.rc-social-premium {
  padding:
    112px 0 120px;

  background:
    radial-gradient(circle at 20% 0%, rgba(44,112,203,.07), transparent 32%),
    linear-gradient(180deg,#edf3f9 0%,#f7f9fc 100%);
}

.rc-social-premium .rc-social-head {
  margin-bottom: 48px;
}

.rc-social-grid-branded {
  gap: 20px;
}

.rc-social-grid-branded .rc-social-card {
  position: relative;

  min-height: 300px;

  padding: 24px;

  overflow: hidden;

  color: #fff;

  border:
    1px solid
    rgba(255,255,255,.12);

  border-radius: 28px;

  box-shadow:
    0 24px 46px rgba(16,45,90,.12),
    0 7px 18px rgba(16,45,90,.08),
    inset 0 1px 0 rgba(255,255,255,.08);

  isolation: isolate;

  transform:
    translateZ(0);

  transition:
    transform .34s
    cubic-bezier(.2,.8,.2,1),
    box-shadow .34s ease,
    filter .34s ease;
}

.rc-social-grid-branded .rc-social-card::before {
  content: "";

  position: absolute;

  inset: 0;

  z-index: -2;

  opacity: 1;
}

.rc-social-grid-branded .rc-social-card::after {
  content: "";

  position: absolute;

  width: 210px;
  height: 210px;

  right: -80px;
  top: -80px;

  z-index: -1;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(255,255,255,.19),
      transparent 68%
    );

  pointer-events: none;
}

.rc-social-card-shine {
  position: absolute;

  width: 140%;
  height: 90px;

  left: -20%;
  top: -52px;

  transform:
    rotate(-8deg);

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.18),
      rgba(255,255,255,0)
    );

  opacity: .58;

  pointer-events: none;

  transition:
    transform .45s ease,
    opacity .45s ease;
}

.rc-social-grid-branded .rc-social-card:hover {
  transform:
    translateY(-10px)
    scale(1.012);

  box-shadow:
    0 34px 70px rgba(13,38,78,.20),
    0 12px 26px rgba(13,38,78,.12),
    inset 0 1px 0 rgba(255,255,255,.12);

  filter:
    saturate(1.04);
}

.rc-social-grid-branded .rc-social-card:hover
.rc-social-card-shine {
  transform:
    translateY(18px)
    rotate(-8deg);

  opacity: .76;
}


/* Branded backgrounds */

.rc-social-card-instagram::before {
  background:
    radial-gradient(circle at 15% 15%, #ffd86f 0%, transparent 28%),
    radial-gradient(circle at 85% 15%, #7d4dff 0%, transparent 34%),
    radial-gradient(circle at 18% 90%, #ff3d81 0%, transparent 40%),
    linear-gradient(145deg,#8a2be2 0%,#d62976 52%,#feda75 100%);
}

.rc-social-card-tiktok::before {
  background:
    radial-gradient(circle at 15% 20%, rgba(37,244,238,.35), transparent 30%),
    radial-gradient(circle at 88% 82%, rgba(254,44,85,.35), transparent 30%),
    linear-gradient(145deg,#06080b 0%,#11151a 58%,#090b0e 100%);
}

.rc-social-card-facebook::before {
  background:
    radial-gradient(circle at 88% 15%, rgba(255,255,255,.16), transparent 26%),
    linear-gradient(145deg,#1877f2 0%,#0d5fd0 58%,#084aab 100%);
}

.rc-social-card-threads::before {
  background:
    radial-gradient(circle at 85% 12%, rgba(255,255,255,.09), transparent 28%),
    linear-gradient(145deg,#191919 0%,#050505 65%,#161616 100%);
}


/* Brand row / logo */

.rc-social-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 18px;
}

.rc-social-logo {
  width: 58px;
  height: 58px;

  display: grid;
  place-items: center;

  border:
    1px solid
    rgba(255,255,255,.20);

  border-radius: 18px;

  background:
    rgba(255,255,255,.10);

  box-shadow:
    0 12px 26px rgba(0,0,0,.10),
    inset 0 1px 0 rgba(255,255,255,.12);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.rc-social-logo svg {
  width: 30px;
  height: 30px;

  fill: none;

  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rc-social-logo-instagram svg .rc-social-logo-fill {
  fill: currentColor;
  stroke: none;
}

.rc-social-logo-facebook svg,
.rc-social-logo-tiktok svg {
  fill: currentColor;
  stroke: none;
}

.rc-social-network {
  padding:
    7px 10px;

  color:
    rgba(255,255,255,.72);

  font-size: 10px;
  font-weight: 800;

  letter-spacing: .10em;

  text-transform: uppercase;

  border:
    1px solid
    rgba(255,255,255,.12);

  border-radius: 999px;

  background:
    rgba(255,255,255,.06);
}


/* Card text */

.rc-social-card-copy {
  display: grid;

  gap: 8px;

  margin-top: auto;

  padding-top: 52px;
}

.rc-social-grid-branded
.rc-social-card-copy strong {
  color: #fff;

  font-size:
    clamp(21px,1.6vw,27px);

  font-weight: 720;

  letter-spacing: -.018em;
}

.rc-social-grid-branded
.rc-social-card-copy span {
  max-width: 250px;

  color:
    rgba(255,255,255,.66);

  font-size: 13px;

  line-height: 1.45;
}

.rc-social-action {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 10px;

  margin-top: 26px;

  padding-top: 16px;

  color:
    rgba(255,255,255,.82);

  font-size: 12px;
  font-weight: 650;

  border-top:
    1px solid
    rgba(255,255,255,.13);
}

.rc-social-action b {
  display: grid;
  place-items: center;

  width: 30px;
  height: 30px;

  border-radius: 50%;

  background:
    rgba(255,255,255,.10);

  transition:
    transform .26s ease,
    background .26s ease;
}

.rc-social-grid-branded
.rc-social-card:hover
.rc-social-action b {
  transform:
    translate(2px,-2px);

  background:
    rgba(255,255,255,.18);
}


/* social brand-specific micro glow */

.rc-social-card-instagram
.rc-social-logo {
  box-shadow:
    0 12px 28px rgba(124,57,221,.20),
    inset 0 1px 0 rgba(255,255,255,.15);
}

.rc-social-card-tiktok
.rc-social-logo {
  box-shadow:
    -5px 0 18px rgba(37,244,238,.14),
    5px 0 18px rgba(254,44,85,.14),
    inset 0 1px 0 rgba(255,255,255,.10);
}

.rc-social-card-facebook
.rc-social-logo {
  background:
    rgba(255,255,255,.12);
}

.rc-social-card-threads
.rc-social-logo {
  background:
    rgba(255,255,255,.08);
}


/* ---------- RESPONSIVE ---------- */

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

  .rc-contact-side,
  .rc-contact-form-wrap {
    padding:
      46px;
  }

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

@media (max-width: 900px) {
  .rc-contact-premium {
    padding:
      88px 0 96px;
  }

  .rc-contact-card {
    grid-template-columns:
      1fr;
  }

  .rc-contact-side {
    min-height: auto;
  }

  .rc-contact-side h2 {
    max-width: 680px;
  }

  .rc-contact-form-wrap {
    border-top:
      1px solid
      rgba(17,55,109,.07);
  }

  .rc-social-premium {
    padding:
      88px 0 96px;
  }
}

@media (max-width: 620px) {
  .rc-contact-card {
    border-radius: 26px;
  }

  .rc-contact-side,
  .rc-contact-form-wrap {
    padding:
      28px 20px;
  }

  .rc-contact-side h2 {
    font-size:
      clamp(40px,12vw,58px);
  }

  .rc-contact-flow {
    margin-top: 32px;
  }

  .rc-social-grid-branded {
    grid-template-columns:
      1fr;
  }

  .rc-social-grid-branded
  .rc-social-card {
    min-height: 250px;
  }
}




/* =========================================================
   SOFTER SOCIAL BRAND PALETTE
   Менш насичені фірмові кольори, щоб картки краще
   поєднувались із загальною палітрою Row&Cells.
   ========================================================= */

.rc-social-grid-branded .rc-social-card {
  filter:
    saturate(.82)
    brightness(.96);

  box-shadow:
    0 22px 44px rgba(16,45,90,.10),
    0 6px 16px rgba(16,45,90,.07),
    inset 0 1px 0 rgba(255,255,255,.07);
}

.rc-social-grid-branded .rc-social-card:hover {
  filter:
    saturate(.90)
    brightness(.99);

  box-shadow:
    0 30px 58px rgba(13,38,78,.16),
    0 10px 22px rgba(13,38,78,.09),
    inset 0 1px 0 rgba(255,255,255,.10);
}


/* Instagram — приглушений рожево-фіолетовий */
.rc-social-card-instagram::before {
  background:
    radial-gradient(
      circle at 15% 15%,
      rgba(236,190,111,.78) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 86% 15%,
      rgba(118,82,190,.72) 0%,
      transparent 36%
    ),
    radial-gradient(
      circle at 16% 92%,
      rgba(205,71,116,.72) 0%,
      transparent 42%
    ),
    linear-gradient(
      145deg,
      #7d4fa8 0%,
      #b44d7a 52%,
      #d4a15f 100%
    );
}


/* TikTok — темний графіт із дуже делікатними акцентами */
.rc-social-card-tiktok::before {
  background:
    radial-gradient(
      circle at 14% 20%,
      rgba(55,174,172,.20),
      transparent 33%
    ),
    radial-gradient(
      circle at 90% 82%,
      rgba(183,54,86,.20),
      transparent 34%
    ),
    linear-gradient(
      145deg,
      #101317 0%,
      #151a20 58%,
      #0e1115 100%
    );
}


/* Facebook — менш електричний, ближче до Row&Cells */
.rc-social-card-facebook::before {
  background:
    radial-gradient(
      circle at 88% 15%,
      rgba(255,255,255,.10),
      transparent 28%
    ),
    linear-gradient(
      145deg,
      #2d67b6 0%,
      #225da8 58%,
      #194c8d 100%
    );
}


/* Threads — не чистий чорний, а м’який графіт */
.rc-social-card-threads::before {
  background:
    radial-gradient(
      circle at 85% 12%,
      rgba(255,255,255,.055),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      #25272b 0%,
      #17191c 66%,
      #202226 100%
    );
}


/* Менш яскравий glow іконок */
.rc-social-card-instagram .rc-social-logo {
  box-shadow:
    0 10px 24px rgba(105,63,154,.13),
    inset 0 1px 0 rgba(255,255,255,.11);
}

.rc-social-card-tiktok .rc-social-logo {
  box-shadow:
    -4px 0 15px rgba(55,174,172,.08),
    4px 0 15px rgba(183,54,86,.08),
    inset 0 1px 0 rgba(255,255,255,.08);
}


/* Загалом прибираємо зайву "неоновість" */
.rc-social-card-shine {
  opacity: .38;
}

.rc-social-grid-branded .rc-social-card:hover
.rc-social-card-shine {
  opacity: .52;
}

.rc-social-logo {
  background:
    rgba(255,255,255,.075);

  border-color:
    rgba(255,255,255,.14);
}

.rc-social-network {
  color:
    rgba(255,255,255,.62);

  border-color:
    rgba(255,255,255,.09);

  background:
    rgba(255,255,255,.045);
}

.rc-social-grid-branded
.rc-social-card-copy span {
  color:
    rgba(255,255,255,.58);
}

.rc-social-action {
  color:
    rgba(255,255,255,.72);

  border-top-color:
    rgba(255,255,255,.10);
}




/* =========================================================
   SOCIAL CARD ALIGNMENT + BETTER NETWORK CAPSULE LEGIBILITY
   ========================================================= */

.rc-social-brand-row {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}

.rc-social-logo {
  margin: 0 auto;
}

.rc-social-network {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 34px;
  padding: 8px 14px;

  color: rgba(255,255,255,.92);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .11em;
  text-align: center;

  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.12);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.10),
    0 4px 14px rgba(0,0,0,.08);
}

.rc-social-card-copy {
  justify-items: center;
  text-align: center;
  padding-top: 42px;
}

.rc-social-grid-branded .rc-social-card-copy strong {
  text-align: center;
}

.rc-social-grid-branded .rc-social-card-copy span {
  max-width: 300px;
  text-align: center;
}

.rc-social-action {
  justify-content: center;
  text-align: center;
}

.rc-social-action b {
  margin-left: 4px;
}

/* a little stronger per-brand readability on darker cards */
.rc-social-card-tiktok .rc-social-network,
.rc-social-card-threads .rc-social-network {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.16);
  color: rgba(255,255,255,.88);
}

.rc-social-card-instagram .rc-social-network {
  background: rgba(255,255,255,.16);
  color: rgba(255,255,255,.94);
}

.rc-social-card-facebook .rc-social-network {
  background: rgba(255,255,255,.14);
  color: rgba(255,255,255,.94);
}

@media (max-width: 620px) {
  .rc-social-card-copy {
    padding-top: 32px;
  }

  .rc-social-grid-branded .rc-social-card-copy span {
    max-width: 240px;
  }
}




/* =========================================================
   SERVICES — PREMIUM HORIZONTAL CAROUSEL
   ========================================================= */

.rc-services-carousel {
  padding:
    118px 0 110px;
}

.rc-services-head-carousel {
  align-items: flex-end;

  margin-bottom: 45px;
}

.rc-services-head-carousel
.rc-services-heading {
  max-width: 820px;
}

.rc-services-head-carousel
.rc-services-intro {
  max-width: 620px;

  margin-top: 20px;
}

.rc-services-controls {
  display: flex;
  align-items: center;

  gap: 10px;

  padding-bottom: 5px;
}

.rc-service-arrow {
  width: 52px;
  height: 52px;

  display: grid;
  place-items: center;

  padding: 0;

  color:
    rgba(220,238,255,.84);

  border:
    1px solid
    rgba(169,208,255,.15);

  border-radius: 50%;

  background:
    rgba(255,255,255,.035);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.035),
    0 12px 28px rgba(0,13,37,.12);

  cursor: pointer;

  transition:
    color .24s ease,
    background .24s ease,
    border-color .24s ease,
    transform .24s ease,
    opacity .24s ease;
}

.rc-service-arrow svg {
  width: 19px;
  height: 19px;

  fill: none;

  stroke: currentColor;
  stroke-width: 1.8;

  stroke-linecap: round;
  stroke-linejoin: round;
}

.rc-service-arrow:hover:not(:disabled) {
  color: #fff;

  border-color:
    rgba(164,207,255,.34);

  background:
    rgba(50,124,218,.18);

  transform:
    translateY(-2px);
}

.rc-service-arrow:disabled {
  opacity: .32;

  cursor: default;
}


.rc-services-viewport {
  overflow: visible;
}

.rc-services-track {
  display: flex;

  gap: 20px;

  overflow-x: auto;
  overflow-y: hidden;

  padding:
    8px 14vw 34px 0;

  scroll-snap-type:
    x mandatory;

  overscroll-behavior-inline:
    contain;

  scrollbar-width: none;

  cursor: grab;

  touch-action:
    pan-y;
}

.rc-services-track::-webkit-scrollbar {
  display: none;
}

.rc-services-track.is-dragging {
  cursor: grabbing;

  scroll-snap-type: none;

  user-select: none;
}


.rc-service-slide {
  --slide-accent: 104, 172, 255;

  position: relative;

  flex:
    0 0
    clamp(320px,29vw,470px);

  min-height: 455px;

  overflow: hidden;

  scroll-snap-align: start;

  padding:
    27px 27px 25px;

  display: flex;
  flex-direction: column;

  color: #fff;

  border:
    1px solid
    rgba(174,211,255,.10);

  border-radius: 29px;

  background:
    linear-gradient(
      155deg,
      rgba(255,255,255,.055),
      rgba(255,255,255,.018)
    );

  box-shadow:
    0 22px 52px rgba(0,12,34,.16),
    inset 0 1px 0 rgba(255,255,255,.035);

  isolation: isolate;

  transition:
    transform .36s
    cubic-bezier(.2,.8,.2,1),
    border-color .36s ease,
    background .36s ease,
    box-shadow .36s ease;
}

.rc-service-slide::before {
  content: "";

  position: absolute;
  inset: 0;

  z-index: -3;

  background:
    linear-gradient(
      145deg,
      rgba(var(--slide-accent),.10),
      transparent 43%,
      rgba(255,255,255,.008)
    );
}

.rc-service-slide::after {
  content: "";

  position: absolute;

  left: 27px;
  right: 27px;
  top: 90px;

  height: 1px;

  z-index: -1;

  background:
    linear-gradient(
      90deg,
      rgba(var(--slide-accent),.30),
      rgba(255,255,255,.045),
      transparent
    );

  opacity: .7;
}

.rc-service-slide-orb {
  position: absolute;

  width: 250px;
  height: 250px;

  top: -112px;
  right: -92px;

  z-index: -2;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(var(--slide-accent),.24),
      rgba(var(--slide-accent),.07) 40%,
      transparent 72%
    );

  filter:
    blur(3px);

  transition:
    transform .46s ease,
    opacity .46s ease;
}

.rc-service-slide:hover {
  transform:
    translateY(-9px)
    rotateX(.6deg);

  border-color:
    rgba(var(--slide-accent),.24);

  background:
    linear-gradient(
      155deg,
      rgba(255,255,255,.075),
      rgba(var(--slide-accent),.025)
    );

  box-shadow:
    0 34px 72px rgba(0,12,34,.24),
    0 8px 22px rgba(var(--slide-accent),.05),
    inset 0 1px 0 rgba(255,255,255,.055);
}

.rc-service-slide:hover
.rc-service-slide-orb {
  transform:
    translate(-12px,12px)
    scale(1.08);

  opacity: 1.1;
}


/* individual subtle accents */
.rc-service-slide-strategy {
  --slide-accent: 129, 177, 255;
}

.rc-service-slide-social {
  --slide-accent: 133, 128, 225;
}

.rc-service-slide-sites {
  --slide-accent: 78, 172, 239;
}

.rc-service-slide-crm {
  --slide-accent: 91, 150, 232;
}

.rc-service-slide-pwa {
  --slide-accent: 82, 182, 204;
}

.rc-service-slide-payments {
  --slide-accent: 110, 171, 226;
}

.rc-service-slide-delivery {
  --slide-accent: 87, 165, 208;
}

.rc-service-slide-uiux {
  --slide-accent: 140, 150, 237;
}

.rc-service-slide-automation {
  --slide-accent: 85, 158, 240;
}


.rc-service-slide-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;
}

.rc-service-slide-index {
  color:
    rgba(205,226,251,.34);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 14px;

  letter-spacing: .10em;
}

.rc-service-slide-icon {
  width: 55px;
  height: 55px;

  display: grid;
  place-items: center;

  color:
    rgb(var(--slide-accent));

  border:
    1px solid
    rgba(var(--slide-accent),.18);

  border-radius: 17px;

  background:
    rgba(var(--slide-accent),.065);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.035),
    0 10px 24px rgba(0,10,28,.10);

  transition:
    transform .34s ease,
    color .34s ease,
    background .34s ease;
}

.rc-service-slide-icon svg {
  width: 27px;
  height: 27px;

  fill: none;

  stroke: currentColor;
  stroke-width: 1.5;

  stroke-linecap: round;
  stroke-linejoin: round;
}

.rc-service-slide:hover
.rc-service-slide-icon {
  color: #fff;

  background:
    rgba(var(--slide-accent),.15);

  transform:
    translateY(-3px)
    rotate(-4deg)
    scale(1.04);
}


.rc-service-slide-copy {
  margin-top: 62px;
}

.rc-service-slide-kicker {
  display: block;

  margin-bottom: 10px;

  color:
    rgba(var(--slide-accent),.76);

  font-size: 10px;
  font-weight: 800;

  letter-spacing: .14em;

  text-transform: uppercase;
}

.rc-service-slide h3 {
  max-width: 350px;

  margin: 0;

  color:
    rgba(249,252,255,.98);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(28px,2vw,38px);

  font-weight: 700;

  line-height: 1;

  letter-spacing: -.035em;
}

.rc-service-slide p {
  max-width: 355px;

  margin:
    18px 0 0;

  color:
    rgba(219,233,250,.56);

  font-size: 14px;

  line-height: 1.58;
}


.rc-service-slide-tags {
  display: flex;
  flex-wrap: wrap;

  gap: 7px;

  margin-top: auto;

  padding-top: 32px;
}

.rc-service-slide-tags span {
  padding:
    7px 10px;

  color:
    rgba(210,229,252,.66);

  font-size: 10px;
  font-weight: 650;

  border:
    1px solid
    rgba(var(--slide-accent),.11);

  border-radius: 999px;

  background:
    rgba(var(--slide-accent),.035);

  transition:
    color .24s ease,
    border-color .24s ease,
    background .24s ease;
}

.rc-service-slide:hover
.rc-service-slide-tags span {
  color:
    rgba(236,246,255,.88);

  border-color:
    rgba(var(--slide-accent),.20);

  background:
    rgba(var(--slide-accent),.075);
}


.rc-services-carousel-footer {
  display: flex;
  align-items: center;

  gap: 20px;

  margin-top: 17px;
}

.rc-services-progress {
  position: relative;

  flex:
    0 1 420px;

  height: 2px;

  overflow: hidden;

  background:
    rgba(193,220,253,.09);
}

.rc-services-progress span {
  position: absolute;
  inset: 0;

  transform:
    scaleX(.10);

  transform-origin:
    left center;

  background:
    linear-gradient(
      90deg,
      #5ca5ed,
      #9bc8f4
    );

  transition:
    transform .35s ease;
}

.rc-services-counter {
  display: inline-flex;
  align-items: center;

  gap: 9px;

  color:
    rgba(211,230,252,.38);

  font-size: 11px;
}

.rc-services-counter b {
  color:
    rgba(225,240,255,.88);

  font-size: 13px;
}

.rc-services-counter i {
  width: 18px;
  height: 1px;

  background:
    rgba(204,226,252,.18);
}


.rc-services-discuss {
  margin-left: auto;

  display: inline-flex;
  align-items: center;

  gap: 9px;

  padding:
    12px 17px;

  color: #fff;

  font-size: 12px;
  font-weight: 700;

  text-decoration: none;

  border:
    1px solid
    rgba(149,199,255,.17);

  border-radius: 999px;

  background:
    rgba(48,119,211,.12);

  transition:
    transform .24s ease,
    background .24s ease,
    border-color .24s ease;
}

.rc-services-discuss:hover {
  transform:
    translateY(-2px);

  border-color:
    rgba(149,199,255,.30);

  background:
    rgba(48,119,211,.22);
}

.rc-services-discuss svg {
  width: 16px;
  height: 16px;

  fill: none;

  stroke: currentColor;
  stroke-width: 1.8;

  stroke-linecap: round;
  stroke-linejoin: round;
}


/* =========================================================
   ABOUT — ANIMATED SOCIAL PROOF
   ========================================================= */

.rc-about-stats {
  display: grid;

  grid-template-columns:
    repeat(3,minmax(0,1fr));

  gap: 12px;

  max-width: 980px;

  margin-top: 48px;
}

.rc-about-stat {
  position: relative;

  min-height: 118px;

  display: grid;
  grid-template-columns:
    48px 1fr;

  gap: 16px;

  align-items: center;

  padding:
    18px 19px;

  overflow: hidden;

  border:
    1px solid
    rgba(177,211,252,.10);

  border-radius: 19px;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,.055),
      rgba(255,255,255,.018)
    );

  box-shadow:
    0 16px 34px rgba(0,9,27,.13),
    inset 0 1px 0 rgba(255,255,255,.035);

  transition:
    transform .28s ease,
    border-color .28s ease,
    background .28s ease;
}

.rc-about-stat::after {
  content: "";

  position: absolute;

  width: 130px;
  height: 130px;

  right: -55px;
  top: -60px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(78,153,244,.14),
      transparent 70%
    );
}

.rc-about-stat:hover {
  transform:
    translateY(-4px);

  border-color:
    rgba(160,204,255,.18);

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,.072),
      rgba(58,130,220,.026)
    );
}

.rc-about-stat-icon {
  position: relative;
  z-index: 1;

  width: 46px;
  height: 46px;

  display: grid;
  place-items: center;

  color:
    #96c8ff;

  border:
    1px solid
    rgba(154,202,255,.13);

  border-radius: 14px;

  background:
    rgba(66,143,233,.07);
}

.rc-about-stat-icon svg {
  width: 23px;
  height: 23px;

  fill: none;

  stroke: currentColor;
  stroke-width: 1.55;

  stroke-linecap: round;
  stroke-linejoin: round;
}

.rc-about-stat > div {
  position: relative;
  z-index: 1;
}

.rc-about-stat strong {
  display: block;

  color: #fff;

  font-size:
    clamp(25px,2vw,34px);

  font-weight: 650;

  line-height: 1;

  letter-spacing: -.025em;

  font-variant-numeric:
    tabular-nums;
}

.rc-about-stat > div > span {
  display: block;

  margin-top: 7px;

  color:
    rgba(210,228,250,.54);

  font-size: 12px;

  line-height: 1.35;
}


/* Responsive */

@media (max-width: 1100px) {
  .rc-service-slide {
    flex-basis:
      min(430px,43vw);
  }

  .rc-about-stats {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .rc-services-head-carousel {
    align-items: flex-start;
  }

  .rc-services-controls {
    position: absolute;

    top: 2px;
    right: 0;
  }

  .rc-services-heading {
    padding-top: 68px;
  }

  .rc-service-slide {
    flex-basis:
      min(86vw,420px);

    min-height: 425px;
  }

  .rc-services-track {
    padding-right: 9vw;
  }

  .rc-services-discuss {
    display: none;
  }

  .rc-services-progress {
    flex: 1;
  }

  .rc-about-stats {
    grid-template-columns:
      1fr;
  }

  .rc-about-stat {
    min-height: 105px;
  }
}

@media (max-width: 520px) {
  .rc-service-arrow {
    width: 44px;
    height: 44px;
  }

  .rc-service-slide {
    flex-basis:
      calc(100vw - 42px);

    min-height: 400px;

    padding:
      23px 22px;
  }

  .rc-service-slide-copy {
    margin-top: 48px;
  }

  .rc-service-slide h3 {
    font-size:
      clamp(27px,9vw,34px);
  }

  .rc-about-stat {
    grid-template-columns:
      43px 1fr;

    padding:
      16px;
  }

  .rc-about-stat-icon {
    width: 42px;
    height: 42px;
  }
}




/* =========================================================
   MOBILE CONTACT — COMPACT CTA + BOTTOM SHEET
   Desktop contact section stays unchanged.
   ========================================================= */

.rc-contact-mobile-cta,
.rc-contact-modal {
  display: none;
}

body.rc-modal-open {
  overflow: hidden;
}


/* Modal base */
.rc-contact-modal {
  position: fixed;
  inset: 0;

  z-index: 250;

  pointer-events: none;

  opacity: 0;

  visibility: hidden;

  transition:
    opacity .25s ease,
    visibility .25s ease;
}

.rc-contact-modal-backdrop {
  position: absolute;
  inset: 0;

  background:
    rgba(3,15,35,.56);

  backdrop-filter:
    blur(9px);

  -webkit-backdrop-filter:
    blur(9px);

  opacity: 0;

  transition:
    opacity .25s ease;
}

.rc-contact-sheet {
  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  max-height:
    min(92dvh, 860px);

  overflow-y: auto;
  overscroll-behavior: contain;

  padding:
    12px 20px
    calc(24px + env(safe-area-inset-bottom));

  color:
    #10264a;

  border:
    1px solid
    rgba(22,61,119,.10);

  border-bottom: 0;

  border-radius:
    28px 28px 0 0;

  outline: none;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.985),
      rgba(246,250,255,.985)
    );

  box-shadow:
    0 -28px 80px
    rgba(0,18,52,.28);

  transform:
    translateY(105%);

  transition:
    transform .34s
    cubic-bezier(.2,.8,.2,1);
}

.rc-contact-sheet::before {
  content: "";

  position: absolute;

  width: 280px;
  height: 280px;

  right: -120px;
  top: -110px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(43,122,224,.10),
      transparent 70%
    );

  pointer-events: none;
}

.rc-contact-sheet-handle {
  position: sticky;
  top: 0;

  z-index: 5;

  width: 42px;
  height: 4px;

  margin:
    0 auto 17px;

  border-radius: 999px;

  background:
    rgba(17,50,96,.20);
}

.rc-contact-sheet-head {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns:
    1fr 42px;

  gap: 18px;

  align-items: start;

  padding-bottom: 22px;
}

.rc-contact-sheet-kicker {
  color:
    #1b62bd;

  font-size: 10px;
  font-weight: 800;

  letter-spacing: .11em;

  text-transform: uppercase;
}

.rc-contact-sheet-head h2 {
  margin:
    8px 0 0;

  color:
    #10264a;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(31px,9vw,43px);

  line-height: 1;

  letter-spacing: -.04em;
}

.rc-contact-sheet-head p {
  margin:
    11px 0 0;

  color:
    rgba(17,39,75,.53);

  font-size: 13px;

  line-height: 1.5;
}

.rc-contact-sheet-close {
  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  padding: 0;

  color:
    #174d91;

  border:
    1px solid
    rgba(21,73,143,.11);

  border-radius: 13px;

  background:
    rgba(31,92,174,.055);

  cursor: pointer;
}

.rc-contact-sheet-close svg {
  width: 20px;
  height: 20px;

  fill: none;

  stroke: currentColor;
  stroke-width: 1.8;

  stroke-linecap: round;
}

.rc-contact-sheet-form {
  position: relative;
  z-index: 2;
}

.rc-sheet-field {
  display: grid;

  gap: 7px;

  margin-bottom: 14px;
}

.rc-sheet-field > span {
  color:
    rgba(17,39,75,.68);

  font-size: 10px;
  font-weight: 800;

  letter-spacing: .045em;

  text-transform: uppercase;
}

.rc-sheet-field input,
.rc-sheet-field select,
.rc-sheet-field textarea {
  width: 100%;

  padding:
    14px 15px;

  color:
    #10264a;

  font: inherit;

  border:
    1px solid
    rgba(22,61,119,.11);

  border-radius: 13px;

  outline: none;

  background:
    linear-gradient(
      180deg,
      #f7faff,
      #f2f7fc
    );

  box-shadow:
    inset 0 1px 0
    rgba(255,255,255,.85);

  transition:
    border-color .22s ease,
    background .22s ease,
    box-shadow .22s ease;
}

.rc-sheet-field textarea {
  min-height: 118px;

  resize: vertical;
}

.rc-sheet-field input:focus,
.rc-sheet-field select:focus,
.rc-sheet-field textarea:focus {
  border-color:
    rgba(35,104,195,.38);

  background: #fff;

  box-shadow:
    0 0 0 4px
    rgba(48,115,205,.07);
}

.rc-contact-sheet-note {
  margin:
    4px 0 16px;

  color:
    rgba(17,39,75,.40);

  font-size: 10px;

  line-height: 1.45;
}

.rc-contact-sheet-submit {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  padding:
    15px 20px;

  color: #fff;

  font-size: 14px;
  font-weight: 750;

  border: 0;

  border-radius: 999px;

  background:
    linear-gradient(
      135deg,
      #0e4fa7,
      #176cc7
    );

  box-shadow:
    0 14px 30px
    rgba(24,87,170,.22),
    inset 0 1px 0
    rgba(255,255,255,.18);

  cursor: pointer;
}

.rc-contact-sheet-submit svg {
  width: 18px;
  height: 18px;

  fill: none;

  stroke: currentColor;
  stroke-width: 1.8;

  stroke-linecap: round;
  stroke-linejoin: round;
}

.rc-contact-modal.is-open {
  pointer-events: auto;

  opacity: 1;

  visibility: visible;
}

.rc-contact-modal.is-open
.rc-contact-modal-backdrop {
  opacity: 1;
}

.rc-contact-modal.is-open
.rc-contact-sheet {
  transform:
    translateY(0);
}


/* Mobile contact section itself becomes a compact CTA. */
@media (max-width:850px) {

  .rc-contact-premium {
    padding:
      62px 0 68px;

    background:
      radial-gradient(
        circle at 85% 10%,
        rgba(47,119,216,.10),
        transparent 32%
      ),
      linear-gradient(
        180deg,
        #f3f7fc,
        #edf3f9
      );
  }

  .rc-contact-premium
  .rc-contact-shell {
    display: block;

    width:
      calc(100% - 30px);
  }

  .rc-contact-premium
  .rc-contact-card {
    display: none;
  }

  .rc-contact-mobile-cta {
    position: relative;

    display: block;

    overflow: hidden;

    padding:
      30px 24px;

    color: #fff;

    border:
      1px solid
      rgba(165,207,255,.13);

    border-radius: 27px;

    background:
      radial-gradient(
        circle at 92% 8%,
        rgba(95,179,255,.25),
        transparent 35%
      ),
      linear-gradient(
        145deg,
        #071d3d,
        #0d4284 62%,
        #0b376f
      );

    box-shadow:
      0 25px 56px
      rgba(16,55,107,.16),
      inset 0 1px 0
      rgba(255,255,255,.05);
  }

  .rc-contact-mobile-cta::after {
    content: "";

    position: absolute;

    width: 230px;
    height: 230px;

    left: -100px;
    bottom: -130px;

    border-radius: 50%;

    background:
      radial-gradient(
        circle,
        rgba(56,132,230,.20),
        transparent 70%
      );

    pointer-events: none;
  }

  .rc-contact-mobile-kicker {
    position: relative;
    z-index: 2;

    color:
      rgba(162,211,255,.78);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .12em;

    text-transform: uppercase;
  }

  .rc-contact-mobile-cta h2 {
    position: relative;
    z-index: 2;

    margin:
      10px 0 0;

    color: #fff;

    font-family:
      Georgia,
      "Times New Roman",
      serif;

    font-size:
      clamp(34px,10vw,46px);

    line-height: .98;

    letter-spacing: -.04em;
  }

  .rc-contact-mobile-cta p {
    position: relative;
    z-index: 2;

    margin:
      16px 0 0;

    color:
      rgba(222,236,253,.63);

    font-size: 13px;

    line-height: 1.55;
  }

  .rc-contact-mobile-open {
    position: relative;
    z-index: 2;

    width: 100%;

    margin-top: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding:
      14px 18px;

    color: #fff;

    font-size: 14px;
    font-weight: 750;

    border:
      1px solid
      rgba(185,219,255,.18);

    border-radius: 999px;

    background:
      rgba(255,255,255,.09);

    box-shadow:
      inset 0 1px 0
      rgba(255,255,255,.06);

    cursor: pointer;
  }

  .rc-contact-mobile-open svg {
    width: 18px;
    height: 18px;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.8;

    stroke-linecap: round;
    stroke-linejoin: round;
  }


  .rc-contact-modal {
    display: block;
  }
}


@media (max-width:520px) {

  .rc-contact-premium {
    padding:
      50px 0 58px;
  }

  .rc-contact-mobile-cta {
    padding:
      27px 20px;

    border-radius: 23px;
  }

  .rc-contact-sheet {
    max-height:
      93dvh;

    padding:
      10px 16px
      calc(20px + env(safe-area-inset-bottom));

    border-radius:
      25px 25px 0 0;
  }

  .rc-contact-sheet-head {
    padding-bottom: 18px;
  }

  .rc-contact-sheet-head h2 {
    font-size:
      clamp(30px,9.5vw,39px);
  }

  .rc-sheet-field textarea {
    min-height: 105px;
  }
}


@media (prefers-reduced-motion:reduce) {

  .rc-contact-modal,
  .rc-contact-modal-backdrop,
  .rc-contact-sheet {
    transition: none !important;
  }
}




/* =========================================================
   ABOUT STATS — IPHONE-LIKE NUMBER DRUM
   ========================================================= */

.rc-stat-number {
  display: flex !important;
  align-items: baseline;

  min-height: 1em;

  overflow: visible;
}

.rc-stat-digits {
  display: inline-flex;
  align-items: baseline;

  height: 1em;

  overflow: hidden;

  font-variant-numeric:
    tabular-nums;

  line-height: 1;
}

.rc-stat-digit-column {
  position: relative;

  display: inline-block;

  width: .64em;
  height: 1em;

  overflow: hidden;

  line-height: 1;

  /*
    М'які fade-краї, як у барабанному picker.
  */
  -webkit-mask-image:
    linear-gradient(
      180deg,
      transparent 0%,
      #000 15%,
      #000 85%,
      transparent 100%
    );

  mask-image:
    linear-gradient(
      180deg,
      transparent 0%,
      #000 15%,
      #000 85%,
      transparent 100%
    );
}

.rc-stat-digit-wheel {
  --roll-duration: 1.2s;
  --roll-delay: 0s;

  display: flex;
  flex-direction: column;

  width: 100%;

  transform:
    translate3d(0,0,0);

  will-change: transform;

  transition:
    transform
    var(--roll-duration)
    cubic-bezier(.12,.72,.14,1)
    var(--roll-delay);
}

.rc-stat-digit-cell {
  flex: 0 0 1em;

  height: 1em;

  display: flex;
  align-items: center;
  justify-content: center;

  line-height: 1;

  text-align: center;
}

.rc-stat-suffix {
  display: inline-block !important;

  margin:
    0 0 0 .10em !important;

  color: inherit !important;

  font-size: .58em !important;
  font-weight: 650 !important;

  line-height: 1 !important;

  vertical-align: top;

  /*
    Суфікс відображається постійно:
    він не є частиною барабана і не анімується.
  */
  opacity: .92;
}

.rc-stat-sr {
  position: absolute !important;

  width: 1px !important;
  height: 1px !important;

  padding: 0 !important;
  margin: -1px !important;

  overflow: hidden !important;

  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;

  border: 0 !important;
}


/*
  Легка оптична стабілізація після завершення:
  без додаткового руху числа.
*/
.rc-stat-number.is-complete
.rc-stat-digit-column {
  -webkit-mask-image:
    linear-gradient(
      180deg,
      rgba(0,0,0,.82) 0%,
      #000 18%,
      #000 82%,
      rgba(0,0,0,.82) 100%
    );

  mask-image:
    linear-gradient(
      180deg,
      rgba(0,0,0,.82) 0%,
      #000 18%,
      #000 82%,
      rgba(0,0,0,.82) 100%
    );
}


@media (max-width:520px) {

  .rc-stat-suffix {
    font-size: .56em !important;
  }

}


/* reduced motion: одразу показуємо кінцеві цифри */
@media (prefers-reduced-motion:reduce) {

  .rc-stat-digit-wheel {
    transition: none !important;
  }

}




/* =========================================================
   UNIFIED BRAND BACKGROUNDS
   Hero + Projects now use the same dark-blue family as Services.
   ========================================================= */

.rc-hero {
  background:
    radial-gradient(
      circle at 18% 22%,
      rgba(39,109,203,.14),
      transparent 31%
    ),
    radial-gradient(
      circle at 82% 72%,
      rgba(38,116,219,.10),
      transparent 30%
    ),
    radial-gradient(
      ellipse at 50% 43%,
      rgba(70,145,235,.10) 0%,
      transparent 52%
    ),
    linear-gradient(
      145deg,
      #081a33 0%,
      #0a203e 52%,
      #07182f 100%
    );
}

/* Keep the animated blobs visible, but calmer on the darker base. */
.rc-hero-blobs {
  opacity: .78;
  filter:
    saturate(.88)
    brightness(.94);
}


.rc-projects {
  color: #f4f8ff;

  background:
    radial-gradient(
      circle at 13% 18%,
      rgba(39,109,203,.16),
      transparent 28%
    ),
    radial-gradient(
      circle at 89% 80%,
      rgba(38,116,219,.12),
      transparent 27%
    ),
    linear-gradient(
      145deg,
      #081a33 0%,
      #0a203e 52%,
      #07182f 100%
    );
}

.rc-projects::before {
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(151,199,255,.14) 16%,
      rgba(151,199,255,.14) 84%,
      transparent
    );
}

.rc-projects .rc-section-kicker {
  color: #7eb8ff;
}

.rc-projects .rc-section-kicker::before {
  background: #7eb8ff;
}

.rc-projects-heading h2 {
  color: rgba(255,255,255,.98);
}

.rc-projects-heading p {
  color: rgba(222,235,252,.62);
}

/* Carousel controls now match the dark section instead of looking detached. */
.rc-projects .rc-project-arrow {
  color: rgba(221,238,255,.88);

  border-color:
    rgba(161,203,255,.15);

  background:
    rgba(255,255,255,.035);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.035),
    0 12px 30px rgba(0,13,37,.12);
}

.rc-projects .rc-project-arrow:hover:not(:disabled) {
  color: #fff;

  border-color:
    rgba(161,203,255,.30);

  background:
    rgba(49,122,216,.18);
}

/* Keep project cards light so they stand out from the dark section. */
.rc-projects .rc-project-link {
  border-color:
    rgba(176,207,244,.12);

  box-shadow:
    0 26px 64px rgba(0,12,33,.22),
    0 6px 18px rgba(0,12,33,.09);
}

.rc-projects .rc-project-link:hover {
  border-color:
    rgba(174,211,255,.24);

  box-shadow:
    0 34px 78px rgba(0,12,33,.28),
    0 10px 24px rgba(0,12,33,.12);
}

.rc-projects .rc-project-progress {
  background:
    rgba(188,217,251,.10);
}

.rc-projects .rc-project-progress span {
  background:
    linear-gradient(
      90deg,
      #5ca5ed,
      #9bc8f4
    );
}

.rc-projects .rc-project-counter {
  color:
    rgba(211,230,252,.40);
}

.rc-projects .rc-project-counter b {
  color:
    rgba(232,244,255,.92);
}

.rc-projects .rc-project-counter i {
  background:
    rgba(204,226,252,.18);
}

/* The transition between Projects and Services becomes almost seamless,
   while a subtle line still keeps both sections readable. */
.rc-projects + .rc-services {
  border-top:
    1px solid
    rgba(160,205,255,.07);
}




/* =========================================================
   TOPBAR + HERO CRM REFINEMENT
   ========================================================= */

/* The fixed menu now visually merges with the unified hero background. */
.rc-topbar,
.rc-topbar.is-scrolled {
  background:
    linear-gradient(
      145deg,
      #081a33 0%,
      #0a203e 52%,
      #07182f 100%
    );

  border-bottom-color: transparent;

  box-shadow: none;
}

.rc-topbar {
  border-bottom: 1px solid transparent;
}

.rc-topbar.is-scrolled {
  box-shadow:
    0 8px 24px
    rgba(0,12,31,.10);
}

/* The former lower CRM card remains only as an invisible geometry anchor.
   This prevents a duplicate CRM/CMS visual while preserving the existing
   desktop line/dot route calculations. */
.rc-route-anchor-only {
  pointer-events: none;
}

.rc-route-anchor-only .rc-hover {
  visibility: hidden;
  opacity: 0;
}




/* =========================================================
   PROJECTS — DARK PREMIUM CONTENT PANELS
   Нижня частина карток у бренд-палітрі, але світліша за фон секції.
   ========================================================= */

.rc-projects .rc-project-link {
  overflow: hidden;

  border:
    1px solid
    rgba(158,201,252,.13);

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.04),
      rgba(255,255,255,.018)
    );

  box-shadow:
    0 26px 64px rgba(0,12,33,.23),
    0 7px 18px rgba(0,12,33,.10),
    inset 0 1px 0 rgba(255,255,255,.025);
}

.rc-projects .rc-project-body {
  position: relative;

  color: #f4f8ff;

  border-top:
    1px solid
    rgba(150,200,255,.12);

  background:
    linear-gradient(
      145deg,
      #102b50 0%,
      #12335e 58%,
      #0e294d 100%
    );

  box-shadow:
    inset 0 1px 0
    rgba(255,255,255,.025);

  transition:
    background .32s ease,
    box-shadow .32s ease;
}

.rc-projects .rc-project-body::before {
  content: "";

  position: absolute;

  width: 220px;
  height: 220px;

  right: -105px;
  top: -120px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(91,166,255,.14),
      transparent 68%
    );

  pointer-events: none;
}

.rc-projects .rc-project-topline {
  position: relative;
  z-index: 1;

  color:
    rgba(182,213,251,.55);
}

.rc-projects .rc-project-body h3 {
  position: relative;
  z-index: 1;

  color:
    rgba(255,255,255,.98);
}

.rc-projects .rc-project-body p {
  position: relative;
  z-index: 1;

  color:
    rgba(218,233,251,.66);
}

.rc-projects .rc-project-tags {
  position: relative;
  z-index: 1;
}

.rc-projects .rc-project-tags span {
  color:
    rgba(211,232,255,.82);

  border:
    1px solid
    rgba(150,200,255,.12);

  background:
    rgba(88,154,237,.08);

  box-shadow:
    inset 0 1px 0
    rgba(255,255,255,.025);

  transition:
    color .24s ease,
    border-color .24s ease,
    background .24s ease;
}

.rc-projects .rc-project-more {
  position: relative;
  z-index: 1;

  color:
    rgba(223,239,255,.92);

  border-top:
    1px solid
    rgba(150,200,255,.11);
}

.rc-projects .rc-project-more svg {
  color:
    #8fc7ff;
}


/* Hover: card stays distinct from the section while gaining depth. */
.rc-projects .rc-project-link:hover {
  border-color:
    rgba(169,211,255,.24);

  box-shadow:
    0 36px 80px rgba(0,12,33,.30),
    0 11px 26px rgba(0,12,33,.13),
    inset 0 1px 0 rgba(255,255,255,.035);
}

.rc-projects .rc-project-link:hover
.rc-project-body {
  background:
    linear-gradient(
      145deg,
      #12325d 0%,
      #153a6c 58%,
      #102f58 100%
    );

  box-shadow:
    inset 0 1px 0
    rgba(255,255,255,.035);
}

.rc-projects .rc-project-link:hover
.rc-project-tags span {
  color: #fff;

  border-color:
    rgba(151,204,255,.21);

  background:
    rgba(91,161,247,.13);
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion:reduce) {

  .rc-float,
  .rc-mini-cell,
  .rc-center-line,
  .rc-chain,
  .rc-mobile-line {
    animation: none !important;
  }

  .rc-center-line {
    stroke-dasharray: none;
    stroke-dashoffset: 0;
  }

  .rc-hover,
  .rc-project-link,
  .rc-browser,
  .rc-dashboard,
  .rc-phone,
  .rc-pwa-device,
  .rc-selo-window,
  .rc-service-card,
  .rc-service-icon,
  .rc-services-cta a,
  .rc-service-slide,
  .rc-service-slide-icon,
  .rc-service-slide-orb,
  .rc-about-stat,
  .rc-services-discuss {
    transition: none !important;
  }

  .rc-hover {
    transform: none !important;
  }

}

/* =========================================================
   HEADER SOCIALS — COMPACT BRAND NAV
   ========================================================= */
.rc-topbar-inner {
  justify-content: flex-start;
  gap: 18px;
}

.rc-main-nav {
  margin-left: auto;
}

.rc-header-socials {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
}

.rc-header-social-link {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  color: rgba(229,240,255,.78);
  text-decoration: none;
  border: 1px solid rgba(150,200,255,.10);
  border-radius: 11px;
  background: rgba(18,51,94,.42);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
  transition:
    color .2s ease,
    border-color .2s ease,
    background .2s ease,
    transform .2s ease;
}

.rc-header-social-link svg {
  width: 17px;
  height: 17px;
}

.rc-header-social-link:hover {
  color: #fff;
  transform: translateY(-1px);
  border-color: rgba(150,200,255,.22);
  background: rgba(27,70,124,.68);
}

/* HERO CTA — PREMIUM ANIMATED PANEL */
.rc-hero-cta {
  isolation: isolate;
  overflow: hidden;
  border-color: rgba(177,216,255,.30);
  background:
    linear-gradient(
      118deg,
      #0e294e 0%,
      #123861 19%,
      #1a507f 42%,
      #236393 56%,
      #173f6d 76%,
      #0e294e 100%
    );
  background-size: 230% 230%;
  box-shadow:
    0 18px 38px rgba(0,12,33,.32),
    0 5px 14px rgba(0,31,73,.22),
    0 0 0 1px rgba(113,188,255,.05),
    inset 0 1px 0 rgba(255,255,255,.16),
    inset 0 -1px 0 rgba(0,0,0,.18);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  animation:
    rcHeroCtaGradient 7s ease-in-out infinite,
    rcHeroCtaGlow 3.6s ease-in-out infinite;
  will-change: background-position, filter;
}

.rc-hero-cta > span,
.rc-hero-cta > svg {
  position: relative;
  z-index: 2;
}

.rc-hero-cta::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(
      105deg,
      transparent 26%,
      rgba(255,255,255,0) 35%,
      rgba(255,255,255,.20) 48%,
      rgba(192,226,255,.12) 53%,
      rgba(255,255,255,0) 66%,
      transparent 74%
    );
  transform: translateX(-145%);
  animation: rcHeroCtaSheen 5.4s cubic-bezier(.4,0,.2,1) infinite;
}

.rc-hero-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 0%, rgba(178,221,255,.16), transparent 46%),
    linear-gradient(180deg, rgba(255,255,255,.045), transparent 42%);
}

.rc-hero-cta:hover {
  transform: translateY(-3px) scale(1.012);
  border-color: rgba(194,226,255,.46);
  box-shadow:
    0 22px 48px rgba(0,12,33,.36),
    0 8px 18px rgba(0,35,81,.24),
    0 0 30px rgba(87,166,244,.16),
    0 0 0 1px rgba(139,204,255,.08),
    inset 0 1px 0 rgba(255,255,255,.20),
    inset 0 -1px 0 rgba(0,0,0,.16);
}

.rc-hero-cta:active {
  transform: translateY(-1px) scale(.997);
}

@keyframes rcHeroCtaGradient {
  0%,100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes rcHeroCtaGlow {
  0%,100% {
    filter: drop-shadow(0 0 0 rgba(101,181,255,0));
  }
  50% {
    filter: drop-shadow(0 0 12px rgba(101,181,255,.22));
  }
}

@keyframes rcHeroCtaSheen {
  0%,58% { transform: translateX(-145%); }
  76% { transform: translateX(145%); }
  100% { transform: translateX(145%); }
}

@media (prefers-reduced-motion: reduce) {
  .rc-hero-cta,
  .rc-hero-cta::before {
    animation: none !important;
  }
}

@media (max-width: 900px) {
  .rc-topbar-inner {
    gap: 10px;
  }

  .rc-menu-toggle {
    margin-left: auto;
    flex: 0 0 auto;
  }

  .rc-header-socials {
    gap: 4px;
  }

  .rc-header-social-link {
    width: 31px;
    height: 31px;
    border-radius: 10px;
  }

  .rc-header-social-link svg {
    width: 15px;
    height: 15px;
  }
}

@media (max-width: 420px) {
  .rc-topbar-inner {
    width: min(100% - 22px, 1760px);
    gap: 7px;
  }

  .rc-brand-mark {
    display: none;
  }

  .rc-topbar-brand {
    font-size: 19px;
    gap: 0;
  }

  .rc-header-socials {
    gap: 3px;
  }

  .rc-header-social-link {
    width: 27px;
    height: 27px;
    border-radius: 9px;
  }

  .rc-header-social-link svg {
    width: 14px;
    height: 14px;
  }

  .rc-menu-toggle {
    width: 40px;
    height: 40px;
  }
}

/* =========================================================
   V19 — HEADER BALANCE, CONTACT MODAL, COMPACT SITE FLOW
   ========================================================= */
.rc-header-socials {
  --rc-social-size: 36px;
  gap: 7px;
}
.rc-header-social-link {
  width: var(--rc-social-size);
  height: var(--rc-social-size);
  border-radius: 11px;
}
.rc-header-social-link svg { width: 18px; height: 18px; }

@media (max-width: 900px) {
  .rc-topbar-inner {
    display: grid;
    grid-template-columns: auto minmax(0,1fr) auto;
    align-items: center;
    gap: 10px;
  }
  .rc-header-socials { justify-self: center; gap: 7px; }
  .rc-menu-toggle { margin-left: 0; justify-self: end; }
}

@media (max-width: 390px) {
  .rc-header-socials { --rc-social-size: 32px; gap: 5px; }
  .rc-header-social-link svg { width: 16px; height: 16px; }
  .rc-topbar-brand { font-size: 18px; }
}

.rc-contact-promo {
  position: relative;
  overflow: hidden;
  padding: 58px 0;
  color: #fff;
  background: radial-gradient(circle at 86% 8%, rgba(95,179,255,.24), transparent 33%), radial-gradient(circle at 8% 90%, rgba(56,132,230,.16), transparent 35%), linear-gradient(145deg,#071d3d 0%,#0d4284 62%,#0b376f 100%);
  border-top: 1px solid rgba(165,207,255,.08);
  border-bottom: 1px solid rgba(165,207,255,.08);
}
.rc-contact-promo-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 48px;
  align-items: center;
}
.rc-contact-promo-kicker { color: rgba(162,211,255,.82); font-size: 11px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.rc-contact-promo h2 { margin: 10px 0 0; font-family: Georgia,"Times New Roman",serif; font-size: clamp(38px,5vw,64px); line-height: .98; letter-spacing: -.045em; }
.rc-contact-promo p { max-width: 650px; margin: 15px 0 0; color: rgba(222,236,253,.68); font-size: 15px; line-height: 1.55; }
.rc-contact-promo-button { min-width: 210px; min-height: 54px; display:inline-flex; align-items:center; justify-content:center; gap:11px; padding:0 22px; color:#fff; font-weight:780; border:1px solid rgba(193,223,255,.22); border-radius:999px; background:rgba(255,255,255,.095); box-shadow:inset 0 1px 0 rgba(255,255,255,.07),0 16px 38px rgba(0,15,48,.16); cursor:pointer; }
.rc-contact-promo-button svg { width:18px; height:18px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }

.rc-contact-fab { position:fixed; right:max(22px, env(safe-area-inset-right)); bottom:max(22px, env(safe-area-inset-bottom)); z-index:190; width:60px; height:60px; display:grid; place-items:center; padding:0; color:#fff; border:1px solid rgba(176,215,255,.25); border-radius:50%; background:linear-gradient(145deg,#12335e,#0d4284); box-shadow:0 18px 42px rgba(0,18,55,.28),inset 0 1px 0 rgba(255,255,255,.08); cursor:pointer; transition:transform .2s ease,box-shadow .2s ease,background .2s ease; }
.rc-contact-fab:hover { transform:translateY(-3px); background:linear-gradient(145deg,#153a6c,#10519c); box-shadow:0 22px 48px rgba(0,18,55,.34); }
.rc-contact-fab svg { width:25px; height:25px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }

.rc-contact-modal { display:block; }
@media (min-width: 851px) {
  .rc-contact-sheet { left:50%; right:auto; top:50%; bottom:auto; width:min(620px,calc(100vw - 48px)); max-height:min(86vh,780px); padding:28px 30px 30px; border:1px solid rgba(22,61,119,.10); border-radius:28px; transform:translate(-50%,calc(-50% + 24px)) scale(.985); opacity:0; transition:transform .28s cubic-bezier(.2,.8,.2,1),opacity .22s ease; }
  .rc-contact-sheet-handle { display:none; }
  .rc-contact-modal.is-open .rc-contact-sheet { transform:translate(-50%,-50%) scale(1); opacity:1; }
}
@media (max-width: 850px) {
  .rc-contact-promo { padding:46px 0; }
  .rc-contact-promo-inner { width:calc(100% - 30px); grid-template-columns:1fr; gap:26px; }
  .rc-contact-promo-button { width:100%; }
  .rc-contact-fab { width:56px; height:56px; right:16px; bottom:16px; }
}

.rc-crm { pointer-events:auto; }
.rc-crm .rc-hover { visibility:visible; opacity:1; }

@media (prefers-reduced-motion: reduce) { .rc-contact-fab,.rc-contact-promo-button { transition:none !important; } }



/* =========================================================
   V20 — HERO ICONS, COMPACT SERVICES, FAB VISIBILITY
   ========================================================= */
.rc-header-socials {
  --rc-social-size: 40px;
  gap: 10px;
}

.rc-header-social-link {
  width: var(--rc-social-size);
  height: var(--rc-social-size);
  border-radius: 12px;
}

.rc-header-social-link svg { width: 19px; height: 19px; }

@media (max-width: 900px) {
  .rc-topbar-inner {
    grid-template-columns: max-content minmax(0,1fr) max-content;
  }

  .rc-header-socials {
    gap: 8px;
    justify-self: center;
    margin-inline: auto;
  }

  .rc-header-socials { --rc-social-size: 36px; }
  .rc-header-social-link svg { width: 18px; height: 18px; }
}

@media (max-width: 420px) {
  .rc-header-socials { --rc-social-size: 32px; gap: 6px; }
  .rc-header-social-link svg { width: 16px; height: 16px; }
}

.rc-service-graphic {
  position: relative;
  z-index: 6;
  display: block;
  width: 156px;
  margin: 0 auto;
  color: rgba(233,244,255,.96);
  user-select: none;
  filter: drop-shadow(0 5px 11px rgba(0,22,76,.10));
  transition: filter .24s ease, transform .24s ease;
}

.rc-service-graphic svg {
  width: 100%;
  height: auto;
  display: block;
}

.rc-service:hover .rc-service-graphic {
  filter: drop-shadow(0 8px 15px rgba(0,22,76,.18)) drop-shadow(0 0 10px rgba(255,255,255,.15));
}

/* PROJECTS arrows closer to section divider on mobile */
@media (max-width: 720px) {
  .rc-projects-head {
    gap: 14px;
    margin-bottom: 24px;
  }

  .rc-projects-controls { top: 0; }
}

@media (max-width: 520px) {
  .rc-projects-heading { padding-top: 56px; }
  .rc-projects-controls { top: 2px; }
}

/* SERVICES become compact capsules */
.rc-services-controls,
.rc-services-carousel-footer {
  display: none !important;
}

.rc-services-head-carousel {
  margin-bottom: 30px;
}

.rc-services-track[data-layout="grid"] {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  overflow: visible;
  padding: 0;
  cursor: default;
  scroll-snap-type: none;
  touch-action: auto;
}

.rc-services-track[data-layout="grid"].is-dragging {
  cursor: default;
  scroll-snap-type: none;
}

.rc-services-track[data-layout="grid"] .rc-service-slide {
  flex: initial;
  min-height: 0;
  padding: 22px 22px 20px;
  border-radius: 24px;
  transform: none !important;
}

.rc-services-track[data-layout="grid"] .rc-service-slide::after {
  left: 22px;
  right: 22px;
  top: 72px;
}

.rc-services-track[data-layout="grid"] .rc-service-slide-orb,
.rc-services-track[data-layout="grid"] .rc-service-slide-index,
.rc-services-track[data-layout="grid"] .rc-service-slide-kicker,
.rc-services-track[data-layout="grid"] .rc-service-slide-tags {
  display: none;
}

.rc-services-track[data-layout="grid"] .rc-service-slide-top {
  justify-content: flex-start;
  gap: 0;
}

.rc-services-track[data-layout="grid"] .rc-service-slide-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
}

.rc-services-track[data-layout="grid"] .rc-service-slide-icon svg {
  width: 22px;
  height: 22px;
}

.rc-services-track[data-layout="grid"] .rc-service-slide-copy {
  margin-top: 20px;
}

.rc-services-track[data-layout="grid"] .rc-service-slide h3 {
  max-width: none;
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.04;
}

.rc-services-track[data-layout="grid"] .rc-service-slide p {
  max-width: none;
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(219,233,250,.66);
}

@media (max-width: 1040px) {
  .rc-services-track[data-layout="grid"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .rc-services-head-carousel {
    margin-bottom: 24px;
  }

  .rc-services-heading {
    padding-top: 0 !important;
  }

  .rc-services-track[data-layout="grid"] {
    grid-template-columns: 1fr;
  }
}

/* Floating contact button appears from second block */
.rc-contact-fab {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(18px) scale(.92);
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease, box-shadow .2s ease, background .2s ease;
}

.rc-contact-fab.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.rc-contact-fab.is-visible:hover {
  transform: translateY(-3px) scale(1.02);
}


/* Updated social promotion icon asset */
.rc-uiux img {
  width: clamp(95px, 5.9vw, 120px);
}

@media (max-width: 850px) {
  .rc-uiux img {
    width: clamp(68px, 18vw, 82px);
  }
}

@media (max-width: 520px) {
  .rc-uiux img {
    width: clamp(60px, 19vw, 72px);
  }
}

/* Bring section controls closer to the divider on mobile */
@media (max-width: 760px) {
  .rc-projects {
    padding-top: 36px;
  }

  .rc-projects-head {
    margin-bottom: 24px;
  }

  .rc-projects-controls {
    top: 0 !important;
  }

  .rc-projects-heading {
    padding-top: 52px;
  }

  .rc-services-carousel {
    padding-top: 36px;
  }

  .rc-services-head-carousel {
    margin-bottom: 24px;
  }

  .rc-services-controls {
    top: 0 !important;
  }

  .rc-services-heading {
    padding-top: 52px;
  }
}

@media (max-width: 520px) {
  .rc-projects {
    padding-top: 28px;
  }

  .rc-projects-heading {
    padding-top: 48px;
  }

  .rc-services-carousel {
    padding-top: 28px;
  }

  .rc-services-heading {
    padding-top: 48px;
  }
}

/* =========================================================
   V21 — COMPACT SERVICE CAPSULE HEADER
   Іконка + назва в одному рядку, опис нижче.
   ========================================================= */
.rc-services-track[data-layout="grid"] .rc-service-slide {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  grid-template-areas:
    "icon title"
    "desc desc";
  column-gap: 14px;
  row-gap: 14px;
  align-items: center;
  min-height: 0;
  padding: 18px 20px 19px;
}

.rc-services-track[data-layout="grid"] .rc-service-slide::after {
  display: none;
}

.rc-services-track[data-layout="grid"] .rc-service-slide-top {
  grid-area: icon;
  display: block;
}

.rc-services-track[data-layout="grid"] .rc-service-slide-copy {
  display: contents;
}

.rc-services-track[data-layout="grid"] .rc-service-slide h3 {
  grid-area: title;
  align-self: center;
  max-width: none;
  margin: 0;
  font-size: clamp(21px, 1.65vw, 27px);
  line-height: 1.08;
}

.rc-services-track[data-layout="grid"] .rc-service-slide p {
  grid-area: desc;
  max-width: none;
  margin: 0;
  color: rgba(219,233,250,.66);
  font-size: 13.5px;
  line-height: 1.5;
}

.rc-services-track[data-layout="grid"] .rc-service-slide-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
}

.rc-services-track[data-layout="grid"] .rc-service-slide-icon svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 760px) {
  .rc-services-track[data-layout="grid"] .rc-service-slide {
    grid-template-columns: 46px minmax(0, 1fr);
    column-gap: 13px;
    row-gap: 12px;
    padding: 17px 18px 18px;
  }

  .rc-services-track[data-layout="grid"] .rc-service-slide-icon {
    width: 46px;
    height: 46px;
  }

  .rc-services-track[data-layout="grid"] .rc-service-slide h3 {
    font-size: clamp(20px, 6vw, 25px);
  }
}



/* =========================================================
   V22 — MOBILE SECTION TOP SPACING
   Керування проектами одразу під верхнім розділювачем.
   ========================================================= */
@media (max-width: 720px) {
  .rc-projects {
    padding-top: 8px;
  }

  .rc-projects-controls {
    top: 8px !important;
  }

  .rc-projects-heading {
    padding-top: 62px;
  }
}

@media (max-width: 520px) {
  .rc-projects {
    padding-top: 8px;
  }

  .rc-projects-controls {
    top: 8px !important;
  }

  .rc-projects-heading {
    padding-top: 60px;
  }
}


/* =========================================================
   V24 — HERO PROMOTION ICON SIZE PARITY
   Просування соц.мереж = той самий display-box, що й Інтернет-магазин.
   ========================================================= */
.rc-uiux img,
.rc-ecommerce img {
  width: clamp(95px, 5.9vw, 120px);
}

@media (max-width: 850px) {
  .rc-uiux img,
  .rc-ecommerce img {
    width: clamp(68px, 18vw, 82px);
  }
}

@media (max-width: 520px) {
  .rc-uiux img,
  .rc-ecommerce img {
    width: clamp(60px, 19vw, 72px);
  }
}


/* =========================================================
   HERO STATS CAPSULES
   ========================================================= */

.rc-hero-stats {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(880px, 78vw);
}

.rc-hero-stat {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 92px;
  padding: 14px 16px;
  border: 1px solid rgba(177, 211, 252, .11);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.022));
  box-shadow: 0 16px 34px rgba(0,9,27,.14), inset 0 1px 0 rgba(255,255,255,.035);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: hidden;
}

.rc-hero-stat::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -55px;
  top: -58px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(78,153,244,.16), transparent 70%);
  pointer-events: none;
}

.rc-hero-stat-icon {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #96c8ff;
  border: 1px solid rgba(154,202,255,.13);
  border-radius: 13px;
  background: rgba(66,143,233,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}

.rc-hero-stat-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rc-hero-stat-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.rc-hero-stat-number {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  color: #fff;
  font-size: clamp(20px, 1.85vw, 31px);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -.03em;
  font-variant-numeric: tabular-nums;
}

.rc-hero-stat-copy > span {
  display: block;
  margin-top: 6px;
  color: rgba(210,228,250,.64);
  font-size: 11px;
  line-height: 1.35;
}

.rc-hero-stat-digits {
  display: inline-flex;
  gap: .05em;
  height: 1em;
  overflow: hidden;
}

.rc-hero-stat-digit-column {
  position: relative;
  display: inline-block;
  width: .68em;
  height: 1em;
  overflow: hidden;
}

.rc-hero-stat-digit-wheel {
  display: flex;
  flex-direction: column;
  transform: translate3d(0, 0, 0);
  transition: transform var(--roll-duration, 1.1s) cubic-bezier(.18, .82, .24, 1) var(--roll-delay, 0s);
  will-change: transform;
}

.rc-hero-stat-digit-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 1em;
}

.rc-hero-stat-suffix {
  color: #ffffff;
  opacity: .96;
  font-size: .92em;
  line-height: 1;
}

.rc-hero-stat-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 980px) {
  .rc-hero-stats {
    width: min(760px, 84vw);
    gap: 10px;
  }

  .rc-hero-stat {
    padding: 13px 14px;
    min-height: 86px;
    grid-template-columns: 38px 1fr;
    gap: 10px;
  }

  .rc-hero-stat-copy > span {
    font-size: 10.5px;
  }
}

@media (max-width: 680px) {
  .rc-hero-stats {
    width: min(100%, 360px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 36px;
    align-items: stretch;
  }

  .rc-hero-stat {
    grid-template-columns: 1fr;
    justify-items: center;
    align-content: start;
    text-align: center;
    gap: 8px;
    min-height: 112px;
    padding: 10px 8px 12px;
    border-radius: 16px;
  }

  .rc-hero-stat::after {
    width: 88px;
    height: 88px;
    right: -36px;
    top: -40px;
  }

  .rc-hero-stat-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .rc-hero-stat-icon svg {
    width: 18px;
    height: 18px;
  }

  .rc-hero-stat-copy {
    width: 100%;
  }

  .rc-hero-stat-number {
    justify-content: center;
    font-size: 20px;
    gap: 1px;
  }

  .rc-hero-stat-suffix {
    font-size: .82em;
  }

  .rc-hero-stat-copy > span {
    margin-top: 5px;
    font-size: 9px;
    line-height: 1.3;
  }
}

@media (max-width: 430px) {
  .rc-hero-stats {
    width: calc(100% - 6px);
    gap: 7px;
  }

  .rc-hero-stat {
    min-height: 104px;
    padding: 10px 6px 11px;
  }

  .rc-hero-stat-number {
    font-size: 18px;
  }

  .rc-hero-stat-suffix {
    font-size: .8em;
  }

  .rc-hero-stat-copy > span {
    font-size: 8.5px;
  }
}

/* =========================================================
   V25 — STATS BAND + MOBILE CONTACT END STATE
   ========================================================= */
.rc-stats-band {
  position: relative;
  z-index: 12;
  padding: 14px 24px 16px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 30%, rgba(39,109,203,.10), transparent 30%),
    radial-gradient(circle at 82% 70%, rgba(38,116,219,.08), transparent 28%),
    linear-gradient(145deg,#081a33 0%,#0a203e 52%,#07182f 100%);
  border-top: 1px solid rgba(165,207,255,.08);
  border-bottom: 1px solid rgba(165,207,255,.08);
}

.rc-stats-band .rc-hero-stats {
  width: min(880px, 100%);
  margin: 0 auto;
}

.rc-stats-band .rc-hero-stat {
  min-height: 80px;
}


@media (max-width: 680px) {
  .rc-stats-band {
    padding: 10px 10px 12px;
  }

  .rc-stats-band .rc-hero-stats {
    width: 100%;
    margin-top: 0;
  }

  .rc-stats-band .rc-hero-stat {
    min-height: 98px;
    padding-top: 9px;
    padding-bottom: 10px;
  }
}

@media (max-width: 430px) {
  .rc-stats-band {
    padding-inline: 7px;
  }

  .rc-stats-band .rc-hero-stats {
    width: 100%;
  }

  .rc-stats-band .rc-hero-stat {
    min-height: 94px;
  }
}


/* =========================================================
   V26 — SECTION SPACING TUNING
   Менший нижній відступ у блоці послуг та компактніший
   верхній відступ у блоці «Є задача?».
   ========================================================= */

/* Services: bring the section ending closer to the last capsules. */
.rc-services-carousel {
  padding-bottom: 70px;
}

/* Contact promo: move the content 15px closer to the top edge. */
.rc-contact-promo {
  padding-top: 43px;
}

@media (max-width: 850px) {
  .rc-contact-promo {
    padding-top: 31px;
  }
}

@media (max-width: 760px) {
  .rc-services-carousel {
    padding-bottom: 50px;
  }
}

/* =========================================================
   V27 — PREMIUM CONTACT CTA + SUCCESS TOAST
   Нижня CTA-кнопка повторює преміальну анімацію hero-кнопки.
   ========================================================= */
.rc-contact-promo-button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-color: rgba(177,216,255,.30);
  background:
    linear-gradient(
      118deg,
      #0e294e 0%,
      #123861 19%,
      #1a507f 42%,
      #236393 56%,
      #173f6d 76%,
      #0e294e 100%
    );
  background-size: 230% 230%;
  box-shadow:
    0 18px 38px rgba(0,12,33,.32),
    0 5px 14px rgba(0,31,73,.22),
    0 0 0 1px rgba(113,188,255,.05),
    inset 0 1px 0 rgba(255,255,255,.16),
    inset 0 -1px 0 rgba(0,0,0,.18);
  animation:
    rcHeroCtaGradient 7s ease-in-out infinite,
    rcHeroCtaGlow 3.6s ease-in-out infinite;
  will-change: background-position, filter, transform;
  transition:
    transform .24s ease,
    border-color .24s ease,
    box-shadow .24s ease;
}

.rc-contact-promo-button > span,
.rc-contact-promo-button > svg {
  position: relative;
  z-index: 2;
}

.rc-contact-promo-button::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(
      105deg,
      transparent 26%,
      rgba(255,255,255,0) 35%,
      rgba(255,255,255,.20) 48%,
      rgba(192,226,255,.12) 53%,
      rgba(255,255,255,0) 66%,
      transparent 74%
    );
  transform: translateX(-145%);
  animation: rcHeroCtaSheen 5.4s cubic-bezier(.4,0,.2,1) infinite;
}

.rc-contact-promo-button::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 0%, rgba(178,221,255,.16), transparent 46%),
    linear-gradient(180deg, rgba(255,255,255,.045), transparent 42%);
}

.rc-contact-promo-button:hover {
  transform: translateY(-3px) scale(1.012);
  border-color: rgba(194,226,255,.46);
  box-shadow:
    0 22px 48px rgba(0,12,33,.36),
    0 8px 18px rgba(0,35,81,.24),
    0 0 30px rgba(87,166,244,.16),
    0 0 0 1px rgba(139,204,255,.08),
    inset 0 1px 0 rgba(255,255,255,.20),
    inset 0 -1px 0 rgba(0,0,0,.16);
}

.rc-contact-promo-button:hover svg {
  transform: translateX(3px);
}

.rc-contact-promo-button:active {
  transform: translateY(-1px) scale(.997);
}

.rc-contact-promo-button svg {
  transition: transform .24s ease;
}

/* Premium success toast */
.rc-contact-toast {
  position: fixed;
  right: max(24px, env(safe-area-inset-right));
  bottom: max(24px, env(safe-area-inset-bottom));
  z-index: 1000;
  width: min(410px, calc(100vw - 32px));
  min-height: 88px;
  display: grid;
  grid-template-columns: 48px minmax(0,1fr);
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  overflow: hidden;
  color: #fff;
  border: 1px solid rgba(166,214,255,.24);
  border-radius: 20px;
  background:
    radial-gradient(circle at 9% 0%, rgba(92,181,255,.18), transparent 42%),
    linear-gradient(135deg, rgba(9,35,72,.97), rgba(12,61,116,.97));
  box-shadow:
    0 24px 64px rgba(0,13,39,.34),
    0 7px 22px rgba(0,31,73,.18),
    inset 0 1px 0 rgba(255,255,255,.10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(.97);
  pointer-events: none;
  transition:
    opacity .32s ease,
    transform .36s cubic-bezier(.2,.8,.2,1),
    visibility .32s ease;
}

.rc-contact-toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.rc-contact-toast-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(176,224,255,.24);
  border-radius: 15px;
  background:
    linear-gradient(145deg, rgba(56,151,231,.32), rgba(72,193,182,.20));
  box-shadow:
    0 10px 24px rgba(0,27,64,.20),
    inset 0 1px 0 rgba(255,255,255,.12);
}

.rc-contact-toast-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #dff7ff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rc-contact-toast-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.rc-contact-toast-copy strong {
  font-size: 15px;
  font-weight: 780;
  letter-spacing: -.01em;
}

.rc-contact-toast-copy span {
  color: rgba(226,239,255,.72);
  font-size: 13px;
  line-height: 1.4;
}

.rc-contact-toast-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  transform-origin: left center;
  transform: scaleX(0);
  background:
    linear-gradient(90deg, rgba(112,199,255,.30), #9de9ff, rgba(111,210,194,.75));
  box-shadow: 0 0 10px rgba(128,220,255,.35);
}

.rc-contact-toast.is-visible .rc-contact-toast-progress {
  animation: rcContactToastProgress 4.2s linear forwards;
}

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

@media (max-width: 850px) {
  .rc-contact-toast {
    left: 16px;
    right: 16px;
    bottom: max(18px, env(safe-area-inset-bottom));
    width: auto;
    min-height: 82px;
    padding: 14px 15px;
    grid-template-columns: 44px minmax(0,1fr);
    border-radius: 18px;
  }

  .rc-contact-toast-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rc-contact-promo-button,
  .rc-contact-promo-button::before,
  .rc-contact-toast-progress {
    animation: none !important;
  }

  .rc-contact-toast {
    transition: opacity .15s ease, visibility .15s ease;
    transform: none;
  }
}

/* =========================================================
   V28 — PROJECTS PAGINATOR BOTTOM SPACING
   На мобільному пагінатор ближче до нижньої межі блоку.
   ========================================================= */
@media (max-width: 720px) {
  .rc-projects {
    padding-bottom: 36px;
  }
}

@media (max-width: 520px) {
  .rc-projects {
    padding-bottom: 30px;
  }
}

/* =========================================================
   V29 — CONTENT CLEANUP + TELEGRAM CTA + BRIGHTER CTA HOVERS
   ========================================================= */

/* Two compact statistics capsules after removing the cases card. */
.rc-stats-band .rc-hero-stats,
.rc-hero-stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(650px, 72vw);
}

/* Remove the artificial heading offsets and bring section copy closer
   to the beginning of each block while preserving comfortable breathing room. */
.rc-projects {
  padding-top: 58px;
}

.rc-services-carousel {
  padding-top: 58px;
}

.rc-projects-heading,
.rc-services-heading {
  padding-top: 0 !important;
}

.rc-contact-promo {
  padding-top: 30px;
}

/* Kicker labels are removed from markup; headings no longer reserve their space. */
.rc-contact-promo h2 {
  margin-top: 0;
}

.rc-projects-head,
.rc-services-head-carousel {
  margin-top: 0;
}

/* Contact CTA group: primary form action + direct Telegram action. */
.rc-contact-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.rc-contact-telegram {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-width: 218px;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  color: #fff;
  font-weight: 780;
  text-decoration: none;
  border: 1px solid rgba(158, 221, 255, .34);
  border-radius: 999px;
  background:
    linear-gradient(118deg, #0b3159 0%, #0f5486 30%, #1688bb 52%, #0d6198 74%, #0b3159 100%);
  background-size: 220% 220%;
  box-shadow:
    0 18px 38px rgba(0, 12, 33, .28),
    0 7px 18px rgba(0, 63, 107, .20),
    inset 0 1px 0 rgba(255, 255, 255, .16);
  animation: rcHeroCtaGradient 7.8s ease-in-out infinite;
  transition:
    transform .24s ease,
    border-color .24s ease,
    box-shadow .24s ease,
    background .24s ease;
}

.rc-contact-telegram > span,
.rc-contact-telegram > svg {
  position: relative;
  z-index: 2;
}

.rc-contact-telegram::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(105deg, transparent 28%, rgba(255,255,255,0) 38%, rgba(255,255,255,.17) 49%, rgba(196,235,255,.10) 54%, rgba(255,255,255,0) 66%, transparent 75%);
  transform: translateX(-145%);
  animation: rcHeroCtaSheen 5.8s cubic-bezier(.4,0,.2,1) infinite;
}

.rc-contact-telegram svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  stroke: none;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .16));
  transition: transform .24s ease;
}

/* Keep hover states saturated blue instead of washing the buttons toward grey. */
.rc-hero-cta:hover,
.rc-contact-promo-button:hover {
  background:
    linear-gradient(118deg, #123a6c 0%, #17558f 22%, #247ec1 48%, #3199d7 58%, #1a63a4 78%, #123a6c 100%);
  background-size: 230% 230%;
  border-color: rgba(190, 229, 255, .58);
  box-shadow:
    0 24px 54px rgba(0, 20, 53, .38),
    0 9px 24px rgba(0, 75, 139, .25),
    0 0 34px rgba(63, 171, 255, .22),
    inset 0 1px 0 rgba(255,255,255,.24),
    inset 0 -1px 0 rgba(0,0,0,.13);
}

.rc-contact-telegram:hover {
  transform: translateY(-3px) scale(1.012);
  border-color: rgba(193, 235, 255, .62);
  background:
    linear-gradient(118deg, #0d4778 0%, #1475ad 28%, #22a6d8 51%, #2cb7e4 60%, #1678b0 79%, #0d4778 100%);
  background-size: 220% 220%;
  box-shadow:
    0 24px 52px rgba(0, 16, 42, .35),
    0 9px 24px rgba(0, 103, 164, .28),
    0 0 32px rgba(69, 193, 244, .20),
    inset 0 1px 0 rgba(255,255,255,.22);
}

.rc-contact-telegram:hover svg {
  transform: translate(2px, -1px) rotate(-4deg);
}

.rc-contact-telegram:active {
  transform: translateY(-1px) scale(.997);
}

@media (max-width: 850px) {
  .rc-projects,
  .rc-services-carousel {
    padding-top: 30px;
  }

  .rc-contact-promo {
    padding-top: 24px;
  }

  .rc-contact-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .rc-contact-promo-button,
  .rc-contact-telegram {
    width: 100%;
    min-width: 0;
  }

  .rc-stats-band .rc-hero-stats,
  .rc-hero-stats {
    width: min(100%, 420px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .rc-projects,
  .rc-services-carousel {
    padding-top: 22px;
  }

  .rc-contact-promo {
    padding-top: 20px;
  }

  .rc-stats-band .rc-hero-stats,
  .rc-hero-stats {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .rc-hero-stat {
    min-height: 100px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rc-contact-telegram,
  .rc-contact-telegram::before {
    animation: none !important;
  }
}

/* =========================================================
   V30 — MOBILE PROJECT CONTROLS + PRESELECTED SERVICES + FAB TELEGRAM
   ========================================================= */

/* Desktop keeps the familiar project arrows in the section header. */
.rc-projects-controls-mobile {
  display: none;
}

/* The four main hero offers are actionable service shortcuts. */
.rc-service[data-contact-service] {
  cursor: pointer;
}

.rc-service[data-contact-service]:focus-visible {
  outline: none;
}

.rc-service[data-contact-service]:focus-visible .rc-hover {
  filter:
    drop-shadow(0 10px 22px rgba(0, 22, 76, .22))
    drop-shadow(0 0 18px rgba(132, 199, 255, .32));
}

/* When the client comes from a service icon, show the chosen offer as a
   read-only premium capsule and remove the service selector from the task. */
.rc-contact-selected-service {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 16px;
  border: 1px solid rgba(27, 91, 166, .12);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(29, 95, 184, .075), rgba(88, 164, 239, .035)),
    rgba(248, 251, 255, .92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .72),
    0 10px 26px rgba(13, 52, 107, .045);
}

.rc-contact-selected-service[hidden],
.rc-contact-service-field[hidden] {
  display: none !important;
}

.rc-contact-selected-service > span {
  color: rgba(17, 50, 96, .54);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.rc-contact-selected-service > strong {
  color: #123c78;
  font-size: 14px;
  font-weight: 800;
  text-align: right;
}

/* Direct Telegram shortcut above the fixed contact-form button. */
.rc-contact-telegram-fab {
  position: fixed;
  right: max(22px, env(safe-area-inset-right));
  bottom: 94px;
  z-index: 189;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(166, 224, 255, .38);
  border-radius: 50%;
  background:
    linear-gradient(145deg, #0d5f99 0%, #168dc4 54%, #0e6fa9 100%);
  box-shadow:
    0 18px 42px rgba(0, 39, 75, .28),
    0 0 24px rgba(62, 177, 235, .13),
    inset 0 1px 0 rgba(255, 255, 255, .20);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(18px) scale(.92);
  transition:
    opacity .25s ease,
    visibility .25s ease,
    transform .25s ease,
    box-shadow .22s ease,
    background .22s ease,
    border-color .22s ease;
}

.rc-contact-telegram-fab.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.rc-contact-telegram-fab:hover {
  transform: translateY(-3px) scale(1.035);
  border-color: rgba(201, 239, 255, .72);
  background:
    linear-gradient(145deg, #106ca9 0%, #20a9dd 54%, #117eb9 100%);
  box-shadow:
    0 23px 48px rgba(0, 44, 82, .34),
    0 0 30px rgba(62, 190, 244, .21),
    inset 0 1px 0 rgba(255, 255, 255, .25);
}

.rc-contact-telegram-fab svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
  filter: drop-shadow(0 2px 5px rgba(0, 31, 66, .22));
  transition: transform .22s ease;
}

.rc-contact-telegram-fab:hover svg {
  transform: translate(1px, -1px) rotate(-4deg);
}

/* Put project carousel arrows on the project card on mobile rather than above
   and underneath the "Наші проекти" heading. */
@media (max-width: 720px) {
  .rc-projects-controls-desktop {
    display: none !important;
  }

  .rc-projects-viewport {
    position: relative;
  }

  .rc-projects-controls-mobile {
    position: absolute;
    z-index: 35;
    top: 128px !important;
    left: 10px;
    right: 10px;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    pointer-events: none;
  }

  .rc-projects-controls-mobile .rc-project-arrow {
    width: 44px;
    height: 44px;
    pointer-events: auto;
    color: #fff;
    border-color: rgba(212, 235, 255, .40);
    background: rgba(9, 47, 95, .72);
    box-shadow:
      0 12px 28px rgba(3, 25, 58, .24),
      inset 0 1px 0 rgba(255, 255, 255, .14);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }

  .rc-projects-controls-mobile .rc-project-arrow:hover:not(:disabled) {
    color: #fff;
    border-color: rgba(218, 240, 255, .72);
    background: #0d5cb7;
    transform: scale(1.045);
  }

  .rc-projects-controls-mobile .rc-project-arrow:disabled {
    opacity: .30;
  }
}

@media (max-width: 520px) {
  .rc-projects-controls-mobile {
    top: 110px !important;
    left: 8px;
    right: 8px;
  }

  .rc-projects-controls-mobile .rc-project-arrow {
    width: 42px;
    height: 42px;
  }

  .rc-contact-telegram-fab {
    width: 56px;
    height: 56px;
    right: 16px;
    bottom: 82px;
  }

  .rc-contact-telegram-fab svg {
    width: 24px;
    height: 24px;
  }

  .rc-contact-selected-service {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    padding: 12px 14px;
  }

  .rc-contact-selected-service > strong {
    text-align: left;
  }

  /* Longer requested result captions need a little extra breathing room. */
  .rc-hero-stat {
    min-height: 116px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rc-contact-telegram-fab,
  .rc-contact-telegram-fab svg {
    transition: none !important;
  }
}

/* =========================================================
   V31 — PRESELECTED SERVICE SPACING + TELEGRAM FAB ALIGNMENT
   ========================================================= */

/* Keep a clear gap between the auto-selected service capsule and
   the first editable field in the contact sheet. */
.rc-contact-selected-service {
  margin-bottom: 14px;
}

/* Telegram FAB uses exactly the same outer dimensions as the form FAB. */
.rc-contact-telegram-fab,
.rc-contact-fab {
  width: 60px;
  height: 60px;
}

/* Optical centering: the Telegram paper-plane path is slightly right-heavy. */
.rc-contact-telegram-fab svg {
  width: 25px;
  height: 25px;
  transform: translateX(-1px);
  transform-origin: center;
}

.rc-contact-telegram-fab:hover svg {
  transform: translate(0, -1px) rotate(-4deg);
}

@media (max-width: 850px) {
  .rc-contact-telegram-fab,
  .rc-contact-fab {
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 520px) {
  .rc-contact-selected-service {
    margin-bottom: 16px;
  }

  .rc-contact-telegram-fab,
  .rc-contact-fab {
    width: 56px;
    height: 56px;
  }

  .rc-contact-telegram-fab svg,
  .rc-contact-fab svg {
    width: 24px;
    height: 24px;
  }
}

/* =========================================================
   V32 — REAL PROJECT ARTWORK + RESULTS SECTION
   ========================================================= */

/* Project cards are previews only for now: keep all hover polish, but remove
   link behaviour and use the supplied project artwork as the card visual. */
.rc-project-link.is-placeholder {
  cursor: default;
}

.rc-project-visual-image {
  position: relative;
  overflow: hidden;
  background: #0a203e;
}

.rc-project-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.002);
  transition: transform .55s cubic-bezier(.2,.72,.2,1), filter .35s ease;
}

.rc-project-link.is-placeholder:hover .rc-project-photo {
  transform: scale(1.025);
  filter: saturate(1.035) contrast(1.015);
}

.rc-project-more-disabled {
  opacity: .62;
}

.rc-project-more-disabled::after {
  content: "";
}

/* Results block in the same premium dark language as the surrounding site
   sections, now used for real published cases. */
.rc-results {
  position: relative;
  z-index: 20;
  overflow: hidden;
  padding: 5px 0;
  color: #f4f8ff;
  background:
    radial-gradient(circle at 13% 18%, rgba(39,109,203,.16), transparent 28%),
    radial-gradient(circle at 89% 80%, rgba(38,116,219,.12), transparent 27%),
    linear-gradient(145deg, #081a33 0%, #0a203e 52%, #07182f 100%);
}

.rc-results::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1760px, calc(100% - 64px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(151,199,255,.14) 16%, rgba(151,199,255,.14) 84%, transparent);
}

.rc-results-shell {
  position: relative;
  width: min(1760px, calc(100% - 64px));
  margin: 0 auto;
}

.rc-results-heading h2 {
  margin: 0;
  color: rgba(255,255,255,.98);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 5vw, 82px);
  font-weight: 700;
  line-height: .95;
  letter-spacing: -.045em;
}

.rc-results-heading p {
  max-width: 760px;
  margin: 16px 0 0;
  color: rgba(222,235,252,.62);
  font-size: clamp(16px, 1.15vw, 20px);
  line-height: 1.6;
}

.rc-result-case {
  margin-top: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.rc-result-copy {
  min-width: 0;
  border-radius: 32px;
  border: 1px solid rgba(176,207,244,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.03));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 22px 58px rgba(0, 12, 33, .22);
}

.rc-result-copy {
  display: flex;
  flex-direction: column;
  padding: 32px;
}

.rc-result-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding: 10px 14px;
  border-radius: 999px;
  color: #9fd1ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  background: rgba(61, 132, 223, .12);
  border: 1px solid rgba(148, 200, 255, .18);
}

.rc-result-copy h3 {
  margin: 18px 0 0;
  color: #fff;
  font-size: clamp(30px, 2.8vw, 48px);
  line-height: 1.02;
  letter-spacing: -.04em;
}

.rc-result-copy > p {
  margin: 18px 0 0;
  color: rgba(221,236,255,.72);
  font-size: 17px;
  line-height: 1.68;
}

.rc-result-tags {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.rc-result-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  color: #f3f8ff;
  font-size: 13px;
  font-weight: 700;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(160, 203, 255, .14);
}

.rc-result-metrics {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.rc-result-metric {
  min-height: 118px;
  padding: 18px 18px 16px;
  border-radius: 22px;
  border: 1px solid rgba(163, 204, 255, .12);
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.03));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
}

.rc-result-metric strong {
  display: block;
  color: #ffffff;
  font-size: clamp(28px, 2.6vw, 40px);
  line-height: .95;
  letter-spacing: -.05em;
}

.rc-result-metric span {
  display: block;
  margin-top: 10px;
  color: rgba(212,230,251,.70);
  font-size: 14px;
  line-height: 1.4;
}

.rc-result-points {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.rc-result-points li {
  position: relative;
  padding-left: 20px;
  color: rgba(228,239,255,.80);
  font-size: 15px;
  line-height: 1.58;
}

.rc-result-points li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #78b8ff;
  box-shadow: 0 0 0 6px rgba(120, 184, 255, .10);
}

.rc-result-note {
  margin-top: 22px;
  padding: 14px 18px;
  border-radius: 18px;
  color: rgba(226,239,255,.78);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(10, 43, 87, .72);
  border: 1px solid rgba(145, 194, 251, .12);
}


@media (max-width: 1180px) {
  .rc-result-case {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 850px) {
  .rc-results {
    padding: 5px 0;
  }

  .rc-results-shell {
    width: min(100% - 36px, 1760px);
  }

  .rc-results::before {
    width: calc(100% - 36px);
  }

  .rc-results-heading p {
    margin-top: 12px;
  }

  .rc-result-case {
    margin-top: 26px;
    gap: 18px;
  }

  .rc-result-copy {
    border-radius: 28px;
  }

  .rc-result-copy {
    padding: 24px;
  }

  .rc-result-metrics {
    grid-template-columns: 1fr;
  }

  .rc-result-metric {
    min-height: 0;
  }
}

@media (max-width: 520px) {
  .rc-results {
    padding: 5px 0;
  }

  .rc-results-shell {
    width: calc(100% - 32px);
  }

  .rc-results::before {
    width: calc(100% - 32px);
  }

  .rc-results-heading h2 {
    font-size: clamp(44px, 15vw, 62px);
  }

  .rc-results-heading p {
    font-size: 15px;
  }

  .rc-result-copy {
    border-radius: 22px;
  }

  .rc-result-copy {
    padding: 20px 18px;
  }

  .rc-result-kicker {
    font-size: 11px;
    letter-spacing: .09em;
  }

  .rc-result-copy h3 {
    font-size: clamp(28px, 9vw, 38px);
  }

  .rc-result-copy > p {
    font-size: 15px;
  }

  .rc-result-tags {
    gap: 8px;
  }

  .rc-result-tags span {
    padding: 9px 12px;
    font-size: 12px;
  }

  .rc-result-metrics {
    margin-top: 22px;
    gap: 10px;
  }

  .rc-result-metric {
    padding: 16px 16px 14px;
    border-radius: 18px;
  }

  .rc-result-metric strong {
    font-size: 30px;
  }

  .rc-result-points {
    gap: 12px;
  }

  .rc-result-points li {
    padding-left: 18px;
    font-size: 14px;
  }

  .rc-result-points li::before {
    top: 8px;
  }

  .rc-result-note {
    padding: 12px 14px;
    border-radius: 15px;
    font-size: 11px;
  }

}

/* =========================================================
   V38 — COMPACT VERTICAL SECTION SPACING BELOW HERO
   Усі основні секції після hero мають 5px зверху та знизу.
   Горизонтальні відступи збережено без змін.
   ========================================================= */
.rc-stats-band,
.rc-projects,
.rc-results,
.rc-services-carousel,
.rc-contact-promo {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}

/* =========================================================
   V39 — SOCIAL MEDIA PROMOTION BLOCK
   ========================================================= */
.rc-social-promotion {
  position: relative;
  z-index: 20;
  overflow: hidden;
  padding: 5px 0;
  color: #f4f8ff;
  background:
    radial-gradient(circle at 12% 20%, rgba(49, 129, 225, .15), transparent 30%),
    radial-gradient(circle at 88% 76%, rgba(23, 92, 187, .12), transparent 28%),
    linear-gradient(145deg, #081a33 0%, #0a203e 52%, #07182f 100%);
}

.rc-social-promotion::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1760px, calc(100% - 64px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(151,199,255,.14) 16%, rgba(151,199,255,.14) 84%, transparent);
}

.rc-social-promotion-shell {
  position: relative;
  width: min(1760px, calc(100% - 64px));
  margin: 0 auto;
}

.rc-social-promotion-head {
  padding: 28px 0 22px;
}

.rc-social-promotion-head h2 {
  margin: 0;
  color: rgba(255,255,255,.98);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 5vw, 82px);
  font-weight: 700;
  line-height: .95;
  letter-spacing: -.045em;
}

.rc-social-promotion-head p {
  max-width: 780px;
  margin: 16px 0 0;
  color: rgba(222,235,252,.62);
  font-size: clamp(16px, 1.15vw, 20px);
  line-height: 1.6;
}

.rc-social-promotion-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  padding-bottom: 28px;
}

.rc-social-promotion-item {
  position: relative;
  min-width: 0;
  min-height: 235px;
  padding: 22px 20px;
  border: 1px solid rgba(176,207,244,.12);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.03));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.04),
    0 18px 44px rgba(0,12,33,.16);
  transition: transform .28s ease, border-color .28s ease, background .28s ease, box-shadow .28s ease;
}

.rc-social-promotion-item:hover {
  transform: translateY(-4px);
  border-color: rgba(135, 191, 255, .25);
  background:
    linear-gradient(180deg, rgba(63,132,218,.11), rgba(255,255,255,.035));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 24px 52px rgba(0,12,33,.22),
    0 0 30px rgba(53,139,239,.07);
}

.rc-social-promotion-number {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 14px;
  color: #9fd1ff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  background: rgba(62, 132, 222, .12);
  border: 1px solid rgba(148, 200, 255, .17);
}

.rc-social-promotion-item h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(20px, 1.55vw, 27px);
  line-height: 1.12;
  letter-spacing: -.025em;
}

.rc-social-promotion-item p {
  margin: 12px 0 0;
  color: rgba(215,232,252,.65);
  font-size: 14px;
  line-height: 1.58;
}

@media (max-width: 1240px) {
  .rc-social-promotion-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rc-social-promotion-item:last-child {
    grid-column: 1 / -1;
    min-height: 0;
  }
}

@media (max-width: 850px) {
  .rc-social-promotion-shell {
    width: min(100% - 36px, 1760px);
  }

  .rc-social-promotion::before {
    width: calc(100% - 36px);
  }

  .rc-social-promotion-head {
    padding: 22px 0 18px;
  }

  .rc-social-promotion-list {
    padding-bottom: 22px;
  }
}

@media (max-width: 620px) {
  .rc-social-promotion-shell {
    width: calc(100% - 32px);
  }

  .rc-social-promotion::before {
    width: calc(100% - 32px);
  }

  .rc-social-promotion-head h2 {
    font-size: clamp(42px, 14vw, 60px);
  }

  .rc-social-promotion-head p {
    font-size: 15px;
  }

  .rc-social-promotion-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .rc-social-promotion-item,
  .rc-social-promotion-item:last-child {
    grid-column: auto;
    min-height: 0;
    padding: 18px 17px;
    border-radius: 21px;
  }

  .rc-social-promotion-number {
    width: 40px;
    height: 40px;
    margin-bottom: 18px;
    border-radius: 13px;
  }

  .rc-social-promotion-item h3 {
    font-size: 23px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rc-social-promotion-item {
    transition: none !important;
  }
}

/* =========================================================
   V41 — SOCIAL MEDIA BEFORE/AFTER SHOWCASE
   ========================================================= */
.rc-social-proof {
  margin-top: 4px;
  padding: 0 0 30px;
}

.rc-social-proof-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 18px;
  align-items: end;
  margin-bottom: 18px;
}

.rc-social-proof-kicker,
.rc-social-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #9ec7ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.rc-social-proof-head h3 {
  margin: 12px 0 0;
  color: #ffffff;
  font-size: clamp(28px, 2.7vw, 44px);
  line-height: 1.04;
  letter-spacing: -.035em;
}

.rc-social-proof-head p {
  max-width: 760px;
  margin: 14px 0 0;
  color: rgba(222,235,252,.72);
  font-size: 15px;
  line-height: 1.65;
}

.rc-social-proof-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.rc-social-proof-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #eaf4ff;
  font-size: 13px;
  font-weight: 700;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(159,209,255,.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

.rc-social-proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}

.rc-social-proof-main {
  min-width: 0;
}

.rc-social-compare-card,
.rc-social-evidence-card {
  border: 1px solid rgba(176,207,244,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.028));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 18px 44px rgba(0,12,33,.16);
}

.rc-social-compare-card {
  padding: 20px;
  border-radius: 28px;
}

.rc-social-compare-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.rc-social-compare-top h3 {
  margin: 12px 0 0;
  color: #fff;
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.05;
  letter-spacing: -.03em;
}

.rc-social-compare-top p {
  max-width: 720px;
  margin: 12px 0 0;
  color: rgba(215,232,252,.68);
  font-size: 14px;
  line-height: 1.6;
}

.rc-social-toggle {
  flex: 0 0 auto;
  display: inline-flex;
  padding: 4px;
  border-radius: 999px;
  background: rgba(6, 17, 35, .6);
  border: 1px solid rgba(135, 191, 255, .18);
}

.rc-social-toggle button,
.rc-social-compare-action {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.rc-social-toggle button {
  min-width: 88px;
  padding: 10px 16px;
  border-radius: 999px;
  color: rgba(228,240,255,.7);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
  background: transparent;
  transition: background .25s ease, color .25s ease, box-shadow .25s ease;
}

.rc-social-toggle button.is-active {
  color: #fff;
  background: linear-gradient(135deg, #3e8ae6 0%, #69a5ff 100%);
  box-shadow: 0 8px 20px rgba(34, 98, 188, .36);
}

.rc-social-compare-frame {
  position: relative;
  width: 100%;
  display: block;
  margin-top: 18px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(144,194,255,.16);
  border-radius: 24px;
  background: rgba(4, 13, 27, .8);
  cursor: pointer;
}

.rc-social-compare-frame img {
  display: block;
  width: 100%;
  max-height: 760px;
  object-fit: cover;
}

.rc-social-compare-hint,
.rc-social-compare-state {
  position: absolute;
  z-index: 2;
}

.rc-social-compare-hint {
  top: 14px;
  left: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #e8f3ff;
  font-size: 12px;
  font-weight: 700;
  background: rgba(6, 17, 35, .68);
  border: 1px solid rgba(178,209,255,.17);
  backdrop-filter: blur(8px);
}

.rc-social-compare-state {
  right: 14px;
  bottom: 14px;
  min-width: 92px;
  padding: 10px 14px;
  border-radius: 999px;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.rc-social-compare-state--before {
  color: #f1f6ff;
  background: rgba(117, 106, 255, .72);
  border: 1px solid rgba(191,185,255,.45);
}

.rc-social-compare-state--after {
  color: #f4fffb;
  background: rgba(28, 164, 118, .76);
  border: 1px solid rgba(135, 241, 202, .35);
}

.rc-social-compare-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 16px;
}

.rc-social-compare-stat-wrap {
  display: grid;
  gap: 6px;
}

.rc-social-compare-caption,
.rc-social-compare-secondary span {
  color: rgba(194,218,246,.62);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.rc-social-compare-stat-wrap strong,
.rc-social-compare-secondary strong {
  color: #fff;
  font-size: 17px;
  line-height: 1.35;
}

.rc-social-compare-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  color: #f7fbff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
  background: linear-gradient(135deg, rgba(62, 138, 230, .96), rgba(83, 176, 255, .92));
  box-shadow: 0 16px 30px rgba(28, 95, 187, .26);
}

.rc-social-compare-progress {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
  padding-top: 18px;
  color: rgba(205,225,247,.55);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.rc-social-compare-progress::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
}

.rc-social-compare-progress-thumb {
  position: absolute;
  top: 0;
  width: calc(50% - 4px);
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #7d72ff, #4bd7ff);
  transition: transform .28s ease;
}

.rc-social-compare-progress-thumb--after {
  transform: translateX(calc(100% + 8px));
  background: linear-gradient(90deg, #17bb7a, #71f3c4);
}

.rc-social-compare-secondary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(4, 13, 27, .46);
  border: 1px solid rgba(255,255,255,.06);
}

.rc-social-evidence-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.rc-social-evidence-card {
  min-width: 0;
  overflow: hidden;
  border-radius: 22px;
}

.rc-social-evidence-media {
  padding: 12px 12px 0;
}

.rc-social-evidence-media img {
  display: block;
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 18px;
  background: rgba(4, 13, 27, .74);
}

.rc-social-evidence-card figcaption {
  display: grid;
  gap: 6px;
  padding: 14px 14px 16px;
}

.rc-social-evidence-card strong {
  color: #fff;
  font-size: 16px;
  line-height: 1.3;
}

.rc-social-evidence-card span {
  color: rgba(214,231,252,.64);
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 1240px) {
  .rc-social-proof-head {
    grid-template-columns: 1fr;
  }

  .rc-social-proof-badges {
    justify-content: flex-start;
  }

  .rc-social-evidence-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 850px) {
  .rc-social-proof {
    padding-bottom: 24px;
  }

  .rc-social-proof-head {
    margin-bottom: 14px;
  }

  .rc-social-compare-top,
  .rc-social-compare-footer,
  .rc-social-compare-secondary {
    flex-direction: column;
    align-items: flex-start;
  }

  .rc-social-toggle {
    width: 100%;
  }

  .rc-social-toggle button {
    flex: 1 1 auto;
  }

  .rc-social-compare-action {
    width: 100%;
  }

  .rc-social-evidence-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rc-social-evidence-media img {
    height: 300px;
  }
}

@media (max-width: 620px) {
  .rc-social-proof-head h3 {
    font-size: clamp(26px, 8vw, 34px);
  }

  .rc-social-proof-badges span {
    min-height: 40px;
    padding: 9px 13px;
    font-size: 12px;
  }

  .rc-social-compare-card,
  .rc-social-evidence-card {
    border-radius: 21px;
  }

  .rc-social-compare-card {
    padding: 16px;
  }

  .rc-social-compare-top h3 {
    font-size: 24px;
  }

  .rc-social-compare-top p,
  .rc-social-evidence-card span,
  .rc-social-proof-head p {
    font-size: 14px;
  }

  .rc-social-compare-frame {
    border-radius: 18px;
  }

  .rc-social-compare-hint {
    top: 10px;
    left: 10px;
    padding: 7px 10px;
    font-size: 11px;
  }

  .rc-social-compare-state {
    right: 10px;
    bottom: 10px;
    min-width: 84px;
    padding: 8px 12px;
    font-size: 12px;
  }

  .rc-social-evidence-grid {
    grid-template-columns: 1fr;
  }

  .rc-social-evidence-media {
    padding: 10px 10px 0;
  }

  .rc-social-evidence-media img {
    height: auto;
    max-height: 440px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rc-social-toggle button,
  .rc-social-compare-progress-thumb {
    transition: none !important;
  }
}

/* =========================================================
   V43 — MOBILE DEPTH CAROUSEL FOR SOCIAL PROOF SCREENSHOTS
   React Bits inspired DepthCarousel. Desktop keeps the grid;
   phones get a swipeable stacked 3D carousel.
   ========================================================= */
.depth-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: var(--dc-perspective, 1400px);
  perspective-origin: 50% 50%;
  touch-action: pan-y;
  outline: none;
  user-select: none;
  -webkit-user-select: none;
  cursor: grab;
}

.depth-carousel:active {
  cursor: grabbing;
}

.depth-carousel:focus-visible {
  outline: 2px solid rgba(151, 199, 255, .58);
  outline-offset: 4px;
  border-radius: 18px;
}

.depth-carousel__stage {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}

.depth-carousel__card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center center;
  overflow: hidden;
  background: #071426;
  border: 1px solid rgba(158, 205, 255, .16);
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, .68),
    0 8px 20px -10px rgba(0, 0, 0, .5),
    inset 0 1px 0 rgba(255,255,255,.05);
  will-change: transform, opacity, filter;
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.depth-carousel__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
}

.depth-carousel__tint {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.depth-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3000;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(178, 216, 255, .24);
  border-radius: 999px;
  background: rgba(8, 29, 58, .72);
  backdrop-filter: blur(10px);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(0, 11, 32, .32);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.depth-carousel__arrow:hover {
  background: rgba(28, 95, 173, .9);
  border-color: rgba(196, 228, 255, .48);
}

.depth-carousel__arrow:active {
  transform: translateY(-50%) scale(.94);
}

.depth-carousel__arrow--prev {
  left: 4px;
}

.depth-carousel__arrow--next {
  right: 4px;
}

.depth-carousel__dots {
  position: absolute;
  bottom: 7px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3000;
  display: flex;
  gap: 7px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(6, 21, 43, .56);
  border: 1px solid rgba(151, 199, 255, .12);
  backdrop-filter: blur(8px);
}

.depth-carousel__dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, .30);
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}

.depth-carousel__dot.is-active {
  width: 20px;
  background: #87c2ff;
}

.rc-social-evidence-mobile {
  display: none;
}

@media (max-width: 620px) {
  .rc-social-evidence-grid--desktop {
    display: none !important;
  }

  .rc-social-evidence-mobile {
    display: block;
    margin-top: 14px;
    padding: 16px 12px 14px;
    border-radius: 22px;
    border: 1px solid rgba(176, 207, 244, .12);
    background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.025));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 18px 44px rgba(0,12,33,.16);
    overflow: hidden;
  }

  .rc-social-evidence-mobile-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 2px 2px 0;
  }

  .rc-social-evidence-mobile-head > div {
    min-width: 0;
    display: grid;
    gap: 5px;
  }

  .rc-social-evidence-mobile-head > div > span {
    color: #9ec7ff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
  }

  .rc-social-evidence-mobile-head strong {
    color: #fff;
    font-size: 16px;
    line-height: 1.35;
  }

  .rc-social-evidence-mobile-count {
    flex: 0 0 auto;
    padding: 7px 9px;
    border-radius: 999px;
    color: rgba(233, 244, 255, .8);
    font-size: 11px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    background: rgba(6, 21, 43, .52);
    border: 1px solid rgba(154, 204, 255, .13);
  }

  .rc-social-depth-wrap {
    position: relative;
    height: 430px;
    margin: 8px -4px 0;
  }

  .rc-social-depth-carousel {
    min-height: 430px;
  }

  .rc-social-depth-carousel .depth-carousel__img {
    object-fit: contain;
    object-position: center;
    background: #0a0d12;
  }

  .rc-social-evidence-mobile-caption {
    display: grid;
    gap: 5px;
    margin-top: 4px;
    padding: 13px 14px;
    border-radius: 17px;
    background: rgba(5, 20, 42, .62);
    border: 1px solid rgba(156, 204, 255, .10);
  }

  .rc-social-evidence-mobile-caption strong {
    color: #fff;
    font-size: 15px;
    line-height: 1.3;
  }

  .rc-social-evidence-mobile-caption span {
    color: #91c9ff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
  }
}

@media (max-width: 390px) {
  .rc-social-depth-wrap,
  .rc-social-depth-carousel {
    height: 410px;
    min-height: 410px;
  }

  .depth-carousel__arrow {
    width: 38px;
    height: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .depth-carousel__card {
    will-change: auto;
  }

  .depth-carousel__arrow,
  .depth-carousel__dot {
    transition: none;
  }
}


/* v46 — bottom before/after capsule switcher */
.rc-social-compare-top {
  grid-template-columns: 1fr;
}

.rc-social-toggle {
  display: none !important;
}

.rc-social-compare-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  margin-top: 14px;
  padding: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(7, 23, 51, .96), rgba(6, 21, 47, .92));
  border: 1px solid rgba(111, 165, 240, .18);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.05),
    0 12px 30px rgba(0, 8, 24, .26);
}

.rc-social-compare-switch button {
  appearance: none;
  border: 0;
  min-width: 88px;
  height: 42px;
  padding: 0 22px;
  border-radius: 999px;
  background: transparent;
  color: rgba(232, 241, 255, .92);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -.01em;
  cursor: pointer;
  transition:
    background .24s ease,
    color .24s ease,
    box-shadow .24s ease,
    transform .24s ease;
}

.rc-social-compare-switch button:hover {
  color: #ffffff;
}

.rc-social-compare-switch button.is-active {
  color: #ffffff;
  background: linear-gradient(180deg, #78b4ff 0%, #5a9dff 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.18),
    0 10px 24px rgba(77, 145, 255, .32);
}

.rc-social-compare-progress,
.rc-social-compare-progress-thumb {
  display: none !important;
}

@media (max-width: 620px) {
  .rc-social-compare-switch {
    width: 100%;
    justify-content: center;
    padding: 7px;
  }

  .rc-social-compare-switch button {
    flex: 1 1 0;
    min-width: 0;
    height: 40px;
    font-size: 15px;
  }
}
.flip-card {
  --fc-w: 300px;
  --fc-h: 400px;
  --fc-radius: 22px;
  --fc-bg: #27272a;
  --fc-ink: #f5f5f5;
  --fc-shadow: #000000;
  --fc-shadow-o: 0.45;
  --fc-glare: 0.22;

  position: relative;
  display: inline-block;
  width: var(--fc-w);
  max-width: 100%;
  height: var(--fc-h);
  border-radius: var(--fc-radius);
  outline: none;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: pan-y;
}

.flip-card[data-axis='x'] { touch-action: pan-x; }
.flip-card[data-draggable] { cursor: grab; }
.flip-card[data-dragging] { cursor: grabbing; }
.flip-card[data-disabled] { cursor: default; opacity: 0.6; }

.flip-card__shadow {
  position: absolute;
  inset: 12% 9% -5%;
  border-radius: var(--fc-radius);
  background: color-mix(in srgb, var(--fc-shadow) calc(var(--fc-shadow-o) * 100%), transparent);
  filter: blur(22px);
  pointer-events: none;
}

.flip-card__rotor {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}

.flip-card__face {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: var(--fc-radius);
  background: var(--fc-bg);
  color: var(--fc-ink);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.flip-card__face img { -webkit-user-drag: none; }
.flip-card__face--back { transform: rotateY(180deg); }
.flip-card[data-axis='x'] .flip-card__face--back { transform: rotateX(180deg); }

.flip-card__glare {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle farthest-side at var(--fc-gx, 50%) var(--fc-gy, 50%),
    rgba(255, 255, 255, var(--fc-glare)) 0%,
    rgba(255, 255, 255, calc(var(--fc-glare) * 0.76)) 12%,
    rgba(255, 255, 255, calc(var(--fc-glare) * 0.5)) 26%,
    rgba(255, 255, 255, calc(var(--fc-glare) * 0.28)) 42%,
    rgba(255, 255, 255, calc(var(--fc-glare) * 0.12)) 60%,
    rgba(255, 255, 255, calc(var(--fc-glare) * 0.04)) 78%,
    rgba(255, 255, 255, 0) 100%
  );
  opacity: var(--fc-sheen, 0);
  pointer-events: none;
}

.flip-card[data-fade] .flip-card__face {
  transform: none;
  opacity: 0;
  backface-visibility: visible;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
}

.flip-card[data-fade='front'] .flip-card__face--front,
.flip-card[data-fade='back'] .flip-card__face--back { opacity: 1; }

/* =========================================================
   V47 — React Bits FlipCard for social before/after case
   ========================================================= */
.rc-social-flip-wrap {
  width: 100%;
  margin-top: 18px;
  display: flex;
  justify-content: center;
  perspective: 1250px;
}

.rc-social-flip-card {
  width: 100% !important;
  max-width: 1180px;
  height: clamp(420px, 53vw, 660px) !important;
}

.rc-social-flip-card .flip-card__face {
  border: 1px solid rgba(144, 194, 255, .16);
  background: #07172f;
}

.rc-social-flip-face {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #07172f;
}

.rc-social-flip-face img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #07172f;
  pointer-events: none;
}

.rc-social-flip-card:focus-visible {
  outline: 2px solid rgba(122, 183, 255, .72);
  outline-offset: 5px;
}

.rc-social-flip-card .rc-social-compare-state {
  z-index: 5;
}

@media (max-width: 850px) {
  .rc-social-flip-card {
    height: clamp(380px, 72vw, 560px) !important;
  }
}

@media (max-width: 620px) {
  .rc-social-flip-wrap {
    margin-top: 14px;
  }

  .rc-social-flip-card {
    width: 100% !important;
    height: clamp(320px, 98vw, 430px) !important;
  }

  .rc-social-flip-card .flip-card__shadow {
    inset: 10% 8% -4%;
    filter: blur(18px);
  }
}

/* =========================================================
   V48 — RESULTS SHOWCASE BY CASE
   ========================================================= */
.rc-results-showcase {
  position: relative;
  margin-top: 28px;
  padding: 34px;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(159, 203, 255, .13);
  background:
    radial-gradient(circle at 92% 5%, rgba(73, 153, 255, .14), transparent 34%),
    linear-gradient(180deg, rgba(7, 29, 59, .76), rgba(5, 22, 47, .9));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .045),
    0 26px 70px rgba(0, 11, 31, .2);
}

.rc-results-showcase::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -170px;
  bottom: -220px;
  border-radius: 50%;
  border: 1px solid rgba(119, 185, 255, .12);
  box-shadow: 0 0 0 52px rgba(119, 185, 255, .025), 0 0 0 104px rgba(119, 185, 255, .018);
  pointer-events: none;
}

.rc-results-showcase-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: end;
}

.rc-results-showcase-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #8fc4ff;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.rc-results-showcase-kicker::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: .75;
}

.rc-results-showcase-head h3 {
  margin: 11px 0 0;
  color: #fff;
  font-size: clamp(36px, 4vw, 62px);
  line-height: .98;
  letter-spacing: -.05em;
}

.rc-results-showcase-head p {
  max-width: 760px;
  margin: 16px 0 0;
  color: rgba(218, 234, 252, .72);
  font-size: 15px;
  line-height: 1.65;
}

.rc-results-case-tabs {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(170px, 1fr));
  gap: 8px;
  padding: 7px;
  border-radius: 20px;
  border: 1px solid rgba(143, 195, 255, .13);
  background: rgba(3, 16, 36, .48);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
}

.rc-results-case-tabs button {
  min-width: 0;
  height: 58px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 16px;
  border: 0;
  border-radius: 15px;
  color: rgba(226, 240, 255, .68);
  background: transparent;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: color .22s ease, background .22s ease, transform .22s ease, box-shadow .22s ease;
}

.rc-results-case-tabs button:hover {
  color: #fff;
  background: rgba(255,255,255,.045);
}

.rc-results-case-tabs button.is-active {
  color: #fff;
  background: linear-gradient(135deg, rgba(80, 152, 245, .96), rgba(89, 178, 255, .86));
  box-shadow: 0 12px 28px rgba(37, 104, 191, .3), inset 0 1px 0 rgba(255,255,255,.17);
}

.rc-results-case-tabs button > span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  color: rgba(231, 243, 255, .78);
  font-size: 11px;
  font-weight: 850;
  background: rgba(255,255,255,.065);
  border: 1px solid rgba(255,255,255,.07);
}

.rc-results-case-tabs button.is-active > span {
  color: #fff;
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.12);
}

.rc-results-case-tabs button strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 800;
}

.rc-results-case-panel {
  position: relative;
  z-index: 1;
  margin-top: 26px;
  padding: 26px;
  border-radius: 26px;
  border: 1px solid rgba(163, 205, 252, .11);
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.022));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
  animation: rcResultsCaseIn .34s ease both;
}

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

.rc-results-case-meta {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  max-width: 900px;
}

.rc-results-case-index {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  color: #9bcaff;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: .06em;
  background: rgba(79, 148, 236, .09);
  border: 1px solid rgba(137, 191, 255, .16);
}

.rc-results-case-type {
  display: block;
  margin-top: 1px;
  color: #8fc4ff;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.rc-results-case-meta h4 {
  margin: 7px 0 0;
  color: #fff;
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1;
  letter-spacing: -.035em;
}

.rc-results-case-meta p {
  max-width: 760px;
  margin: 12px 0 0;
  color: rgba(212, 230, 250, .67);
  font-size: 14px;
  line-height: 1.65;
}

.rc-results-comparison {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 58px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-top: 24px;
}

.rc-case-shot {
  min-width: 0;
  margin: 0;
}

.rc-case-shot-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 22px;
  background: #06152b;
  border: 1px solid rgba(154, 201, 255, .13);
  box-shadow: 0 18px 42px rgba(0, 10, 29, .22);
}

.rc-case-shot-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.025);
}

.rc-case-shot-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #071426;
}

.rc-case-shot-badge {
  position: absolute;
  z-index: 3;
  top: 14px;
  left: 14px;
  display: inline-grid;
  place-items: center;
  min-width: 70px;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 22px rgba(0, 8, 24, .25);
}

.rc-case-shot--before .rc-case-shot-badge {
  background: rgba(114, 103, 244, .88);
  border: 1px solid rgba(203, 198, 255, .33);
}

.rc-case-shot--after .rc-case-shot-badge {
  background: rgba(29, 166, 116, .9);
  border: 1px solid rgba(155, 244, 211, .28);
}

.rc-case-shot figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 4px 0;
}

.rc-case-shot figcaption span {
  color: rgba(197, 219, 246, .57);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.rc-case-shot figcaption strong {
  color: #f5f9ff;
  font-size: 14px;
  line-height: 1.35;
  text-align: right;
}

.rc-results-comparison-arrow {
  display: grid;
  place-items: center;
  gap: 8px;
  color: #7fbaff;
}

.rc-results-comparison-arrow span {
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, transparent, rgba(126, 185, 255, .28));
}

.rc-results-comparison-arrow svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rc-results-comparison-arrow::after {
  content: "";
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, rgba(126, 185, 255, .28), transparent);
}

.rc-case-shot-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 30px;
  color: rgba(207, 229, 252, .65);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(70, 143, 234, .055), transparent 46%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.018) 0 10px, transparent 10px 20px),
    #06152b;
}

.rc-case-shot-placeholder svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: #7db9ff;
  stroke-width: 1.4;
  opacity: .8;
}

.rc-case-shot-placeholder span {
  color: #e9f3ff;
  font-size: 16px;
  font-weight: 800;
}

.rc-case-shot-placeholder small {
  color: rgba(183, 211, 243, .5);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.rc-results-case-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: rgba(191, 216, 245, .6);
  font-size: 12px;
  font-weight: 650;
}

.rc-results-case-note > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #77b8ff;
  box-shadow: 0 0 0 5px rgba(119, 184, 255, .08);
}

.rc-results-evidence {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(155, 199, 247, .09);
}

.rc-results-evidence-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 13px;
}

.rc-results-evidence-head span {
  color: #ecf5ff;
  font-size: 14px;
  font-weight: 800;
}

.rc-results-evidence-head small {
  color: rgba(180, 208, 240, .48);
  font-size: 11px;
}

.rc-results-evidence-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.rc-results-evidence-card {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(154, 201, 255, .1);
  background: rgba(4, 18, 39, .56);
}

.rc-results-evidence-media {
  height: 245px;
  padding: 8px;
}

.rc-results-evidence-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 12px;
  background: #0a0d12;
}

.rc-results-evidence-card figcaption {
  display: grid;
  gap: 4px;
  padding: 10px 11px 13px;
}

.rc-results-evidence-card strong {
  color: #eef6ff;
  font-size: 12px;
  line-height: 1.3;
}

.rc-results-evidence-card span {
  color: #86c0ff;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.35;
}

@media (max-width: 1100px) {
  .rc-results-showcase-head {
    grid-template-columns: 1fr;
  }

  .rc-results-case-tabs {
    width: min(100%, 520px);
  }

  .rc-results-evidence-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .rc-results-showcase {
    margin-top: 20px;
    padding: 24px 18px;
    border-radius: 26px;
  }

  .rc-results-showcase-head h3 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .rc-results-case-tabs {
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .rc-results-case-tabs button {
    height: 54px;
    padding: 0 12px;
  }

  .rc-results-case-panel {
    margin-top: 18px;
    padding: 18px;
    border-radius: 22px;
  }

  .rc-results-case-meta {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 13px;
  }

  .rc-results-case-index {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .rc-results-comparison {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 20px;
  }

  .rc-results-comparison-arrow {
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .rc-results-comparison-arrow span,
  .rc-results-comparison-arrow::after {
    width: 38px;
    height: 1px;
  }

  .rc-results-comparison-arrow span {
    background: linear-gradient(90deg, transparent, rgba(126, 185, 255, .28));
  }

  .rc-results-comparison-arrow::after {
    background: linear-gradient(90deg, rgba(126, 185, 255, .28), transparent);
  }

  .rc-results-comparison-arrow svg {
    transform: rotate(90deg);
  }

  .rc-case-shot-media {
    aspect-ratio: 4 / 3;
  }

  .rc-results-evidence-track {
    display: flex;
    gap: 11px;
    overflow-x: auto;
    margin: 0 -18px;
    padding: 0 18px 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .rc-results-evidence-track::-webkit-scrollbar {
    display: none;
  }

  .rc-results-evidence-card {
    flex: 0 0 210px;
    scroll-snap-align: start;
  }

  .rc-results-evidence-media {
    height: 260px;
  }
}

@media (max-width: 480px) {
  .rc-results-showcase {
    padding: 20px 14px;
  }

  .rc-results-showcase-head p {
    font-size: 14px;
  }

  .rc-results-case-tabs {
    padding: 5px;
    gap: 5px;
    border-radius: 17px;
  }

  .rc-results-case-tabs button {
    gap: 7px;
    height: 50px;
    padding: 0 9px;
    border-radius: 13px;
  }

  .rc-results-case-tabs button > span {
    width: 25px;
    height: 25px;
    border-radius: 8px;
  }

  .rc-results-case-tabs button strong {
    font-size: 12px;
  }

  .rc-results-case-panel {
    padding: 14px;
  }

  .rc-results-case-meta {
    grid-template-columns: 1fr;
  }

  .rc-results-case-index {
    display: none;
  }

  .rc-results-case-meta h4 {
    font-size: 28px;
  }

  .rc-case-shot-media {
    aspect-ratio: 1 / 1;
  }

  .rc-case-shot figcaption {
    display: grid;
    gap: 5px;
  }

  .rc-case-shot figcaption strong {
    text-align: left;
  }

  .rc-results-evidence-head small {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rc-results-case-panel {
    animation: none;
  }

  .rc-results-case-tabs button {
    transition: none;
  }
}

/* =========================================================
   V49 — RESULTS SHOWCASE IMAGE PREVIEW / LIGHTBOX
   ========================================================= */
.rc-case-shot-preview,
.rc-results-evidence-media {
  appearance: none;
  border: 0;
  width: 100%;
  margin: 0;
  cursor: zoom-in;
  position: relative;
  padding: 0;
  background: transparent;
  font: inherit;
  color: inherit;
  text-align: inherit;
}

.rc-case-shot-preview {
  display: block;
  height: 100%;
}

.rc-case-shot-preview img,
.rc-results-evidence-media img {
  transition: transform .28s ease, filter .28s ease;
}

.rc-case-shot-preview:hover img,
.rc-results-evidence-media:hover img {
  transform: scale(1.015);
}

.rc-shot-zoom-chip {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  color: #f4f9ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .03em;
  background: rgba(4, 17, 35, .74);
  border: 1px solid rgba(181, 217, 255, .18);
  box-shadow: 0 10px 26px rgba(0, 10, 25, .28);
  backdrop-filter: blur(10px);
}

.rc-shot-zoom-chip--small {
  right: 16px;
  bottom: 16px;
}

.rc-results-evidence-head small {
  color: rgba(199, 221, 246, .7);
}

.rc-results-evidence-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 2px 2px 8px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(123, 183, 255, .45) rgba(255,255,255,.03);
}

.rc-results-evidence-card {
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
}

.rc-results-evidence-media {
  display: block;
  height: 420px;
  padding: 10px;
}

.rc-results-evidence-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(16, 26, 44, .96), rgba(7, 15, 28, .98));
}

.rc-results-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 22px;
}

.rc-results-lightbox-backdrop {
  appearance: none;
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(1, 8, 19, .82);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.rc-results-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 1040px);
  max-height: min(92vh, 1120px);
  padding: 18px;
  border-radius: 26px;
  border: 1px solid rgba(164, 206, 255, .18);
  background: linear-gradient(180deg, rgba(10, 24, 47, .98), rgba(5, 17, 35, .98));
  box-shadow: 0 24px 90px rgba(0, 8, 19, .55);
}

.rc-results-lightbox-close {
  appearance: none;
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(183, 219, 255, .18);
  background: rgba(3, 13, 26, .8);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.rc-results-lightbox-frame {
  display: grid;
  place-items: center;
  width: 100%;
  max-height: calc(92vh - 86px);
  overflow: auto;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(14, 25, 42, .95), rgba(6, 14, 25, .98));
}

.rc-results-lightbox-frame img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: calc(92vh - 110px);
  object-fit: contain;
}

.rc-results-lightbox-caption {
  margin-top: 12px;
  color: rgba(231, 241, 252, .86);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 1100px) {
  .rc-results-evidence-card {
    flex-basis: 250px;
  }

  .rc-results-evidence-media {
    height: 380px;
  }
}

@media (max-width: 760px) {
  .rc-shot-zoom-chip {
    right: 12px;
    bottom: 12px;
    min-height: 28px;
    padding: 0 10px;
    font-size: 10px;
  }

  .rc-results-evidence-track {
    gap: 11px;
    margin: 0 -18px;
    padding: 2px 18px 8px;
  }

  .rc-results-evidence-card {
    flex-basis: 230px;
  }

  .rc-results-evidence-media {
    height: 340px;
    padding: 8px;
  }

  .rc-results-lightbox {
    padding: 12px;
  }

  .rc-results-lightbox-dialog {
    width: 100%;
    padding: 14px;
    border-radius: 22px;
  }
}

@media (max-width: 480px) {
  .rc-results-evidence-track {
    margin: 0 -14px;
    padding: 2px 14px 8px;
  }

  .rc-results-evidence-card {
    flex-basis: 214px;
  }

  .rc-results-evidence-media {
    height: 320px;
  }

  .rc-results-lightbox-caption {
    font-size: 12px;
  }
}

/* =========================================================
   V50 — RESULTS DETAIL BLOCKS / DO-PISLIA GROUPS
   ========================================================= */
.rc-results-detail-block {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(155, 199, 247, .09);
}

.rc-results-detail-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.rc-results-detail-head span {
  color: #ecf5ff;
  font-size: 15px;
  font-weight: 800;
}

.rc-results-detail-head small {
  color: rgba(199, 221, 246, .64);
  font-size: 11px;
  line-height: 1.5;
  text-align: right;
}

.rc-results-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.rc-results-highlight-grid.is-single {
  grid-template-columns: minmax(0, 1fr);
}

.rc-results-subcompare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.rc-results-media-card {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(154, 201, 255, .1);
  background: rgba(4, 18, 39, .56);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
}

.rc-results-media-card--compare {
  padding: 12px;
}

.rc-results-media-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.rc-results-media-topline small {
  color: rgba(197, 219, 246, .56);
  font-size: 11px;
  line-height: 1.35;
  text-align: right;
}

.rc-results-media-badge {
  display: inline-grid;
  place-items: center;
  min-width: 68px;
  height: 31px;
  padding: 0 14px;
  border-radius: 999px;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.rc-results-media-badge.is-before {
  background: rgba(114, 103, 244, .88);
  border: 1px solid rgba(203, 198, 255, .33);
}

.rc-results-media-badge.is-after {
  background: rgba(29, 166, 116, .9);
  border: 1px solid rgba(155, 244, 211, .28);
}

.rc-results-media-button {
  appearance: none;
  border: 0;
  width: 100%;
  margin: 0;
  cursor: zoom-in;
  position: relative;
  padding: 10px;
  background: transparent;
  font: inherit;
  color: inherit;
  text-align: inherit;
}

.rc-results-media-button--compare {
  padding: 0;
}

.rc-results-media-button img {
  display: block;
  width: 100%;
  height: 390px;
  object-fit: contain;
  object-position: center top;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(16, 26, 44, .96), rgba(7, 15, 28, .98));
  transition: transform .28s ease;
}

.rc-results-highlight-grid.is-single .rc-results-media-button img {
  height: 560px;
}

.rc-results-media-button:hover img,
.rc-case-shot-preview:hover img {
  transform: scale(1.012);
}

.rc-results-media-meta {
  display: grid;
  gap: 4px;
  padding: 12px 12px 14px;
}

.rc-results-media-card--compare .rc-results-media-meta {
  padding: 12px 0 2px;
}

.rc-results-media-meta strong {
  color: #eef6ff;
  font-size: 13px;
  line-height: 1.35;
}

.rc-results-media-meta span {
  color: #86c0ff;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.45;
}

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

  .rc-results-highlight-grid.is-single {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  .rc-results-detail-head {
    display: grid;
    gap: 6px;
  }

  .rc-results-detail-head small {
    text-align: left;
  }

  .rc-results-highlight-grid,
  .rc-results-subcompare {
    grid-template-columns: 1fr;
  }

  .rc-results-media-button img {
    height: 340px;
  }

  .rc-results-highlight-grid.is-single .rc-results-media-button img {
    height: 420px;
  }

  .rc-results-media-topline {
    align-items: start;
    flex-direction: column;
  }

  .rc-results-media-topline small {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .rc-results-media-card--compare {
    padding: 10px;
  }

  .rc-results-media-button img {
    height: 300px;
  }

  .rc-results-highlight-grid.is-single .rc-results-media-button img {
    height: 360px;
  }

  .rc-results-media-meta {
    padding: 11px 11px 13px;
  }
}

/* =========================================================
   V51 — RESULTS CASE STRUCTURE REFINEMENT
   ========================================================= */
.rc-results-comparison--detail {
  margin-top: 0;
}

.rc-results-comparison--detail .rc-case-shot {
  min-height: 100%;
}

.rc-results-media-card--feature {
  overflow: hidden;
}

.rc-results-media-button--feature {
  padding: 12px;
}

.rc-results-media-button--feature img {
  height: 540px;
}

.rc-results-media-meta--feature {
  padding-top: 0;
}

.rc-results-evidence-track--detail {
  margin: 0;
  padding: 2px 2px 8px;
}

@media (max-width: 760px) {
  .rc-results-media-button--feature img {
    height: 420px;
  }
}

@media (max-width: 480px) {
  .rc-results-media-button--feature img {
    height: 360px;
  }
}


@media (max-width: 900px) {
  .rc-categories-highlight {
    max-width: min(90vw, 620px);
    transform: translateY(34px);
  }

  .rc-categories-highlight span {
    font-size: clamp(15px, 4.5vw, 22px);
  }
}

@media (max-width: 640px) {
  .rc-categories-highlight {
    max-width: min(92vw, 440px);
    transform: translateY(26px);
  }

  .rc-categories-highlight span {
    font-size: clamp(14px, 4.8vw, 19px);
    line-height: 1.28;
  }
}


/* =========================================================
   V52 — FORBES NOTE AT THE BOTTOM OF HERO
   The award line is separated from the central brand group and
   kept inside a protected middle lane so it never sits beneath
   the CRM/CMS or Internet-store artwork at the hero edges.
   ========================================================= */
.rc-hero-award {
  position: absolute;
  z-index: 12;
  left: 50%;
  right: auto;
  top: auto;
  bottom: 24px;

  width: min(56vw, 900px);
  max-width: none;
  margin: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  transform: translateX(-50%);
  text-align: center;
  white-space: normal;
  pointer-events: none;
}

.rc-hero-award span {
  max-width: 100%;
  font-size: clamp(15px, 1.18vw, 22px);
  line-height: 1.24;
}

@media (max-width: 1200px) {
  .rc-hero-award {
    width: min(54vw, 680px);
    bottom: 22px;
  }
}

@media (max-width: 850px) {
  .rc-hero-award {
    width: min(52vw, 390px);
    bottom: 18px;
  }

  .rc-hero-award span {
    font-size: clamp(13px, 3.45vw, 17px);
    line-height: 1.25;
  }
}

@media (max-width: 520px) {
  .rc-hero-award {
    width: min(50vw, 220px);
    bottom: 15px;
  }

  .rc-hero-award span {
    font-size: clamp(12px, 3.45vw, 14px);
    line-height: 1.22;
  }
}

/* =========================================================
   V54 — GOLD FORBES NOTE ABOVE THE STATS CAPSULES
   ========================================================= */
.rc-stats-band .rc-stats-award {
  width: min(650px, 72vw);
  margin: 0 auto 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #e9be5a;
  background-image: linear-gradient(
    108deg,
    #b98524 0%,
    #e1b64f 24%,
    #fff0a9 43%,
    #fff7cf 50%,
    #e7bd57 58%,
    #b77f20 82%,
    #e7bd57 100%
  );
  background-size: 240% 100%;
  background-position: 100% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(16px, 1.25vw, 21px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.025em;
  text-wrap: balance;
  filter: drop-shadow(0 0 7px rgba(227, 180, 70, .18));
  animation: rc-stats-award-shine 4.8s ease-in-out infinite;
}

.rc-stats-band .rc-stats-award span {
  display: block;
}

@keyframes rc-stats-award-shine {
  0%, 18% {
    background-position: 100% 50%;
    filter: drop-shadow(0 0 5px rgba(227, 180, 70, .12));
  }
  46% {
    background-position: 0% 50%;
    filter: drop-shadow(0 0 11px rgba(255, 215, 115, .30));
  }
  68%, 100% {
    background-position: 0% 50%;
    filter: drop-shadow(0 0 6px rgba(227, 180, 70, .15));
  }
}

@media (prefers-reduced-motion: reduce) {
  .rc-stats-band .rc-stats-award {
    animation: none;
    background-position: 50% 50%;
  }
}

@media (max-width: 850px) {
  .rc-stats-band .rc-stats-award {
    width: min(100%, 420px);
    margin-bottom: 12px;
    font-size: clamp(15px, 3.8vw, 19px);
  }
}

@media (max-width: 520px) {
  .rc-stats-band .rc-stats-award {
    width: 100%;
    margin-bottom: 10px;
    padding-inline: 8px;
    font-size: clamp(14px, 4.25vw, 17px);
    line-height: 1.2;
  }
}


/* Shared-hosting contact form helpers */
.rc-contact-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.rc-contact-sheet-submit:disabled {
  cursor: wait;
  opacity: .72;
}

.rc-contact-toast.is-error .rc-contact-toast-progress {
  animation-duration: 5s;
}
