/* ============================================================
   rent.css — «Rentgo» layout, .rg-* prefix
   12 sections, light & dark mix, lime accent (--gx-lime)
   ============================================================ */


/* ---------- shared atoms ---------- */

.rg-btn--white {
  background: var(--gx-white);
  color: var(--gx-dark);
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
}
.rg-btn--white .gx-btn__circle {
  background: var(--gx-dark);
  color: var(--gx-white);
  transition: background 200ms ease, color 200ms ease;
}
.rg-btn--white:hover {
  background: var(--gx-lime);
  color: var(--gx-dark);
  transform: translateY(-2px);
}
.rg-btn--white:hover .gx-btn__circle {
  background: var(--gx-dark);
  color: var(--gx-lime);
}

.rg-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  border-radius: var(--gx-r-full);
  background: var(--gx-beige);
  font-family: var(--gx-font-mono, 'JetBrains Mono', monospace);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--gx-dark);
}

.rg-eyebrow__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gx-lime-dark, #a8cc44);
}

.rg-eyebrow--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.rg-section-head {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.rg-section-head .gx-h2 {
  margin: 0;
}
.rg-section-head--invert {
  color: var(--gx-white);
}
.rg-section-head--invert .gx-h2 {
  color: var(--gx-white);
}

.rg-feat-row {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--gx-gray-light);
  align-items: flex-start;
}
.rg-feat-row__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--gx-r-md);
  background: #fff;
  border: 1px solid rgba(31, 31, 30, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gx-dark);
  flex-shrink: 0;
}
.rg-feat-row__title {
  font-family: var(--gx-font-heading, 'Inter Tight', sans-serif);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--gx-dark);
  margin: 0 0 0.35rem;
}
.rg-feat-row__text {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--gx-gray-mid, #6b7280);
  margin: 0;
}

.rg-trustbar {
  margin-top: 4rem;
  padding: 1.5rem 2rem;
  background: var(--gx-off-white);
  border-radius: var(--gx-r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.rg-trustbar--compact {
  padding: 1.1rem 1.75rem;
  background: transparent;
  border: 1px solid var(--gx-gray-light);
}
.rg-trustbar__avatars {
  display: inline-flex;
}
.rg-trustbar__avatars > * {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  border: 2px solid var(--gx-white);
  margin-left: -0.5rem;
  object-fit: cover;
}
.rg-trustbar__avatars > *:first-child {
  margin-left: 0;
}
.rg-trustbar__avatar {
  display: inline-block;
}
.rg-trustbar__text {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--gx-gray-mid);
}
.rg-trustbar__text a {
  color: var(--gx-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}
.rg-trustbar__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}
.rg-trustbar__score {
  font-weight: 700;
  color: var(--gx-dark);
}
.rg-trustbar__stars {
  display: inline-flex;
  gap: 1px;
}
.rg-trustbar__count {
  color: var(--gx-gray-mid);
}


/* ============================================================
   1. HERO
   ============================================================ */
.rg-hero {
  position: relative;
  min-height: 100vh;
  padding: 8rem 0 3rem;
  background: var(--gx-darker, #060810);
  color: var(--gx-white);
  isolation: isolate;
}
.rg-hero__videos,
.rg-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.rg-hero__videos {
  overflow: hidden;
}
.rg-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.rg-hero__video--active {
  opacity: 1;
}
.rg-hero__overlay {
  background:
    linear-gradient(180deg, rgba(6,8,16,0.85) 0%, rgba(6,8,16,0.35) 35%, rgba(6,8,16,0.95) 100%);
}

.rg-hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  padding-top: 6rem;
}

.rg-hero__headline {
  font-family: var(--gx-font-heading, 'Inter Tight', sans-serif);
  font-size: clamp(2.5rem, 5vw + 1rem, 4.75rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--gx-white);
}

.rg-hero__sub {
  max-width: 38rem;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.rg-hero__cta {
  display: inline-flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.rg-form {
  width: 100%;
  max-width: 60rem;
  margin: 2.5rem auto 0;
  display: grid;
  grid-template-columns: auto 1fr 1fr 1.3fr 1.1fr auto;
  align-items: stretch;
  gap: 0;
  background: var(--gx-white);
  border: 1px solid var(--gx-gray-light, #e8e8e8);
  border-radius: var(--gx-r-xl);
  padding: 0.5rem 0.5rem 0.5rem 0;
  box-shadow: 0 8px 40px rgba(6, 8, 16, 0.28);
}
.rg-form__lead {
  padding: 0.5rem 1.25rem;
  border-right: 1px solid var(--gx-gray-light, #e8e8e8);
  display: flex;
  align-items: center;
  min-width: 0;
}
.rg-form__lead-title {
  font-family: var(--gx-font-heading, 'Inter Tight', sans-serif);
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.3;
  color: var(--gx-dark);
  margin: 0;
  white-space: nowrap;
}
.rg-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  text-align: left;
  border-right: 1px solid var(--gx-gray-light, #e8e8e8);
  min-width: 0;
}
.rg-form__label {
  font-family: var(--gx-font-mono, 'JetBrains Mono', monospace);
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(15, 18, 30, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.rg-form__input {
  background: transparent;
  border: 0;
  font-family: inherit;
  font-size: 0.875rem;
  color: var(--gx-dark);
  padding: 0;
  outline: 0;
  width: 100%;
}
.rg-form__input::placeholder {
  color: rgba(15, 18, 30, 0.3);
}
.rg-form__input::-webkit-calendar-picker-indicator {
  opacity: 0.4;
}
.rg-form__submit {
  background: var(--gx-lime);
  color: var(--gx-dark);
  border: 0;
  padding: 0.85rem 1.5rem;
  border-radius: var(--gx-r-lg);
  font-family: var(--gx-font-heading, 'Inter Tight', sans-serif);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--gx-t, 200ms) ease;
  align-self: center;
  margin-left: 0.5rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.rg-form__submit:hover {
  background: var(--gx-lime-dark);
}


/* ============================================================
   2. ABOUT
   ============================================================ */
.rg-about {
  background: var(--gx-white);
  padding: 7rem 0;
}
.rg-about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.rg-about__visual {
  position: relative;
}
.rg-about__photo-wrap {
  position: relative;
  border-radius: var(--gx-r-2xl);
  overflow: hidden;
  aspect-ratio: 5 / 4;
  background: var(--gx-beige);
}
.rg-about__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rg-about__video-tile {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  background: rgba(15, 18, 30, 0.78);
  backdrop-filter: blur(6px);
  border-radius: var(--gx-r-md);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gx-white);
}
.rg-about__play {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--gx-lime);
  color: var(--gx-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: transform var(--gx-t, 200ms) ease, background var(--gx-t, 200ms) ease;
}
.rg-about__play:hover {
  transform: scale(1.08);
}
.rg-about__avatars {
  display: inline-flex;
}
.rg-about__avatar {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  border: 2px solid rgba(15, 18, 30, 0.78);
  margin-left: -0.5rem;
  object-fit: cover;
}
.rg-about__avatar:first-child {
  margin-left: 0;
}
.rg-about__video-label {
  font-size: 0.75rem;
  font-weight: 500;
}

.rg-about__title {
  margin: 0.75rem 0 1.25rem;
}
.rg-about__desc {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gx-gray-mid);
  margin: 0 0 1.5rem;
}

.rg-about__footer {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gx-gray-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.rg-about__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.rg-about__author-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.rg-about__author-name {
  font-family: var(--gx-font-heading, 'Inter Tight', sans-serif);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gx-dark);
  margin: 0;
}
.rg-about__author-role {
  font-size: 0.8rem;
  color: var(--gx-gray-mid);
  margin: 0.1rem 0 0;
}


/* ============================================================
   3. SERVICES
   ============================================================ */
.rg-services {
  padding: 6rem 0;
  background: var(--gx-off-white);
}
.rg-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.rg-service-card {
  background: var(--gx-white);
  border-radius: var(--gx-r-2xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid transparent;
  transition: var(--gx-t-slow, 400ms) cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.rg-service-card:hover {
  transform: translateY(-4px);
  border-color: var(--gx-lime);
  box-shadow: 0 20px 40px -20px rgba(15, 18, 30, 0.15);
}
.rg-service-card__icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--gx-lime);
  color: var(--gx-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.rg-service-card__title {
  font-family: var(--gx-font-heading, 'Inter Tight', sans-serif);
  font-weight: 600;
  font-size: 1.375rem;
  color: var(--gx-dark);
  margin: 0;
}
.rg-service-card__text {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--gx-gray-mid);
  margin: 0;
  flex-grow: 1;
}
.rg-service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gx-gray-light);
  color: var(--gx-dark);
  font-weight: 500;
  font-size: 0.875rem;
  text-decoration: none;
  transition: var(--gx-t, 200ms) ease;
}
.rg-service-card__link:hover {
  color: var(--gx-lime-dark);
  gap: 0.6rem;
}


/* ============================================================
   4. WHY CHOOSE US
   ============================================================ */
.rg-why {
  padding: 7rem 0;
  background: var(--gx-white);
}
.rg-why__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.rg-why__title {
  margin: 0.75rem 0 2rem;
}
.rg-why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 1.5rem;
}
.rg-why__feat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--gx-r-md);
  background: var(--gx-off-white);
  border: 1px solid rgba(31, 31, 30, 0.12);
  color: var(--gx-dark);
  margin-bottom: 0.85rem;
}
.rg-why__feat-title {
  font-family: var(--gx-font-heading, 'Inter Tight', sans-serif);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--gx-dark);
  margin: 0 0 0.4rem;
}
.rg-why__feat-text {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--gx-gray-mid);
  margin: 0;
}

.rg-why__visual {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  aspect-ratio: 5 / 5;
}
.rg-why__photo {
  position: relative;
  border-radius: var(--gx-r-2xl);
  overflow: hidden;
}
.rg-why__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.rg-why__photo--main {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
}
.rg-why__photo--sub {
  grid-row: 2 / 3;
  grid-column: 2 / 3;
}

.rg-why__customers {
  position: absolute;
  top: 50%;
  right: -1rem;
  transform: translateY(-30%);
  background: var(--gx-white);
  padding: 1rem 1.25rem;
  border-radius: var(--gx-r-md);
  box-shadow: 0 12px 36px -12px rgba(15, 18, 30, 0.25);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 1;
}
.rg-why__customers-num {
  font-family: var(--gx-font-heading, 'Inter Tight', sans-serif);
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--gx-dark);
  line-height: 1;
}
.rg-why__customers-avatars {
  display: inline-flex;
  margin-bottom: 0.3rem;
}
.rg-why__customers-avatars > * {
  display: inline-block;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  border: 2px solid var(--gx-white);
  margin-left: -0.4rem;
  object-fit: cover;
}
.rg-why__customers-avatars > *:first-child {
  margin-left: 0;
}
.rg-why__customers-label {
  font-size: 0.8rem;
  color: var(--gx-gray-mid);
  margin: 0;
}


/* ============================================================
   5. VIDEO
   ============================================================ */
.rg-video {
  padding: 6rem 0;
  background: var(--gx-off-white);
}
.rg-video__inner {
  background: var(--gx-darker, #060810);
  color: var(--gx-white);
  border-radius: var(--gx-r-2xl);
  padding: 4rem 3rem 3rem;
  position: relative;
  overflow: hidden;
}
.rg-video .rg-video__sub {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  max-width: 38rem;
  margin: 0 auto 1rem;
}
.rg-video__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.rg-video__bullets li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
}

.rg-video__poster {
  position: relative;
  margin-top: 3rem;
  border-radius: var(--gx-r-xl);
  overflow: hidden;
  aspect-ratio: 16 / 8;
}
.rg-video__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.rg-video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: var(--gx-lime);
  color: var(--gx-dark);
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--gx-t, 200ms) ease;
  box-shadow: 0 0 0 8px rgba(201, 236, 102, 0.18);
}
.rg-video__play:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.rg-video__partners {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}
.rg-video__brand {
  font-family: var(--gx-font-heading, 'Inter Tight', sans-serif);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  transition: color 200ms ease;
  cursor: default;
  user-select: none;
}
.rg-video__brand:hover {
  color: rgba(255, 255, 255, 0.75);
}


/* ============================================================
   6. FLEET
   ============================================================ */
.rg-fleet {
  padding: 7rem 0;
  background: var(--gx-white);
}
.rg-fleet__track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.rg-fleet-card {
  position: relative;
  border-radius: var(--gx-r-2xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--gx-dark);
  isolation: isolate;
}
.rg-fleet-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.rg-fleet-card__arrow {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--gx-lime);
  color: var(--gx-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 2;
  transition: var(--gx-t, 200ms) ease;
}
.rg-fleet-card__arrow:hover {
  background: var(--gx-white);
}
.rg-fleet-card__overlay {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(15, 18, 30, 0.78);
  backdrop-filter: blur(6px);
  border-radius: var(--gx-r-lg);
  color: var(--gx-white);
  z-index: 1;
}
.rg-fleet-card__name {
  font-family: var(--gx-font-heading, 'Inter Tight', sans-serif);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--gx-white);
  margin: 0;
}
.rg-fleet-card__price {
  display: inline-flex;
  align-items: baseline;
  gap: 0.25rem;
  margin: 0.5rem 0 0.75rem;
}
.rg-fleet-card__price-num {
  font-family: var(--gx-font-heading, 'Inter Tight', sans-serif);
  font-weight: 700;
  font-size: 1.875rem;
  color: var(--gx-lime);
}
.rg-fleet-card__price-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
}
.rg-fleet-card__specs {
  display: flex;
  gap: 1.5rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.75);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 0.75rem;
}
.rg-fleet-card__specs span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.rg-fleet-card__specs strong {
  color: var(--gx-white);
  font-weight: 600;
  margin-left: auto;
}

.rg-fleet__dots {
  display: none;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.rg-fleet__dots span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--gx-gray-light);
  transition: width 250ms ease, background 250ms ease;
  cursor: pointer;
}
.rg-fleet__dots span.is-active {
  background: var(--gx-lime-dark);
  width: 1.5rem;
  border-radius: var(--gx-r-full);
}


/* ============================================================
   7. CORE FEATURES
   ============================================================ */
.rg-features {
  padding: 7rem 0;
  background: var(--gx-off-white);
}
.rg-features__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.rg-features__visual {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  aspect-ratio: 5 / 6;
}
.rg-features__photo {
  border-radius: var(--gx-r-2xl);
  overflow: hidden;
}
.rg-features__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.rg-features__photo--top {
  margin-right: 3rem;
}
.rg-features__photo--bottom {
  margin-left: 3rem;
}
.rg-features__title {
  margin: 0.75rem 0 1.25rem;
}
.rg-features__desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gx-gray-mid);
  margin: 0 0 1.25rem;
}


/* ============================================================
   8. PRICING
   ============================================================ */
.rg-pricing {
  padding: 7rem 0;
  background: var(--gx-white);
}
.rg-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.rg-plan {
  background: var(--gx-white);
  border: 1px solid var(--gx-gray-light);
  border-radius: var(--gx-r-2xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: var(--gx-t-slow, 400ms) cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.rg-plan--featured {
  border-color: var(--gx-lime);
  box-shadow: 0 24px 48px -24px rgba(201, 236, 102, 0.4);
  transform: translateY(-8px);
}
.rg-plan__head {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
.rg-plan__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--gx-r-md);
  background: var(--gx-off-white);
  border: 1px solid rgba(31, 31, 30, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gx-dark);
  flex-shrink: 0;
}
.rg-plan__name {
  font-family: var(--gx-font-heading, 'Inter Tight', sans-serif);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--gx-dark);
  margin: 0 0 0.3rem;
}
.rg-plan__sub {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--gx-gray-mid);
  margin: 0;
}
.rg-plan__price {
  padding: 1.25rem 1.25rem;
  background: var(--gx-off-white);
  border-radius: var(--gx-r-md);
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}
.rg-plan__price-num {
  font-family: var(--gx-font-heading, 'Inter Tight', sans-serif);
  font-weight: 700;
  font-size: 2rem;
  color: var(--gx-dark);
  line-height: 1;
}
.rg-plan__price-label {
  font-size: 0.875rem;
  color: var(--gx-gray-mid);
}
.rg-plan__cta {
  background: var(--gx-lime);
  color: var(--gx-dark);
  border: 0;
  padding: 0.95rem 1rem;
  border-radius: var(--gx-r-full);
  font-family: var(--gx-font-heading, 'Inter Tight', sans-serif);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--gx-t, 200ms) ease;
}
.rg-plan__cta:hover {
  background: var(--gx-dark);
  color: var(--gx-lime);
}
.rg-plan__included {
  font-family: var(--gx-font-heading, 'Inter Tight', sans-serif);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gx-dark);
  margin: 0.5rem 0 0;
}
.rg-plan__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.rg-plan__list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--gx-gray-mid);
}

.rg-pricing__notes {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.rg-pricing__note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--gx-off-white);
  border-radius: var(--gx-r-full);
  font-size: 0.8125rem;
  color: var(--gx-gray-mid);
}


/* ============================================================
   9. CTA
   ============================================================ */
.rg-cta {
  padding: 5rem 0;
  background: var(--gx-white);
}
.rg-cta__card {
  position: relative;
  border-radius: var(--gx-r-2xl);
  overflow: hidden;
  isolation: isolate;
  padding: 4rem 4rem 3.5rem;
  color: var(--gx-white);
  min-height: 22rem;
  display: flex;
}
.rg-cta__bg,
.rg-cta__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.rg-cta__bg {
  background-image: url('../../images/cars/car13.jpg');
  background-size: cover;
  background-position: center;
}
.rg-cta__overlay {
  background:
    linear-gradient(90deg, rgba(6,8,16,0.92) 0%, rgba(6,8,16,0.6) 60%, rgba(6,8,16,0.25) 100%);
}
.rg-cta__content {
  max-width: 32rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.rg-cta__title {
  color: var(--gx-white);
  margin: 0;
}
.rg-cta__sub {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}
.rg-cta__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.rg-cta__bullets li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
}
.rg-cta__row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}
.rg-cta__phone {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.rg-cta__phone-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gx-white);
}
.rg-cta__phone-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 0.15rem;
}
.rg-cta__phone-num {
  font-family: var(--gx-font-heading, 'Inter Tight', sans-serif);
  font-weight: 600;
  font-size: 1rem;
  color: var(--gx-white);
  margin: 0;
}


/* ============================================================
   10. TESTIMONIALS
   ============================================================ */
.rg-testimonials {
  padding: 7rem 0;
  background: var(--gx-off-white);
}
.rg-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.rg-tcard {
  position: relative;
  border-radius: var(--gx-r-2xl);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--gx-dark);
  isolation: isolate;
}
.rg-tcard__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}
.rg-tcard__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(15, 18, 30, 0.95) 100%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: var(--gx-white);
}
.rg-tcard__stars {
  display: inline-flex;
  gap: 2px;
  margin-bottom: 0.75rem;
}
.rg-tcard__text {
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 1rem;
}
.rg-tcard__name {
  font-family: var(--gx-font-heading, 'Inter Tight', sans-serif);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gx-white);
  margin: 0;
}


/* ============================================================
   11. FAQ
   ============================================================ */
.rg-faq {
  padding: 7rem 0;
  background: var(--gx-white);
}
.rg-faq__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.rg-faq__title {
  margin: 0.75rem 0 1.25rem;
}
.rg-faq__desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gx-gray-mid);
  margin: 0 0 1.25rem;
}
.rg-faq__bullets {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.rg-faq__bullets li {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--gx-gray-mid);
}

.rg-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.rg-faq-item {
  background: var(--gx-off-white);
  border-radius: var(--gx-r-md);
  overflow: hidden;
  transition: var(--gx-t-slow, 400ms) ease;
}
.rg-faq-item.is-open {
  background: var(--gx-dark);
  box-shadow: 0 8px 32px rgba(6,8,16,0.18);
}
.rg-faq-item__btn {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--gx-font-heading, 'Inter Tight', sans-serif);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--gx-dark);
  text-align: left;
  cursor: pointer;
  transition: color var(--gx-t, 200ms) ease;
}
.rg-faq-item.is-open .rg-faq-item__btn {
  color: var(--gx-lime);
}
.rg-faq-item__btn strong {
  font-weight: 700;
  margin-right: 0.4rem;
}
.rg-faq-item__icon {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  transition: background var(--gx-t, 200ms) ease, border-color var(--gx-t, 200ms) ease;
}
.rg-faq-item.is-open .rg-faq-item__icon {
  background: var(--gx-lime);
  border-color: var(--gx-lime);
}
.rg-faq-item__icon::before,
.rg-faq-item__icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: var(--gx-t, 200ms) ease;
}
.rg-faq-item.is-open .rg-faq-item__icon::before,
.rg-faq-item.is-open .rg-faq-item__icon::after {
  background: var(--gx-dark);
}
.rg-faq-item__icon::before {
  width: 10px;
  height: 1.5px;
}
.rg-faq-item__icon::after {
  width: 1.5px;
  height: 10px;
}
.rg-faq-item.is-open .rg-faq-item__icon::after {
  transform: scaleY(0);
}

.rg-faq-item__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--gx-t-slow, 400ms) ease;
}
.rg-faq-item.is-open .rg-faq-item__body {
  grid-template-rows: 1fr;
}
.rg-faq-item__inner {
  overflow: hidden;
  padding: 0 1.5rem;
}
.rg-faq-item.is-open .rg-faq-item__inner {
  padding: 0 1.5rem 1.25rem;
}
.rg-faq-item__inner p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(15, 18, 30, 0.85);
  margin: 0;
}
.rg-faq-item.is-open .rg-faq-item__inner p {
  color: rgba(255,255,255,0.7);
}


/* ============================================================
   12. BLOG
   ============================================================ */
.rg-blog {
  padding: 7rem 0;
  background: var(--gx-off-white);
}
.rg-blog__sub {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gx-gray-mid);
  max-width: 36rem;
  margin: 0;
}
.rg-blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.rg-bcard {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.rg-bcard__img-link {
  display: block;
  border-radius: var(--gx-r-xl);
  overflow: hidden;
  aspect-ratio: 16 / 11;
}
.rg-bcard__img-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--gx-t-slow, 400ms) cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.rg-bcard__img-link:hover img {
  transform: scale(1.05);
}
.rg-bcard__title {
  font-family: var(--gx-font-heading, 'Inter Tight', sans-serif);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.35;
  color: var(--gx-dark);
  margin: 0;
}
.rg-bcard__more {
  margin-top: 0.25rem;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .rg-form {
    grid-template-columns: 1fr 1fr 1fr auto;
    max-width: 52rem;
  }
  .rg-form__lead {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 1px solid var(--gx-gray-light, #e8e8e8);
    padding: 0.5rem 1rem 0.75rem;
  }
  .rg-form__submit {
    grid-column: span 1;
    align-self: stretch;
    border-radius: var(--gx-r-md);
    margin-left: 0;
  }
}

@media (max-width: 1024px) {
  .rg-hero {
    padding-top: 6rem;
  }
  .rg-hero__inner {
    padding-top: 3rem;
  }
  .rg-about__inner,
  .rg-why__inner,
  .rg-features__inner,
  .rg-faq__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .rg-services__grid,
  .rg-pricing__grid,
  .rg-testimonials__grid,
  .rg-blog__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .rg-fleet__track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 1rem;
    padding-bottom: 0.5rem;
  }
  .rg-fleet__track::-webkit-scrollbar { display: none; }
  .rg-fleet__track .rg-fleet-card {
    flex: 0 0 82%;
    scroll-snap-align: start;
  }
  .rg-fleet__dots { display: flex; }
  .rg-plan--featured {
    transform: none;
  }
  .rg-cta__card {
    padding: 3rem 2.5rem;
  }
  .rg-video__inner {
    padding: 3rem 1.75rem 2rem;
  }
  .rg-why__customers {
    right: 0;
    transform: translateY(0);
    bottom: -1rem;
    top: auto;
  }
  .rg-features__photo--top {
    margin-right: 1.5rem;
  }
  .rg-features__photo--bottom {
    margin-left: 1.5rem;
  }
}

@media (max-width: 768px) {
  .rg-hero__headline {
    font-size: clamp(2rem, 7vw + 1rem, 3rem);
  }
  .rg-form {
    grid-template-columns: 1fr;
    padding: 0.5rem;
  }
  .rg-form__lead,
  .rg-form__field {
    padding: 0.6rem 0.75rem;
    border-right: 0;
  }
  .rg-form__field + .rg-form__field {
    border-top: 1px solid var(--gx-gray-light, #e8e8e8);
  }
  .rg-form__submit {
    margin-left: 0;
    border-radius: var(--gx-r-md);
  }
  .rg-services__grid,
  .rg-fleet__track,
  .rg-pricing__grid,
  .rg-testimonials__grid,
  .rg-blog__grid {
    grid-template-columns: 1fr;
  }
  .rg-why__grid {
    grid-template-columns: 1fr;
  }
  .rg-trustbar {
    padding: 1.25rem 1.5rem;
    border-radius: var(--gx-r-xl);
  }
  .rg-trustbar__rating {
    width: 100%;
    justify-content: center;
  }
  .rg-cta__card {
    padding: 2.5rem 1.5rem;
    min-height: auto;
  }
  .rg-cta__overlay {
    background: rgba(6, 8, 16, 0.85);
  }
  .rg-cta__row {
    gap: 1rem;
  }
  .rg-section-head {
    margin-bottom: 2.5rem;
  }
  .rg-about,
  .rg-why,
  .rg-features,
  .rg-fleet,
  .rg-pricing,
  .rg-testimonials,
  .rg-faq,
  .rg-blog,
  .rg-services,
  .rg-video {
    padding: 4rem 0;
  }
  .rg-features__photo--top,
  .rg-features__photo--bottom {
    margin: 0;
  }
  .rg-video__partners {
    gap: 1.5rem;
  }
  .rg-video__partners img {
    height: 1.25rem;
  }
}


/* ============================================================
   FORM ENHANCEMENTS — date trigger, calendar, select, validation
   ============================================================ */

/* select on dark form */
.rg-form__select-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.rg-form__select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 1.25rem;
}
.rg-form__select option {
  background: var(--gx-white);
  color: var(--gx-dark);
}
.rg-form__select-arr {
  position: absolute;
  right: 0;
  pointer-events: none;
  color: rgba(15, 18, 30, 0.45);
}

/* date trigger button */
.rg-form__field--date {
  position: relative;
}
.rg-form__date-trigger {
  background: transparent;
  border: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: inherit;
  font-size: 0.875rem;
  color: rgba(15, 18, 30, 0.4);
  cursor: pointer;
  text-align: left;
  width: 100%;
}
.rg-form__date-trigger svg {
  flex-shrink: 0;
  color: rgba(15, 18, 30, 0.4);
}
.rg-form__date-trigger.is-set,
.rg-form__date-trigger.is-set svg {
  color: var(--gx-dark);
}
.rg-form__date-trigger.is-open {
  color: var(--gx-lime);
}
.rg-form__date-trigger.is-open svg {
  color: var(--gx-lime);
}

/* validation */
.rg-form__field.has-error .rg-form__input,
.rg-form__field.has-error .rg-form__date-trigger {
  color: #dc2626;
}
.rg-form__field.has-error .rg-form__label {
  color: #dc2626;
}

/* submit loader */
.rg-form__submit {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 5.5rem;
}
.rg-form__submit:disabled {
  opacity: 0.85;
  cursor: wait;
}
.rg-form__submit-loader {
  display: inline-flex;
  animation: rg-spin 0.8s linear infinite;
}
.rg-form__submit-loader[hidden] {
  display: none;
}
@keyframes rg-spin {
  to { transform: rotate(360deg); }
}
.rg-form__submit.is-success {
  background: var(--gx-lime-dark);
}

/* ----- Calendar popup ----- */
.rg-cal-popup {
  position: absolute;
  bottom: calc(100% + 0.75rem);
  right: 0;
  z-index: 30;
  width: 19rem;
  max-width: calc(100vw - 2rem);
  background: var(--gx-white);
  color: var(--gx-dark);
  border-radius: var(--gx-r-lg);
  box-shadow: 0 24px 60px -16px rgba(6, 8, 16, 0.45);
  padding: 1rem;
  font-family: var(--gx-font-body, 'Inter', sans-serif);
}
.rg-cal-popup[hidden] {
  display: none;
}

.rg-cal__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}
.rg-cal__title {
  font-family: var(--gx-font-heading, 'Inter Tight', sans-serif);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gx-dark);
}
.rg-cal__nav-btn {
  width: 2rem;
  height: 2rem;
  border: 0;
  background: var(--gx-off-white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--gx-dark);
  transition: var(--gx-t, 200ms) ease;
}
.rg-cal__nav-btn:hover {
  background: var(--gx-lime);
}

.rg-cal__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 0.4rem;
}
.rg-cal__weekdays span {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gx-gray-mid, #6b7280);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.rg-cal__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.rg-cal__day {
  height: 2.25rem;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 0.85rem;
  color: var(--gx-dark);
  border-radius: var(--gx-r-sm);
  cursor: pointer;
  transition: var(--gx-t, 200ms) ease;
}
.rg-cal__day:hover:not(:disabled):not(.rg-cal__day--selected) {
  background: var(--gx-off-white);
}
.rg-cal__day--empty {
  cursor: default;
  pointer-events: none;
}
.rg-cal__day--past {
  color: var(--gx-gray, #9ca3af);
  cursor: not-allowed;
  opacity: 0.5;
}
.rg-cal__day--today {
  font-weight: 700;
  outline: 1.5px dashed rgba(168, 204, 68, 0.6);
  outline-offset: -3px;
}
.rg-cal__day--selected {
  background: var(--gx-lime);
  color: var(--gx-dark);
  font-weight: 600;
}
.rg-cal__day--start,
.rg-cal__day--end {
  background: var(--gx-lime);
  color: var(--gx-dark);
  font-weight: 700;
  border-radius: var(--gx-r-sm);
}
.rg-cal__day--in-range {
  background: rgba(168, 204, 68, 0.18);
  border-radius: 0;
  color: var(--gx-dark);
}
.rg-cal__hint {
  font-size: 0.7rem;
  color: var(--gx-gray-mid);
  text-align: center;
  margin-bottom: 0.5rem;
  font-family: var(--gx-font-mono, monospace);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.rg-cal__footer {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--gx-gray-light);
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}
.rg-cal__btn {
  border: 0;
  padding: 0.55rem 1rem;
  border-radius: var(--gx-r-full);
  font-family: var(--gx-font-heading, 'Inter Tight', sans-serif);
  font-weight: 500;
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--gx-t, 200ms) ease;
}
.rg-cal__btn--cancel {
  background: var(--gx-off-white);
  color: var(--gx-dark);
}
.rg-cal__btn--cancel:hover {
  background: var(--gx-beige);
}
.rg-cal__btn--apply {
  background: var(--gx-dark);
  color: var(--gx-white);
}
.rg-cal__btn--apply:hover {
  background: var(--gx-lime);
  color: var(--gx-dark);
}

@media (max-width: 1200px) {
  .rg-cal-popup {
    right: 50%;
    transform: translateX(50%);
  }
}
@media (max-width: 768px) {
  .rg-cal-popup {
    right: 0;
    transform: none;
  }
}

/* ============================================================
   Video popup
   ============================================================ */
.rg-video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.rg-video-modal[hidden] {
  display: none;
}
.rg-video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 8, 16, 0.85);
  backdrop-filter: blur(6px);
  cursor: pointer;
}
.rg-video-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 64rem;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--gx-r-2xl, 24px);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.rg-video-modal__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.rg-video-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--gx-t, 200ms) ease, transform var(--gx-t, 200ms) ease;
}
.rg-video-modal__close:hover {
  background: var(--gx-lime);
  color: var(--gx-dark);
  transform: scale(1.05);
}

/* ============================================================
   Fixed frosted-glass header — auto-hide while scrolling hero
   ============================================================ */
body.rg-page .hd-header#stickyHeader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 200;
  background: rgba(10, 10, 14, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 350ms cubic-bezier(0.4, 0, 0.2, 1),
              background 300ms ease,
              box-shadow 300ms ease;
}
/* Hidden mid-scroll while still over hero */
body.rg-page .hd-header#stickyHeader.is-hidden {
  transform: translateY(-100%);
}
/* Solid pinned state — past the hero */
body.rg-page .hd-header#stickyHeader.is-pinned {
  background: rgba(10, 10, 14, 0.88);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  transform: translateY(0);
}
body.rg-page .hd-header .hd-logo,
body.rg-page .hd-header .hd-nav__link,
body.rg-page .hd-header .hd-nav__link span,
body.rg-page .hd-header .gx-btn--dark {
  color: #fff;
}

/* Hero takes the visual top of the page */
body.rg-page .rg-hero {
  margin-top: 0;
}

