/* ============================================
   RoadReady KZ — Дорога (Road) Theme
   Font: Barlow | Prefix: rr-
   Colors: #374151 (asphalt), #FBBF24 (yellow road marking)
   ============================================ */

/* --- RESET & BASE --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Barlow', sans-serif;
  background-color: #1F2937;
  color: #D1D5DB;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #FBBF24;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #F59E0B;
}

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: #F9FAFB;
}

/* --- UTILITY --- */
.rr-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.rr-section {
  padding: 80px 0;
}

.rr-section--asphalt {
  background: #374151;
}

.rr-section--highway {
  background: linear-gradient(135deg, #374151 0%, #1F2937 100%);
  position: relative;
}

.rr-section--highway::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: repeating-linear-gradient(
    to bottom,
    #FBBF24 0px,
    #FBBF24 30px,
    transparent 30px,
    transparent 50px
  );
  transform: translateX(-2px);
  opacity: 0.15;
}

.rr-section--tarmac {
  background: #111827;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 40px,
    rgba(251,191,36,0.03) 40px,
    rgba(251,191,36,0.03) 41px
  );
}

.rr-section--lane {
  background: #1F2937;
  position: relative;
  overflow: hidden;
}

.rr-section--lane::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    #FBBF24 0px,
    #FBBF24 40px,
    transparent 40px,
    transparent 60px
  );
}

.rr-section--lane::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    #FBBF24 0px,
    #FBBF24 40px,
    transparent 40px,
    transparent 60px
  );
}

.rr-mb-20 {
  margin-bottom: 20px;
}

/* --- HEADER --- */
.rr-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(31,41,55,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.rr-header--scrolled {
  background: rgba(17,24,39,0.97);
  border-bottom-color: #FBBF24;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.rr-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* --- LOGO --- */
.rr-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  color: #F9FAFB;
  text-decoration: none;
}

.rr-logo iconify-icon {
  font-size: 1.8rem;
  color: #FBBF24;
}

.rr-logo span {
  color: #FBBF24;
}

/* --- NAV --- */
.rr-nav__list {
  display: flex;
  gap: 8px;
}

.rr-nav__link {
  color: #D1D5DB;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.rr-nav__link:hover {
  color: #FBBF24;
  background: rgba(251,191,36,0.1);
}

.rr-nav__link--active {
  color: #1F2937;
  background: #FBBF24;
  font-weight: 600;
}

.rr-nav__link--active:hover {
  color: #1F2937;
  background: #F59E0B;
}

/* --- BURGER --- */
.rr-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.rr-burger__line {
  width: 28px;
  height: 3px;
  background: #F9FAFB;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.rr-burger--active .rr-burger__line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.rr-burger--active .rr-burger__line:nth-child(2) {
  opacity: 0;
}

.rr-burger--active .rr-burger__line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* --- OVERLAY --- */
.rr-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.rr-overlay--visible {
  display: block;
  opacity: 1;
}

/* --- BANNER (road-inspired) --- */
.rr-banner {
  position: relative;
  padding: 160px 0 100px;
  background: linear-gradient(170deg, #111827 0%, #374151 50%, #1F2937 100%);
  overflow: hidden;
}

.rr-banner::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 80px;
  transform: translateX(-40px);
  background: rgba(55,65,81,0.6);
  border-left: 4px solid rgba(251,191,36,0.4);
  border-right: 4px solid rgba(251,191,36,0.4);
}

.rr-banner::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  transform: translateX(-2px);
  background: repeating-linear-gradient(
    to bottom,
    #FBBF24 0px,
    #FBBF24 40px,
    transparent 40px,
    transparent 70px
  );
  opacity: 0.7;
}

.rr-banner__content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.rr-banner__tag {
  display: inline-block;
  padding: 6px 20px;
  background: rgba(251,191,36,0.15);
  color: #FBBF24;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 30px;
  border: 1px solid rgba(251,191,36,0.3);
  margin-bottom: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.rr-banner__title {
  font-size: 3.2rem;
  font-weight: 800;
  color: #F9FAFB;
  margin-bottom: 20px;
  line-height: 1.1;
}

.rr-banner__title span {
  display: block;
  color: #FBBF24;
  margin-top: 5px;
}

.rr-banner__desc {
  font-size: 1.15rem;
  color: #9CA3AF;
  margin-bottom: 32px;
  line-height: 1.8;
}

.rr-road-lines {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    #FBBF24 0px,
    #FBBF24 50px,
    transparent 50px,
    transparent 70px
  );
}

.rr-road-shoulder {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 60px;
  background: linear-gradient(90deg, rgba(251,191,36,0.08), transparent);
}

.rr-road-shoulder--right {
  left: auto;
  right: 0;
  background: linear-gradient(270deg, rgba(251,191,36,0.08), transparent);
}

/* --- BUTTONS --- */
.rr-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.rr-btn--primary {
  background: #FBBF24;
  color: #1F2937;
  border-color: #FBBF24;
}

.rr-btn--primary:hover {
  background: #F59E0B;
  border-color: #F59E0B;
  color: #1F2937;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(251,191,36,0.3);
}

.rr-btn--outline {
  background: transparent;
  color: #FBBF24;
  border-color: #FBBF24;
}

.rr-btn--outline:hover {
  background: #FBBF24;
  color: #1F2937;
  transform: translateY(-2px);
}

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

/* --- HEADINGS --- */
.rr-heading {
  margin-bottom: 50px;
}

.rr-heading--center {
  text-align: center;
}

.rr-heading__title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #F9FAFB;
  margin-bottom: 12px;
}

.rr-heading__title span {
  color: #FBBF24;
}

.rr-heading__line {
  display: block;
  width: 60px;
  height: 4px;
  background: #FBBF24;
  border-radius: 2px;
  margin-bottom: 16px;
}

.rr-heading--center .rr-heading__line {
  margin-left: auto;
  margin-right: auto;
}

.rr-heading__sub {
  color: #9CA3AF;
  font-size: 1.05rem;
}

/* --- FEATURES --- */
.rr-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.rr-feature {
  background: rgba(55,65,81,0.5);
  border: 1px solid rgba(251,191,36,0.1);
  border-radius: 12px;
  padding: 35px 30px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.rr-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #FBBF24;
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.rr-feature:hover::before {
  transform: scaleX(1);
}

.rr-feature:hover {
  border-color: rgba(251,191,36,0.3);
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.rr-feature__icon {
  font-size: 2.8rem;
  color: #FBBF24;
  margin-bottom: 20px;
  display: block;
}

.rr-feature__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #F9FAFB;
  margin-bottom: 12px;
}

.rr-feature__text {
  color: #9CA3AF;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- STATS --- */
.rr-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.rr-stat {
  text-align: center;
  padding: 40px 20px;
  background: rgba(55,65,81,0.4);
  border-radius: 12px;
  border: 1px solid rgba(251,191,36,0.1);
  position: relative;
}

.rr-stat::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 3px;
  background: #FBBF24;
  border-radius: 3px 3px 0 0;
}

.rr-stat__number {
  display: block;
  font-size: 2.8rem;
  font-weight: 800;
  color: #FBBF24;
  margin-bottom: 8px;
}

.rr-stat__label {
  color: #9CA3AF;
  font-size: 0.95rem;
  font-weight: 500;
}

/* --- REVIEWS --- */
.rr-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.rr-review {
  background: rgba(55,65,81,0.5);
  border: 1px solid rgba(251,191,36,0.1);
  border-radius: 12px;
  padding: 35px 30px;
  transition: all 0.3s ease;
}

.rr-review:hover {
  border-color: rgba(251,191,36,0.25);
  transform: translateY(-3px);
}

.rr-review__stars {
  color: #FBBF24;
  font-size: 1.2rem;
  margin-bottom: 18px;
  display: flex;
  gap: 4px;
}

.rr-review__text {
  color: #D1D5DB;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.rr-review__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.rr-review__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FBBF24, #F59E0B);
  color: #1F2937;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.rr-review__name {
  font-weight: 600;
  color: #F9FAFB;
  font-size: 0.95rem;
}

.rr-review__role {
  color: #9CA3AF;
  font-size: 0.85rem;
}

/* --- CTA BLOCK --- */
.rr-cta-block {
  text-align: center;
  padding: 60px 40px;
  background: linear-gradient(135deg, rgba(251,191,36,0.1), rgba(251,191,36,0.05));
  border: 1px solid rgba(251,191,36,0.2);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.rr-cta-block::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    #FBBF24 0px,
    #FBBF24 30px,
    transparent 30px,
    transparent 45px
  );
}

.rr-cta-block__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #F9FAFB;
  margin-bottom: 12px;
}

.rr-cta-block__text {
  color: #9CA3AF;
  font-size: 1.05rem;
  margin-bottom: 28px;
}

/* --- PAGE TOP --- */
.rr-page-top {
  padding: 130px 0 50px;
  background: linear-gradient(170deg, #111827 0%, #374151 100%);
  position: relative;
  overflow: hidden;
}

.rr-page-top::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    #FBBF24 0px,
    #FBBF24 40px,
    transparent 40px,
    transparent 60px
  );
}

.rr-page-top__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #F9FAFB;
  margin-bottom: 12px;
}

.rr-page-top__title span {
  color: #FBBF24;
}

.rr-page-top__desc {
  color: #9CA3AF;
  font-size: 1.1rem;
}

/* --- BREADCRUMBS --- */
.rr-breadcrumbs {
  background: #111827;
  padding: 14px 0;
  border-bottom: 1px solid rgba(251,191,36,0.1);
}

.rr-breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.rr-breadcrumbs__link {
  color: #FBBF24;
  font-size: 0.9rem;
  font-weight: 500;
}

.rr-breadcrumbs__link:hover {
  color: #F59E0B;
}

.rr-breadcrumbs__sep {
  color: #6B7280;
  font-size: 0.85rem;
}

.rr-breadcrumbs__current {
  color: #9CA3AF;
  font-size: 0.9rem;
}

/* --- TIPS --- */
.rr-tips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.rr-tip {
  background: rgba(55,65,81,0.5);
  border: 1px solid rgba(251,191,36,0.1);
  border-radius: 12px;
  padding: 35px 30px;
  transition: all 0.4s ease;
  position: relative;
}

.rr-tip::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 4px;
  background: #FBBF24;
  border-radius: 0 4px 4px 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.rr-tip:hover::before {
  opacity: 1;
}

.rr-tip:hover {
  border-color: rgba(251,191,36,0.25);
  transform: translateY(-3px);
}

.rr-tip__icon {
  font-size: 2.5rem;
  color: #FBBF24;
  margin-bottom: 16px;
  display: block;
}

.rr-tip__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #F9FAFB;
  margin-bottom: 10px;
}

.rr-tip__text {
  color: #9CA3AF;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- RULES GRID --- */
.rr-rules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.rr-rule {
  background: rgba(55,65,81,0.5);
  border: 1px solid rgba(251,191,36,0.1);
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease;
}

.rr-rule:hover {
  border-color: rgba(251,191,36,0.3);
  transform: translateY(-3px);
}

.rr-rule__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #F9FAFB;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.rr-rule__title iconify-icon {
  color: #FBBF24;
  font-size: 1.4rem;
}

.rr-rule__text {
  color: #9CA3AF;
  font-size: 0.93rem;
  line-height: 1.7;
}

/* --- TABLE --- */
.rr-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid rgba(251,191,36,0.15);
}

.rr-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.rr-table thead {
  background: rgba(251,191,36,0.1);
}

.rr-table th {
  padding: 16px 20px;
  text-align: left;
  color: #FBBF24;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid rgba(251,191,36,0.2);
}

.rr-table td {
  padding: 14px 20px;
  color: #D1D5DB;
  border-bottom: 1px solid rgba(251,191,36,0.06);
}

.rr-table tbody tr:hover {
  background: rgba(251,191,36,0.05);
}

.rr-table tbody tr:last-child td {
  border-bottom: none;
}

/* --- PRICING --- */
.rr-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: start;
}

.rr-pricing__card {
  background: rgba(55,65,81,0.5);
  border: 1px solid rgba(251,191,36,0.1);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
}

.rr-pricing__card:hover {
  transform: translateY(-5px);
  border-color: rgba(251,191,36,0.25);
}

.rr-pricing__card--featured {
  border-color: #FBBF24;
  background: rgba(251,191,36,0.08);
  transform: scale(1.03);
}

.rr-pricing__card--featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #FBBF24;
  border-radius: 16px 16px 0 0;
}

.rr-pricing__card--featured:hover {
  transform: scale(1.03) translateY(-5px);
}

.rr-pricing__name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #FBBF24;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.rr-pricing__price {
  font-size: 2.8rem;
  font-weight: 800;
  color: #F9FAFB;
  margin-bottom: 28px;
}

.rr-pricing__currency {
  font-size: 1.2rem;
  font-weight: 600;
  color: #9CA3AF;
}

.rr-pricing__list {
  text-align: left;
  margin-bottom: 30px;
}

.rr-pricing__item {
  padding: 10px 0;
  color: #D1D5DB;
  font-size: 0.93rem;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(251,191,36,0.06);
}

.rr-pricing__item:last-child {
  border-bottom: none;
}

.rr-pricing__item iconify-icon {
  color: #FBBF24;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* --- TEAM --- */
.rr-team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.rr-team__member {
  background: rgba(55,65,81,0.5);
  border: 1px solid rgba(251,191,36,0.1);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.rr-team__member:hover {
  border-color: rgba(251,191,36,0.25);
  transform: translateY(-3px);
}

.rr-team__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FBBF24, #F59E0B);
  color: #1F2937;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
}

.rr-team__name {
  font-weight: 700;
  font-size: 1.1rem;
  color: #F9FAFB;
  margin-bottom: 6px;
}

.rr-team__role {
  color: #FBBF24;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 14px;
}

.rr-team__bio {
  color: #9CA3AF;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* --- FAQ --- */
.rr-faq {
  max-width: 800px;
  margin: 0 auto;
}

.rr-faq__item {
  border: 1px solid rgba(251,191,36,0.1);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.rr-faq__item:hover {
  border-color: rgba(251,191,36,0.25);
}

.rr-faq__item--active {
  border-color: #FBBF24;
}

.rr-faq__question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: #F9FAFB;
  font-size: 1rem;
  background: rgba(55,65,81,0.4);
  transition: background 0.3s ease;
}

.rr-faq__question:hover {
  background: rgba(55,65,81,0.7);
}

.rr-faq__question iconify-icon {
  color: #FBBF24;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.rr-faq__item--active .rr-faq__question iconify-icon {
  transform: rotate(180deg);
}

.rr-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background: rgba(31,41,55,0.5);
}

.rr-faq__item--active .rr-faq__answer {
  max-height: 500px;
  padding: 20px 24px;
}

.rr-faq__answer p {
  color: #9CA3AF;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* --- FORM --- */
.rr-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rr-form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.rr-form__label {
  color: #D1D5DB;
  font-weight: 500;
  font-size: 0.9rem;
}

.rr-form__input,
.rr-form__textarea {
  background: rgba(55,65,81,0.5);
  border: 1px solid rgba(251,191,36,0.15);
  border-radius: 8px;
  padding: 14px 18px;
  color: #F9FAFB;
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.rr-form__input:focus,
.rr-form__textarea:focus {
  border-color: #FBBF24;
  box-shadow: 0 0 0 3px rgba(251,191,36,0.15);
}

.rr-form__input::placeholder,
.rr-form__textarea::placeholder {
  color: #6B7280;
}

.rr-form__textarea {
  min-height: 140px;
  resize: vertical;
}

.rr-form__honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

.rr-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: #9CA3AF;
}

.rr-form__consent input[type="checkbox"] {
  margin-top: 3px;
  accent-color: #FBBF24;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.rr-form__consent a {
  color: #FBBF24;
}

/* --- CONTENT --- */
.rr-content {
  max-width: 800px;
}

.rr-content h2 {
  font-size: 1.5rem;
  color: #FBBF24;
  margin: 40px 0 16px;
}

.rr-content h2:first-child {
  margin-top: 0;
}

.rr-content p {
  color: #D1D5DB;
  line-height: 1.8;
  margin-bottom: 16px;
}

.rr-content ul {
  margin-bottom: 16px;
}

.rr-content ul li {
  color: #D1D5DB;
  padding: 6px 0 6px 24px;
  position: relative;
  line-height: 1.6;
}

.rr-content ul li::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 14px;
  width: 8px;
  height: 3px;
  background: #FBBF24;
  border-radius: 2px;
}

/* --- LEGAL --- */
.rr-legal {
  padding: 40px 0 80px;
}

.rr-legal h1 {
  font-size: 2rem;
  color: #F9FAFB;
  margin-bottom: 30px;
  padding-bottom: 16px;
  border-bottom: 3px solid #FBBF24;
}

.rr-legal h2 {
  font-size: 1.3rem;
  color: #FBBF24;
  margin: 32px 0 12px;
}

.rr-legal p {
  color: #D1D5DB;
  line-height: 1.8;
  margin-bottom: 14px;
}

.rr-legal ul {
  margin-bottom: 16px;
}

.rr-legal ul li {
  color: #D1D5DB;
  padding: 5px 0 5px 24px;
  position: relative;
  line-height: 1.6;
}

.rr-legal ul li::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 13px;
  width: 8px;
  height: 3px;
  background: #FBBF24;
  border-radius: 2px;
}

/* --- THANK YOU --- */
.rr-thankyou {
  padding: 200px 0 120px;
  text-align: center;
  background: linear-gradient(170deg, #111827 0%, #374151 100%);
}

.rr-thankyou__icon {
  font-size: 5rem;
  color: #FBBF24;
  margin-bottom: 24px;
}

.rr-thankyou__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #F9FAFB;
  margin-bottom: 16px;
}

.rr-thankyou__text {
  color: #9CA3AF;
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* --- 404 --- */
.rr-notfound {
  padding: 200px 0 120px;
  text-align: center;
  background: linear-gradient(170deg, #111827 0%, #374151 100%);
}

.rr-notfound__code {
  font-size: 8rem;
  font-weight: 900;
  color: #FBBF24;
  line-height: 1;
  margin-bottom: 16px;
  text-shadow: 0 4px 20px rgba(251,191,36,0.3);
}

.rr-notfound__title {
  font-size: 2rem;
  color: #F9FAFB;
  margin-bottom: 16px;
}

.rr-notfound__text {
  color: #9CA3AF;
  font-size: 1.05rem;
  margin-bottom: 32px;
}

/* --- FOOTER --- */
.rr-footer {
  background: #111827;
  padding: 60px 0 0;
  border-top: 4px solid #FBBF24;
}

.rr-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.rr-footer__brand {
  font-size: 1.4rem;
  font-weight: 800;
  color: #F9FAFB;
  margin-bottom: 16px;
}

.rr-footer__brand span {
  color: #FBBF24;
}

.rr-footer__desc {
  color: #9CA3AF;
  font-size: 0.9rem;
  line-height: 1.7;
}

.rr-footer__heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: #F9FAFB;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.rr-footer__heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: #FBBF24;
  border-radius: 2px;
}

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

.rr-footer__link {
  color: #9CA3AF;
  font-size: 0.9rem;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.rr-footer__link:hover {
  color: #FBBF24;
  padding-left: 6px;
}

.rr-footer__contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #9CA3AF;
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.rr-footer__contact-item iconify-icon {
  color: #FBBF24;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.rr-footer__contact-item a {
  color: #9CA3AF;
}

.rr-footer__contact-item a:hover {
  color: #FBBF24;
}

.rr-footer__bottom {
  border-top: 1px solid rgba(251,191,36,0.1);
  padding: 24px 0;
  text-align: center;
}

.rr-footer__copy {
  color: #6B7280;
  font-size: 0.85rem;
}

.rr-footer__bin {
  color: #4B5563;
  font-size: 0.8rem;
  margin-top: 6px;
}

/* --- COOKIE --- */
.rr-cookie {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #111827;
  border-top: 3px solid #FBBF24;
  padding: 20px 0;
  transition: bottom 0.5s ease;
  box-shadow: 0 -8px 30px rgba(0,0,0,0.4);
}

.rr-cookie--visible {
  bottom: 0;
}

.rr-cookie__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.rr-cookie__text {
  color: #9CA3AF;
  font-size: 0.9rem;
  line-height: 1.5;
}

.rr-cookie__text a {
  color: #FBBF24;
}

.rr-cookie__btn {
  background: #FBBF24;
  color: #1F2937;
  border: none;
  padding: 10px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-family: 'Barlow', sans-serif;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s ease;
}

.rr-cookie__btn:hover {
  background: #F59E0B;
}

/* --- ANIMATIONS --- */
.rr-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.rr-animate--visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .rr-features {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .rr-pricing {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .rr-pricing__card--featured {
    transform: none;
  }

  .rr-pricing__card--featured:hover {
    transform: translateY(-5px);
  }

  .rr-team {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .rr-footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .rr-burger {
    display: flex;
  }

  .rr-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: #111827;
    z-index: 999;
    padding: 80px 20px 40px;
    transition: right 0.3s ease;
    border-left: 3px solid #FBBF24;
    overflow-y: auto;
  }

  .rr-nav--open {
    right: 0;
  }

  .rr-nav__list {
    flex-direction: column;
    gap: 4px;
  }

  .rr-nav__link {
    display: block;
    padding: 12px 16px;
  }

  .rr-banner {
    padding: 130px 0 70px;
  }

  .rr-banner__title {
    font-size: 2.2rem;
  }

  .rr-banner__desc {
    font-size: 1rem;
  }

  .rr-features {
    grid-template-columns: 1fr;
  }

  .rr-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .rr-reviews {
    grid-template-columns: 1fr;
  }

  .rr-tips {
    grid-template-columns: 1fr;
  }

  .rr-rules-grid {
    grid-template-columns: 1fr;
  }

  .rr-page-top {
    padding: 110px 0 40px;
  }

  .rr-page-top__title {
    font-size: 2rem;
  }

  .rr-heading__title {
    font-size: 1.8rem;
  }

  .rr-section {
    padding: 50px 0;
  }

  .rr-cta-block {
    padding: 40px 24px;
  }

  .rr-cta-block__title {
    font-size: 1.4rem;
  }

  .rr-cookie__inner {
    flex-direction: column;
    text-align: center;
  }

  .rr-footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .rr-table {
    font-size: 0.85rem;
  }

  .rr-table th,
  .rr-table td {
    padding: 10px 14px;
  }
}

@media (max-width: 480px) {
  .rr-banner__title {
    font-size: 1.8rem;
  }

  .rr-stats {
    grid-template-columns: 1fr;
  }

  .rr-stat__number {
    font-size: 2.2rem;
  }

  .rr-pricing__price {
    font-size: 2.2rem;
  }

  .rr-btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .rr-notfound__code {
    font-size: 5rem;
  }
}

[class*="photo"] img,[class*="avatar"] img{width:100%;height:100%;object-fit:cover;border-radius:50%}
[class*="visual"] img{width:100%;height:100%;object-fit:cover;border-radius:12px}

/* === RoadReady Team === */
.rr-team-section{background:#1F2937}
.rr-team-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;margin-top:2rem}
.rr-team-card{background:#111827;border-radius:12px;padding:2rem;text-align:center;border:1px solid #374151}
.rr-team-initials{width:72px;height:72px;border-radius:50%;background:#F59E0B;color:#111827;display:flex;align-items:center;justify-content:center;font-size:1.25rem;font-weight:700;margin:0 auto 1rem}
.rr-team-card h3{color:#fff;margin-bottom:.25rem}
.rr-team-role{color:#F59E0B;font-size:.9rem;margin-bottom:.75rem}
.rr-team-card p{color:#9CA3AF;font-size:.9rem}
@media(max-width:768px){.rr-team-grid{grid-template-columns:1fr}}
/* === RoadReady Cases === */
.rr-cases-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;margin-top:2rem}
.rr-case{background:#111827;border-radius:12px;padding:2rem;border:1px solid #374151}
.rr-case iconify-icon{font-size:2rem;color:#F59E0B;margin-bottom:1rem}
.rr-case h3{color:#fff;margin-bottom:.5rem}
.rr-case p{color:#9CA3AF;font-size:.95rem}
@media(max-width:768px){.rr-cases-grid{grid-template-columns:1fr}}
