:root {
  --rh-red: #d71920;
  --rh-red-dark: #a90f15;
  --rh-black: #101010;
  --rh-ink: #171717;
  --rh-muted: #666;
  --rh-line: #e7e7e7;
  --rh-soft: #f7f7f7;
  --rh-white: #fff;
  --rh-shadow: 0 18px 45px rgba(0, 0, 0, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--rh-ink);
  background: var(--rh-white);
  font-family: Roboto, Arial, sans-serif;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.topbar {
  color: #fff;
  background: var(--rh-black);
  font-size: 14px;
}

.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar-contact {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.topbar-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .9);
}

.topbar-contact i {
  color: var(--rh-red);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .45);
  white-space: nowrap;
}

.lang-btn {
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, .75);
  background: transparent;
  font-weight: 700;
  cursor: pointer;
}

.lang-btn.active,
.lang-btn:hover {
  color: var(--rh-white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .08);
}

.navbar {
  min-height: 82px;
  padding: 0;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  padding: 0;
}

.navbar-brand img {
  width: 220px;
  max-width: 48vw;
  height: auto;
  display: block;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  max-width: 260px;
  padding: 10px 12px;
}

.footer-logo img {
  width: 100%;
  height: auto;
  display: block;
  margin-left: -20px;
}

.nav-link {
  position: relative;
  margin: 0 9px;
  padding: 30px 9px !important;
  color: var(--rh-black);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: uppercase;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 9px;
  right: 9px;
  bottom: 22px;
  height: 3px;
  background: transparent;
}

.nav-link.active::after,
.nav-link:hover::after {
  background: var(--rh-red);
}

.btn-rh {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 26px;
  border: 0;
  border-radius: 0;
  color: #fff;
  background: var(--rh-red);
  font-family: Oswald, Impact, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  box-shadow: 0 12px 26px rgba(215, 25, 32, .28);
}

.btn-rh:hover {
  color: #fff;
  background: var(--rh-red-dark);
}

.hero-section {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(115deg, rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, .78) 42%, rgba(0, 0, 0, .4) 100%),
    url("../images/hero.jpg") center/cover no-repeat;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(215, 25, 32, .86), transparent 22%);
  opacity: .75;
}

.hero-container {
  position: relative;
  z-index: 2;
  padding-top: 70px;
  padding-bottom: 70px;
}

.section-kicker {
  margin: 0 0 14px;
  color: var(--rh-red);
  font-family: Oswald, Impact, sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.hero-section .section-kicker {
  color: #fff;
}

.hero-section h1,
.section-heading h2,
.about-section h2,
.contact-section h2 {
  margin: 0;
  font-family: Oswald, Impact, sans-serif;
  font-weight: 700;
  line-height: .98;
  text-transform: uppercase;
}

.hero-section h1 {
  max-width: 610px;
  font-size: clamp(58px, 8vw, 104px);
}

.hero-text {
  max-width: 560px;
  margin: 24px 0 32px;
  color: rgba(255, 255, 255, .91);
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-outline-light {
  border-radius: 0;
  font-family: Oswald, Impact, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.hero-image-card {
  position: relative;
  margin-left: auto;
  max-width: 510px;
  border: 8px solid rgba(255, 255, 255, .16);
  box-shadow: var(--rh-shadow);
}

.hero-image-card img {
  height: 360px;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  right: -22px;
  bottom: -22px;
  width: 150px;
  min-height: 120px;
  display: grid;
  place-items: center;
  padding: 18px;
  text-align: center;
  color: #fff;
  background: var(--rh-red);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .28);
}

.hero-badge strong {
  display: block;
  font-family: Oswald, Impact, sans-serif;
  font-size: 44px;
  line-height: 1;
}

.hero-badge span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.stats-strip {
  position: relative;
  z-index: 3;
  margin-top: -48px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #fff;
  box-shadow: var(--rh-shadow);
}

.stats-grid > div {
  min-height: 104px;
  display: grid;
  grid-template-columns: 54px 1fr;
  align-content: center;
  column-gap: 18px;
  padding: 24px 30px;
  border-right: 1px solid var(--rh-line);
}

.stats-grid > div:last-child {
  border-right: 0;
}

.stats-grid i {
  grid-row: span 2;
  color: var(--rh-red);
  font-size: 36px;
  align-self: center;
}

.stats-grid strong {
  font-family: Oswald, Impact, sans-serif;
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
}

.stats-grid span {
  color: var(--rh-muted);
  font-size: 14px;
}

.section-padding {
  padding: 96px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 48px;
}

.section-heading h2,
.about-section h2,
.contact-section h2 {
  color: var(--rh-black);
  font-size: clamp(38px, 5vw, 58px);
}

.section-heading p:last-child,
.about-lead,
.contact-section p {
  color: var(--rh-muted);
  font-size: 17px;
  line-height: 1.7;
}

.service-card {
  height: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--rh-line);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .07);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card:hover {
  border-color: rgba(215, 25, 32, .34);
  transform: translateY(-8px);
  box-shadow: 0 22px 44px rgba(0, 0, 0, .14);
}

.service-card img {
  height: 230px;
  object-fit: cover;
}

.service-content {
  position: relative;
  padding: 42px 30px 32px;
}

.service-icon {
  position: absolute;
  left: 30px;
  top: -33px;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--rh-red);
  font-size: 26px;
}

.service-card h3 {
  margin: 0 0 12px;
  font-family: Oswald, Impact, sans-serif;
  font-size: 27px;
  text-transform: uppercase;
}

.service-card p {
  margin: 0 0 22px;
  color: var(--rh-muted);
  line-height: 1.65;
}

.service-more-btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--rh-red);
  color: var(--rh-red);
  background: #fff;
  font-family: Oswald, Impact, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: uppercase;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.service-card:hover .service-more-btn,
.service-more-btn:hover {
  color: #fff;
  background: var(--rh-red);
  transform: translateY(-1px);
}

.service-modal .modal-content {
  border: 0;
  border-radius: 0;
  box-shadow: var(--rh-shadow);
}

.service-modal .modal-header,
.service-modal .modal-footer {
  border-color: var(--rh-line);
  border-radius: 0;
}

.service-modal .modal-title {
  font-family: Oswald, Impact, sans-serif;
  font-size: 32px;
  text-transform: uppercase;
}

.service-modal .modal-body {
  color: var(--rh-muted);
  font-size: 16px;
  line-height: 1.7;
}

.service-modal .modal-body strong,
.service-modal .modal-body h4 {
  color: var(--rh-black);
}

.service-modal .modal-body h4 {
  margin-top: 24px;
  font-family: Oswald, Impact, sans-serif;
  font-size: 22px;
  text-transform: uppercase;
}

.service-modal .modal-body ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 24px;
  padding-left: 20px;
}

.service-modal .modal-body li::marker {
  color: var(--rh-red);
}

.about-section {
  background: var(--rh-soft);
}

.about-image {
  min-height: 430px;
  object-fit: cover;
  box-shadow: var(--rh-shadow);
}

.about-lead p {
  margin: 0 0 14px;
}

.feature-list {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.feature-list > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
}

.feature-list i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--rh-red);
}

.feature-list strong {
  display: block;
  margin-bottom: 3px;
  font-family: Oswald, Impact, sans-serif;
  font-size: 22px;
  text-transform: uppercase;
}

.feature-list span {
  color: var(--rh-muted);
}

.partners-section {
  padding: 72px 0 88px;
  background: var(--rh-soft);
}

.partner-banner {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.partner-banner h2 {
  max-width: 760px;
  margin: 0 auto 34px;
  color: var(--rh-black);
  font-family: Oswald, Impact, sans-serif;
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.15;
  text-transform: uppercase;
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  align-items: center;
}

.partner-logo {
  min-height: 82px;
  display: grid;
  place-items: center;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .06);
  filter: grayscale(1);
  opacity: .78;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease, opacity .2s ease;
}

.partner-logo:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .08);
  filter: grayscale(0);
  opacity: 1;
}

.partner-logo img {
  max-width: 100%;
  max-height: 50px;
  object-fit: contain;
}

.contact-section {
  background: #fff;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.contact-list a,
.contact-list p {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 0;
  color: var(--rh-black);
  font-weight: 700;
}

.contact-list i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--rh-red);
  flex: 0 0 42px;
}

.contact-form {
  padding: 38px;
  background: var(--rh-soft);
  border: 1px solid var(--rh-line);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .08);
}

.form-label {
  color: var(--rh-black);
  font-weight: 700;
}

.form-control {
  min-height: 50px;
  border: 1px solid #ddd;
  border-radius: 0;
  box-shadow: none;
}

.form-control:focus {
  border-color: var(--rh-red);
  box-shadow: 0 0 0 .2rem rgba(215, 25, 32, .15);
}

.form-status {
  display: none;
  margin: 14px 0 0;
  color: var(--rh-red);
  font-weight: 700;
  text-align: center;
}

.form-status.show {
  display: block;
}

.site-footer {
  padding: 64px 0 28px;
  color: rgba(255, 255, 255, .78);
  background:
    radial-gradient(circle at 78% 18%, rgba(215, 25, 32, .22), transparent 28%),
    linear-gradient(135deg, #090909, #171717);
}

.site-footer .footer-logo {
  display: inline-flex;
  margin-bottom: 18px;
}

.site-footer h3 {
  margin: 0 0 18px;
  color: #fff;
  font-family: Oswald, Impact, sans-serif;
  font-size: 22px;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, .78);
}

.site-footer a:hover {
  color: #fff;
}

.site-footer p {
  margin: 0 0 10px;
  line-height: 1.65;
}

.site-footer i {
  width: 22px;
  color: var(--rh-red);
  flex: 0 0 22px;
  margin-top: 4px;
  text-align: center;
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact p a {
  display: inline;
  margin: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .55);
  font-size: 14px;
}

@media (max-width: 991px) {
  .navbar {
    padding: 14px 0;
  }

  .navbar-brand img {
    width: 190px;
  }

  .nav-link {
    padding: 12px 0 !important;
  }

  .nav-link::after {
    display: none;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-image-card {
    margin: 42px 0 0;
  }

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

  .stats-grid > div {
    border-right: 0;
    border-bottom: 1px solid var(--rh-line);
  }

  .stats-grid > div:last-child {
    border-bottom: 0;
  }

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

@media (max-width: 767px) {
  .topbar-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 10px 0;
  }

  .topbar-contact {
    gap: 10px;
  }

  .hero-section h1 {
    font-size: 54px;
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-image-card img {
    height: 260px;
  }

  .hero-badge {
    right: 12px;
    bottom: 12px;
  }

  .section-padding {
    padding: 68px 0;
  }

  .contact-form {
    padding: 24px;
  }

  .partner-logos {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
