:root {
  --rlc-black: #050507;
  --rlc-ink: #0b0b10;
  --rlc-panel: #111118;
  --rlc-panel-soft: #191724;
  --rlc-white: #f7f7fb;
  --rlc-muted: #aaa8b8;
  --rlc-line: rgba(255, 255, 255, 0.14);
  --rlc-lilac: #7a35ff;
  --rlc-lilac-2: #531ad9;
  --rlc-green: #25d366;
  --rlc-silver: #dddeea;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.rlc-site {
  margin: 0;
  background: var(--rlc-black);
  color: var(--rlc-white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

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

.rlc-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.rlc-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 5, 7, 0.88);
  border-bottom: 1px solid var(--rlc-line);
  backdrop-filter: blur(18px);
}

.admin-bar .rlc-header {
  top: 32px;
}

.rlc-header__inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.rlc-logo {
  display: inline-flex;
  align-items: center;
  width: 214px;
  min-width: 214px;
}

.rlc-logo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 52px;
  object-fit: contain;
}

.rlc-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--rlc-muted);
  font-size: 14px;
}

.rlc-nav a:hover {
  color: var(--rlc-white);
}

.rlc-nav__list {
  display: contents;
  list-style: none;
}

.rlc-nav__list li {
  display: contents;
}

.rlc-btn,
.rlc-calculator-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  white-space: normal;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.rlc-btn:hover,
.rlc-calculator-card button:hover {
  transform: translateY(-2px);
}

.rlc-btn--primary,
.rlc-calculator-card button {
  background: linear-gradient(135deg, var(--rlc-lilac), var(--rlc-lilac-2));
  color: #fff;
  box-shadow: 0 18px 42px rgba(122, 53, 255, 0.3);
}

.rlc-btn--ghost {
  border-color: var(--rlc-line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--rlc-white);
}

.rlc-btn--header {
  min-height: 40px;
  padding: 0 16px;
  color: #06110a;
  background: var(--rlc-green);
}

.rlc-btn--dark {
  background: #09090d;
  color: #fff;
}

.rlc-btn--outline-dark {
  border-color: #d7d7e2;
  color: #111118;
  background: transparent;
}

.rlc-btn--small {
  min-height: 38px;
  padding: 0 14px;
  font-size: 13px;
  background: var(--rlc-black);
  color: var(--rlc-white);
}

.rlc-menu-toggle {
  display: none;
}

.rlc-hero,
.rlc-page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 96px 0;
  background:
    radial-gradient(circle at 78% 20%, rgba(122, 53, 255, 0.2), transparent 28%),
    linear-gradient(120deg, #050507 0%, #101018 52%, #050507 100%);
}

.rlc-hero--photo {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(90deg, rgba(5, 5, 7, 0.94) 0%, rgba(5, 5, 7, 0.78) 38%, rgba(5, 5, 7, 0.24) 72%, rgba(5, 5, 7, 0.65) 100%),
    linear-gradient(0deg, rgba(5, 5, 7, 0.85), rgba(5, 5, 7, 0.08) 55%, rgba(5, 5, 7, 0.78)),
    url("../images/hero-dubai-mustang.png");
  background-size: cover;
  background-position: center;
}

.rlc-hero--photo::before,
.rlc-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.28;
  background:
    linear-gradient(116deg, transparent 0 50%, rgba(122, 53, 255, 0.36) 50.1% 50.35%, transparent 50.45%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 120px);
}

.rlc-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.18fr);
}

.rlc-hero__content {
  animation: rlcFadeUp 700ms ease both;
}

.rlc-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: 56px;
  align-items: center;
}

.rlc-kicker {
  margin: 0 0 14px;
  color: var(--rlc-lilac);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.18;
}

.rlc-lead {
  max-width: 720px;
  color: var(--rlc-silver);
  font-size: 20px;
}

.rlc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.rlc-trustbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.rlc-trustbar span,
.rlc-shop-tools span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(5,5,7,0.5);
  color: var(--rlc-silver);
  font-size: 13px;
  font-weight: 750;
}

.rlc-section {
  padding: 82px 0;
  background: var(--rlc-black);
}

.rlc-section--light {
  background: #f4f4f7;
  color: #101016;
}

.rlc-section--light .rlc-kicker {
  color: #5d22dd;
}

.rlc-section--light p {
  color: #4f5060;
}

.rlc-section--calculator {
  background:
    radial-gradient(circle at 82% 18%, rgba(122,53,255,0.22), transparent 28%),
    #08080d;
}

.rlc-section__head {
  max-width: 860px;
  margin-bottom: 34px;
}

.rlc-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.9fr);
  gap: 54px;
  align-items: center;
}

.rlc-process,
.rlc-service-grid,
.rlc-products,
.rlc-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.rlc-service-grid {
  grid-template-columns: repeat(4, 1fr);
}

.rlc-process--premium {
  grid-template-columns: repeat(3, 1fr);
}

.rlc-process article,
.rlc-service-grid a,
.rlc-service-grid article,
.rlc-products article,
.rlc-contact-grid article,
.rlc-faq__item,
.rlc-tech-panel,
.rlc-contact-panel,
.rlc-price-panel,
.rlc-shortcode-box {
  border: 1px solid var(--rlc-line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
}

.rlc-section--light .rlc-process article,
.rlc-section--light .rlc-service-grid a,
.rlc-section--light .rlc-service-grid article,
.rlc-section--light .rlc-products article,
.rlc-section--light .rlc-faq__item,
.rlc-section--light .rlc-shortcode-box {
  background: #fff;
  border-color: #dedee8;
}

.rlc-process article,
.rlc-service-grid a,
.rlc-service-grid article,
.rlc-products article,
.rlc-contact-grid article {
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.rlc-process article:hover,
.rlc-service-grid a:hover,
.rlc-products article:hover {
  transform: translateY(-4px);
  border-color: rgba(122, 53, 255, 0.45);
}

.rlc-process span,
.rlc-service-grid span,
.rlc-products span,
.rlc-price-panel span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--rlc-lilac);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rlc-checklist {
  display: grid;
  gap: 10px;
  margin: 20px 0 26px;
  padding: 0;
  list-style: none;
}

.rlc-checklist li {
  position: relative;
  padding-left: 24px;
  color: var(--rlc-silver);
}

.rlc-section--light .rlc-checklist li,
.rlc-tech-panel .rlc-checklist li {
  color: inherit;
}

.rlc-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--rlc-lilac);
  box-shadow: 0 0 18px rgba(122,53,255,0.75);
}

.rlc-price-panel,
.rlc-tech-panel,
.rlc-contact-panel {
  padding: 28px;
  background: linear-gradient(145deg, rgba(122,53,255,0.2), rgba(255,255,255,0.045));
}

.rlc-price-panel strong {
  display: block;
  margin: -8px 0 12px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
}

.rlc-page-hero {
  padding: 88px 0;
}

.rlc-page-hero--focused {
  background:
    radial-gradient(circle at 82% 12%, rgba(122, 53, 255, 0.22), transparent 26%),
    linear-gradient(120deg, #050507, #100c1c 58%, #050507);
}

.rlc-hero-calculator,
.rlc-hero-homologacion,
.rlc-hero-faros,
.rlc-hero-transporte,
.rlc-hero-contacto {
  background-size: cover;
  background-position: center;
}

.rlc-hero-calculator {
  background-image:
    linear-gradient(90deg, rgba(5,5,7,0.94), rgba(5,5,7,0.72) 42%, rgba(5,5,7,0.26) 78%, rgba(5,5,7,0.72)),
    url("../images/hero-calculadora.png");
}

.rlc-hero-homologacion {
  background-image:
    linear-gradient(90deg, rgba(5,5,7,0.94), rgba(5,5,7,0.72) 42%, rgba(5,5,7,0.26) 78%, rgba(5,5,7,0.72)),
    url("../images/hero-homologacion.png");
}

.rlc-hero-faros {
  background-image:
    linear-gradient(90deg, rgba(5,5,7,0.94), rgba(5,5,7,0.72) 42%, rgba(5,5,7,0.26) 78%, rgba(5,5,7,0.72)),
    url("../images/hero-faros-usa-eu.png");
}

.rlc-hero-transporte,
.rlc-hero-contacto {
  background-image:
    linear-gradient(90deg, rgba(5,5,7,0.94), rgba(5,5,7,0.72) 42%, rgba(5,5,7,0.26) 78%, rgba(5,5,7,0.72)),
    url("../images/hero-transporte-dubai.png");
}

.rlc-calculator-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: 44px;
  align-items: start;
}

.rlc-shortcode-box {
  min-height: 360px;
  padding: 22px;
}

.rlc-shortcode-placeholder {
  min-height: 316px;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 12px;
  padding: 28px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 78% 22%, rgba(122,53,255,0.18), transparent 34%),
    #0b0b10;
  color: #fff;
}

.rlc-shortcode-placeholder span {
  color: var(--rlc-lilac);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.rlc-shop-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.rlc-shop-tools span {
  background: #101016;
  color: #fff;
}

.rlc-woo-wrap {
  --wc-primary: var(--rlc-lilac);
}

.rlc-faq {
  display: grid;
  gap: 10px;
}

.rlc-faq__item {
  padding: 18px;
}

.rlc-faq__item summary {
  cursor: pointer;
  font-weight: 900;
}

.rlc-faq__item p {
  margin: 12px 0 0;
}

.rlc-footer {
  padding: 54px 0 38px;
  border-top: 1px solid var(--rlc-line);
  background: #07070b;
}

.rlc-footer__grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) minmax(220px, 0.8fr) minmax(300px, 0.95fr);
  gap: 52px;
  align-items: start;
}

.rlc-footer .rlc-logo {
  width: 230px;
  min-width: 0;
  margin-bottom: 16px;
}

.rlc-footer .rlc-btn {
  display: inline-flex;
  width: min(100%, 320px);
  min-height: 52px;
  color: #fff;
  line-height: 1.1;
}

.rlc-footer p,
.rlc-footer a {
  display: block;
  color: var(--rlc-muted);
}

.rlc-footer a.rlc-btn {
  display: inline-flex;
  color: #fff;
}

.rlc-footer h2 {
  font-size: 18px;
}

.rlc-whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 0;
  box-shadow: 0 18px 46px rgba(37, 211, 102, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.rlc-whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 22px 56px rgba(37, 211, 102, 0.42);
}

.rlc-whatsapp-float img {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.rlc-whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: inherit;
  border: 1px solid rgba(37, 211, 102, 0.35);
  opacity: 0.75;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  padding: 18px;
  border: 1px solid #dedee8;
  border-radius: 10px;
  background: #fff;
}

.rlc-woocommerce-page {
  min-height: 62vh;
}

.rlc-woocommerce-page .woocommerce,
.rlc-woocommerce-page .woocommerce-page,
.rlc-woocommerce-page .product {
  color: #111118;
}

.rlc-woocommerce-page h1,
.rlc-woocommerce-page h2,
.rlc-woocommerce-page h3,
.rlc-woocommerce-page p {
  color: #111118;
}

.rlc-woocommerce-page a:not(.button) {
  color: #3d17a7;
}

.woocommerce div.product {
  background: #fff;
  border: 1px solid #dedee8;
  border-radius: 10px;
  padding: 24px;
}

.woocommerce table.shop_table,
.woocommerce-cart .cart-collaterals .cart_totals,
.woocommerce-checkout #payment {
  border-radius: 10px;
  background: #fff;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  border-radius: 8px;
  background: var(--rlc-lilac);
  color: #fff;
}

.woocommerce ul.products li.product .button {
  border-radius: 8px;
  background: var(--rlc-lilac);
  color: #fff;
}

@keyframes rlcFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .admin-bar .rlc-header {
    top: 46px;
  }

  .rlc-nav,
  .rlc-btn--header {
    display: none;
  }

  .is-menu-open .rlc-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 72px;
    display: grid;
    gap: 12px;
    padding: 18px;
    border: 1px solid var(--rlc-line);
    border-radius: 8px;
    background: rgba(5, 5, 7, 0.96);
  }

  .rlc-menu-toggle {
    display: inline-flex;
    margin-left: auto;
    min-height: 38px;
    padding: 0 12px;
    border: 1px solid var(--rlc-line);
    border-radius: 6px;
    background: transparent;
    color: var(--rlc-white);
  }

  .rlc-hero__inner,
  .rlc-split,
  .rlc-intro-grid,
  .rlc-calculator-layout,
  .rlc-footer__grid {
    grid-template-columns: 1fr;
  }

  .rlc-process,
  .rlc-process--premium,
  .rlc-service-grid,
  .rlc-products,
  .rlc-contact-grid {
    grid-template-columns: 1fr;
  }

  .rlc-hero,
  .rlc-page-hero,
  .rlc-section {
    padding: 58px 0;
  }

  .rlc-hero--photo {
    min-height: auto;
    background-position: 62% center;
  }
}

@media (max-width: 560px) {
  .rlc-shell {
    width: min(100% - 28px, 1180px);
  }

  .rlc-logo {
    width: 182px;
    min-width: 182px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 31px;
  }

  .rlc-actions {
    display: grid;
  }

  .rlc-whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 58px;
    height: 58px;
  }

  .rlc-whatsapp-float img {
    width: 58px;
    height: 58px;
  }
}
