

.rentcar-home {
  --rc-gap: clamp(2.5rem, 6vw, 4.5rem);
}

.rc-eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rentcar-accent);
}

.rc-eyebrow--light {
  color: rgba(255, 255, 255, 0.85);
}

.rc-section {
  padding: var(--rc-gap) 0;
}

.rc-section--tint {
  padding: var(--rc-gap) clamp(1rem, 4vw, 2.5rem);
  background: #f7f8fa;
  border-radius: 16px;
}

.rc-section__head {
  margin-bottom: 2rem;
  text-align: center;
}

.rc-section__title {
  margin: 0;
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  line-height: 1.25;
}

.rc-section__more {
  margin: 2rem 0 0;
  text-align: center;
}

.rc-hero {
  margin-top: 1.5rem;
  padding: clamp(2.5rem, 7vw, 5rem) clamp(1.25rem, 5vw, 3.5rem);
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.25)), linear-gradient(135deg, var(--rentcar-accent), #06203c);
}

.rc-hero__inner {
  max-width: 640px;
}

.rc-hero__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.9rem, 4.6vw, 3rem);
  line-height: 1.2;
  color: #fff;
}

.rc-hero__desc {
  margin: 0 0 1.75rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.rc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.rc-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 5vw, 3rem);
  margin: 0;
  padding: 1.5rem 0 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.rc-hero__stats strong {
  display: block;
  font-size: 1.6rem;
  line-height: 1.2;
}

.rc-hero__stats span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.rc-btn {
  display: inline-block;
  padding: 0.8rem 1.75rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition:
    opacity 0.15s ease,
    background-color 0.15s ease,
    color 0.15s ease;
}

.rc-btn--phone {
  background: #16a34a;
  color: #fff;
}

.rc-btn--phone:hover {
  opacity: 0.9;
  color: #fff;
}

.rc-btn--ghost {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

.rc-btn--ghost:hover {
  background: #fff;
  color: #06203c;
}

.rc-btn--outline {
  border-color: var(--rentcar-accent);
  color: var(--rentcar-accent);
}

.rc-btn--outline:hover {
  background: var(--rentcar-accent);
  color: #fff;
}

.rc-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.rc-step {
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--rentcar-border);
  border-radius: 12px;
}

.rc-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 0.9rem;
  border-radius: 50%;
  background: var(--rentcar-accent);
  color: #fff;
  font-weight: 700;
}

.rc-step__title {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
}

.rc-step__desc {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--rentcar-muted);
}

.rc-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.rc-feature {
  padding-left: 1rem;
  border-left: 3px solid var(--rentcar-accent);
}

.rc-feature__title {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.rc-feature__desc {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--rentcar-muted);
}

.rc-contact {
  margin: var(--rc-gap) 0 0;
  padding: clamp(3rem, 8vw, 5.5rem) clamp(1.25rem, 5vw, 3rem);
  border-radius: 18px;
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.25)), linear-gradient(135deg, var(--rentcar-accent), #06203c);
}

.rc-contact.has-bg {
  position: relative;
  isolation: isolate;
}

.rc-contact.has-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: rgba(0, 0, 0, 0.55);
}

.rc-contact__inner {
  max-width: 680px;
  margin: 0 auto;
}

.rc-contact__badge {
  display: inline-block;
  margin: 0 0 1.5rem;
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  background: #e11d2e;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rc-contact__title {
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 5vw, 3rem);
  line-height: 1.2;
  color: #fff;
}

.rc-contact__desc {
  margin: 0 auto 2.25rem;
  max-width: 560px;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

.rc-contact__desc strong {
  color: #fff;
}

.rc-contact__address {
  margin: 2rem 0 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

.rc-channels {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rc-channel {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.rc-channel:hover,
.rc-channel:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}

.rc-channel .rc-ico {
  width: 28px;
  height: 28px;
}

@media (max-width: 480px) {
  .rc-channel {
    width: 54px;
    height: 54px;
  }

  .rc-channel .rc-ico {
    width: 24px;
    height: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rc-channel {
    transition: none;
  }

  .rc-channel:hover,
  .rc-channel:focus-visible {
    transform: none;
  }
}

@media (max-width: 600px) {
  .rentcar-home {
    padding-bottom: 4rem;
  }
}
