*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #ffffff;
  background: #0a0a0a;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}
button {
  font-family: inherit;
}
blockquote {
  border: none;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.rb-section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 32px;
}
.rb-section-title span {
  color: #dc2626;
}
.rb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.rb-btn--primary {
  background: #dc2626;
  color: #ffffff;
  padding: 18px 48px;
  font-size: 14px;
}
.rb-btn--primary:hover {
  background: #b91c1c;
  box-shadow: 0 0 40px rgba(220, 38, 38, 0.3);
}
.rb-btn--ghost {
  background: transparent;
  color: #888888;
  border: 2px solid rgba(255, 255, 255, 0.06);
  padding: 16px 40px;
  font-size: 14px;
}
.rb-btn--ghost:hover {
  border-color: #ffffff;
  color: #ffffff;
}
.rb-btn--outline {
  background: transparent;
  color: #dc2626;
  border: 2px solid #dc2626;
  padding: 10px 24px;
  font-size: 13px;
  letter-spacing: 0.08em;
}
.rb-btn--outline:hover {
  background: #dc2626;
  color: #ffffff;
  box-shadow: 0 0 24px rgba(220, 38, 38, 0.3);
}
.rb-btn--lg {
  padding: 20px 64px;
  font-size: 16px;
}
.rb-site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  height: 72px;
  background: rgba(10, 10, 10, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.25s ease;
}
.rb-site-header--scrolled {
  border-bottom-color: rgba(220, 38, 38, 0.4);
}
.rb-site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}
.rb-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}
.rb-logo__mark {
  font-size: 24px;
  line-height: 1;
}
.rb-logo__name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  position: relative;
}
.rb-logo__name::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 3px;
  background: #dc2626;
}
.rb-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.rb-nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888888;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.rb-nav a:hover {
  color: #dc2626;
}
.rb-nav-overlay {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0a0a0a;
  z-index: 98;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.rb-nav-overlay--visible {
  display: block;
  opacity: 1;
}
.rb-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
  z-index: 102;
}
.rb-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  transition: all 0.25s ease;
}
.rb-burger--active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.rb-burger--active span:nth-child(2) {
  opacity: 0;
}
.rb-burger--active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (min-width: 769px) {
  .rb-nav {
    display: flex;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 72px;
    z-index: 102;
    pointer-events: none;
  }
  .rb-nav a {
    pointer-events: auto;
  }
}
.rb-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow-x: hidden;
  overflow-y: visible;
  padding-top: 72px;
}
.rb-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=1200&q=80');
  background-size: cover;
  background-position: center;
  filter: brightness(0.25) saturate(0.3);
  z-index: 0;
}
.rb-hero::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 60%;
  background: #dc2626;
  left: 48px;
  top: 20%;
  box-shadow: 0 0 32px rgba(220, 38, 38, 0.3);
  z-index: 1;
}
.rb-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
  padding-left: 56px;
  width: 100%;
  overflow: visible;
}
.rb-hero__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #dc2626;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.rb-hero__label::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: #dc2626;
}
.rb-hero__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1.1;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  overflow: visible;
  word-break: break-word;
  hyphens: auto;
}
.rb-hero__title span {
  color: #dc2626;
  display: block;
}
.rb-hero__sub {
  max-width: 520px;
  font-size: 17px;
  color: #888888;
  margin-bottom: 40px;
  line-height: 1.75;
}
.rb-hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.rb-hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #444444;
  animation: rb-bounce 2s infinite;
  z-index: 2;
  text-decoration: none;
}
@keyframes rb-bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}
.rb-services {
  padding-top: 0;
}
.rb-service {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow-x: hidden;
}
.rb-service:nth-child(even) .rb-service__photo-col {
  order: 2;
}
.rb-service:nth-child(even) .rb-service__content-col {
  order: 1;
}
.rb-service:nth-child(even) .rb-service__photo-overlay {
  background: linear-gradient(to left, transparent 60%, #0a0a0a 100%);
}
.rb-service__photo-col {
  position: relative;
  overflow: hidden;
  min-height: 50vh;
}
.rb-service__photo {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  filter: saturate(0.4) brightness(0.6);
  transition: transform 0.6s ease;
}
.rb-service:hover .rb-service__photo {
  transform: scale(1.03);
}
.rb-service__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, #0a0a0a 100%);
  pointer-events: none;
}
.rb-service__content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 48px;
  background: #0a0a0a;
  overflow: visible;
}
.rb-service__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 8vw, 72px);
  color: rgba(220, 38, 38, 0.08);
  line-height: 1;
  margin-bottom: 8px;
}
.rb-service__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  line-height: 1.15;
  word-break: break-word;
  overflow: visible;
}
.rb-service__text {
  font-size: 15px;
  color: #888888;
  max-width: 440px;
  margin-bottom: 32px;
  line-height: 1.75;
}
.rb-service__list {
  list-style: none;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rb-service__list li {
  font-size: 14px;
  color: #888888;
  padding-left: 20px;
  position: relative;
}
.rb-service__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 2px;
  background: #dc2626;
}
.rb-manifesto {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.rb-manifesto__bg {
  position: absolute;
  inset: 0;
}
.rb-manifesto__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.2) saturate(0.2);
}
.rb-manifesto__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
}
.rb-manifesto__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 40px;
}
.rb-manifesto__label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #dc2626;
  margin-bottom: 40px;
}
.rb-manifesto__quote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.15;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 40px;
}
.rb-manifesto__quote em {
  color: #dc2626;
  font-style: normal;
  display: inline-block;
  position: relative;
}
.rb-manifesto__quote em::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 4px;
  background: #dc2626;
  box-shadow: 0 0 16px rgba(220, 38, 38, 0.3);
}
.rb-manifesto__sub {
  font-size: 18px;
  color: #888888;
  margin-bottom: 48px;
  line-height: 1.7;
}
.rb-stats {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #111111;
  padding: 80px 0;
}
.rb-stats__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 48px;
  line-height: 1;
}
.rb-stats__title span {
  color: #dc2626;
}
.rb-stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.rb-stat {
  padding: 48px 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}
.rb-stat:nth-child(2n) {
  border-right: none;
}
.rb-stat:nth-child(n+3) {
  border-bottom: none;
}
.rb-stat:hover {
  background: rgba(220, 38, 38, 0.08);
}
.rb-stat::before {
  content: attr(data-index);
  position: absolute;
  right: 24px;
  bottom: 16px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
}
.rb-stat__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 5.5vw, 72px);
  color: #dc2626;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
  text-shadow: 0 0 60px rgba(220, 38, 38, 0.3);
}
.rb-stat__label {
  font-size: 13px;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.rb-team {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background: #161616;
  padding: 80px 0;
  overflow: hidden;
}
.rb-team__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
  width: 50%;
  padding-right: 40px;
}
.rb-team__text {
  font-size: 16px;
  color: #888888;
  line-height: 1.75;
  max-width: 480px;
}
.rb-team__photo-wrap {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  overflow: hidden;
}
.rb-team__photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.3) brightness(0.5);
}
.rb-team__photo-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #161616 0%, transparent 100%);
  z-index: 1;
}
.rb-team__facts {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.rb-team__fact-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: #dc2626;
  line-height: 1;
  display: block;
}
.rb-team__fact-label {
  font-size: 12px;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.rb-reviews {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #0a0a0a;
  padding: 80px 0;
}
.rb-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.rb-review {
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px;
  position: relative;
  transition: all 0.25s ease;
  height: 100%;
}
.rb-review::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 24px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  color: #dc2626;
  opacity: 0.2;
  line-height: 1;
}
.rb-review:hover {
  border-color: rgba(220, 38, 38, 0.4);
  background: rgba(220, 38, 38, 0.08);
}
.rb-review__stars {
  color: #dc2626;
  font-size: 14px;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.rb-review__text {
  font-size: 15px;
  color: #888888;
  line-height: 1.75;
  margin-bottom: 28px;
}
.rb-review__author {
  display: flex;
  align-items: center;
}
.rb-review__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(220, 38, 38, 0.4);
  margin-right: 14px;
  flex-shrink: 0;
}
.rb-review__name {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  display: block;
}
.rb-review__role {
  font-size: 12px;
  color: #888888;
}
.rb-cta {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #111111;
  padding: 100px 0 80px;
}
.rb-cta__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: stretch;
}
.rb-cta__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5.5vw, 64px);
  line-height: 1;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 24px;
}
.rb-cta__title span {
  color: #dc2626;
  display: block;
}
.rb-cta__sub {
  font-size: 16px;
  color: #888888;
  line-height: 1.75;
}
.rb-cta__form-wrap {
  width: 100%;
}
.rb-cta__form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rb-cta__form input,
.rb-cta__form textarea {
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.06);
  color: #ffffff;
  padding: 16px 0;
  font-size: 16px;
  width: 100%;
  font-family: 'Inter', sans-serif;
  transition: all 0.25s ease;
  border-radius: 0;
}
.rb-cta__form input:focus,
.rb-cta__form textarea:focus {
  outline: none;
  border-bottom-color: #dc2626;
}
.rb-cta__form input::placeholder,
.rb-cta__form textarea::placeholder {
  color: #444444;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
}
.rb-cta__form textarea {
  min-height: 100px;
  resize: none;
}
.rb-cta__submit {
  margin-top: 32px;
  align-self: flex-start;
}
.rb-cta__success {
  display: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: #dc2626;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 48px 0;
}
.rb-footer {
  background: #050505;
  border-top: 2px solid #dc2626;
}
.rb-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding: 40px 0;
}
.rb-footer__tagline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888888;
}
.rb-footer__nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.rb-footer__nav a {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #444444;
  text-decoration: none;
  transition: all 0.25s ease;
}
.rb-footer__nav a:hover {
  color: #dc2626;
}
.rb-footer__copy {
  font-size: 12px;
  color: #444444;
  letter-spacing: 0.05em;
}
.rb-service__content-col,
.rb-stats__grid,
.rb-team__inner,
.rb-review {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.rb-service__content-col.animate,
.rb-stats__grid.animate,
.rb-team__inner.animate,
.rb-review.animate {
  opacity: 1;
  transform: translateY(0);
}
.rb-manifesto__inner {
  opacity: 0;
  transition: opacity 1s ease;
}
.rb-manifesto__inner.animate {
  opacity: 1;
}
@media (max-width: 768px) {
  .rb-header__cta {
    display: none;
  }
  .rb-nav {
    display: none;
  }
  .rb-nav--open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    width: 100%;
    max-height: calc(100vh - 72px);
    max-height: calc(100dvh - 72px);
    height: calc(100vh - 72px);
    height: calc(100dvh - 72px);
    background: #0a0a0a;
    padding: 24px 24px 40px;
    z-index: 100;
    gap: 0;
    border-top: 1px solid rgba(220, 38, 38, 0.4);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
  }
  .rb-nav--open a {
    font-size: 16px;
    color: #ffffff;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    white-space: normal;
    flex-shrink: 0;
  }
  .rb-nav--open a:last-child {
    border-bottom: none;
  }
  .rb-burger {
    display: flex;
  }
  body.rb-no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
  }
  .rb-hero {
    min-height: 100svh;
    align-items: flex-start;
    padding-top: 96px;
    padding-bottom: 64px;
    margin-bottom: 48px;
  }
  .rb-hero::after {
    left: 16px;
    height: 120px;
    top: 96px;
  }
  .rb-hero__inner {
    padding-left: 28px;
    padding-right: 16px;
  }
  .rb-hero__label {
    flex-wrap: wrap;
    font-size: 11px;
    letter-spacing: 0.12em;
  }
  .rb-hero__title {
    font-size: 30px;
    line-height: 1.15;
    letter-spacing: 0.02em;
  }
  .rb-hero__sub {
    font-size: 15px;
  }
  .rb-hero__scroll {
    bottom: 24px;
  }
  .rb-services {
    padding-top: 24px;
  }
  .rb-service {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .rb-service__photo-col {
    min-height: 36vh;
    order: -1 !important;
  }
  .rb-service__content-col {
    order: 1 !important;
    padding: 40px 20px 48px;
  }
  .rb-service__num {
    font-size: clamp(40px, 12vw, 56px);
    margin-bottom: 12px;
  }
  .rb-service__title {
    font-size: clamp(28px, 8vw, 40px);
    line-height: 1.15;
    letter-spacing: 0.02em;
  }
  .rb-service__photo-overlay {
    background: linear-gradient(to bottom, transparent 50%, #0a0a0a 100%) !important;
  }
  .rb-service:nth-child(even) .rb-service__photo-col {
    order: -1 !important;
  }
  .rb-manifesto {
    min-height: auto;
    padding: 80px 0;
  }
  .rb-manifesto__inner {
    padding: 0 20px;
  }
  .rb-manifesto__quote {
    font-size: clamp(28px, 7.5vw, 40px);
    line-height: 1.2;
    letter-spacing: 0.02em;
  }
  .rb-manifesto__sub {
    font-size: 16px;
  }
  .rb-stats {
    min-height: auto;
    padding: 64px 0;
  }
  .rb-stats__title {
    font-size: clamp(36px, 10vw, 52px);
    line-height: 1.1;
    letter-spacing: 0.02em;
    margin-bottom: 40px;
  }
  .rb-stats__grid {
    grid-template-columns: 1fr;
  }
  .rb-stat {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    padding: 32px 24px;
  }
  .rb-stat__num {
    font-size: clamp(44px, 12vw, 64px);
  }
  .rb-stat:last-child {
    border-bottom: none !important;
  }
  .rb-section-title {
    font-size: clamp(32px, 9vw, 44px);
    line-height: 1.1;
    letter-spacing: 0.02em;
    margin-bottom: 24px;
  }
  .rb-team {
    min-height: auto;
    padding: 64px 0;
  }
  .rb-team__inner {
    width: 100%;
    padding-right: 0;
  }
  .rb-team__photo-wrap {
    position: relative;
    width: 100%;
    height: 280px;
    margin-top: 48px;
  }
  .rb-reviews {
    min-height: auto;
    padding: 64px 0;
  }
  .rb-reviews__grid {
    grid-template-columns: 1fr;
  }
  .rb-cta {
    min-height: auto;
    padding: 64px 0 80px;
  }
  .rb-cta__inner {
    gap: 40px;
  }
  .rb-cta__title {
    font-size: clamp(36px, 10vw, 52px);
    line-height: 1.1;
    letter-spacing: 0.02em;
  }
  .rb-cta__success {
    font-size: clamp(28px, 8vw, 36px);
  }
  .rb-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  .rb-hero__btns {
    flex-direction: column;
    width: 100%;
  }
  .rb-hero__btns .rb-btn {
    width: 100%;
    text-align: center;
  }
  .rb-manifesto__quote {
    font-size: clamp(24px, 7vw, 32px);
  }
}
