/* RA Landing Builder — Public Landing Styles (landing.css)
   v2.9.2
   Fixes:
   - Strong scoped reset (prevents theme/builder CSS from breaking alignment/margins)
   - Enforced RTL-friendly text alignment (Hebrew readability)
   - Stronger typography weights + nicer spacing
   - scroll-margin for sticky topbar anchors
*/
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@400;600;800;900&display=swap');

.ra-landing,
.ra-landing *,
.ra-landing *::before,
.ra-landing *::after{
  box-sizing: border-box;
}

.ra-landing{
  --bg0:#070b12;
  --bg1:#0b1020;
  --card:rgba(255,255,255,.06);
  --card2:rgba(255,255,255,.08);
  --text:#ffffff;
  --muted:rgba(255,255,255,.74);
  --muted2:rgba(255,255,255,.62);
  --stroke:rgba(255,255,255,.14);
  --shadow:0 22px 70px rgba(0,0,0,.38);
  --radius:18px;
  --radius2:24px;
  --ra-accent:#F5C542;

  direction: rtl;
  text-align: start !important;
  unicode-bidi: isolate;
  color: var(--text);

  background:
    radial-gradient(1200px 520px at 70% -10%, rgba(245,197,66,.20), transparent 55%),
    radial-gradient(1100px 520px at 20% 0%, rgba(110,231,183,.12), transparent 55%),
    linear-gradient(180deg, var(--bg0), var(--bg1));

  font-family: "Heebo", system-ui, -apple-system, "Segoe UI", Arial, sans-serif !important;
  font-size: 16px;
  line-height: 1.6;

  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;

  position:relative;
  overflow:hidden;
  isolation:isolate;
}

.ra-mid{
	color:rgba(235, 203, 115, 1) !important;
}

.ra-video-icon {
  position: absolute;
  top: 14px;
  left: 14px;
  color: #ebcb73;
  font-size: 20px;
  line-height: 1;
  z-index: 3;
  pointer-events: none; /* שלא יפריע לקליקים */
}

/* Reset common theme styles inside the landing */
.ra-landing :where(h1,h2,h3,h4,h5,h6,p,ul,ol,li,figure,blockquote,figcaption,summary,details){
  margin:0;
  text-align:start !important;
}
.ra-landing :where(ul,ol){
  padding:0 !important;
  list-style:none !important;
}
.ra-landing :where(a){
  color:inherit;
  text-decoration:none;
}
.ra-landing :where(img,svg,video,canvas,iframe){
  max-width:100%;
}
.ra-landing :where(button,input,select,textarea){
  font:inherit;
}

/* Keep some areas centered (override the global start alignment) */
.ra-landing .ra-final-inner,
.ra-landing .ra-video-placeholder-inner{
  text-align:center !important;
}
.ra-landing .ra-final-inner :where(h1,h2,h3,p,ul,ol,li,blockquote,figcaption){
  text-align:center !important;
}

.ra-noise{
  pointer-events:none;
  position:absolute;
  inset:0;
  opacity:.075;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,.05), rgba(255,255,255,.05) 1px, transparent 1px, transparent 3px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.035), rgba(255,255,255,.035) 1px, transparent 1px, transparent 4px);
  mix-blend-mode: overlay;
}

.ra-container{
  max-width:1180px;
  margin-inline:auto;
  padding-inline:20px;
  position:relative;
}
@media (max-width: 520px){
  .ra-container{ padding-inline:16px; }
}

.ra-section{
  padding: 64px 0;
  position:relative;
  scroll-margin-top: 110px;
}
@media (max-width: 880px){
  .ra-section{ padding:52px 0; }
.ra-money-bg{
background-image: url(https://rakefet-a.com/wp-content/uploads/2026/02/money-back.png);
background-size: contain;
backdrop-filter: blur(15px);
background-repeat: no-repeat;
background-position: 0% 0%;
}
}

/* Topbar */
.ra-topbar{
  position: sticky;
  top:0;
  z-index:30;
  backdrop-filter: blur(12px);
  background: rgba(8,12,20,.55);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.ra-topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:16px;
  flex-wrap:wrap;
}

.ra-brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.ra-logo{
  width:38px;
  height:38px;
  border-radius:12px !important;
  background: linear-gradient(135deg, var(--ra-accent), rgba(245,197,66,.25));
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  border:1px solid rgba(255,255,255,.12);
}
.ra-logo-img{
  width:38px;
  height:38px;
  border-radius:12px !important;
  object-fit:cover;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  border:1px solid rgba(255,255,255,.12);
}
.ra-brand-name{ font-weight:900; letter-spacing:.2px; }
.ra-brand-sub{ font-size:13px; color:var(--muted2); }

.ra-nav{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}
.ra-nav a{
  color:rgba(255,255,255,.82);
  text-decoration:none;
  font-size:14px;
  padding:8px 10px;
  border-radius:12px !important;
  border:1px solid transparent;
  white-space:nowrap;
}
.ra-nav a:hover{
  border-color:rgba(255,255,255,.14);
  background:rgba(255,255,255,.04);
}
.ra-nav-cta{
  background: linear-gradient(135deg, var(--ra-accent), rgba(245,197,66,.5));
  color:#121212 !important;
  font-weight:900;
  border-color:rgba(255,255,255,.12) !important;
}

/* Hero */
.ra-hero{ padding-top: 56px; }
.ra-hero-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:0px;
  align-items:start;
}
@media (max-width: 980px){
  .ra-hero-grid{ grid-template-columns:1fr; }
}
.ra-hero-copy{ max-width: 100%; }

.ra-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 12px;
  border-radius:999px !important;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  color:rgba(255,255,255,.9);
  font-weight:900;
  font-size:13px;
}
.ra-h1{
  font-size: clamp(34px, 4.2vw, 56px);
  line-height:1.05;
  margin:14px 0 12px;
  letter-spacing:-.4px;
  font-weight:900;
}
.ra-h2{
  font-size: clamp(26px, 2.8vw, 38px);
  line-height:1.15;
  margin:10px 0 14px;
  letter-spacing:-.2px;
  font-weight:900;
}
.ra-h3{
  font-size: 18px;
  margin:0 0 10px;
  font-weight:900;
}
.ra-lead{
  font-size: 24px;
  line-height:1.7;
  color: var(--muted);
  margin:0 0 14px;
  max-width: 75ch;
}
.ra-muted{
  color:var(--muted2);
  line-height:1.7;
  max-width: 78ch;
}
.ra-small{ font-size:13px; }

.ra-cta-row{
  display:flex;
  gap:12px;
  align-items:center;
  flex-wrap:wrap;
  margin:16px 0 0;
  justify-content: center;
}
.ra-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px !important;
  border:1px solid rgba(255,255,255,.12);
  text-decoration:none;
  font-weight:900;
  cursor:pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
}
.ra-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(0,0,0,.25);
  border-color: rgba(255,255,255,.2);
  background: radial-gradient(black, transparent) !important;
}
.ra-btn-primary{
  background: linear-gradient(135deg, var(--ra-accent), rgba(245,197,66,.62));
  color:#111;
}
.ra-btn-ghost{
  background: rgba(255,255,255,.05);
  color:#fff;
}
.ra-note{
  margin-top:30px;
  padding:14px 16px;
  border-radius: 16px !important;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.84);
  max-width: 100%;
}

.ra-hero .ra-note:not(h3) {
    font-size: 1.2em !important;
    line-height: 1.3em !important;
	text-align:center !important;
}
.ra-hero .ra-note h3{
	text-align:center !important;
}

.ra-about-media{
	background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    box-shadow: inset 0 0 10px black;
}

/* Hero bullets */
.ra-bullets{
  list-style:none;
  padding:0;
  margin: 14px 0 0;
  display:grid;
  gap:10px;
}
.ra-bullets li{
  position:relative;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  border-radius:14px !important;

  padding:10px 12px;
  padding-inline-start: 44px; /* space for icon on inline-end (right in RTL) */
  color:rgba(255,255,255,.88);
  line-height:1.65;
}
.ra-bullets li::before{
  content:"✓";
  position:absolute;
  inset-inline-start: 12px;
  top: 10px;
  width:22px;
  height:22px;
  border-radius:8px !important;
  display:grid;
  place-items:center;
  background: rgba(110,231,183,.18);
  border:1px solid rgba(110,231,183,.35);
  color: rgba(201,255,235,1);
  font-weight:900;
  font-size:13px;
}

/* Video */
.ra-video{
  border-radius: var(--radius2) !important;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
}
.ra-video iframe{
  width:100%;
  aspect-ratio:16/9;
  border:0;
  display:block;
}
.ra-video-placeholder{
  aspect-ratio:16/9;
  display:grid;
  place-items:center;
  padding:18px;
}
.ra-video-placeholder-inner{
  text-align:center;
  color:rgba(255,255,255,.78);
}
.ra-video-placeholder-title{ font-weight:900; margin-bottom:6px; }
.ra-logos{ display:flex; flex-wrap:wrap; gap:10px; margin-top:12px; opacity:.9; }
.ra-logos img{ height:28px; width:auto; filter: grayscale(1) contrast(.9); opacity:.8; }

/* Kicker */
.ra-kicker{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px !important;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.82);
  font-weight:900;
  font-size:13px;
}

/* Split */
.ra-split{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:28px;
  align-items:start;
}
@media (max-width: 980px){
  .ra-split{ grid-template-columns: 1fr; }
.ra-lead{
  font-size: 20px;
}
}

/* Cards */
.ra-card{
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  border:1px solid rgba(255,255,255,.12);
  border-radius: var(--radius2) !important;
  padding:18px 18px;
  box-shadow: 0 10px 44px rgba(0,0,0,.18);
}
/* Card background images (used in Differentiators) */
.ra-card.ra-card-bg{
  position: relative;
  overflow: hidden;
}
.ra-card.ra-card-bg::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--ra-card-bg);
  background-size: cover;
  background-position: var(--ra-card-bg-pos, center center);
  opacity: .28;
  filter: saturate(1.15) contrast(1.05);
  transform: scale(1.02);
  pointer-events: none;
}
.ra-card.ra-card-bg > *{
  position: relative;
  z-index: 1;
}

.ra-card-title{ font-weight:900; font-size:16px; margin-bottom:10px; }

.ra-prose{
  color: rgba(255,255,255,.86);
  line-height:1.9;
  max-width: 78ch;
}
.ra-prose.ra-strong{ font-weight:800; color: rgba(255,255,255,.94); }

/* Grids */
.ra-grid{ display:grid; gap:16px; margin-bottom:18px;}
.ra-grid-2{ grid-template-columns: repeat(2, minmax(0,1fr)); margin-bottom:18px;}
@media (max-width: 880px){
  .ra-grid-2{ grid-template-columns:1fr; }
}
.ra-tight{ gap:10px; }

/* Lists */
.ra-checklist,
.ra-dots{
  list-style:none;
  padding:0;
  margin:12px 0 0;
  display:grid;
  gap:10px;
}
.ra-checklist li,
.ra-dots li{
  position:relative;
  padding-inline-start: 34px;
  line-height:1.7;
  color:rgba(255,255,255,.88);
}
.ra-checklist li::before{
  content:"✓";
  position:absolute;
  inset-inline-start: 0;
  top: 0.05em;
  width:22px;
  height:22px;
  border-radius:8px !important;
  display:grid;
  place-items:center;
  background: rgba(110,231,183,.18);
  border:1px solid rgba(110,231,183,.35);
  font-weight:900;
	font-size:13px;
}
.ra-dots li::before{
  content:"•";
  position:absolute;
  inset-inline-start: 8px;
  top: 0.05em;
  color: var(--ra-accent);
  font-size:24px;
  line-height:1;
}

.ra-mini-title{ font-weight:900; margin: 0 0 10px; color:rgba(255,255,255,.94); }

/* Testimonials */
.ra-testimonial{
  margin:0;
  border:1px solid rgba(255,255,255,.12);
  border-radius: var(--radius2) !important;
  background: rgba(255,255,255,.04);
  padding:18px;
}
.ra-testimonial blockquote{
  margin:0 0 12px;
  color:rgba(255,255,255,.86);
  line-height:1.8;
}
.ra-testimonial figcaption{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  color:rgba(255,255,255,.7);
}
.ra-test-name{ font-weight:900; color:rgba(255,255,255,.92); }
.ra-test-role{ font-size:13px; color:rgba(255,255,255,.62); }

/* Gallery */
.ra-video-gallery{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
  margin-top: 16px;
}
.ra-gallery{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
  margin-top:16px;
}
@media (max-width: 880px){
  .ra-video-gallery{ grid-template-columns:1fr; }
  .ra-gallery{ grid-template-columns:1fr; }
}
.ra-gallery figure{
  margin:0;
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px !important;
  overflow:hidden;
  background:rgba(255,255,255,.04);
}
.ra-gallery img{ width:100%; height:auto; display:block; }
.ra-gallery figcaption{
  padding:10px 12px;
  color:rgba(255,255,255,.72);
  font-size:13px;
  line-height:1.7;
}
/* Proof Carousel (Videos + Images) */
.ra-carousel{
  --ra-car-gap: 12px;
  --ra-car-per: 2;
  position: relative;
  margin-top: 16px;
}

@media (max-width: 880px){
  .ra-carousel{ --ra-car-per: 1; }
}

.ra-car-viewport{
  display: flex;
  align-items: stretch;
  gap: var(--ra-car-gap);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
  padding: 2px 2px 8px;
  scrollbar-width: none; /* Firefox */
}
.ra-car-viewport::-webkit-scrollbar{ display:none; } /* Chrome/Safari */

.ra-car-slide{
  flex: 0 0 calc((100% - (var(--ra-car-gap) * (var(--ra-car-per) - 1))) / var(--ra-car-per));
  scroll-snap-align: start;
}

/* Keep video cards clean inside carousel */
.ra-carousel .ra-video{
  box-shadow: none;
}

/* Image card style (same vibe as your old gallery cards) */
.ra-car-figure{
  margin:0;
/*   border:1px solid rgba(255,255,255,.12); */
  border-radius:18px !important;
  overflow:hidden;
/*   background:rgba(255,255,255,.04); */
  height: 100%;
}
@media (min-width: 1100px){
	.ra-car-figure{
		max-width:300px !important;
		margin-left:auto !important;
		margin-right:auto !important;
	}
.ra-prose{
  font-size:18px !important;
  max-width: 100%;
}
	.ra-card-title{ font-size:20px !important; }
}
.ra-car-figure img{
  width:100%;
  height:auto;
  display:block;
}
.ra-car-caption{
  padding:10px 12px;
  color:rgba(255,255,255,.72);
  font-size:13px;
  line-height:1.7;
}

/* Nav buttons */
.ra-car-btn{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width:42px;
  height:42px;
  border-radius:999px !important;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(8,12,20,.55);
  backdrop-filter: blur(10px);
  display:grid;
  place-items:center;
  color: rgba(255,255,255,.92);
  font-weight:900;
  font-size:22px;
  cursor:pointer;
  z-index: 2;
}

.ra-car-prev{ right: 8px; }
.ra-car-next{ left: 8px; }

.ra-car-btn:disabled{
  opacity:.35;
  cursor: default;
}

/* Dots */
.ra-car-dots{
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top: 12px;
}

.ra-car-dot{
  width:9px;
  height:9px;
  border-radius:999px !important;
  border:1px solid rgba(255,255,255,.20);
  background: rgba(255,255,255,.22);
  cursor:pointer;
  padding:0;
}
.ra-car-dot.is-active{
  background: var(--ra-accent);
  border-color: rgba(245,197,66,.55);
}

/* Steps */
.ra-steps{ display:grid; gap:12px; margin-top:16px; grid-template-columns: repeat(4, 1fr);}
.ra-step{
  display:grid;
  grid-template-columns: 46px 1fr;
  gap:12px;
  align-items:start;
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px !important;
  padding:14px;
  background: rgba(255,255,255,.04);
}
.ra-step-num{
  width:46px;
  height:46px;
  border-radius:16px !important;
  display:grid;
  place-items:center;
  font-weight:900;
  background: rgba(245,197,66,.18);
  border:1px solid rgba(245,197,66,.28);
  color: rgba(255,255,255,.92);
}
.ra-step-title{ font-weight:900; margin-bottom:4px; }
.ra-step-text{ color:rgba(255,255,255,.78); line-height:1.75; }

/* Fit (Yes/No) */
.ra-fit-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:16px;
  margin-top:18px;
	margin-bottom:18px;
}
@media (max-width: 880px){
  .ra-fit-grid{ grid-template-columns:1fr; }
  .ra-steps{ grid-template-columns: repeat(1, 1fr);}
}

.ra-fit-card{
  border-radius: var(--radius2) !important;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  padding:18px;
	margin-bottom:18px;
}
.ra-fit-yes{ background: linear-gradient(135deg, rgba(110,231,183,.10), rgba(255,255,255,.035)); }
.ra-fit-no{ background: linear-gradient(135deg, rgba(248,113,113,.08), rgba(255,255,255,.035)); }

.ra-fit-title{ font-weight:900; font-size:18px; }
.ra-fit-sub{ color:rgba(255,255,255,.70); margin:6px 0 12px; line-height:1.7; }

.ra-fit-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}
.ra-fit-list li{
  position:relative;
  padding-inline-start: 34px;
  color:rgba(255,255,255,.88);
  line-height:1.75;

  opacity:0;
  transform: translateY(6px);
  transition: opacity .5s ease, transform .5s ease;
  transition-delay: calc(var(--i) * 90ms);
}
.ra-fit-list-yes li::before{
  content:"✓";
  position:absolute;
  inset-inline-start: 0;
  top: 0.05em;
  width:22px;
  height:22px;
  border-radius:8px !important;
  display:grid;
  place-items:center;
  background: rgba(110,231,183,.18);
  border:1px solid rgba(110,231,183,.35);
  font-weight:900;
	font-size:13px;
}
.ra-fit-list-no li::before{
  content:"✕";
  position:absolute;
  inset-inline-start: 0;
  top: 0.05em;
  width:22px;
  height:22px;
  border-radius:8px !important;
  display:grid;
  place-items:center;
  background: rgba(248,113,113,.16);
  border:1px solid rgba(248,113,113,.28);
  color: rgba(255,210,210,1);
  font-weight:900;
	font-size:13px;
}

.ra-fit-card.is-in .ra-fit-list li{ opacity:1; transform:none; }

/* Modules */
.ra-modules{ display:grid; gap:14px; margin-top:16px; }
.ra-module{
  border-radius: var(--radius2) !important;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  padding:18px;
}
.ra-module-title{ margin:0; font-size:20px; font-weight:900; letter-spacing:1.2px;}
.ra-module-sub{ margin-top:4px; color:rgba(255,255,255,.70); font-weight:800; }
.ra-result{
  margin-top:12px;
  padding:12px 14px;
  border-radius:16px !important;
  background: rgba(245,197,66,.12);
  border:1px solid rgba(245,197,66,.18);
  color: rgba(255,255,255,.88);
  line-height:1.75;
}

/* Callout */
.ra-callout{
  margin-top:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:18px;
  border-radius: var(--radius2) !important;
  border:1px solid rgba(255,255,255,.12);
  background: linear-gradient(135deg, rgba(245,197,66,.16), rgba(255,255,255,.04));
}
@media (max-width: 880px){
  .ra-callout{ flex-direction:column; align-items:stretch; }
}
.ra-callout-strong{ font-weight:900; font-size:18px; margin-bottom:6px; }
.ra-callout-sub{ color:rgba(255,255,255,.76); line-height:1.75; }

/* Offer */
.ra-offer{ background: radial-gradient(900px 380px at 20% 0%, rgba(245,197,66,.16), transparent 55%); }
.ra-offer-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:16px;
  margin-top:18px;
  align-items:start;
}
@media (max-width: 980px){
  .ra-offer-grid{ grid-template-columns:1fr; }
}

.ra-price{ margin-top:14px; }
.ra-price-label{ color:rgba(255,255,255,.72); font-weight:900; }
.ra-price-old{ margin-top:6px; color:rgba(255,255,255,.55); text-decoration:line-through; font-weight:900; }
.ra-price-now{ margin-top:6px; font-size:30px; font-weight:900; letter-spacing:-.2px; }

.ra-countdown{
  margin-top:14px;
  padding:12px 14px;
  border-radius:16px !important;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.2);
}
.ra-countdown-title{ font-weight:900; margin-bottom:8px; color:rgba(255,255,255,.88); }
.ra-countdown-timer{ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; font-size:18px; }

.ra-pay-grid{ display:grid; gap:12px; margin-top:14px; }
.ra-pay-card{
  display:block;
  text-decoration:none;
  border-radius:18px !important;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  padding:14px;
  color:#fff;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}
.ra-pay-card:hover{
  transform: translateY(-1px);
  border-color:rgba(255,255,255,.2);
  box-shadow: 0 16px 40px rgba(0,0,0,.25);
}
.ra-pay-title{ font-weight:900; }
.ra-pay-sub{ color:rgba(255,255,255,.70); margin-top:4px; }
.ra-pay-card.is-disabled{ opacity:.55; pointer-events:none; }

/* FAQ */
.ra-faq{ margin-top:16px; display:grid; gap:10px; }
.ra-faq-item{
  border:1px solid rgba(255,255,255,.12);
  border-radius: 18px !important;
  background: rgba(255,255,255,.04);
  padding: 0;
  overflow:hidden;
}
.ra-faq-item summary{
  cursor:pointer;
  padding: 14px 16px;
  font-weight:900;
  list-style:none;
}
.ra-faq-item summary::-webkit-details-marker{ display:none; }
.ra-faq-body{
  padding: 0 16px 14px;
  color:rgba(255,255,255,.80);
  line-height:1.85;
}

/* Final */
.ra-final{
  background: radial-gradient(1000px 420px at 70% 0%, rgba(245,197,66,.18), transparent 55%);
}
.ra-final-inner{ text-align:center; }
.ra-quote{
  border-radius: var(--radius2) !important;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  padding: 18px;
  margin: 0 auto 14px;
  max-width: 860px;
}
.ra-quote-strong{ font-weight:900; font-size:18px; }
.ra-quote-sub{ color:rgba(255,255,255,.72); margin-top:8px; line-height:1.75; }

/* Footer */
.ra-footer{ padding: 26px 0 46px; border-top:1px solid rgba(255,255,255,.08); }
.ra-footer-text{ color:rgba(255,255,255,.55); font-size:13px; line-height:1.8; }

/* Floating CTA */
.ra-float-cta{
  position: fixed;
  bottom: 18px;
  left: 18px;
  z-index: 50;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 14px;
  border-radius: 999px !important;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(135deg, var(--ra-accent), rgba(245,197,66,.62));
  color:#111;
  font-weight:900;
  text-decoration:none;
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
  opacity:0;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease;
}
.ra-float-cta:hover{
	    background: radial-gradient(black, transparent) !important;
}
.ra-float-cta.is-visible{ opacity:1; transform:none; }

@media (max-width: 520px){
  .ra-float-cta{
    left: 12px;
    right: 12px;
    width: calc(100% - 24px);
  }
}

/* Entry animation */
.ra-anim{
  opacity:0;
  transform: translateY(10px);
  transition: opacity .6s ease, transform .6s ease;
}
.ra-anim.is-in{ opacity:1; transform:none; }

@media (prefers-reduced-motion: reduce){
  .ra-anim{ transition:none; }
  .ra-btn, .ra-pay-card{ transition:none; }
  .ra-float-cta{ transition:none; }
}
