/**
 * NS Cricket native header + footer chrome.
 */

:root {
  --rc-brand: #17457b;
  --rc-brand-dark: #123a66;
  --rc-brand-light: #8fb4e3;
  --rc-red: #c8102e;
  --rc-red-dark: #a00d25;
  --rc-ink: #1a1a1a;
  --rc-muted: #5c5c5c;
  --rc-footer-bg: #282828;
  --rc-white: #fff;
  --rc-max: 1320px;
  --rc-font: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
  --rc-fw-light: 300;
  --rc-fw-regular: 400;
  --rc-fw-medium: 500;
  --rc-fw-semibold: 600;
  --rc-header-z: 1000;
  --rc-header-offset: 2.35rem;
  /* Remons / OVA / Elementor typography vars → Outfit (avoids missing Roboto/Lexend/serif fallbacks). */
  --primary-font: var(--rc-font);
  --secondary-font: var(--rc-font);
  --ovabrw-primary-font: var(--rc-font);
}

/* Site-wide type — geometric sans; 100% root (was 125% / 20px — too large). */
html {
  font-family: var(--rc-font);
  font-size: 100%;
  font-weight: var(--rc-fw-regular);
  line-height: 1.5;
  font-kerning: normal;
  font-feature-settings: "kern" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  background-color: var(--rc-wash, #f5f7f9);
  color-scheme: light;
}

html,
body {
  background-color: var(--rc-wash, #f5f7f9);
  color: var(--rc-ink);
}

body,
button,
input,
select,
textarea,
.elementor-widget,
.product-search-form,
.woocommerce {
  font-family: var(--rc-font);
  font-weight: var(--rc-fw-regular);
}

body {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--rc-ink);
}

h1, h2, h3, h4, h5, h6,
.rc-hero__title,
.rc-home__title,
.rc-footer__title {
  font-family: var(--rc-font);
  font-weight: var(--rc-fw-medium);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

h1, .rc-hero__title {
  font-weight: var(--rc-fw-medium);
  letter-spacing: -0.025em;
  line-height: 1.1;
}

h3, h4, h5, h6 {
  letter-spacing: -0.01em;
  line-height: 1.25;
}

p {
  font-weight: var(--rc-fw-regular);
  line-height: 1.55;
}

.elementor-heading-title,
.elementor-widget-heading .elementor-heading-title,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.product_title,
.ovabrw-title,
.ovabrw-title a,
.ovabrw-card-template,
.ovabrw-card-template a,
.ovabrw-card-template p,
.ovabrw-card-template span,
.ovabrw-card-template li,
.ovabrw-card-template button,
.elementor .elementor-heading-title,
.elementor .elementor-widget-text-editor,
.elementor .elementor-button,
body .elementor {
  font-family: var(--rc-font) !important;
}

.ovabrw-title,
.ovabrw-title a {
  font-weight: 500 !important;
  letter-spacing: -0.02em;
  font-style: normal !important;
}

.rc-sr-only,
.rc-skip:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.rc-skip:focus {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 10000;
  padding: 0.65rem 1rem;
  background: var(--rc-brand);
  color: var(--rc-white);
  font: 500 0.9rem/1.2 var(--rc-font);
  text-decoration: none;
  border-radius: 4px;
}

/* —— Header (floating glass pill only — sticky) —— */
.rc-header {
  position: fixed;
  left: 0;
  right: 0;
  z-index: var(--rc-header-z);
  font-family: var(--rc-font);
  padding: 0;
  background: transparent;
  border: 0;
  pointer-events: none;
  /* top offset synced to non-sticky topbar via --rc-header-offset */
  top: var(--rc-header-offset, 0px);
  transition: top 0.12s ease-out;
  /* Shared pill metrics so logo bar + overlay nav stay vertically aligned */
  --rc-pill-mt: 0.75rem;
  --rc-pill-h: 3.35rem;
  --rc-pill-pad-x: 0.4rem;
}

body.admin-bar .rc-header {
  top: calc(32px + var(--rc-header-offset, 0px));
}

@media screen and (max-width: 782px) {
  body.admin-bar .rc-header {
    top: calc(46px + var(--rc-header-offset, 0px));
  }
}

/* Offset for fixed pill only — topbar is in document flow on inner pages. */
body.rc-native-chrome:not(.home) #rc-content {
  padding-top: 4.25rem;
}

/* Native page heroes already clear the fixed header — avoid double offset. */
body.rc-native-chrome:not(.home) #rc-content:has(.rc-page-hero) {
  padding-top: 0;
}

body.rc-native-chrome:not(.home) #rc-content:has(.hh-blog-shell) {
  padding-top: 0;
}

/* Product page uses #rc-content.rc-product — keep chrome offset via rc-product.css */

/* —— Top utility bar (scrolls away with the page) —— */
.rc-topbar {
  position: relative;
  z-index: calc(var(--rc-header-z) + 1);
  pointer-events: auto;
  background: #12151a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Home: overlay the hero, then scroll away (not fixed). */
body.home .rc-topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: calc(var(--rc-header-z) - 1);
  background: rgba(10, 12, 16, 0.2);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
}

.rc-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  width: min(1320px, calc(100% - 2rem));
  margin: 0 auto;
  min-height: 2.15rem;
  padding: 0.2rem 0;
}

.rc-topbar__contact,
.rc-topbar__social {
  display: flex;
  align-items: center;
  gap: 0.85rem 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rc-topbar__contact a,
.rc-topbar__social a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: color 0.15s ease;
}

.rc-topbar__contact a:hover,
.rc-topbar__contact a:focus-visible,
.rc-topbar__social a:hover,
.rc-topbar__social a:focus-visible {
  color: #8fb4e3;
}

.rc-topbar__social a {
  width: 1.7rem;
  height: 1.7rem;
  justify-content: center;
  border-radius: 999px;
  border: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.rc-topbar__social a:hover,
.rc-topbar__social a:focus-visible {
  color: #fff;
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.rc-topbar__social .rc-social--instagram,
.rc-footer__social .rc-social--instagram {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 45%, #8134af 75%, #515bd4 100%);
  color: #fff;
}

.rc-topbar__social .rc-social--facebook,
.rc-footer__social .rc-social--facebook {
  background: #1877f2;
  color: #fff;
}

.rc-topbar__social .rc-social--whatsapp,
.rc-footer__social .rc-social--whatsapp {
  background: #25d366;
  color: #fff;
}

/* Logo outside the pill + nav chrome (pill + overlay menu). */
.rc-header__shell {
  display: flex;
  align-items: center;
  gap: 1rem 1.25rem;
  width: min(1320px, calc(100% - 2rem));
  margin: var(--rc-pill-mt, 0.75rem) auto 0;
  pointer-events: none;
}

.rc-header__brand {
  position: relative;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  line-height: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  pointer-events: auto;
}

.rc-header__brand img {
  display: block;
  width: auto;
  height: 96px;
  max-width: min(200px, 40vw);
  object-fit: contain;
}

.rc-header__chrome {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  pointer-events: none;
}

.rc-header__bar {
  pointer-events: auto;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  margin: 0;
  background: linear-gradient(180deg, rgba(30, 34, 42, 0.66) 0%, rgba(14, 16, 20, 0.6) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  box-shadow:
    0 10px 32px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
}

.rc-header__bar-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  box-sizing: border-box;
  height: var(--rc-pill-h, 3.35rem);
  min-height: var(--rc-pill-h, 3.35rem);
  padding: 0 var(--rc-pill-pad-x, 0.4rem);
  gap: 0.5rem;
}

/*
 * Nav lives outside the glass pill so mobile position:fixed is not trapped
 * by backdrop-filter. On desktop it overlays the pill: links | CTA.
 */
.rc-header__nav {
  display: grid;
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  min-height: calc(var(--rc-pill-h, 3.35rem) + 2px);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 0.75rem;
  padding: 0 0.85rem 0 1.15rem;
  box-sizing: border-box;
  pointer-events: none;
  background: transparent;
  border: 0;
  box-shadow: none;
  transform: none;
}

.rc-header__menu {
  display: flex;
  grid-column: 2;
  justify-self: center;
  align-items: center;
  align-self: center;
  gap: 0.15rem 1.15rem;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-wrap: nowrap;
  pointer-events: auto;
}

.rc-header__nav > .rc-header__cta {
  grid-column: 3;
  justify-self: end;
  align-self: center;
  position: static;
  top: auto;
  right: auto;
  transform: none;
  pointer-events: auto;
}

.rc-header__tools {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex: 0 0 auto;
  pointer-events: auto;
}

.rc-header__tool {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(20, 24, 30, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.16);
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.rc-header__tool:hover,
.rc-header__tool:focus-visible {
  color: var(--rc-white);
  background: rgba(23, 69, 123, 0.85);
  border-color: rgba(255, 255, 255, 0.28);
}

.rc-header__tool svg {
  display: block;
}

.rc-header__cart-count {
  position: absolute;
  top: -0.2rem;
  right: -0.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.15rem;
  height: 1.15rem;
  padding: 0 0.28rem;
  border-radius: 999px;
  background: var(--rc-brand);
  color: var(--rc-white);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
}

.rc-header__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.rc-header__item > a {
  position: relative;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  padding: 0.25rem 0.05rem;
  white-space: nowrap;
  transition: color 0.15s ease;
}

.rc-header__item > a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.1rem;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: #56c7cd;
  transform: translateX(-50%);
  transition: width 0.18s ease;
}

.rc-header__item > a:hover,
.rc-header__item > a:focus-visible {
  color: var(--rc-white);
}

.rc-header__item > a:hover::after,
.rc-header__item > a:focus-visible::after {
  width: 100%;
}

.rc-header__item.is-current > a {
  color: #8fb4e3;
}

.rc-header__item.is-current > a::after {
  width: 100%;
  background: #8fb4e3;
}

.rc-header__sub-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
}

.rc-header__sub {
  position: absolute;
  top: calc(100% + 0.85rem);
  left: 50%;
  min-width: 11.5rem;
  margin: 0;
  padding: 0.45rem 0;
  list-style: none;
  background: rgba(16, 18, 22, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 4px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
  z-index: 20;
}

.rc-header__item--has-children:hover > .rc-header__sub,
.rc-header__item--has-children:focus-within > .rc-header__sub,
.rc-header__item--has-children.is-open > .rc-header__sub {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.rc-header__sub a {
  display: block;
  padding: 0.55rem 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  text-decoration: none;
}

.rc-header__sub a:hover,
.rc-header__sub a:focus-visible {
  color: var(--rc-white);
  background: rgba(255, 255, 255, 0.08);
}

.rc-header__cta {
  /* Flat styles: assets/css/rc-buttons.css — keep class for nav grid placement */
  justify-self: end;
}

.rc-header__cta span {
  transition: transform 0.15s ease;
}

.rc-header__cta:hover span,
.rc-header__cta:focus-visible span {
  transform: translateX(2px);
}

.rc-header__toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 0.25rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.rc-header__toggle-bars,
.rc-header__toggle-bars::before,
.rc-header__toggle-bars::after {
  display: block;
  width: 1.35rem;
  height: 2px;
  margin: 0 auto;
  background: var(--rc-white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.rc-header__toggle-bars::before,
.rc-header__toggle-bars::after {
  content: "";
}

.rc-header__toggle-bars::before {
  transform: translateY(-6px);
}

.rc-header__toggle-bars::after {
  transform: translateY(4px);
}

.rc-header.is-open .rc-header__toggle-bars {
  background: transparent;
}

.rc-header.is-open .rc-header__toggle-bars::before {
  transform: translateY(0) rotate(45deg);
}

.rc-header.is-open .rc-header__toggle-bars::after {
  transform: translateY(-2px) rotate(-45deg);
}

.rc-header__overlay {
  display: none;
}

/* —— Footer (hardcoded, no gallery / forms) —— */
.rc-footer {
  font-family: var(--rc-font);
  background: #16181c;
  color: rgba(255, 255, 255, 0.82);
  content-visibility: auto;
  contain-intrinsic-size: auto 420px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.rc-footer__main {
  width: min(var(--rc-max), calc(100% - 2rem));
  max-width: var(--rc-max);
  margin: 0 auto;
  padding: 3.25rem 0 2.75rem;
}

.rc-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
  gap: 2.25rem 2rem;
  align-items: start;
}

.rc-footer__logo {
  display: inline-flex;
  align-items: center;
  padding: 0;
  margin: 0 0 1rem;
  background: transparent;
  border-radius: 0;
  line-height: 0;
  text-decoration: none;
  box-shadow: none;
}

.rc-footer__logo img {
  display: block;
  width: auto;
  height: 67px;
  max-width: min(280px, 100%);
}

.rc-footer__tagline {
  margin: 0;
  max-width: 18rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
}

.rc-footer__social {
  display: flex;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rc-footer__cta .rc-footer__social {
  margin-top: 1.15rem;
}

.rc-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  color: #fff;
  border: 0;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
  transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
}

.rc-footer__social a:hover,
.rc-footer__social a:focus-visible {
  color: #fff;
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}

.rc-footer__heading {
  margin: 0 0 1rem;
  color: var(--rc-white);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.3;
}

.rc-footer__links,
.rc-footer__contacts {
  margin: 0;
  padding: 0;
  list-style: none;
}

.rc-footer__links li + li,
.rc-footer__contacts li + li {
  margin-top: 0.55rem;
}

.rc-footer__links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.15s ease;
}

.rc-footer__links a:hover,
.rc-footer__links a:focus-visible {
  color: #8fb4e3;
}

.rc-footer__address {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
}

.rc-footer__contacts a {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.15s ease;
}

.rc-footer__contacts a svg {
  flex: 0 0 auto;
  margin-top: 0.15rem;
  color: #8fb4e3;
}

.rc-footer__contacts a:hover,
.rc-footer__contacts a:focus-visible {
  color: #8fb4e3;
}

.rc-footer__cta-text {
  margin: 0 0 1.15rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
}

.rc-footer__btn {
  /* Flat styles: assets/css/rc-buttons.css */
}

.rc-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.1rem 1.25rem;
  text-align: center;
}

.rc-footer__bottom p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}

.rc-footer__credit {
  display: inline;
}

.rc-footer__bottom a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.rc-footer__bottom a:hover,
.rc-footer__bottom a:focus-visible {
  color: #8fb4e3;
}

html.rc-nav-lock,
html.rc-nav-lock body {
  overflow: hidden;
}

.rc-icon {
  flex: 0 0 auto;
  margin-top: 0.15rem;
  color: var(--rc-brand);
}

.rc-header .rc-icon {
  color: currentColor;
  margin-top: 0;
}

/* —— Mobile —— */
@media (max-width: 1024px) {
  .rc-header {
    padding: 0;
  }

  /*
   * Compact mobile chrome: logo left, burger + account + cart right.
   * Avoid a large empty glass pill in the center.
   */
  .rc-header__shell {
    width: min(100% - 1.5rem, 1320px);
    margin: 0.45rem auto 0;
    gap: 0.45rem;
    justify-content: flex-start;
    align-items: center;
  }

  .rc-header__brand {
    margin-right: auto;
  }

  .rc-header__brand img {
    height: 52px;
    max-width: min(118px, 34vw);
  }

  .rc-header__chrome {
    flex: 0 0 auto;
    order: 2;
  }

  .rc-header__tools {
    order: 3;
    gap: 0.35rem;
  }

  .rc-header__bar {
    margin: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    background: rgba(32, 38, 48, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(14px) saturate(1.25);
    -webkit-backdrop-filter: blur(14px) saturate(1.25);
  }

  .rc-topbar__inner {
    width: min(100% - 1.5rem, 1320px);
    min-height: 2.4rem;
    padding: 0.4rem 0;
    gap: 0.75rem 1rem;
  }

  .rc-topbar__contact a,
  .rc-topbar__social a {
    font-size: 0.8rem;
  }

  .rc-topbar__contact a span {
    max-width: 11rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .rc-header__bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 0;
    padding: 0;
    gap: 0;
  }

  .rc-header__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: calc(var(--rc-header-z) + 3);
    width: 2.5rem;
    height: 2.5rem;
    margin: 0;
  }

  .rc-header.is-open {
    pointer-events: auto;
  }

  .rc-header__nav {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    z-index: calc(var(--rc-header-z) + 2);
    width: min(20rem, 88vw);
    max-width: 100vw;
    height: 100dvh;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    margin: 0;
    padding: 5rem 1.25rem 1.5rem;
    background: #12151a;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transform: translateX(105%);
    transition: transform 0.22s ease;
    overflow-x: hidden;
    overflow-y: auto;
    pointer-events: auto;
    box-sizing: border-box;
    grid-template-columns: none;
    column-gap: 0;
  }

  body.admin-bar .rc-header__nav {
    top: 46px;
    height: calc(100dvh - 46px);
  }

  .rc-header.is-open .rc-header__nav {
    transform: translateX(0);
  }

  .rc-header__menu {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    grid-column: auto;
    justify-self: stretch;
  }

  .rc-header__nav > .rc-header__cta {
    position: static;
    top: auto;
    right: auto;
    transform: none;
    grid-column: auto;
    justify-self: stretch;
    width: 100%;
    margin-top: 0.5rem;
    pointer-events: auto;
  }

  .rc-header__tool {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(32, 38, 48, 0.72);
  }

  .rc-header__item {
    flex-wrap: wrap;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .rc-header__item > a {
    flex: 1 1 auto;
    padding: 0.85rem 0;
    color: rgba(255, 255, 255, 0.9);
  }

  .rc-header__item.is-current > a {
    color: #8fb4e3;
  }

  .rc-header__sub-toggle {
    color: rgba(255, 255, 255, 0.85);
  }

  .rc-header__sub {
    position: static;
    left: auto;
    top: auto;
    width: 100%;
    min-width: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: 0;
    border-radius: 0;
    padding: 0 0 0.65rem 0.75rem;
    display: none;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  /*
   * Desktop dropdown uses translate(-50%) + opacity. Those rules beat the
   * mobile base selector, so open submenus shift off-canvas and leave gaps.
   * Mobile only toggles display via .is-open — never hover transform.
   */
  .rc-header__item--has-children:hover > .rc-header__sub,
  .rc-header__item--has-children:focus-within > .rc-header__sub,
  .rc-header__item--has-children.is-open > .rc-header__sub {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .rc-header__item--has-children.is-open > .rc-header__sub {
    display: block;
  }

  .rc-header__cta {
    width: 100%;
    margin-top: 0.5rem;
    justify-content: center;
  }

  .rc-header__overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: calc(var(--rc-header-z) + 1);
    background: rgba(0, 0, 0, 0.45);
    pointer-events: auto;
  }

  .rc-header__overlay[hidden] {
    display: none;
  }

  .rc-header__item > a::after {
    display: none;
  }

  .rc-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
  }

  .rc-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .rc-footer__main {
    padding: 2.5rem 1.15rem 2rem;
  }

  .rc-footer__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .rc-footer__brand {
    grid-column: auto;
  }

  .rc-footer__credit {
    display: block;
    margin-top: 0.35rem;
  }
}

/* Below-fold native sections — skip layout work until near viewport (Speed Index).
   Skip reviews: size containment was collapsing the card grid so CTAs overlapped. */
body.home .rc-home:not(.rc-home--reviews),
body.home .rc-footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 810px;
}
.rc-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  /* Fixed px — 100svh/dvh can jump during LH/paint and cause ~0.83 CLS. */
  height: 810px;
  min-height: 810px;
  max-height: 810px;
  margin: 0;
  font-family: var(--rc-font);
  color: var(--rc-white);
  overflow: visible;
  z-index: 4;
}

.rc-hero__media,
.rc-hero__media picture,
.rc-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.rc-hero__media {
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: #171717;
}

.rc-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #17171782;
  pointer-events: none;
}

.rc-hero__media img {
  inset: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Stadium field / sky — keep stands and grass balanced for copy overlay */
  object-position: center 40%;
  image-rendering: auto;
  will-change: auto;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .rc-hero__media img {
    top: 0;
    height: 100%;
    will-change: auto;
    transform: none !important;
  }
}

.rc-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  align-items: stretch;
  gap: 1.5rem 2rem;
  width: min(1320px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 6.15rem 0 1.75rem;
  flex: 1 1 auto;
  min-height: 0;
}

.rc-hero__main {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1.35rem;
  min-width: 0;
  padding-bottom: 0.5rem;
}

.rc-hero__copy {
  max-width: 32rem;
  min-width: 0;
}

.rc-hero__eyebrow {
  margin: 0 0 0.5rem;
  color: #a8c5e8;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

.rc-hero__title {
  margin: 0 0 0.7rem;
  color: var(--rc-white);
  font-size: clamp(2.1rem, 4.2vw, 3.25rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.55),
    0 8px 28px rgba(0, 0, 0, 0.35);
}

.rc-hero__lead {
  margin: 0 0 1.15rem;
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  font-weight: 400;
  line-height: 1.45;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.5);
}

.rc-hero__perks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.15rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rc-hero__perks li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}

.rc-hero__perks li::before {
  content: "";
  flex: 0 0 auto;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background: var(--rc-brand) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath fill='%23fff' d='M4.2 9.2 0.8 5.8l1.2-1.2 2.2 2.2L10 1.2 11.2 2.4z'/%3E%3C/svg%3E") center / 0.65rem no-repeat;
}

/* Search slot under copy — reserve space for reusable form. */
.rc-hero__search {
  position: relative;
  z-index: 20;
  width: 100%;
  max-width: 30rem;
  min-height: 0;
  overflow: visible;
}

html.rc-search-mounted .rc-hero__search {
  min-height: 0;
}

/* Sporty signup CTA in hero */
.rc-hero__signup-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  width: 100%;
  max-width: 30rem;
  padding: 1.05rem 1.35rem 1.1rem 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.85rem;
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(86, 199, 205, 0.16) 0%, transparent 55%),
    linear-gradient(145deg, rgba(23, 69, 123, 0.28) 0%, transparent 48%),
    linear-gradient(180deg, #1c2630 0%, #10161d 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.07) inset,
    0 16px 36px rgba(0, 0, 0, 0.32);
  overflow: hidden;
  isolation: isolate;
}

.rc-hero__signup-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0.22rem;
  background: linear-gradient(180deg, #8fb4e3 0%, var(--rc-brand, #17457b) 50%, #0e2f52 100%);
  z-index: 1;
}

.rc-hero__signup-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    repeating-linear-gradient(
      -32deg,
      transparent 0,
      transparent 11px,
      rgba(255, 255, 255, 0.02) 11px,
      rgba(255, 255, 255, 0.02) 12px
    );
  pointer-events: none;
}

.rc-hero__signup-card-eyebrow,
.rc-hero__signup-card-title,
.rc-hero__signup-card-foot {
  position: relative;
  z-index: 1;
}

.rc-hero__signup-card-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  color: #a8c5e8;
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.rc-hero__signup-card-live {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #56c7cd;
  box-shadow: 0 0 0 0 rgba(86, 199, 205, 0.55);
  animation: rc-signup-pulse 1.8s ease-out infinite;
}

@keyframes rc-signup-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(86, 199, 205, 0.55);
  }
  70% {
    box-shadow: 0 0 0 0.55rem rgba(86, 199, 205, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(86, 199, 205, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .rc-hero__signup-card-live {
    animation: none;
  }
}

.rc-hero__signup-card-title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.rc-hero__signup-card-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem 0.85rem;
  margin-top: 0.15rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.rc-hero__signup-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rc-hero__signup-card-meta li {
  padding: 0.28rem 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.rc-hero__signup-card-cta.rc-btn {
  flex: 0 0 auto;
  width: auto;
  min-width: 8.5rem;
  margin: 0;
  min-height: 2.35rem;
  height: 2.35rem;
  padding: 0 1.15rem;
  border-radius: 0.45rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.78rem;
  box-shadow: 0 8px 18px rgba(23, 69, 123, 0.32);
  transition:
    background-color 0.15s ease,
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.rc-hero__signup-card-cta.rc-btn:hover,
.rc-hero__signup-card-cta.rc-btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(23, 69, 123, 0.4);
}

.rc-hero__signup-card-cta.rc-btn:hover span,
.rc-hero__signup-card-cta.rc-btn:focus-visible span {
  transform: translateX(3px);
}

/* —— Promo deal carousel (blue-box / right) —— */
.rc-hero__promo {
  justify-self: end;
  align-self: end;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  max-width: 294px; /* was 420 — ~30% smaller */
  min-height: 0;
}

.rc-hero__promo-track {
  position: relative;
  width: 100%;
  aspect-ratio: 640 / 1024;
  height: auto;
  max-height: 476px; /* was 680 — ~30% smaller */
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.rc-hero__promo-slide {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  z-index: 0;
  transform: translateX(18px) scale(0.985);
  transition:
    opacity 0.95s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  will-change: opacity, transform;
}

.rc-hero__promo-slide.is-leaving {
  opacity: 0;
  z-index: 1;
  transform: translateX(-14px) scale(0.99);
  transition:
    opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.rc-hero__promo-slide.is-active {
  opacity: 1;
  z-index: 2;
  transform: none;
  pointer-events: auto;
}

.rc-hero__promo-slide img,
.rc-hero__promo-slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.rc-hero__promo-slide picture {
  position: absolute;
  inset: 0;
}

.rc-hero__promo-slide img {
  object-fit: cover;
  object-position: center center;
  /* Slight overscale crops residual dark edges baked into deal art */
  transform: scale(1.08);
  transition: transform 7.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.rc-hero__promo-slide.is-active img {
  transform: scale(1.02);
}

.rc-hero__promo-dots {
  display: flex;
  justify-content: center;
  gap: 0.1rem;
  margin-top: 0.35rem;
}

.rc-hero__promo-dots button {
  position: relative;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.rc-hero__promo-dots button::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  transform: translate(-50%, -50%);
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1), background 0.35s ease;
}

.rc-hero__promo-dots button.is-active::after {
  width: 1.65rem;
  background: #56c7cd;
}

@media (prefers-reduced-motion: reduce) {
  .rc-hero__promo-slide,
  .rc-hero__promo-slide.is-leaving,
  .rc-hero__promo-slide.is-active,
  .rc-hero__promo-slide img,
  .rc-hero__promo-slide.is-active img,
  .rc-hero__promo-dots button,
  .rc-hero__promo-dots button::after {
    transition: none !important;
    transform: none !important;
  }

  .rc-hero__promo-dots button::after {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) !important;
  }
}

/* Hide search in original Elementor spot until JS mounts it into the hero. */
body.home .elementor-6960 > .elementor-element-d4693da {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Elementor search inside hero slot */
body.home .rc-hero {
  margin-bottom: 0;
  /* isolation:isolate traps easepick z-index; keep hero above fleet so the calendar can overflow. */
  z-index: 4;
}

body.home .rc-hero__search {
  z-index: 30;
}

body.home .elementor-element-d4693da {
  --display: block !important;
  --margin-top: 0px !important;
  --padding-top: 0px !important;
  --padding-bottom: 0px !important;
  --padding-left: 0px !important;
  --padding-right: 0px !important;
  --background-color: transparent !important;
  display: block !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  position: relative;
  width: 100% !important;
  max-width: 100% !important;
  z-index: 5;
}

body.home .elementor-element-d4693da::before,
body.home .elementor-element-d4693da > .elementor-background-overlay,
body.home .elementor-element-d4693da .elementor-background-slideshow {
  display: none !important;
  content: none !important;
  background: none !important;
}

body.home .elementor-element-d4693da > .e-con-inner {
  --padding-top: 0px !important;
  --padding-bottom: 0px !important;
  padding: 0 !important;
  max-width: none !important;
  width: 100% !important;
}

/* Collapse leftover spacer under search (hidden logo strip parent). */
body.home .elementor-element-34ba948 {
  display: none !important;
  height: 0 !important;
  max-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

/* Fleet heading — normal gap after in-hero search. */
body.home .elementor-element-ad11fe4 {
  --padding-top: 3rem !important;
  --padding-bottom: 1.25rem !important;
  --margin-top: 0px !important;
  margin-top: 0 !important;
}

body.home .elementor-element-ad11fe4 > .e-con-inner {
  padding-top: 3rem !important;
  padding-bottom: 1.25rem !important;
}

body.home .elementor-element-92ff3c9 {
  --margin-top: 0px !important;
  margin-top: 0 !important;
  --padding-top: 0px !important;
}

/* Force search visible (Elementor entrance animation) */
body.home .elementor-element-65271a0,
body.home .elementor-element-65271a0.elementor-invisible,
body.home .elementor-element-65271a0.animated {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  animation: none !important;
}

body.home .elementor-element-65271a0 > .elementor-widget-container {
  margin: 0 !important;
  padding: 0 !important;
}

body.home .elementor-element-d4693da .product-search-form {
  background: #fff !important;
  border-radius: 16px !important;
  box-shadow:
    0 18px 40px rgba(12, 20, 46, 0.22),
    0 0 0 1px rgba(12, 20, 46, 0.04);
  padding: 0 !important;
  overflow: visible !important;
  color: #10141a;
}

body.home .elementor-element-d4693da,
body.home .elementor-element-d4693da > .e-con-inner,
body.home .elementor-element-65271a0,
body.home .elementor-element-65271a0 > .elementor-widget-container,
body.home .rc-hero__main {
  overflow: visible !important;
}

/* Keep datepicker above hero promo / shade */
body.home .rc-hero__search .product-search-form,
body.home .rc-hero__search .label_search {
  position: relative;
  z-index: 30;
}

body.home .elementor-element-d4693da .product-search-content {
  padding: 0.95rem 1rem !important;
}

body.home .elementor-element-d4693da .ovabrw_btn_submit {
  background: var(--rc-brand) !important;
  border-radius: 10px !important;
}

/* Compact search fields when mounted in left column */
body.home .rc-hero__search .product-search-content.column4 {
  display: grid !important;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 0.75rem 1rem;
  align-items: end;
}

body.home .rc-hero__search .label_search {
  margin: 0 !important;
  width: auto !important;
  float: none !important;
}

body.home .rc-hero__search .field-label {
  color: #10141a !important;
  font-size: 0.78rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.02em !important;
  margin-bottom: 0.35rem !important;
}

/* Equal-height OVA BRW fleet cards (plugin markup; CSS-only). */
.ovabrw-product-filter .swiper-wrapper {
  align-items: stretch;
}

.ovabrw-product-filter .swiper-slide {
  height: auto !important;
  display: flex;
}

.ovabrw-product-filter .ovabrw-card-template {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.ovabrw-product-filter .ovabrw-card-content {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  height: auto !important;
}

.ovabrw-product-filter .ovabrw-card-content .ovabrw-title {
  /* Reserve two lines so short titles match long ones */
  min-height: calc(var(--ovabrw-heading-line-height, 1.35) * 2em);
}

.ovabrw-product-filter .ovabrw-card-content .ovabrw-features {
  flex: 0 0 auto;
}

.ovabrw-product-filter .ovabrw-card-content .ovabrw-card-btn {
  margin-top: auto;
}

/* Kill homepage RevSlider + replaced marketing sections (native below fleet). */
body.home .elementor-element-f2d2773,
body.home .elementor-element-e607551,
body.home .elementor-widget-slider_revolution,
body.home sr7-module,
body.home .wp-block-themepunch-revslider,
body.home .elementor-element-a05a030,
body.home .ova-images-slider,
body.home .elementor-element-63d95b1,
body.home .elementor-element-f237146,
body.home .elementor-element-43c3dd7,
body.home .elementor-element-80e3bef,
body.home .elementor-element-d54300d,
body.home .elementor-element-dffa393,
body.home .elementor-element-bd5e45a,
body.home .elementor-element-ab9ddbe,
body.home .elementor-element-eec264d {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  max-height: 0 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
  pointer-events: none !important;
}

@media (max-width: 1024px) {
  .rc-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
    width: min(100% - 1.75rem, 1320px);
    padding: 8.25rem 0 2rem;
    gap: 1.25rem 1.5rem;
  }

  .rc-hero__main {
    justify-content: flex-start;
  }

  .rc-hero__eyebrow {
    margin: 0 0 0.7rem;
  }

  .rc-hero__title {
    margin: 0 0 0.85rem;
  }

  .rc-hero__lead {
    margin: 0 0 1.35rem;
  }

  .rc-hero__perks {
    gap: 0.55rem 1rem;
  }

  .rc-hero__promo {
    max-width: 210px;
    align-self: end;
  }

  .rc-hero__promo-track {
    max-height: 365px;
  }

  body.home .rc-hero__search .product-search-content.column4 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .rc-topbar__contact li:last-child {
    display: none;
  }

  .rc-topbar__inner {
    min-height: 2.65rem;
    padding: 0.5rem 0;
  }

  .rc-header__shell {
    margin: 0.4rem auto 0;
  }

  .rc-header__brand img {
    height: 48px;
    max-width: min(108px, 32vw);
  }

  .rc-hero {
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .rc-hero__inner {
    grid-template-columns: 1fr;
    justify-items: stretch;
    align-content: start;
    width: min(100% - 1.75rem, 1320px);
    /* Clear absolute topbar + fixed pill so eyebrow is fully visible */
    padding: 9.75rem 0 2.25rem;
    gap: 1.75rem;
  }

  .rc-hero__main {
    justify-content: flex-start;
  }

  .rc-hero__copy {
    max-width: none;
  }

  .rc-hero__eyebrow {
    margin: 0 0 0.8rem;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
  }

  .rc-hero__title {
    margin: 0 0 0.95rem;
    font-size: clamp(1.9rem, 8vw, 2.55rem);
    line-height: 1.12;
  }

  .rc-hero__lead {
    margin: 0 0 1.45rem;
    font-size: 1.05rem;
    line-height: 1.5;
  }

  .rc-hero__perks {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
  }

  .rc-hero__perks li {
    font-size: 0.98rem;
  }

  .rc-hero__main {
    order: 1;
  }

  .rc-hero__promo {
    order: 2;
    max-width: min(224px, 60vw);
    justify-self: center;
    align-self: center;
  }

  .rc-hero__promo-track {
    max-height: 380px;
  }

  .rc-hero__search {
    max-width: 30rem;
    min-height: 0;
    margin-top: 0.35rem;
  }

  html.rc-search-mounted .rc-hero__search {
    min-height: 0;
    margin-top: 0.5rem;
  }

  .rc-hero__signup-card {
    max-width: none;
  }

  .rc-hero__signup-card-foot {
    flex-direction: column;
    align-items: stretch;
  }

  .rc-hero__signup-card-cta.rc-btn {
    width: 100%;
  }
}

/* —— Native homepage sections —— */
.rc-home {
  font-family: var(--rc-font);
}

/* Tall / interactive blocks must not use size containment — it collapses
   measured height and lets following CTAs overlap cards. */
.rc-home--reviews,
.rc-home--advantages,
.rc-home--fleet {
  content-visibility: visible;
  contain-intrinsic-size: none;
}

.rc-home__inner {
  width: min(1320px, calc(100% - 2rem));
  margin: 0 auto;
}

.rc-home__head {
  max-width: 40rem;
  margin: 0 0 2.5rem;
}

.rc-home__head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.rc-home__eyebrow {
  margin: 0 0 0.65rem;
  color: var(--rc-brand);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rc-home__eyebrow--on-dark {
  color: #9be4e8;
}

.rc-home__title {
  margin: 0 0 0.85rem;
  color: #10141a;
  font-size: clamp(1.45rem, 2.6vw, 2.1rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.rc-home__title--on-dark {
  color: var(--rc-white);
}

.rc-home__lead {
  margin: 0 0 0.85rem;
  color: #3d464f;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rc-home__text {
  margin: 0 0 1.35rem;
  color: #5c6570;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.55;
  max-width: 36rem;
}

.rc-home__text--center {
  margin-left: auto;
  margin-right: auto;
}

.rc-home__btn {
  /* Flat styles: assets/css/rc-buttons.css — prefer .rc-btn in markup */
}

.rc-home__text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--rc-brand);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.15s ease, color 0.15s ease;
}

.rc-home__text-link:hover,
.rc-home__text-link:focus-visible {
  color: var(--rc-brand-dark);
  gap: 0.55rem;
}

.rc-home__icon {
  display: block;
}

/* Advantages — expanding cards (sample-style) */
.rc-home--advantages {
  --rc-adv-ease: cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  padding: 5.75rem 0 5.5rem;
  overflow: hidden;
  background-color: #f4f6f8;
  background-image:
    linear-gradient(rgba(16, 24, 40, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 24, 40, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  background-position: center top;
}

.rc-home--advantages::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 12% 18%, rgba(1, 135, 141, 0.08), transparent 42%),
    radial-gradient(ellipse at 88% 8%, rgba(86, 199, 205, 0.07), transparent 38%),
    linear-gradient(180deg, rgba(244, 246, 248, 0.55) 0%, rgba(244, 246, 248, 0.92) 100%);
  pointer-events: none;
}

.rc-home--advantages .rc-home__inner {
  position: relative;
  z-index: 1;
}

.rc-home__head--advantages {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 1.5rem 2.5rem;
  align-items: end;
  max-width: none;
  margin: 0 0 2.75rem;
}

.rc-home__head--advantages .rc-home__title {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 3rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.rc-home__title-accent {
  color: var(--rc-brand, #1e5694);
}

.rc-home__eyebrow--badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.85rem;
  padding: 0.35rem 0.8rem 0.35rem 0.55rem;
  border: 1px solid rgba(16, 24, 40, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  color: #3a4450;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(16, 24, 40, 0.04);
}

.rc-home__eyebrow-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--rc-brand, #1e5694);
  box-shadow: 0 0 0 3px rgba(1, 135, 141, 0.18);
}

.rc-home__head-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 0.15rem;
}

.rc-home__head--advantages .rc-home__text {
  margin: 0;
  max-width: 32rem;
  color: #66707d;
  font-size: 0.95rem;
  line-height: 1.55;
}

.rc-home__adv-explore {
  /* Flat dark CTA: assets/css/rc-buttons.css — prefer .rc-btn.rc-btn--dark */
  justify-self: start;
}

.rc-home__adv-grid {
  display: flex;
  align-items: stretch;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
  min-height: 26rem;
}

.rc-home__adv {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 0.85 1 0;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(16, 24, 40, 0.06);
  border-radius: var(--rc-radius-card, 1.85rem);
  box-shadow:
    0 1px 2px rgba(16, 24, 40, 0.04),
    0 14px 36px rgba(16, 24, 40, 0.06);
  transition:
    flex 0.55s var(--rc-adv-ease),
    box-shadow 0.45s ease,
    transform 0.45s var(--rc-adv-ease);
}

.rc-home__adv.is-active {
  flex: 2.35 1 0;
  box-shadow:
    0 8px 16px rgba(16, 24, 40, 0.06),
    0 28px 56px rgba(1, 135, 141, 0.12);
  transform: translateY(-4px);
}

.rc-home__adv-hit {
  position: absolute;
  inset: 0;
  z-index: 4;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.rc-home__adv-hit:focus-visible {
  outline: 2px solid var(--rc-brand, #1e5694);
  outline-offset: -3px;
  border-radius: inherit;
}

.rc-home__adv-num {
  position: absolute;
  top: 1.1rem;
  left: 1.15rem;
  z-index: 2;
  color: rgba(16, 24, 40, 0.12);
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.45s var(--rc-adv-ease), color 0.35s ease;
}

.rc-home__adv:not(.is-active) .rc-home__adv-num {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 8px rgba(16, 24, 40, 0.35);
}

.rc-home__adv.is-active .rc-home__adv-num {
  opacity: 0;
  transform: translateY(-0.5rem) scale(0.92);
}

.rc-home__adv-visual {
  position: relative;
  flex: 0 0 auto;
  height: 9.25rem;
  margin: 0.75rem 0.75rem 0;
  opacity: 1;
  overflow: hidden;
  border-radius: 1rem;
  transform: none;
  transition:
    height 0.55s var(--rc-adv-ease),
    flex 0.55s var(--rc-adv-ease),
    opacity 0.4s ease,
    transform 0.55s var(--rc-adv-ease),
    margin 0.55s var(--rc-adv-ease);
}

.rc-home__adv:not(.is-active) .rc-home__adv-visual {
  flex: 1 1 auto;
  height: auto;
  min-height: 10.5rem;
  margin: 0.75rem 0.75rem 0;
}

.rc-home__adv:not(.is-active) .rc-home__adv-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 24, 40, 0.12) 0%, rgba(16, 24, 40, 0.42) 100%);
  pointer-events: none;
}

.rc-home__adv.is-active .rc-home__adv-visual {
  flex: 0 0 auto;
  height: 11.5rem;
  margin: 0.85rem 0.85rem 0;
  opacity: 1;
  transform: none;
  border-radius: 1rem;
}

.rc-home__adv.is-active .rc-home__adv-visual::after {
  display: none;
}

.rc-home__adv-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.rc-home__adv-panel {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.35rem;
  padding: 1.25rem 1.25rem 1.4rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(0.85rem);
  transition:
    opacity 0.35s ease,
    transform 0.45s var(--rc-adv-ease),
    visibility 0s linear 0.35s;
}

.rc-home__adv:not(.is-active) .rc-home__adv-panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  padding: 0 1.25rem;
  overflow: hidden;
}

.rc-home__adv.is-active .rc-home__adv-panel {
  position: relative;
  height: auto;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  transition:
    opacity 0.4s ease 0.12s,
    transform 0.5s var(--rc-adv-ease) 0.1s,
    visibility 0s linear 0s;
}

.rc-home__adv-collapsed {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  flex: 0 0 auto;
  padding: 0.85rem 1rem 1.1rem;
  opacity: 1;
  transform: none;
  transition: opacity 0.28s ease, transform 0.35s var(--rc-adv-ease);
  pointer-events: none;
}

.rc-home__adv.is-active .rc-home__adv-collapsed {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1.15rem;
  margin: 0;
  padding: 0;
  opacity: 0;
  transform: translateY(0.5rem);
  visibility: hidden;
}

.rc-home__adv-collapsed-copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.rc-home__adv-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  margin: 0 0 0.55rem;
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 0.7rem;
  background: #f3f6f8;
  color: #121820;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.rc-home__adv-icon--sm {
  width: 2.35rem;
  height: 2.35rem;
  margin: 0;
  flex-shrink: 0;
}

.rc-home__adv-icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.rc-home__adv-hint {
  margin: 0 0 0.2rem;
  color: var(--rc-brand, #1e5694);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rc-home__adv-title {
  margin: 0 0 0.45rem;
  color: #3a424c;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  font-weight: 650;
  line-height: 1.25;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  min-height: 0;
}

.rc-home__adv-desc {
  margin: 0;
  color: #66707d;
  font-size: 0.92rem;
  line-height: 1.55;
}

.rc-home__adv-short-label {
  color: var(--rc-brand, #1e5694);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
}

.rc-home__adv-short {
  color: #3a424c;
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* About — framed overlapping cards + polished copy */
.rc-home--about {
  padding: 5.5rem 0;
  background: #fff;
  overflow: hidden;
}

.rc-home__about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 3.25rem 4rem;
  align-items: center;
}

.rc-home__about-media {
  position: relative;
  min-height: 28rem;
  padding: 1.25rem 1.5rem 2.5rem 0.5rem;
}

.rc-home__about-card {
  position: absolute;
  margin: 0;
  padding: 0.7rem 0.7rem 2.4rem;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 1.65rem;
  box-shadow:
    0 2px 4px rgba(16, 24, 40, 0.04),
    0 18px 42px rgba(16, 24, 40, 0.1);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease;
}

.rc-home__about-card:hover {
  box-shadow:
    0 6px 12px rgba(16, 24, 40, 0.06),
    0 26px 52px rgba(16, 24, 40, 0.14);
}

.rc-home__about-card-stage {
  display: block;
  overflow: hidden;
  border-radius: 1.15rem;
  background:
    radial-gradient(ellipse at 50% 30%, #f7f8fa 0%, #e8ecf0 70%, #dfe4e9 100%);
}

.rc-home__about-card-stage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: drop-shadow(0 14px 22px rgba(16, 24, 40, 0.18));
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.rc-home__about-card:hover .rc-home__about-card-stage img {
  transform: scale(1.045) translateY(-2px);
}

.rc-home__about-card--side {
  top: 0;
  right: 0.25rem;
  z-index: 1;
  width: min(58%, 17.5rem);
  transform: rotate(1.5deg);
}

.rc-home__about-card--side .rc-home__about-card-stage {
  aspect-ratio: 4 / 3.2;
}

.rc-home__about-card--main {
  left: 0;
  bottom: 0.35rem;
  z-index: 2;
  width: min(72%, 22rem);
  transform: rotate(-1deg);
}

.rc-home__about-card--main .rc-home__about-card-stage {
  aspect-ratio: 4 / 3.35;
}

.rc-home__about-badge {
  position: absolute;
  left: 1rem;
  bottom: 0;
  z-index: 3;
  display: grid;
  gap: 0.2rem;
  margin: 0;
  padding: 1rem 1.15rem;
  border-radius: 1rem;
  background: #1c2229;
  color: #fff;
  box-shadow: 0 16px 36px rgba(16, 24, 40, 0.28);
}

.rc-home__about-badge-num {
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #3ec4cb;
}

.rc-home__about-badge-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  opacity: 0.9;
}

.rc-home__about-copy .rc-home__eyebrow {
  margin-bottom: 0.7rem;
}

.rc-home__about-copy .rc-home__title {
  margin-bottom: 0.85rem;
  max-width: 14ch;
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  letter-spacing: -0.03em;
}

.rc-home__about-copy .rc-home__lead {
  margin-bottom: 0.95rem;
  color: #6a7380;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.rc-home__about-copy .rc-home__text {
  margin-bottom: 1.5rem;
  max-width: 34rem;
  color: #5a646e;
  font-size: 1rem;
  line-height: 1.65;
}

.rc-home__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1.35rem;
  margin: 0 0 1.85rem;
  padding: 0;
  list-style: none;
}

.rc-home__features li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #1a2028;
  font-size: 0.95rem;
  font-weight: 550;
}

.rc-home__feature-check {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  background: var(--rc-brand, #1e5694);
  color: #fff;
  box-shadow: 0 6px 14px rgba(1, 135, 141, 0.28);
}

.rc-home__feature-check .rc-home__icon {
  width: 0.85rem;
  height: 0.85rem;
}

/* About entrance motion */
.rc-home--about.is-inview .rc-home__about-card--side {
  animation: rc-about-in-side 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.rc-home--about.is-inview .rc-home__about-card--main {
  animation: rc-about-in-main 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}

.rc-home--about.is-inview .rc-home__about-badge {
  animation: rc-about-in-badge 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.22s both;
}

.rc-home--about.is-inview .rc-home__about-copy > * {
  animation: rc-about-in-copy 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.rc-home--about.is-inview .rc-home__about-copy > *:nth-child(1) { animation-delay: 0.12s; }
.rc-home--about.is-inview .rc-home__about-copy > *:nth-child(2) { animation-delay: 0.18s; }
.rc-home--about.is-inview .rc-home__about-copy > *:nth-child(3) { animation-delay: 0.24s; }
.rc-home--about.is-inview .rc-home__about-copy > *:nth-child(4) { animation-delay: 0.3s; }
.rc-home--about.is-inview .rc-home__about-copy > *:nth-child(5) { animation-delay: 0.36s; }
.rc-home--about.is-inview .rc-home__about-copy > *:nth-child(6) { animation-delay: 0.42s; }

@keyframes rc-about-in-side {
  from {
    opacity: 0;
    transform: translate3d(2rem, 1.25rem, 0) rotate(1.5deg);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(1.5deg);
  }
}

@keyframes rc-about-in-main {
  from {
    opacity: 0;
    transform: translate3d(-2.25rem, 1.5rem, 0) rotate(-1deg);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(-1deg);
  }
}

@keyframes rc-about-in-badge {
  from {
    opacity: 0;
    transform: translate3d(0, 1rem, 0) scale(0.92);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes rc-about-in-copy {
  from {
    opacity: 0;
    transform: translate3d(0, 1rem, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Facts — photo-backed luxury band */
.rc-home--facts {
  position: relative;
  isolation: isolate;
  padding: 5rem 0;
  color: var(--rc-white);
  overflow: hidden;
}

.rc-home__facts-media,
.rc-home__facts-media img,
.rc-home__facts-shade {
  position: absolute;
  inset: 0;
}

.rc-home__facts-media {
  z-index: 0;
}

.rc-home__facts-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

.rc-home__facts-shade {
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(8, 16, 22, 0.88) 0%, rgba(1, 80, 86, 0.78) 42%, rgba(1, 135, 141, 0.62) 100%),
    linear-gradient(0deg, rgba(8, 16, 22, 0.35), transparent 45%);
}

.rc-home__facts-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 2.25rem 3rem;
  align-items: center;
}

.rc-home__facts-copy .rc-home__title {
  margin-bottom: 0.85rem;
  max-width: 22rem;
}

.rc-home__facts-text {
  margin: 0 0 1.5rem;
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.02rem;
  line-height: 1.55;
}

.rc-home__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rc-home__facts li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 1.35rem 1.15rem 1.25rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px) saturate(1.25);
  -webkit-backdrop-filter: blur(16px) saturate(1.25);
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.rc-home__facts li:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.3);
}

.rc-home__fact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  background: rgba(127, 212, 216, 0.18);
  color: #9be4e8;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.rc-home__fact-icon .rc-home__icon {
  width: 1.15rem;
  height: 1.15rem;
}

.rc-home__fact-num {
  margin: 0;
  font-size: clamp(1.9rem, 3.2vw, 2.55rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
}

.rc-home__fact-label {
  margin: 0;
  font-size: 0.84rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

/* Reviews — native static block (no Trustindex) */
.rc-home--reviews {
  padding: 5rem 0 4.5rem;
  background:
    linear-gradient(180deg, #eef3f5 0%, #f7f9fa 100%);
}

.rc-home__reviews-widget {
  margin-top: 0.25rem;
}

.rc-reviews__summary {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem 1rem;
  margin: 0 0 1.5rem;
  text-align: center;
}

.rc-reviews__score {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
}

.rc-reviews__score-num {
  color: #10141a;
  font-family: var(--rc-font);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}

.rc-reviews__stars {
  color: #e6a700;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  line-height: 1;
}

.rc-reviews__stars--sm {
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}

.rc-reviews__meta {
  margin: 0;
  color: #5c6570;
  font-family: var(--rc-font);
  font-size: 0.95rem;
  font-weight: 400;
}

.rc-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: stretch;
  overflow: visible;
}

.rc-reviews__card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 100%;
  height: 100%;
  padding: 1.15rem 1.2rem;
  background: #fff;
  border: 1px solid rgba(18, 21, 26, 0.07);
  border-radius: var(--rc-radius-card, 1.85rem);
  box-shadow: 0 8px 22px rgba(16, 24, 40, 0.05);
  font-family: var(--rc-font);
  box-sizing: border-box;
  overflow: hidden;
}

.rc-reviews__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0;
}

.rc-reviews__source {
  color: #5c6570;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rc-reviews__quote {
  margin: 0;
  padding: 0;
  border: 0;
  flex: 1 1 auto;
}

.rc-reviews__quote::before,
.rc-reviews__quote::after {
  content: none !important;
  display: none !important;
}

.rc-reviews__quote p {
  margin: 0;
  color: #3a424a;
  font-family: var(--rc-font);
  font-size: 0.92rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
}

.rc-reviews__author {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0;
  padding-top: 0.1rem;
}

.rc-reviews__avatar {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  background: var(--rc-brand);
  color: #fff;
  font-family: var(--rc-font);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
}

.rc-reviews__author-name {
  color: #10141a;
  font-family: var(--rc-font);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.25;
}

.rc-reviews__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem 1.25rem;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
  clear: both;
}

.rc-reviews__google {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--rc-brand);
  font-family: var(--rc-font);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
}

.rc-reviews__google:hover,
.rc-reviews__google:focus-visible {
  gap: 0.55rem;
  color: var(--rc-brand-dark);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

/* Inner reviews page */
.rc-page--reviews {
  padding: 2.5rem 0 5rem;
  background: linear-gradient(180deg, #f7f9fa 0%, #fff 35%);
}

.rc-page__crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 1.75rem;
  color: #8a939c;
  font-size: 0.85rem;
}

.rc-page__crumbs a {
  color: var(--rc-brand);
  text-decoration: none;
}

.rc-page__crumbs a:hover,
.rc-page__crumbs a:focus-visible {
  text-decoration: underline;
}

.rc-page__head {
  max-width: 40rem;
  margin: 0 0 2.25rem;
}

.rc-page--reviews .rc-reviews__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.rc-page__google-note a {
  color: var(--rc-brand);
  font-weight: 600;
  text-decoration: none;
}

.rc-page__google-note a:hover,
.rc-page__google-note a:focus-visible {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .rc-reviews__grid,
  .rc-page--reviews .rc-reviews__grid {
    grid-template-columns: 1fr;
  }
}

/* FAQ — teal intro box + plain accordion */
.rc-home--faq {
  position: relative;
  padding: 5.5rem 0;
  background: #f4f6f8;
  overflow: hidden;
}

.rc-home__faq-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 2rem 2.5rem;
  align-items: start;
}

.rc-home__faq-intro {
  position: sticky;
  top: 5.5rem;
  align-self: start;
  padding: 2rem 1.75rem 1.75rem;
  border-radius: 24px;
  color: var(--rc-white);
  background:
    radial-gradient(ellipse 90% 70% at 100% 0%, rgba(255, 255, 255, 0.16), transparent 55%),
    linear-gradient(155deg, #123a66 0%, var(--rc-brand) 55%, #2a6bb0 100%);
  box-shadow: 0 22px 48px rgba(1, 95, 100, 0.28);
}

.rc-home__faq-intro .rc-home__eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.rc-home__faq-intro .rc-home__title {
  margin-bottom: 0.75rem;
  color: #fff;
}

.rc-home__faq-intro .rc-home__text {
  max-width: none;
  color: rgba(255, 255, 255, 0.88);
}

.rc-home__faq-intro .rc-home__text-link {
  color: #fff;
}

.rc-home__faq-intro .rc-home__text-link:hover,
.rc-home__faq-intro .rc-home__text-link:focus-visible {
  color: #e8f1fa;
}

.rc-home__faq-help {
  margin-top: 1.75rem;
  padding: 1.15rem 1.1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.rc-home__faq-help-label {
  margin: 0 0 0.35rem;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
}

.rc-home__faq-help-text {
  margin: 0 0 0.85rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  line-height: 1.5;
}

.rc-home__faq-help-link {
  display: flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.35rem 0;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.4;
}

.rc-home__faq-help-link:hover,
.rc-home__faq-help-link:focus-visible {
  text-decoration: underline;
}

.rc-home__faq-list {
  display: grid;
  gap: 0;
  max-width: 40rem;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(18, 21, 26, 0.08);
  overflow: hidden;
}

.rc-home__faq-item {
  border: 0;
  border-bottom: 1px solid rgba(18, 21, 26, 0.08);
  background: transparent;
  overflow: hidden;
  transition: background 0.15s ease;
}

.rc-home__faq-item:last-child {
  border-bottom: 0;
}

.rc-home__faq-item:hover {
  background: rgba(1, 135, 141, 0.03);
}

.rc-home__faq-item[open] {
  background: rgba(1, 135, 141, 0.05);
  box-shadow: inset 3px 0 0 var(--rc-brand);
}

.rc-home__faq-item summary {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 1.2rem;
  color: #10141a;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
}

.rc-home__faq-item summary::-webkit-details-marker {
  display: none;
}

.rc-home__faq-num {
  flex: 0 0 auto;
  min-width: 1.5rem;
  color: var(--rc-brand);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.rc-home__faq-q {
  flex: 1 1 auto;
  padding-right: 0.25rem;
  color: #10141a;
}

.rc-home__faq-toggle {
  position: relative;
  flex: 0 0 auto;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 999px;
  background: rgba(1, 135, 141, 0.1);
  border: 1px solid rgba(1, 135, 141, 0.28);
  color: var(--rc-brand);
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.rc-home__faq-toggle::before,
.rc-home__faq-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: currentColor;
  border-radius: 1px;
  transform: translate(-50%, -50%);
}

.rc-home__faq-toggle::before {
  width: 0.65rem;
  height: 2px;
}

.rc-home__faq-toggle::after {
  width: 2px;
  height: 0.65rem;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.rc-home__faq-item[open] .rc-home__faq-toggle {
  background: var(--rc-brand);
  border-color: var(--rc-brand);
  color: #fff;
}

.rc-home__faq-item[open] .rc-home__faq-toggle::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}

.rc-home__faq-item p {
  margin: 0;
  padding: 0 1.2rem 1.2rem 3.55rem;
  color: #5c6570;
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.65;
}

/* Bottom CTA — full-bleed photo + overlay (matches About/Awards CTA energy) */
.rc-home--cta {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: min(52vh, 28rem);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  overflow: hidden;
  color: #fff;
  background: #0e2f52;
}

.rc-home__cta-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
}

.rc-home__cta-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.rc-home__cta-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10, 28, 48, 0.82) 0%, rgba(14, 47, 82, 0.55) 48%, rgba(18, 58, 102, 0.28) 100%),
    linear-gradient(180deg, rgba(8, 16, 28, 0.15) 0%, rgba(8, 16, 28, 0.42) 100%);
}

.rc-home__cta-copy {
  position: relative;
  z-index: 1;
  max-width: 36rem;
  padding: 0;
}

.rc-home__cta-copy .rc-home__title {
  margin-bottom: 0.85rem;
  color: #fff;
  text-wrap: balance;
}

.rc-home__cta-text {
  margin: 0 0 1.65rem;
  max-width: 30rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  line-height: 1.55;
}

.rc-home__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (max-width: 1024px) {
  .rc-home__head--advantages {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .rc-home__head--advantages .rc-home__title {
    max-width: 16ch;
  }

  .rc-home__adv-grid {
    min-height: 24rem;
  }

  .rc-home__about-grid,
  .rc-home__facts-wrap,
  .rc-home__faq-grid {
    grid-template-columns: 1fr;
  }

  .rc-home__about-media {
    max-width: 36rem;
    min-height: 22rem;
    margin-inline: auto;
  }

  .rc-home__faq-intro {
    position: static;
  }

  .rc-home__facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .rc-home--advantages,
  .rc-home--about,
  .rc-home--reviews,
  .rc-home--faq,
  .rc-home--facts {
    padding: 3.25rem 0;
  }

  .rc-home__adv-grid {
    flex-direction: column;
    min-height: 0;
    gap: 0.75rem;
  }

  .rc-home__adv,
  .rc-home__adv.is-active {
    flex: none;
    min-height: 0;
    transform: none;
  }

  /* Inactive: simple horizontal row — no clipped watermark numbers */
  .rc-home__adv:not(.is-active) {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .rc-home__adv:not(.is-active) .rc-home__adv-visual {
    display: none;
  }

  .rc-home__adv:not(.is-active) .rc-home__adv-num {
    display: none;
  }

  .rc-home__adv:not(.is-active) .rc-home__adv-panel {
    display: none;
  }

  .rc-home__adv:not(.is-active) .rc-home__adv-collapsed {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    margin: 0;
    padding: 1rem 1.1rem;
    align-items: center;
    gap: 0.85rem;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .rc-home__adv-num {
    font-size: 2.2rem;
    top: 0.85rem;
    left: 0.95rem;
  }

  /* Active: full-bleed image + content aligned to same inset */
  .rc-home__adv.is-active .rc-home__adv-visual {
    height: 11rem;
    margin: 0.7rem 0.7rem 0;
    border-radius: 1.05rem;
  }

  .rc-home__adv.is-active .rc-home__adv-panel {
    padding: 0.95rem 0.7rem 1.15rem;
    gap: 0.3rem;
  }

  .rc-home__adv.is-active .rc-home__adv-icon {
    margin: 0 0 0.45rem;
  }

  .rc-home__adv.is-active .rc-home__adv-collapsed {
    display: none;
  }

  .rc-home__adv-collapsed {
    align-items: center;
  }

  .rc-home__adv-short {
    -webkit-line-clamp: 2;
  }

  .rc-home__facts,
  .rc-home__features {
    grid-template-columns: 1fr;
  }

  .rc-home__adv-title {
    min-height: 0;
  }

  .rc-home__head--advantages .rc-home__title {
    max-width: none;
  }

  /*
   * About collage: desktop absolute polaroids collapse on narrow screens.
   * Mobile uses one full-width photo with the experience badge overlaid.
   */
  .rc-home__about-media {
    position: relative;
    max-width: none;
    min-height: 0;
    margin: 0 0 0.5rem;
    padding: 0;
  }

  .rc-home__about-card {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    margin: 0;
    padding: 0.55rem 0.55rem 0.55rem;
    transform: none;
    border-radius: 1.35rem;
  }

  .rc-home__about-card--side {
    display: none;
  }

  .rc-home__about-card--main {
    width: 100%;
    z-index: 1;
  }

  .rc-home__about-card--main .rc-home__about-card-stage {
    aspect-ratio: 4 / 3;
  }

  .rc-home__about-badge {
    left: 0.85rem;
    bottom: 0.85rem;
    right: auto;
    padding: 0.85rem 1rem;
    border-radius: 0.9rem;
  }

  .rc-home__about-badge-num {
    font-size: 1.65rem;
  }

  .rc-home__about-copy .rc-home__title {
    max-width: none;
  }

  .rc-home__about-grid {
    gap: 1.75rem;
  }

  .rc-home--cta {
    min-height: 0;
  }

  .rc-home__cta-copy {
    text-align: center;
    max-width: none;
  }

  .rc-home__cta-text {
    margin-left: auto;
    margin-right: auto;
  }

  .rc-home__cta-actions {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rc-home__adv,
  .rc-home__adv-num,
  .rc-home__adv-visual,
  .rc-home__adv-panel,
  .rc-home__adv-collapsed,
  .rc-home__adv-explore,
  .rc-home__btn,
  .rc-home__btn span,
  .rc-home__about-card,
  .rc-home__about-card-stage img,
  .rc-home__faq-item,
  .rc-home__faq-toggle,
  .rc-home__faq-toggle::after,
  .rc-home__facts li {
    transition: none;
  }

  .rc-home--about.is-inview .rc-home__about-card--side,
  .rc-home--about.is-inview .rc-home__about-card--main,
  .rc-home--about.is-inview .rc-home__about-badge,
  .rc-home--about.is-inview .rc-home__about-copy > * {
    animation: none;
  }

  .rc-home__adv.is-active,
  .rc-home__btn:hover,
  .rc-home__about-card:hover .rc-home__about-card-stage img,
  .rc-home__facts li:hover {
    transform: none;
  }

  .rc-fab__btn:hover {
    transform: none;
  }
}

/* —— Floating contact actions (call + WhatsApp) —— */
.rc-fab {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: calc(var(--rc-header-z) + 20);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  pointer-events: none;
}

.rc-fab__btn {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.rc-fab__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.34);
}

.rc-fab__btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.rc-fab__btn--call {
  background: var(--rc-brand);
}

.rc-fab__btn--call:hover {
  background: var(--rc-brand-dark);
}

.rc-fab__btn--wa {
  background: #1a1d22;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.rc-fab__btn--wa:hover {
  background: #111418;
}

.rc-fab__btn svg {
  display: block;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .rc-fab {
    right: 0.85rem;
    bottom: 0.85rem;
    gap: 0.55rem;
  }

  .rc-fab__btn {
    width: 3rem;
    height: 3rem;
  }

  .rc-fab__btn svg {
    width: 20px;
    height: 20px;
  }
}


/* —— Native homepage fleet (shortcode grid, no Elementor) —— */
.rc-home--fleet {
  padding: 3rem 0 2.5rem;
  background: #fff;
}

.rc-home__fleet-grid {
  margin-top: 0.5rem;
}

.rc-home__fleet-grid .ovabrw-list-product ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: start;
}

.rc-home__fleet-grid .ovabrw-list-product ul.products > .item {
  margin: 0;
  width: 100% !important;
  max-width: none !important;
}

.rc-home__fleet-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.75rem;
}

@media (max-width: 1024px) {
  .rc-home__fleet-grid .ovabrw-list-product ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .rc-home__fleet-grid .ovabrw-list-product ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }
}

/* Hero search shortcode (replaces Elementor widget mount) */
body.home .rc-hero__search .product-search-form,
body.home .rc-hero__search .ova-product-search .product-search-form {
  background: #fff !important;
  border-radius: 16px !important;
  box-shadow:
    0 18px 40px rgba(12, 20, 46, 0.22),
    0 0 0 1px rgba(12, 20, 46, 0.04);
  padding: 0 !important;
  overflow: visible !important;
  color: #10141a;
}

body.home .rc-hero__search .product-search-content {
  padding: 0.95rem 1rem !important;
}

body.home .rc-hero__search .ovabrw_btn_submit {
  background: var(--rc-brand) !important;
  border-radius: 10px !important;
}

body.home .rc-hero__search .product-search-content.column4,
body.home .rc-hero__search .product-search-content.column-4 {
  display: grid !important;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 0.75rem 1rem;
  align-items: end;
}

body.home .rc-hero__search .label_search {
  margin: 0 !important;
  width: auto !important;
  float: none !important;
}

body.home .rc-hero__search .field-label {
  color: #10141a !important;
  font-family: var(--rc-font) !important;
  font-size: 0.78rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.02em !important;
  margin-bottom: 0.35rem !important;
}

body.home .rc-hero__search {
  min-height: 0;
}

@media (max-width: 1024px) {
  body.home .rc-hero__search .product-search-content.column4,
  body.home .rc-hero__search .product-search-content.column-4 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  body.home .rc-hero__search .product-search-content.column4,
  body.home .rc-hero__search .product-search-content.column-4 {
    grid-template-columns: 1fr;
  }
}


/* Fleet cards: full images, compact body, readable specs */
.rc-home__fleet-grid .ovabrw-card-template {
  display: flex;
  flex-direction: column;
  height: auto !important;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
}

.rc-home__fleet-grid .ovabrw-card-header {
  position: relative;
  overflow: hidden;
  line-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: #f3f5f7;
}

.rc-home__fleet-grid .ovabrw-gallery-popup,
.rc-home__fleet-grid .ovabrw-product-img-feature {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  line-height: 0;
  background: #f3f5f7;
}

/* Natural image height — no 4:3 crop */
.rc-home__fleet-grid .ovabrw-product-img-feature a {
  display: block;
  line-height: 0;
}

.rc-home__fleet-grid .ovabrw-product-img-feature img {
  display: block;
  width: 100%;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center;
  vertical-align: top;
}

/*
 * Rate badge on the photo (not hanging into a padded gap).
 * WC $0.00 price stays hidden — special-feature rates are the real prices.
 */
.rc-home__fleet-grid .ovabrw-card1.ovabrw-card-template .ovabrw-card-header .ovabrw-features-featured {
  top: auto !important;
  bottom: 12px !important;
  right: 12px;
  left: auto;
  z-index: 2;
  max-width: calc(100% - 24px);
  line-height: 1.25;
  white-space: normal;
}

.rc-home__fleet-grid .ovabrw-price {
  display: none !important;
}

.rc-home__fleet-grid .ovabrw-card1.ovabrw-card-template .ovabrw-card-content,
.rc-home__fleet-grid .ovabrw-card-template .ovabrw-card-content {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  height: auto !important;
  padding: 14px 14px 14px !important;
  border: 1px solid #ebebeb;
  border-top: 0 !important;
  border-radius: 0 0 10px 10px;
}

.rc-home__fleet-grid .ovabrw-title {
  margin: 0 0 2px !important;
}

.rc-home__fleet-grid .ovabrw-title,
.rc-home__fleet-grid .ovabrw-title a {
  font-family: var(--rc-font) !important;
  font-size: 1.125rem !important;
  font-weight: 600 !important;
  font-style: normal !important;
  line-height: 1.3 !important;
  color: #1a2332 !important;
}

.rc-home__fleet-grid .ovabrw-card1.ovabrw-card-template .ovabrw-card-content .ovabrw-features,
.rc-home__fleet-grid .ovabrw-card1.ovabrw-card-template .ovabrw-card-content .ovabrw-specifications {
  margin: 0 0 12px !important;
  padding: 10px 0 0 !important;
  gap: 8px 12px !important;
  row-gap: 8px !important;
  border-top: 1px solid #e5e9ee;
}

.rc-home__fleet-grid .ovabrw-features .item-feature,
.rc-home__fleet-grid .ovabrw-specifications .item-specification {
  font-family: var(--rc-font) !important;
  font-size: 0.9375rem !important;
  font-weight: 500 !important;
  line-height: 1.35 !important;
  color: #3d4654 !important;
}

.rc-home__fleet-grid .ovabrw-features .item-feature i,
.rc-home__fleet-grid .ovabrw-specifications .item-specification i {
  font-size: 1rem !important;
  margin-right: 6px;
  color: var(--primary, #1e5694) !important;
  opacity: 1 !important;
}

.rc-home__fleet-grid .ovabrw-card-btn {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}

.rc-home__fleet-grid .ovabrw-button {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 44px !important;
  margin: 0 !important;
  padding: 0 18px !important;
  font-family: var(--rc-font) !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff !important;
  background-color: var(--rc-brand, #1e5694) !important;
  border: none !important;
  border-radius: 10px !important;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.rc-home__fleet-grid .ovabrw-button:hover,
.rc-home__fleet-grid .ovabrw-button:focus {
  color: #fff !important;
  background-color: #123a66 !important;
}

.rc-home__fleet-grid .ovabrw-button i {
  color: #fff !important;
}

/* —— Home: teams, mission, about cricket, counters, aim, league —— */
.rc-home--teams {
  padding: 2.75rem 0 3.25rem;
  background: #fff;
}

.rc-home__teams-track {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.rc-home__teams-list {
  display: flex;
  gap: 2rem 2.75rem;
  width: max-content;
  margin: 0;
  padding: 0.35rem 0;
  list-style: none;
  animation: rc-teams-marquee 38s linear infinite;
  will-change: transform;
}

.rc-home__teams-track:hover .rc-home__teams-list,
.rc-home__teams-track:focus-within .rc-home__teams-list,
.rc-home__teams-track.is-paused .rc-home__teams-list {
  animation-play-state: paused;
}

@keyframes rc-teams-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .rc-home__teams-list {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
    max-width: 100%;
  }

  .rc-home__teams-list li[aria-hidden="true"] {
    display: none;
  }
}

.rc-home__teams-list li {
  flex: 0 0 auto;
  width: 10.5rem;
  text-align: center;
}

.rc-home__teams-list img {
  display: block;
  width: 9rem;
  height: 9rem;
  margin: 0 auto 0.55rem;
  object-fit: contain;
}

.rc-home__teams-list span {
  display: block;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--rc-ink);
}

.rc-home__teams-cta {
  display: flex;
  justify-content: center;
  margin-top: 1.85rem;
}

.rc-home--mission {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  min-height: 28rem;
  background: #121820;
}

.rc-home__mission-media,
.rc-home__mission-copy {
  min-width: 0;
}

.rc-home__mission-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.rc-home__mission-copy {
  display: flex;
  align-items: center;
  padding: clamp(2rem, 4vw, 3.5rem);
  color: #fff;
  background:
    linear-gradient(160deg, #0e2f52 0%, #123a66 45%, #1e5694 100%);
}

.rc-home__mission-copy-inner {
  max-width: 34rem;
}

.rc-home__mission-copy h2 {
  margin: 0 0 1rem;
  color: #a8c5e8;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.rc-home__mission-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.65;
}

.rc-home--cricket {
  padding: 4.25rem 0;
  background: var(--rc-wash, #f5f7f9);
}

.rc-home__cricket-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 2.25rem 3rem;
  align-items: center;
}

.rc-home__cricket-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.65rem, 2.8vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--rc-ink);
}

.rc-home__cricket-copy p {
  margin: 0 0 1rem;
  max-width: 38rem;
  color: var(--rc-muted);
  font-size: 1.02rem;
  line-height: 1.6;
}

.rc-home__cricket-copy .rc-btn {
  margin-top: 0.5rem;
}

.rc-home__cricket-media {
  margin: 0;
}

.rc-home__cricket-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0.35rem;
}

.rc-home--counters {
  padding: 2.75rem 0;
  background: #121820;
  color: #fff;
}

.rc-home__counters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.rc-home__counter-num {
  margin: 0 0 0.4rem;
  color: #8fb4e3;
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}

.rc-home__counter-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rc-home--aim {
  padding: 4.25rem 0;
  background: #fff;
}

.rc-home__aim-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2.25rem 3rem;
  align-items: start;
}

.rc-home__aim-media {
  margin: 0;
}

.rc-home__aim-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 0.35rem;
}

.rc-home__aim-copy h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.65rem, 2.8vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--rc-ink);
}

.rc-home__aim-copy > p {
  margin: 0 0 1rem;
  color: var(--rc-muted);
  font-size: 1.02rem;
  line-height: 1.6;
}

.rc-home__aim-kicker {
  margin: 1.75rem 0 0.45rem !important;
  padding-top: 1.35rem;
  border-top: 1px solid #e6eaee;
  color: var(--rc-brand) !important;
  font-size: 0.72rem !important;
  font-weight: 650 !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rc-home__aim-lead {
  margin-bottom: 1.15rem !important;
  color: var(--rc-ink) !important;
  font-size: 1.05rem !important;
  font-weight: 600;
  line-height: 1.4 !important;
}

.rc-home__accordion {
  display: grid;
  gap: 0;
  max-width: 40rem;
  background: #fff;
  border-radius: 1.15rem;
  border: 1px solid rgba(18, 21, 26, 0.08);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.05);
}

.rc-home__acc {
  border: 0;
  border-bottom: 1px solid rgba(18, 21, 26, 0.08);
  background: transparent;
  color: var(--rc-ink);
  overflow: hidden;
  transition: background 0.15s ease;
}

.rc-home__acc:last-child {
  border-bottom: 0;
}

.rc-home__acc:hover {
  background: rgba(23, 69, 123, 0.03);
}

.rc-home__acc[open] {
  background: rgba(23, 69, 123, 0.045);
  box-shadow: inset 3px 0 0 var(--rc-brand, #17457b);
}

.rc-home__acc summary {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 1.15rem;
  color: var(--rc-ink);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.35;
}

.rc-home__acc summary::-webkit-details-marker {
  display: none;
}

.rc-home__acc-num {
  flex: 0 0 auto;
  min-width: 1.5rem;
  color: var(--rc-brand, #17457b);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
}

.rc-home__acc-q {
  flex: 1 1 auto;
  padding-right: 0.25rem;
  color: var(--rc-ink);
  text-wrap: balance;
}

.rc-home__acc-toggle {
  position: relative;
  flex: 0 0 auto;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 999px;
  background: rgba(23, 69, 123, 0.1);
  border: 1px solid rgba(23, 69, 123, 0.28);
  color: var(--rc-brand, #17457b);
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.rc-home__acc-toggle::before,
.rc-home__acc-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: currentColor;
  border-radius: 1px;
  transform: translate(-50%, -50%);
}

.rc-home__acc-toggle::before {
  width: 0.65rem;
  height: 2px;
}

.rc-home__acc-toggle::after {
  width: 2px;
  height: 0.65rem;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.rc-home__acc[open] .rc-home__acc-toggle {
  background: var(--rc-brand, #17457b);
  border-color: var(--rc-brand, #17457b);
  color: #fff;
}

.rc-home__acc[open] .rc-home__acc-toggle::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}

.rc-home__acc p {
  margin: 0;
  padding: 0 1.15rem 1.15rem 3.5rem;
  color: var(--rc-muted, #5a6573);
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.65;
  background: transparent;
}

.rc-home--league {
  position: relative;
  isolation: isolate;
  padding: 4.25rem 0;
  overflow: hidden;
}

.rc-home__league-bg,
.rc-home__league-bg img,
.rc-home__league-shade {
  position: absolute;
  inset: 0;
}

.rc-home__league-bg {
  z-index: 0;
}

.rc-home__league-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(1.5px);
  transform: scale(1.04);
}

.rc-home__league-shade {
  z-index: 1;
  background: rgba(10, 16, 22, 0.55);
}

.rc-home__league-panels {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.25rem 1.5rem;
  align-items: start;
}

.rc-home__league-panel {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.rc-home__league-panel h2 {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

.rc-home__league-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  color: #fff;
}

.rc-home__league-table th,
.rc-home__league-table td {
  padding: 0.6rem 0.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  text-align: left;
  vertical-align: middle;
}

.rc-home__league-table th {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rc-home__league-team {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.rc-home__league-team img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.rc-home__league-empty {
  margin: 0 0 1.15rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

@media (max-width: 980px) {
  .rc-home--mission,
  .rc-home__cricket-grid,
  .rc-home__aim-grid,
  .rc-home__league-panels {
    grid-template-columns: 1fr;
  }

  .rc-home__mission-media {
    min-height: 16rem;
  }

  .rc-home__mission-media img {
    min-height: 16rem;
  }

  .rc-home__counters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem 1rem;
  }
}

@media (max-width: 640px) {
  .rc-home__teams-list li {
    width: 8.25rem;
  }

  .rc-home__teams-list img {
    width: 7rem;
    height: 7rem;
  }

  .rc-home__counters {
    grid-template-columns: 1fr 1fr;
  }
}
