/* Scope all styles under .ra-landing-root to prevent leakage */
.ra-landing-root {
  font-family: 'Roboto', sans-serif;
  color: #121212;
  background-color: #FFFFFF;
  line-height: 1.5;
  width: 100%;
}


.ra-landing-root a {
  text-decoration: none;
  color: inherit !important;
  transition: all 0.15s ease;
}

.ra-landing-root button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ra-landing-root img {}

.ra-landing-root input {
  font-family: 'Roboto', sans-serif;
  border: none;
  outline: none;
}

/* Common Components & Utilities */
.ra-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}

@media (max-width: 767.98px) {
  .ra-container {
    padding: 0 20px;
  }
}

.ra-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 24px;
  font-weight: 700;
  font-size: 16px;
  border-radius: 3px;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ra-btn--primary {
  background-color: #7C1F18;
  color: #FFFFFF;
}

.ra-btn--primary:hover {
  background-color: #9E2B22;
}

.ra-btn--white {
  background-color: #FFFFFF;
  color: #121212;
}

.ra-btn--white:hover {
  background-color: #F5F5F5;
}

.ra-btn--outline {
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
}

.ra-btn--outline:hover {
  background-color: #FFFFFF;
  color: #121212;
}

.ra-btn--outline-dark {
  border: 1px solid #121212;
  color: #121212;
}

.ra-btn--outline-dark:hover {
  background-color: #121212;
  color: #FFFFFF;
}

/* SECTION 1: HEADER */
.ra-header {
  height: 110px;
  background-color: #FFFFFF;
  border-bottom: 1px solid #D8D8D8;
  position: sticky;
  top: 0;
  z-index: 100;
}

.ra-header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.ra-header__logo img {
  width: 223px;
  height: 48px;
  display: block;
}

@media (max-width: 767.98px) {
  .ra-header__logo img {
    width: 170px;
    height: 37px;
  }
}

.ra-header__nav {
  display: flex;
  gap: 32px;
}

.ra-header__link {
  font-size: 16px;
  font-weight: 700;
  color: #121212;
  position: relative;
}

.ra-header__link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #7C1F18;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ra-header__link:hover::after {
  width: 100%;
}

.ra-header__phone {
  font-size: 16px;
  font-weight: 700;
  color: #121212;
  text-decoration: none;
}

.ra-header__phone:hover {
  color: #7C1F18;
}

.ra-header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
}

.ra-header__burger span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: #121212;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Mobile Menu open state */
.ra-header__burger--active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.ra-header__burger--active span:nth-child(2) {
  opacity: 0;
}

.ra-header__burger--active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 1024px) {
  .ra-header__nav {
    display: none;
  }

  .ra-header__phone {
    display: none;
  }

  .ra-header__burger {
    display: flex;
  }
}

/* Mobile Nav Overlay */
.ra-mobile-nav {
  position: fixed;
  top: 110px;
  left: 0;
  width: 100%;
  height: calc(100vh - 110px);
  background-color: #FFFFFF;
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: 40px 20px;
  gap: 24px;
  transform: translateX(-100%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.ra-mobile-nav--active {
  transform: translateX(0);
}

.ra-mobile-nav__link {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 1px solid #D8D8D8;
  padding-bottom: 12px;
}

.ra-mobile-nav__phone {
  font-size: 20px;
  font-weight: 700;
  color: #7C1F18;
  margin-top: auto;
}

/* SECTION 2: HERO */
.ra-hero {
  position: relative;
  height: 816px;
  color: #FFFFFF;
  background-color: #7C1F18;
  overflow: hidden;
}

.ra-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  z-index: 1;
}

.ra-hero__container {
  display: flex;
  height: 100%;
  align-items: center;
  position: relative;
  z-index: 3;
}

.ra-hero__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.ra-hero__title {
  font-size: 72px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  max-width: 900px;
  color: #FFFFFF;
}

.ra-hero__subtitle {
  font-size: 18px;
  line-height: 1.4;
  max-width: 610px;
  opacity: 0.9;
}

.ra-hero__actions {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 480px;
}

.ra-hero__actions #cc-mm-form-15 .row {
  margin-top: 30px;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 16px !important;
  flex-wrap: wrap !important;

}

/* CMS Form 15 Reset & Styling */
.ra-landing-root #cc-mm-form-15 {
  width: 100%;
}

.ra-landing-root #cc-mm-form-15 .row {
  display: flex !important;
  flex-wrap: wrap !important;
  margin: 0 !important;
  gap: 16px !important;
  align-items: center !important;
}

.ra-landing-root #cc-mm-form-15 .mb-3 {
  margin-bottom: 0 !important;
  padding: 0 !important;
}

/* Phone input — takes remaining space */
.ra-landing-root #cc-mm-form-15 .row>div:nth-child(1) {
  flex: 1 1 180px !important;
  width: auto !important;
  max-width: none !important;
  padding: 0 !important;
}

/* Button — auto width */
.ra-landing-root #cc-mm-form-15 .row>div:nth-child(2) {
  flex: 0 0 auto !important;
  width: auto !important;
  max-width: none !important;
  padding: 0 !important;
}

/* Agreement — full width on new line */
.ra-landing-root #cc-mm-form-15 .row>div:nth-child(3) {
  flex: 0 0 100% !important;
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
}

/* Inputs styling */
.ra-landing-root #cc-mm-form-15 input.form-control {
  height: 48px;
  border-radius: 3px;
  padding: 0 16px;
  font-size: 16px;
  font-weight: 700;
  outline: none;
  width: 100% !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Buttons styling */
.ra-landing-root #cc-mm-form-15 button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 24px;
  font-weight: 700;
  font-size: 16px;
  border-radius: 3px;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Agreement Checkbox */
.ra-landing-root #cc-mm-form-15 .form-agreement-yes {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  cursor: pointer;
  user-select: none;
}

.ra-landing-root #cc-mm-form-15 .form-agreement-yes input[type="checkbox"] {
  margin-top: 3px;
  cursor: pointer;
}

.ra-landing-root #cc-mm-form-15 .form-agreement-yes a {
  text-decoration: underline;
}

/* Errors layout */
.ra-landing-root #cc-mm-form-15 .errors {
  font-size: 14px;
  margin-top: 8px;
  display: none;
}

.ra-landing-root #cc-mm-form-15 .errors:not(:empty) {
  display: block;
}

/* Contextual overrides - HERO (light on dark) */
.ra-hero__actions #cc-mm-form-15 input.form-control {
  border: 1px solid #FFFFFF;
  background: transparent;
  color: #FFFFFF;
}

.ra-hero__actions #cc-mm-form-15 input.form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.ra-hero__actions #cc-mm-form-15 input.form-control:focus {
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.ra-hero__actions #cc-mm-form-15 button.btn {
  background-color: #FFFFFF;
  color: #121212;
}

.ra-hero__actions #cc-mm-form-15 button.btn:hover {
  background-color: #F5F5F5;
}

.ra-hero__actions #cc-mm-form-15 .form-agreement-yes {
  color: rgba(255, 255, 255, 0.8);
}

.ra-hero__actions #cc-mm-form-15 .form-agreement-yes a {
  color: #FFFFFF;
}

.ra-hero__actions #cc-mm-form-15 .errors {
  color: #FF8F88;
}

/* Hide agreement checkbox in hero section form to match design */
.ra-hero__actions #cc-mm-form-15 .row>div:nth-child(3) {}


.ra-hero__actions #cc-mm-form-15 .row>div:nth-child(1) {
  flex: 1 1 200px !important;
  width: auto !important;
  max-width: none !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
}

/* Button - auto width */
.ra-hero__actions #cc-mm-form-15 .row>div:nth-child(2) {
  flex: 0 0 auto !important;
  width: auto !important;
  max-width: none !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
}

/* Agreement - full width below */
.ra-hero__actions #cc-mm-form-15 .row>div:nth-child(3) {
  flex: 0 0 100% !important;
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
}

.ra-hero__details-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 80px;
  width: 100%;
}

.ra-hero__left-col {
  flex: 1.2;
  max-width: 610px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ra-hero__right-col {
  flex: 0.8;
  max-width: 320px;
  color: #FFFFFF;
  padding-bottom: 8px;
}

.ra-hero__bio-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #FFFFFF;
}

.ra-hero__bio-subtitle {
  font-size: 16px;
  opacity: 0.8;
}


@media (max-width: 1199.98px) {
  .ra-hero__title {
    font-size: 56px;
  }
}

@media (max-width: 767.98px) {
  .ra-hero {
    height: auto;
    padding: 80px 0;
  }

  .ra-hero__title {
    font-size: 40px;
  }

  .ra-hero__details-row {
    flex-direction: column;
    align-items: stretch;
    gap: 30px;
  }

  .ra-hero__right-col {
    max-width: 100%;
  }

  .ra-hero__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .ra-landing-root #cc-mm-form-15 .row {
    flex-direction: column;
    align-items: stretch;
  }

  .ra-landing-root #cc-mm-form-15 .col-md-12 {
    width: 100%;
  }

  .ra-landing-root #cc-mm-form-15 input.form-control {
    width: 100%;
  }

  .ra-landing-root #cc-mm-form-15 button.btn {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .ra-hero__title {
    font-size: 32px;
  }
}

/* SECTION 3: PRODUCT GRID */
.ra-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background-color: #121212;
}

.ra-grid-card {
  position: relative;
  height: 800px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 150px 80px;
  color: #FFFFFF;
}

.ra-grid-card__bg {
    border-radius: 0!important;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.ra-grid-card__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.ra-grid-card__title {
  font-size: 45px;
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
}

.ra-grid-card__links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ra-grid-card__link {
  font-size: 20px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  opacity: 0.85;
  color: #FFFFFF;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ra-grid-card__link::after {
  content: '';
  display: inline-block;
  width: 11px;
  height: 10px;
  flex-shrink: 0;
  opacity: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.36 1H11v10.6' stroke='white' stroke-width='2'/%3E%3Cline x1='0.68' y1='10.85' x2='11.33' y2='0.91' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: opacity all 0.15s ease;
}

.ra-grid-card__link:hover {
  opacity: 1;
  color: #FFFFFF;
}

.ra-grid-card__link:hover::after {
  opacity: 1;
}

.ra-catalog-item__title-icon {
  width: 11px;
  height: 10px;
  opacity: 1;
  stroke: currentColor;
  flex-shrink: 0;
  transition: opacity all 0.15s ease;
}

@media (max-width: 1199.98px) {
  .ra-grid-card {
    height: 600px;
    padding: 100px 40px;
  }

  .ra-grid-card__title {
    font-size: 32px;
  }
}

@media (max-width: 767.98px) {
  .ra-grid {
    grid-template-columns: 1fr;
  }

  .ra-grid-card {
    height: 500px;
    padding: 80px 20px;
  }
}

/* SECTION 4: SERVICES SHOWCASE */
.ra-services {
  padding: 150px 0;
  background-image: url('/upload/media/content/services-bg.png');
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.ra-services__container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  position: relative;
  z-index: 2;
}

.ra-services__left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.ra-services__right {
  display: flex;
  flex-direction: column;
}

.ra-services__logo {
  width: 300px;
  height: 65px;
}

.ra-services__logo img {
  width: 100%;
  height: 100%;
  display: block;
}

.ra-services__list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.ra-service-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ra-service-item__title {
  font-size: 36px;
  font-weight: 700;
  color: #121212;
}

.ra-service-item__desc {
  font-size: 18px;
  color: #121212;
  line-height: 1.4;
  opacity: 0.9;
}

@media (max-width: 991.98px) {
  .ra-services__container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .ra-services__left {
    width: 100%;
  }

  .ra-services__right {
    width: 100%;
  }

  .ra-service-item__title {
    font-size: 32px;
  }
}

/* SECTION 5: PARTNERS & DEALERS */
.ra-partners {
  padding: 150px 0;
  background-color: #F5F5F5;
  border-top: 1px solid #D8D8D8;
  border-bottom: 1px solid #D8D8D8;
}

.ra-partners__container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.ra-partners__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

.ra-partners__title {
  font-size: 45px;
  font-weight: 700;
  line-height: 1.2;
  flex: 1;
}

.ra-partners__intro {
  font-size: 18px;
  line-height: 1.4;
  flex: 1.2;
  color: #121212;
}

/* Contextual overrides - PARTNERS (dark on light) */
.ra-partners__intro #cc-mm-form-15 .row {
  margin-top: 30px;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 16px !important;
  flex-wrap: wrap !important;
}

/* Phone input - takes remaining space */
.ra-partners__intro #cc-mm-form-15 .row>div:nth-child(1) {
  flex: 1 1 200px !important;
  width: auto !important;
  max-width: none !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
}

/* Button - auto width */
.ra-partners__intro #cc-mm-form-15 .row>div:nth-child(2) {
  flex: 0 0 auto !important;
  width: auto !important;
  max-width: none !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
}

/* Agreement - full width below */
.ra-partners__intro #cc-mm-form-15 .row>div:nth-child(3) {
  flex: 0 0 100% !important;
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
}

.ra-partners__intro #cc-mm-form-15 input.form-control {
  border: 1px solid #121212;
  background: transparent;
  color: #121212;
}

.ra-partners__intro #cc-mm-form-15 input.form-control::placeholder {
  color: rgba(18, 18, 18, 0.6);
}

.ra-partners__intro #cc-mm-form-15 input.form-control:focus {
  background-color: rgba(0, 0, 0, 0.03);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.ra-partners__intro #cc-mm-form-15 button.btn {
  background-color: #7C1F18;
  color: #FFFFFF;
}

.ra-partners__intro #cc-mm-form-15 button.btn:hover {
  background-color: #9E2B22;
}

.ra-partners__intro #cc-mm-form-15 .form-agreement-yes {
  color: rgba(18, 18, 18, 0.8);
}

.ra-partners__intro #cc-mm-form-15 .form-agreement-yes a {
  color: #121212;
}

.ra-partners__intro #cc-mm-form-15 .errors {
  color: #7C1F18;
}

@media (max-width: 991.98px) {
  .ra-partners__header {
    flex-direction: column;
    gap: 30px;
  }

  .ra-partners__form {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }

  .ra-partners__input {
    width: 100%;
  }
}

/* SECTION 6: BRAND BANNER */
.ra-brand-banner {
  position: relative;
  height: 695px;
  color: #FFFFFF;
  overflow: hidden;
}

.ra-brand-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  z-index: 1;
}

.ra-brand-banner__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  position: relative;
  z-index: 3;
}

.ra-brand-banner__content {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ra-brand-banner__title {
  font-size: 45px;
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
}

.ra-brand-banner__desc {
  font-size: 18px;
  line-height: 1.4;
  opacity: 0.9;
}

@media (max-width: 767.98px) {
  .ra-brand-banner {
    height: auto;
    padding: 100px 0;
  }

  .ra-brand-banner__title {
    font-size: 32px;
  }
}

/* SECTION 7: CATALOG DETAIL SECTION */
.ra-catalog-detail {
  padding: 150px 0;
  background-color: #7C1F18;
  color: #FFFFFF;
}

.ra-catalog-detail__container {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 80px;
}

.ra-catalog-detail__left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.ra-catalog-detail__title {
  font-size: 72px;
  font-weight: 700;
  line-height: 1.1;
  color: #FFFFFF;
}

.ra-catalog-detail__right {
  display: flex;
  flex-direction: column;
}

.ra-catalog-detail__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 40px;
}

.ra-catalog-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ra-catalog-item__title {
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #FFFFFF;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ra-catalog-item__title:hover {
  opacity: 0.7;
}

.ra-catalog-item__desc {
  font-size: 18px;
  line-height: 1.4;
  opacity: 0.8;
}

.ra-catalog-detail__divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 60px 0 40px 0;
}

.ra-catalog-detail__footer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: start;
}

.ra-catalog-social {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ra-catalog-social__icons {
  display: flex;
  gap: 16px;
}

.ra-catalog-social__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ra-catalog-social__text strong {
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
}

.ra-catalog-social__text span {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.4;
  color: #FFFFFF;
}

/* Scoped inline social SVG size & fill */
.ra-social-svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  display: block;
}

.ra-catalog-social__icon,
.ra-footer__social-icon {
  display: inline-block;
  color: #FFFFFF;
  opacity: 0.8;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ra-catalog-social__icon:hover,
.ra-footer__social-icon:hover {
  opacity: 1;
}

.ra-catalog-cert {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ra-catalog-cert__icon {
  width: 25px;
  border-radius: 0 !important;
  height: 32px;
}

.ra-catalog-cert__title {
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
}

@media (max-width: 991.98px) {
  .ra-catalog-detail__container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .ra-catalog-detail__title {
    font-size: 48px;
  }

  .ra-catalog-detail__footer {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 767.98px) {
  .ra-catalog-detail__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 575.98px) {
  .ra-catalog-detail__title {
    font-size: 32px;
  }
}

/* Reviews section removed */

/* SECTION 9: FAQ ACCORDION */
.ra-faq {
  padding: 120px 0;
  background-color: #FFFFFF;
}

.ra-faq__container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}

.ra-faq__left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.ra-faq__title {
  font-size: 72px;
  font-weight: 700;
  line-height: 1.1;
}

.ra-faq__accordion {
  display: flex;
  flex-direction: column;
}

.ra-accordion-item {
  border-top: 1px solid #D8D8D8;
  padding: 30px 0;
}

.ra-accordion-item:last-child {
  border-bottom: 1px solid #D8D8D8;
}

.ra-accordion-item__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 24px;
}

.ra-accordion-item__title {
  font-size: 20px;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ra-accordion-item__header:hover .ra-accordion-item__title {
  color: #7C1F18;
}

.ra-accordion-item__icon {
  width: 16px;
  height: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ra-accordion-item__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ra-accordion-item__text {
  padding-top: 20px;
  font-size: 18px;
  line-height: 1.4;
  color: #121212;
}

.ra-accordion-item--active .ra-accordion-item__icon {
  transform: rotate(180deg);
}

.ra-accordion-item--active .ra-accordion-item__content {
  max-height: 500px;
}

@media (max-width: 991.98px) {
  .ra-faq__container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .ra-faq__title {
    font-size: 48px;
  }
}

@media (max-width: 575.98px) {
  .ra-faq__title {
    font-size: 32px;
  }
}

/* SECTION 10: NEWS SECTION */
.ra-news {
  padding: 120px 0;
  background-color: #7C1F18;
  color: #FFFFFF;
}

.ra-news__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.ra-news__title {
  font-size: 45px;
  font-weight: 700;
}

.ra-news__all-link {
  font-size: 16px;
  font-weight: 700;
  color: #D8D8D8;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ra-news__all-link:hover {
  color: #FFFFFF;
}

.ra-news__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.ra-news-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ra-news-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

.ra-news-card__visual {
  height: 520px;
  width: 100%;
  overflow: hidden;
}

.ra-news-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  transition: transform 0.6s ease;
}

.ra-news-card__body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-grow: 1;
}

.ra-news-card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ra-news-card__date {
  font-size: 14px;
  color: #D8D8D8;
}

.ra-news-card__tag {
  background-color: #FFFFFF;
  color: #121212;
  font-size: 14px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 61px;
}

.ra-news-card__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.ra-news-card__text {
  font-size: 16px;
  line-height: 1.4;
  opacity: 0.8;
}

.ra-news-card__link {
  font-size: 16px;
  font-weight: 700;
  color: #D8D8D8;
  margin-top: auto;
}

.ra-news-card:hover .ra-news-card__link {
  color: #FFFFFF;
  text-decoration: underline;
}

@media (max-width: 1199.98px) {
  .ra-news__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ra-news-card__visual {
    height: 400px;
  }
}

@media (max-width: 767.98px) {
  .ra-news__grid {
    grid-template-columns: 1fr;
  }

  .ra-news-card__visual {
    height: 300px;
  }
}

/* SECTION 11: VIDEOS SECTION */
.ra-videos {
  padding: 120px 0;
  background-color: #FFFFFF;
}

.ra-videos__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.ra-videos__title {
  font-size: 45px;
  font-weight: 700;
}

.ra-videos__all-link {
  font-size: 16px;
  font-weight: 700;
  color: #888888;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ra-videos__all-link:hover {
  color: #7C1F18;
}

.ra-videos__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.ra-video-card {
  display: block;
  text-decoration: none;
}

.ra-video-card__visual {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.ra-video-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ra-video-card:hover .ra-video-card__image {
  transform: scale(1.03);
}

.ra-video-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
  z-index: 2;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ra-video-card:hover .ra-video-card__overlay {
  background: linear-gradient(to top, rgba(124, 31, 24, 0.75) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
}

/* Play button centered in upper half */
.ra-video-card__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -65%);
  width: 72px;
  height: 72px;
  z-index: 3;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ra-video-card:hover .ra-video-card__play-btn {
  transform: translate(-50%, -65%) scale(1.1);
}

.ra-video-card__play-btn img {
  width: 100%;
  height: 100%;
}

/* Title at the bottom inside the card */
.ra-video-card__title {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  padding: 0 32px;
  font-size: 28px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
  text-align: center;
  z-index: 3;
}

@media (max-width: 991.98px) {
  .ra-video-card__visual {
    height: 300px;
  }

  .ra-video-card__title {
    font-size: 22px;
    bottom: 20px;
  }
}

@media (max-width: 767.98px) {
  .ra-videos__grid {
    grid-template-columns: 1fr;
  }

  .ra-video-card__visual {
    height: 260px;
  }

  .ra-video-card__title {
    font-size: 20px;
  }
}

/* SECTION 12: FOOTER */
.ra-footer {
  background-color: #121212;
  color: #FFFFFF;
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ra-footer__container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.ra-footer__column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ra-footer__logo img {
  width: 202px;
  height: 60px;
  display: block;
}

@media (max-width: 768px) {
  .ra-footer__logo img {
    width: 170px;
    height: auto;
  }
}

.ra-footer__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 16px;
  opacity: 0.8;
  line-height: 1.6;
}

.ra-footer__info p {
  margin: 0;
}

.ra-footer__social {
  display: flex;
  gap: 16px;
  align-items: center;
}

.ra-footer__social-icon {
  width: 24px;
  height: 24px;
}

.ra-footer__column #ra-call-btn {
  width: 100%;
  max-width: 220px;
  height: 48px;
  border: 1px solid #FFFFFF;
  background-color: transparent;
  color: #FFFFFF;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ra-footer__column #ra-call-btn:hover {
  background-color: #FFFFFF;
  color: #121212;
}

.ra-footer__links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ra-footer__link {
  font-size: 16px;
  opacity: 0.8;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ra-footer__link:hover {
  opacity: 1;
  color: #9E2B22;
}

@media (max-width: 991.98px) {
  .ra-footer__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 767.98px) {
  .ra-footer__container {
    grid-template-columns: 1fr;
  }

  .ra-footer {
    padding: 60px 0 40px 0;
  }
}

/* Modal Popup Styles */
.ra-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.ra-modal--active {
  opacity: 1;
  pointer-events: all;
}

.ra-modal__content {
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 40px;
  max-width: 480px;
  width: 90%;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  transform: translateY(-20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ra-modal--active .ra-modal__content {
  transform: translateY(0);
}

.ra-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  color: #121212;
}

.ra-modal__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.ra-modal__text {
  font-size: 16px;
  color: #888888;
  margin-bottom: 24px;
}

.ra-modal__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ra-modal__input {
  height: 48px;
  border: 1px solid #D8D8D8;
  border-radius: 3px;
  padding: 0 16px;
  font-size: 16px;
}

.ra-modal__input:focus {
  border-color: #7C1F18;
  box-shadow: 0 0 10px rgba(124, 31, 24, 0.1);
}