:root{
  color-scheme: dark;
}
.ravm{
  font-family: "Space Grotesk", system-ui, sans-serif;
  color: #f2f4f7;
  background: #0b0d10;
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  overflow-y: auto;
  z-index: 999999;
  padding: 16px;
  box-sizing: border-box;
}
.ravm-head{
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.ravm-head-text{
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ravm-portal-link{
  text-decoration: none;
  color: #f2f4f7;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.ravm-portal-link:hover{
  background: rgba(255,255,255,0.08);
}
.ravm-title{
  font-size: 22px;
  font-weight: 700;
}
.ravm-sub{
  font-size: 13px;
  color: #a7adb4;
  margin-top: 4px;
}
.ravm-card{
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(18,21,27,0.85);
  border-radius: 14px;
  padding: 12px;
  margin-bottom: 12px;
}
.ravm-panel{ display:none; }
.ravm-panel.is-active{ display:block; }
.ravm-card h2{
  margin: 0 0 10px 0;
  font-size: 16px;
}
.ravm-stepcount{
  margin: 0 0 12px 0;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
@keyframes ravm-pulse{
  0%{ box-shadow: 0 0 0 0 rgba(255,255,255,0.35); transform: translateY(0); }
  70%{ box-shadow: 0 0 0 16px rgba(255,255,255,0); transform: translateY(-1px); }
  100%{ box-shadow: 0 0 0 0 rgba(255,255,255,0); transform: translateY(0); }
}
.ravm-intro{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  text-align: center;
  min-height: 45vh;
}
.ravm-intro h2{
  font-size: 20px;
  margin: 0;
}
.ravm-trust{
  font-size: 12px;
  color: #c9ced5;
}
.ravm-logo-section{
  display: flex;
  justify-content: center;
}
.ravm-logo-frame{
  width: min(78vw, 320px);
  height: 76px;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
}
.ravm-logo-marquee{
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 14px;
  animation: ravm-marquee var(--logo-speed, 12s) linear infinite;
}
.ravm-logo-item{
  flex: 0 0 auto;
  opacity: 0.95;
}
.ravm-logo-item img{
  height: 28px;
  width: auto;
  filter: grayscale(1) contrast(1.05);
  opacity: 0.9;
}
.ravm-next-day{
  font-size: 12px;
  color: #a7adb4;
}
@keyframes ravm-marquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}
.ravm-phone{
  font-size: 12px;
  color: #a7adb4;
}
.ravm-phone a{
  color: #fff;
  text-decoration: none;
}
.ravm-card label{
  display: block;
  font-size: 13px;
  color: #c9ced5;
  margin-bottom: 8px;
}
.ravm-card input{
  width: 100%;
  margin-top: 6px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(11,13,16,0.6);
  color: #fff;
}
.ravm-card input:disabled,
.ravm-card select:disabled{
  opacity: 0.55;
  cursor: not-allowed;
}
.ravm-card label.ravm-disabled{
  opacity: 0.6;
}
.ravm-card select{
  width: 100%;
  margin-top: 6px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(11,13,16,0.6);
  color: #fff;
}
.ravm-muted{ color: #8e949b; font-size: 12px; }
.ravm-small{ color: #a7adb4; font-size: 12px; margin: 6px 0; }
.ravm-list-title{
  font-size: 13px;
  font-weight: 700;
  margin: 10px 0 6px;
}
.ravm-lighting-preview{
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ravm-lighting-img{
  width: 100%;
  height: 90px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  background-size: cover;
  background-position: center;
}
.ravm-ticklist{
  list-style: none;
  padding: 0;
  margin: 6px 0 10px;
}
.ravm-ticklist li{
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 12px;
  color: #c9ced5;
  line-height: 1.4;
}
.ravm-tickbox{
  display: inline-flex;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 11px;
  align-items: center;
  justify-content: center;
  flex: 0 0 16px;
  margin-top: 2px;
}
.ravm-card button{
  width: 100%;
  padding: 12px;
  border-radius: 999px;
  border: none;
  background: #fff;
  color: #0b0d10;
  font-weight: 700;
}
.ravm-btn-hero{
  padding: 14px 16px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  animation: ravm-pulse 2.2s ease-out infinite;
}
.ravm-btn-hero-title{
  font-size: 17px;
  font-weight: 800;
}
.ravm-btn-hero-sub{
  font-size: 12px;
  font-weight: 600;
  opacity: 0.75;
}
.ravm-reviews{
  display: grid;
  gap: 6px;
  text-align: center;
  padding: 8px 6px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
}
.ravm-stars{ color: #f5d35a; font-size: 12px; letter-spacing: 2px; }
.ravm-rating{ font-size: 11px; color: #a7adb4; }
.ravm-review-quote{ font-size: 12px; color: #f2f4f7; }
.ravm-timer-title{
  font-size: 16px;
  font-weight: 700;
  margin-top: 8px;
}
.ravm-stepper{
  display:flex;
  gap:8px;
  overflow:auto;
  padding-bottom:6px;
}
.ravm-step{
  border:1px solid rgba(255,255,255,0.2);
  background:transparent;
  color:#fff;
  border-radius:999px;
  padding:10px 16px;
  font-size:13px;
  min-width:88px;
  white-space:nowrap;
}
.ravm-step.is-active{
  background:#fff;
  color:#0b0d10;
}
.ravm-nav{
  position:sticky;
  bottom:0;
  display:flex;
  gap:10px;
  padding:10px 0;
  background:linear-gradient(180deg, rgba(11,13,16,0), rgba(11,13,16,0.9));
}
.ravm-nav button{ flex:1; }
.ravm-inline{
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:8px;
}
.ravm-inline input{ width:auto; margin:0; }
.ravm-accordion{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.ravm-acc-btn{
  width:100%;
  text-align:left;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,0.16);
  background:rgba(11,13,16,0.6);
  color:#fff;
  font-weight:700;
}
.ravm-acc-body{
  display:none;
  border:1px solid rgba(255,255,255,0.12);
  border-radius:12px;
  padding:10px;
  background:rgba(18,21,27,0.65);
}
.ravm-acc-body.is-open{ display:block; }
.ravm-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
}
.ravm-extras{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.ravm-extra{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.ravm-stepper button{
  width:34px;
  padding:8px 0;
  border-radius:10px;
}
.ravm-stepper span{
  min-width:24px;
  text-align:center;
}
.ravm-extra-toggle{
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:13px;
  gap:8px;
}
.ravm-extra-toggle input{ width:auto; }
.ravm-summary{
  border:1px solid rgba(255,255,255,0.12);
  border-radius:12px;
  padding:10px;
  font-size:13px;
  line-height:1.5;
  margin-bottom:10px;
}
.ravm-paylines{
  display:flex;
  flex-direction:column;
  gap:6px;
  font-size:13px;
  margin-bottom:10px;
}
.ravm-paylines strong{ color:#fff; }
.ravm-paymode{
  display:flex;
  flex-direction:column;
  gap:6px;
  margin-bottom:10px;
}
.ravm-hidden{ display:none; }
.ravm-bank{
  margin-top:10px;
  padding:10px;
  border:1px solid rgba(255,255,255,0.16);
  border-radius:12px;
  background:rgba(11,13,16,0.55);
  display:flex;
  flex-direction:column;
  gap:8px;
}
.ravm-qr{
  width:160px;
  height:160px;
  border-radius:10px;
  background:rgba(255,255,255,0.06);
  object-fit:cover;
}
.ravm-bank-details{
  display:flex;
  flex-direction:column;
  gap:6px;
  font-size:12px;
  color:#fff;
}
.ravm-booking-fee{
  font-size:20px;
  font-weight:800;
  text-align:center;
  margin:10px 0 6px;
}
.ravm-cart{
  margin-top:12px;
  border:1px solid rgba(255,255,255,0.12);
  border-radius:12px;
  padding:10px;
  background: rgba(255,255,255,0.04);
}
.ravm-cart-title{
  font-weight:800;
  margin-bottom:6px;
}
.ravm-cart-list{
  display:grid;
  gap:4px;
  font-size:12px;
}
.ravm-platinum{
  margin-top:12px;
  padding:12px;
  border-radius:12px;
  background: linear-gradient(180deg, #f1f1f1 0%, #d9d9d9 100%);
  color:#1b1f24;
  border:1px solid rgba(0,0,0,0.18);
}
.ravm-platinum-title{
  font-weight:900;
  text-align:center;
  margin-bottom:4px;
}
.ravm-platinum-sub{
  text-align:center;
  font-size:11px;
  margin-bottom:8px;
}
.ravm-platinum-pricing{
  text-align:center;
  display:grid;
  gap:6px;
  margin-bottom:8px;
}
.ravm-platinum-usual{
  position:relative;
  font-size:12px;
  font-weight:700;
}
.ravm-platinum-usual:after{
  content:"";
  position:absolute;
  left:-6%;
  right:-6%;
  top:50%;
  height:3px;
  background:#d62424;
  transform: translateY(-50%) rotate(-8deg);
}
.ravm-platinum-now{
  font-size:14px;
  font-weight:900;
  color:#fff;
  background:#1b1f24;
  padding:4px 8px;
  border-radius:8px;
  display:inline-block;
}
.ravm-platinum-list{
  list-style:none;
  padding-left:0;
  margin:0;
  display:grid;
  gap:6px;
  font-size:11px;
  line-height:1.3;
}
.ravm-platinum-list li{
  position:relative;
  padding-left:20px;
}
.ravm-platinum-list li:before{
  content:"";
  position:absolute;
  left:0;
  top:6px;
  width:12px;
  height:12px;
  border-radius:3px;
  background:#0bb35b;
}
.ravm-platinum-list li:after{
  content:"";
  position:absolute;
  left:3px;
  top:9px;
  width:5px;
  height:3px;
  border-left:2px solid #fff;
  border-bottom:2px solid #fff;
  transform: rotate(-45deg);
}
.ravm-card-element{
  border:1px solid rgba(255,255,255,0.16);
  border-radius:12px;
  padding:12px;
  background:rgba(11,13,16,0.55);
  margin-bottom:10px;
}
.ravm-error{
  color:#ffb3b3;
  font-size:12px;
  margin-bottom:8px;
}
