@import url('https://fonts.googleapis.com/css2?family=Amiri:wght@400;700&family=Cairo:wght@300;400;500;600;700;800&display=swap');

:root {
  --rm-ink-deep: #060408;
  --rm-ink-mid: #10080e;
  --rm-ink-card: #180e14;
  --rm-ink-raise: #1e1018;
  --rm-gold: #c8a84a;
  --rm-gold-hi: #e0c070;
  --rm-gold-pale: rgba(200,168,74,0.12);
  --rm-ruby: #96162a;
  --rm-ruby-soft: #b82038;
  --rm-ruby-glow: rgba(150,22,42,0.2);
  --rm-teal: #1a8fa0;
  --rm-cream: #f2e8d4;
  --rm-sand: #c4a882;
  --rm-dune: #7a6248;
  --rm-ash: #3e2e28;
  --rm-divider: rgba(200,168,74,0.13);
  --rm-divider-em: rgba(200,168,74,0.35);
  --rm-rnd-xs: 4px;
  --rm-rnd-s: 8px;
  --rm-rnd-m: 14px;
  --rm-rnd-l: 22px;
  --rm-rnd-xl: 32px;
  --rm-rnd-pill: 999px;
  --rm-shd-s: 0 2px 10px rgba(0,0,0,0.4);
  --rm-shd-m: 0 8px 30px rgba(0,0,0,0.55);
  --rm-shd-l: 0 16px 56px rgba(0,0,0,0.65);
  --rm-glow-g: 0 0 40px rgba(200,168,74,0.2);
  --rm-glow-r: 0 0 36px rgba(150,22,42,0.2);
  --rm-t: 0.26s ease;
  --rm-t-slow: 0.44s ease;
  --rm-max: 1160px;
  --rm-f-head: 'Amiri', serif;
  --rm-f-body: 'Cairo', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; direction: rtl; }
body {
  font-family: var(--rm-f-body);
  background: var(--rm-ink-deep);
  color: var(--rm-sand);
  line-height: 1.7;
  overflow-x: hidden;
  direction: rtl;
  text-align: right;
}
a { color: var(--rm-gold); text-decoration: none; transition: var(--rm-t); }
a:hover { color: var(--rm-gold-hi); }
img { max-width: 100%; height: auto; display: block; }

.rm-outer { width: 100%; max-width: var(--rm-max); margin: 0 auto; padding: 0 24px; }

.rm-badge {
  display: inline-block;
  font-family: var(--rm-f-head);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--rm-gold);
  background: var(--rm-gold-pale);
  padding: 5px 16px;
  border-radius: var(--rm-rnd-pill);
  border: 1px solid var(--rm-divider);
  margin-bottom: 14px;
}

.rm-h2 {
  font-family: var(--rm-f-head);
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--rm-cream);
  line-height: 1.25;
  margin-bottom: 13px;
}
.rm-h2 .hi { color: var(--rm-gold-hi); }

.rm-desc { font-size: 0.97rem; color: var(--rm-dune); line-height: 1.7; }

.rm-cta-amber {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--rm-gold), var(--rm-gold-hi));
  color: #08040a;
  font-family: var(--rm-f-body);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 13px 28px;
  border-radius: var(--rm-rnd-pill);
  border: none;
  cursor: pointer;
  transition: var(--rm-t);
  letter-spacing: 0.02em;
  text-decoration: none;
}
.rm-cta-amber:hover { transform: translateY(-2px); box-shadow: var(--rm-glow-g); color: #08040a; }

.rm-cta-hollow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--rm-gold);
  font-family: var(--rm-f-body);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: var(--rm-rnd-pill);
  border: 1px solid rgba(200,168,74,0.4);
  cursor: pointer;
  transition: var(--rm-t);
  text-decoration: none;
}
.rm-cta-hollow:hover { background: var(--rm-gold-pale); color: var(--rm-gold-hi); }

.rm-sec-intro { text-align: center; margin-bottom: 48px; }
.rm-sec-intro .rm-desc { max-width: 520px; margin: 0 auto; }

/* ── COOKIE BAR ── */
.rm-cookie-prompt {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: rgba(10,6,10,0.97);
  backdrop-filter: blur(18px);
  border-top: 1px solid var(--rm-divider);
  padding: 16px 0;
  transform: translateY(100%);
  transition: transform 0.38s ease;
}
.rm-cookie-prompt.rm-visible { transform: translateY(0); }
.rm-cookie-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.rm-cookie-msg { flex: 1; font-size: 0.82rem; color: var(--rm-dune); min-width: 180px; }
.rm-cookie-msg a { color: var(--rm-gold); }
.rm-cookie-acts { display: flex; gap: 9px; flex-shrink: 0; }
.rm-cookie-ok {
  background: var(--rm-gold); color: #08040a;
  font-family: var(--rm-f-body); font-size: 0.8rem; font-weight: 800;
  padding: 9px 20px; border-radius: var(--rm-rnd-pill); border: none;
  cursor: pointer; transition: var(--rm-t);
}
.rm-cookie-ok:hover { background: var(--rm-gold-hi); }
.rm-cookie-skip {
  background: transparent; color: var(--rm-dune);
  font-family: var(--rm-f-body); font-size: 0.8rem; font-weight: 500;
  padding: 9px 16px; border-radius: var(--rm-rnd-pill);
  border: 1px solid var(--rm-divider); cursor: pointer; transition: var(--rm-t);
}
.rm-cookie-skip:hover { border-color: var(--rm-dune); color: var(--rm-sand); }

/* ── TOPBAR ── */
.rm-topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(6,4,8,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--rm-divider);
  transition: var(--rm-t);
}
.rm-topbar.rm-risen { box-shadow: 0 4px 28px rgba(0,0,0,0.6); }
.rm-nav-band { display: flex; align-items: center; justify-content: space-between; height: 68px; }

.rm-logotype {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--rm-f-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--rm-cream);
  text-decoration: none;
}
.rm-logo-mark {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--rm-ruby), var(--rm-gold));
  border-radius: var(--rm-rnd-s);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: #fff; flex-shrink: 0;
}
.rm-logotype .hl { color: var(--rm-gold-hi); }

.rm-nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}
.rm-nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--rm-sand);
  transition: var(--rm-t);
  text-decoration: none;
}
.rm-nav-links a:hover { color: var(--rm-gold-hi); }
.rm-nav-links .rm-nav-em {
  background: linear-gradient(135deg, var(--rm-ruby), var(--rm-ruby-soft));
  color: #fff !important;
  padding: 8px 17px;
  border-radius: var(--rm-rnd-pill);
  font-weight: 700 !important;
}
.rm-nav-links .rm-nav-em:hover { box-shadow: var(--rm-glow-r); transform: translateY(-1px); }

.rm-burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.rm-burger-btn span {
  display: block;
  width: 24px; height: 2px;
  background: var(--rm-cream);
  border-radius: 2px;
  transition: var(--rm-t);
}

.rm-menu-drawer {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: rgba(12,8,12,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--rm-divider);
  padding: 14px 24px 22px;
  z-index: 999;
  flex-direction: column;
  gap: 0;
}
.rm-menu-drawer.rm-open { display: flex; }
.rm-menu-drawer a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--rm-sand);
  padding: 13px 0;
  border-bottom: 1px solid var(--rm-divider);
  text-decoration: none;
  transition: var(--rm-t);
  display: block;
}
.rm-menu-drawer a:hover { color: var(--rm-gold-hi); padding-right: 8px; }
.rm-menu-drawer a:last-child { border-bottom: none; }

/* ── HERO ── */
.rm-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 0 50px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 45%, #1a0a10 0%, #060408 70%);
  text-align: center;
}
.rm-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 25% 30%, rgba(150,22,42,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 70%, rgba(200,168,74,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.rm-crescent-deco {
  position: absolute;
  top: 8%; right: 6%;
  width: 120px; height: 120px;
  pointer-events: none;
}
.rm-crescent-outer {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(200,168,74,0.06);
  border: 1px solid rgba(200,168,74,0.12);
  position: absolute;
}
.rm-crescent-inner {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: var(--rm-ink-deep);
  position: absolute;
  top: 8px; right: -8px;
}
.rm-star-field {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.rm-star-field i {
  position: absolute;
  width: 2px; height: 2px;
  background: rgba(200,168,74,0.4);
  border-radius: 50%;
  animation: rm-blink 4s infinite alternate;
}
@keyframes rm-blink {
  from { opacity: 0.15; }
  to { opacity: 0.85; }
}

.rm-hero-inner { position: relative; z-index: 1; max-width: 740px; margin: 0 auto; }

.rm-zodiac-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}
.rm-zodiac-chip {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--rm-gold-pale);
  border: 1px solid var(--rm-divider);
  border-radius: var(--rm-rnd-pill);
  padding: 4px 10px;
  font-size: 0.72rem;
  color: var(--rm-gold);
  font-family: var(--rm-f-body);
}
.rm-zodiac-chip span { font-size: 0.9rem; }

.rm-hero-eyebrow {
  font-family: var(--rm-f-head);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--rm-gold);
  display: block;
  margin-bottom: 16px;
}
.rm-hero-title {
  font-family: var(--rm-f-head);
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  font-weight: 700;
  color: var(--rm-cream);
  line-height: 1.18;
  margin-bottom: 16px;
}
.rm-hero-title em { font-style: normal; color: var(--rm-gold-hi); }
.rm-hero-sub {
  font-size: 1rem;
  color: var(--rm-dune);
  max-width: 520px;
  margin: 0 auto 22px;
  line-height: 1.7;
}
.rm-hero-disclaimer {
  background: rgba(150,22,42,0.1);
  border: 1px solid rgba(150,22,42,0.25);
  border-radius: var(--rm-rnd-m);
  padding: 12px 20px;
  margin: 0 auto 28px;
  max-width: 600px;
  font-size: 0.8rem;
  color: var(--rm-dune);
  line-height: 1.6;
}
.rm-hero-disclaimer strong { color: var(--rm-gold); font-weight: 700; }
.rm-hero-acts {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.rm-hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid var(--rm-divider);
}
.rm-trust-dot {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--rm-dune);
}
.rm-trust-dot .g { color: var(--rm-gold-hi); }

/* ── REVIEWS ── */
.rm-reviews-sec {
  padding: 86px 0;
  background: var(--rm-ink-mid);
}
.rm-reviews-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.rm-review-row-top { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.rm-review-row-bot { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 720px; margin: 0 auto; width: 100%; }
.rm-review-box {
  background: var(--rm-ink-card);
  border: 1px solid var(--rm-divider);
  border-radius: var(--rm-rnd-l);
  padding: 26px;
  transition: var(--rm-t);
}
.rm-review-box:hover { border-color: rgba(200,168,74,0.25); }
.rm-rv-grade { color: var(--rm-gold); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 13px; }
.rm-rv-quote {
  font-family: var(--rm-f-head);
  font-size: 1rem;
  color: var(--rm-sand);
  line-height: 1.7;
  margin-bottom: 20px;
}
.rm-rv-sig { display: flex; align-items: center; gap: 11px; }
.rm-rv-monogram {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rm-ruby), var(--rm-teal));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--rm-f-head); font-size: 0.95rem; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.rm-rv-person-name {
  font-family: var(--rm-f-head); font-size: 0.92rem; font-weight: 700; color: var(--rm-cream);
}
.rm-rv-person-city { font-size: 0.76rem; color: var(--rm-dune); margin-top: 1px; }
.rm-rv-check {
  margin-right: auto;
  font-size: 0.68rem; color: var(--rm-gold);
  background: var(--rm-gold-pale);
  border: 1px solid var(--rm-divider);
  padding: 2px 8px; border-radius: var(--rm-rnd-pill);
}

/* ── FEATURES ── */
.rm-feats-sec {
  padding: 86px 0;
  background: var(--rm-ink-deep);
}
.rm-feats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.rm-feat-large { grid-column: span 1; }
.rm-feat-panel {
  background: var(--rm-ink-card);
  border: 1px solid var(--rm-divider);
  border-radius: var(--rm-rnd-l);
  padding: 28px 24px;
  transition: var(--rm-t);
  position: relative;
  overflow: hidden;
}
.rm-feat-panel::before {
  content: '';
  position: absolute;
  bottom: 0; right: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--rm-ruby), var(--rm-gold));
  opacity: 0;
  transition: var(--rm-t);
}
.rm-feat-panel:hover { border-color: rgba(200,168,74,0.3); transform: translateY(-3px); }
.rm-feat-panel:hover::before { opacity: 1; }
.rm-feat-glyph { font-size: 2rem; margin-bottom: 16px; display: block; }
.rm-feat-title {
  font-family: var(--rm-f-head);
  font-size: 1.1rem; font-weight: 700;
  color: var(--rm-cream); margin-bottom: 9px;
}
.rm-feat-text { font-size: 0.86rem; color: var(--rm-dune); line-height: 1.65; }

/* ── CTA ── */
.rm-cta-block {
  padding: 76px 0;
  background: linear-gradient(135deg, #180810 0%, #0c0608 50%, #140a10 100%);
  position: relative; overflow: hidden;
}
.rm-cta-block::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,168,74,0.08), transparent);
  pointer-events: none;
}
.rm-cta-center { text-align: center; position: relative; z-index: 1; }
.rm-cta-center .rm-h2 { margin-bottom: 12px; }
.rm-cta-center .rm-desc { max-width: 480px; margin: 0 auto 30px; }
.rm-cta-pair { display: flex; gap: 13px; justify-content: center; flex-wrap: wrap; }

/* ── PLANS ── */
.rm-plans-sec {
  padding: 86px 0;
  background: var(--rm-ink-mid);
}
.rm-plans-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.rm-plan-card {
  background: var(--rm-ink-card);
  border: 1px solid var(--rm-divider);
  border-radius: var(--rm-rnd-xl);
  padding: 32px 24px;
  position: relative;
  transition: var(--rm-t);
}
.rm-plan-card.rm-plan-main {
  background: linear-gradient(160deg, #280c18 0%, #1a0810 100%);
  border-color: var(--rm-divider-em);
  transform: scale(1.04);
  box-shadow: var(--rm-glow-g), var(--rm-shd-m);
}
.rm-plan-crown {
  position: absolute;
  top: -12px; right: 50%;
  transform: translateX(50%);
  background: linear-gradient(135deg, var(--rm-gold), var(--rm-gold-hi));
  color: #08040a;
  font-family: var(--rm-f-body); font-size: 0.68rem; font-weight: 800;
  padding: 4px 18px; border-radius: var(--rm-rnd-pill);
  letter-spacing: 0.04em; white-space: nowrap;
}
.rm-plan-tier {
  font-family: var(--rm-f-head); font-size: 0.72rem;
  color: var(--rm-gold); margin-bottom: 7px; letter-spacing: 0.06em;
}
.rm-plan-label {
  font-family: var(--rm-f-head);
  font-size: 1.7rem; font-weight: 700;
  color: var(--rm-cream); margin-bottom: 9px;
}
.rm-plan-summary { font-size: 0.84rem; color: var(--rm-dune); margin-bottom: 22px; line-height: 1.5; }
.rm-plan-line { height: 1px; background: var(--rm-divider); margin: 18px 0; }
.rm-plan-features {
  list-style: none; margin-bottom: 28px;
  display: flex; flex-direction: column; gap: 9px;
}
.rm-plan-features li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.85rem; color: var(--rm-sand); line-height: 1.5;
}
.rm-plan-features li::before { content: '✓'; color: var(--rm-gold); font-weight: 700; flex-shrink: 0; }
.rm-plan-btn {
  width: 100%;
  padding: 13px 18px;
  border-radius: var(--rm-rnd-pill);
  font-family: var(--rm-f-body); font-size: 0.88rem; font-weight: 800;
  cursor: pointer; transition: var(--rm-t); border: none;
}
.rm-plan-card:not(.rm-plan-main) .rm-plan-btn {
  background: var(--rm-gold-pale); color: var(--rm-gold);
  border: 1px solid rgba(200,168,74,0.35);
}
.rm-plan-card:not(.rm-plan-main) .rm-plan-btn:hover { background: var(--rm-gold); color: #08040a; }
.rm-plan-main .rm-plan-btn {
  background: linear-gradient(135deg, var(--rm-gold), var(--rm-gold-hi));
  color: #08040a;
}
.rm-plan-main .rm-plan-btn:hover { box-shadow: 0 6px 20px rgba(200,168,74,0.4); transform: translateY(-2px); }

/* ── FAQ ── */
.rm-faq-sec {
  padding: 86px 0;
  background: var(--rm-ink-deep);
}
.rm-qa-stack {
  max-width: 760px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 10px;
}
.rm-qa-item {
  background: var(--rm-ink-card);
  border: 1px solid var(--rm-divider);
  border-radius: var(--rm-rnd-m);
  overflow: hidden;
  transition: var(--rm-t);
}
.rm-qa-item.rm-qa-open { border-color: rgba(200,168,74,0.3); }
.rm-qa-trigger {
  width: 100%; background: none; border: none;
  display: flex; align-items: center; justify-content: space-between;
  padding: 19px 20px; cursor: pointer; text-align: right; gap: 14px;
  direction: rtl;
}
.rm-qa-question {
  font-family: var(--rm-f-head);
  font-size: 1rem; font-weight: 700;
  color: var(--rm-cream); line-height: 1.4;
}
.rm-qa-arrow {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--rm-gold-pale);
  border: 1px solid var(--rm-divider);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: var(--rm-t);
  color: var(--rm-gold); font-size: 0.82rem;
}
.rm-qa-item.rm-qa-open .rm-qa-arrow { transform: rotate(180deg); background: var(--rm-gold); color: #08040a; }
.rm-qa-reply {
  display: none;
  padding: 0 20px 18px;
  direction: rtl;
}
.rm-qa-reply p { font-size: 0.87rem; color: var(--rm-dune); line-height: 1.75; }
.rm-qa-reply a { color: var(--rm-gold); text-decoration: underline; text-underline-offset: 3px; }

/* ── CONTACT FORM ── */
.rm-contact-sec {
  padding: 86px 0;
  background: var(--rm-ink-mid);
}
.rm-contact-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 52px;
  align-items: start;
}
.rm-contact-side {}
.rm-contact-side h2 {
  font-family: var(--rm-f-head);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem); font-weight: 700;
  color: var(--rm-cream); margin-bottom: 13px;
}
.rm-contact-side p { font-size: 0.9rem; color: var(--rm-dune); line-height: 1.65; margin-bottom: 18px; }
.rm-contact-disclaimer {
  background: var(--rm-gold-pale);
  border: 1px solid var(--rm-divider);
  border-right: 3px solid var(--rm-gold);
  border-radius: 0 var(--rm-rnd-s) var(--rm-rnd-s) 0;
  padding: 13px 16px 13px 20px;
  font-size: 0.8rem; color: var(--rm-dune); line-height: 1.6;
}
.rm-contact-disclaimer strong { color: var(--rm-gold); display: block; margin-bottom: 3px; }

.rm-form-box {
  background: var(--rm-ink-card);
  border: 1px solid var(--rm-divider);
  border-radius: var(--rm-rnd-xl);
  padding: 34px;
}
.rm-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.rm-field { margin-bottom: 16px; }
.rm-field label {
  display: block;
  font-size: 0.76rem; font-weight: 700;
  color: var(--rm-dune);
  margin-bottom: 7px;
}
.rm-field input, .rm-field textarea, .rm-field select {
  width: 100%;
  background: var(--rm-ink-mid);
  border: 1px solid var(--rm-divider);
  border-radius: var(--rm-rnd-s);
  padding: 12px 14px;
  font-family: var(--rm-f-body);
  font-size: 0.9rem; color: var(--rm-cream);
  transition: var(--rm-t); outline: none;
  direction: rtl;
}
.rm-field input::placeholder, .rm-field textarea::placeholder { color: var(--rm-ash); }
.rm-field input:focus, .rm-field textarea:focus, .rm-field select:focus {
  border-color: var(--rm-gold);
  box-shadow: 0 0 0 3px var(--rm-gold-pale);
}
.rm-field textarea { resize: vertical; min-height: 108px; }
.rm-form-send {
  width: 100%;
  background: linear-gradient(135deg, var(--rm-gold), var(--rm-gold-hi));
  color: #08040a;
  font-family: var(--rm-f-body); font-size: 0.9rem; font-weight: 800;
  padding: 14px; border-radius: var(--rm-rnd-pill); border: none;
  cursor: pointer; transition: var(--rm-t);
}
.rm-form-send:hover { transform: translateY(-2px); box-shadow: var(--rm-glow-g); }
.rm-form-thanks {
  display: none; text-align: center; padding: 34px 16px;
}
.rm-form-thanks .icon { font-size: 2.6rem; margin-bottom: 12px; }
.rm-form-thanks h3 { font-family: var(--rm-f-head); font-size: 1.3rem; color: var(--rm-cream); margin-bottom: 8px; }
.rm-form-thanks p { font-size: 0.87rem; color: var(--rm-dune); }

/* ── FOOTER ── */
.rm-footer {
  background: #030205;
  padding: 52px 0 0;
  border-top: 1px solid var(--rm-divider);
}
.rm-footer-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  padding-bottom: 38px;
  border-bottom: 1px solid var(--rm-divider);
}
.rm-footer-left {}
.rm-footer-left .rm-logotype { margin-bottom: 14px; display: inline-flex; }
.rm-footer-left p { font-size: 0.82rem; color: var(--rm-dune); line-height: 1.65; margin-bottom: 18px; max-width: 340px; }
.rm-footer-socials { display: flex; gap: 9px; }
.rm-footer-social {
  width: 33px; height: 33px; border-radius: 50%;
  background: var(--rm-ink-card); border: 1px solid var(--rm-divider);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; color: var(--rm-dune); text-decoration: none; transition: var(--rm-t);
}
.rm-footer-social:hover { border-color: var(--rm-gold); color: var(--rm-gold-hi); }
.rm-footer-right {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.rm-footer-col h5 {
  font-family: var(--rm-f-head); font-size: 0.82rem; font-weight: 700;
  color: var(--rm-gold); margin-bottom: 14px;
}
.rm-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.rm-footer-col ul a {
  font-size: 0.82rem; color: var(--rm-dune); text-decoration: none; transition: var(--rm-t);
}
.rm-footer-col ul a:hover { color: var(--rm-gold-hi); }
.rm-footer-base {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0; gap: 14px; flex-wrap: wrap;
}
.rm-footer-copy { font-size: 0.74rem; color: var(--rm-ash); line-height: 1.5; }
.rm-footer-copy a { color: var(--rm-dune); }
.rm-footer-copy a:hover { color: var(--rm-gold); }
.rm-footer-disc { font-size: 0.72rem; color: var(--rm-ash); max-width: 380px; line-height: 1.5; }

/* ── INNER PAGES ── */
.rm-page-header {
  padding: 108px 0 52px;
  background: linear-gradient(160deg, var(--rm-ink-deep) 0%, var(--rm-ink-mid) 100%);
  position: relative; overflow: hidden;
  text-align: center;
}
.rm-page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 110%, rgba(150,22,42,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.rm-trail { font-size: 0.74rem; color: var(--rm-dune); margin-bottom: 11px; position: relative; z-index: 1; }
.rm-trail a { color: var(--rm-dune); text-decoration: none; }
.rm-trail a:hover { color: var(--rm-gold); }
.rm-trail span { margin: 0 5px; color: var(--rm-ash); }
.rm-page-header h1 {
  font-family: var(--rm-f-head);
  font-size: clamp(1.9rem, 4.5vw, 3.2rem); font-weight: 700;
  color: var(--rm-cream); margin-bottom: 10px;
  position: relative; z-index: 1;
}
.rm-page-header p { font-size: 0.95rem; color: var(--rm-dune); max-width: 520px; margin: 0 auto; position: relative; z-index: 1; }
.rm-date-chip {
  display: inline-block;
  background: var(--rm-gold-pale); border: 1px solid var(--rm-divider);
  border-radius: var(--rm-rnd-pill); padding: 4px 13px;
  font-size: 0.7rem; color: var(--rm-gold); margin-top: 11px;
  position: relative; z-index: 1;
}

.rm-doc-zone { padding: 50px 0 82px; }
.rm-doc-text { max-width: 820px; margin: 0 auto; }
.rm-doc-text h2 {
  font-family: var(--rm-f-head); font-size: 1.35rem; font-weight: 700;
  color: var(--rm-cream); margin: 36px 0 13px;
  padding-right: 14px;
  border-right: 3px solid var(--rm-gold);
}
.rm-doc-text h3 {
  font-family: var(--rm-f-head); font-size: 1.1rem;
  color: var(--rm-gold); margin: 22px 0 9px;
}
.rm-doc-text p { font-size: 0.9rem; color: var(--rm-dune); line-height: 1.8; margin-bottom: 13px; }
.rm-doc-text ul { margin: 11px 0 16px 0; padding-right: 20px; }
.rm-doc-text li { font-size: 0.88rem; color: var(--rm-dune); line-height: 1.65; margin-bottom: 6px; }
.rm-doc-text a { color: var(--rm-gold); text-decoration: underline; text-underline-offset: 3px; }
.rm-doc-text strong { color: var(--rm-sand); }
.rm-doc-text table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 0.85rem; direction: rtl; }
.rm-doc-text th { background: var(--rm-ink-card); color: var(--rm-gold); font-family: var(--rm-f-head); padding: 10px 12px; border: 1px solid var(--rm-divider); text-align: right; font-size: 0.76rem; }
.rm-doc-text td { padding: 10px 12px; border: 1px solid var(--rm-divider); color: var(--rm-dune); }
.rm-doc-text tr:nth-child(even) td { background: rgba(255,255,255,0.015); }

.rm-data-cells {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 22px 0;
}
.rm-data-cell {
  background: var(--rm-ink-card); border: 1px solid var(--rm-divider);
  border-radius: var(--rm-rnd-m); padding: 20px;
}
.rm-data-cell h4 {
  font-family: var(--rm-f-head); font-size: 0.82rem; font-weight: 700;
  color: var(--rm-gold); margin-bottom: 6px;
}
.rm-data-cell p { font-size: 0.82rem; color: var(--rm-dune); margin: 0; }

.rm-related {
  background: var(--rm-ink-card); border: 1px solid var(--rm-divider);
  border-radius: var(--rm-rnd-m); padding: 24px 28px; margin-top: 40px;
}
.rm-related h4 {
  font-family: var(--rm-f-head); font-size: 0.78rem; font-weight: 700;
  color: var(--rm-gold); margin-bottom: 13px;
}
.rm-related ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.rm-related ul a {
  font-size: 0.87rem; color: var(--rm-sand);
  display: flex; align-items: center; gap: 7px; text-decoration: none;
}
.rm-related ul a::before { content: '←'; color: var(--rm-gold); font-size: 0.82rem; }
.rm-related ul a:hover { color: var(--rm-gold-hi); }

.rm-contact-cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 30px 0; }
.rm-ci-card {
  background: var(--rm-ink-card); border: 1px solid var(--rm-divider);
  border-radius: var(--rm-rnd-m); padding: 24px; transition: var(--rm-t);
}
.rm-ci-card:hover { border-color: rgba(200,168,74,0.28); }
.rm-ci-card .ci-sym { font-size: 1.6rem; margin-bottom: 10px; display: block; }
.rm-ci-card h4 { font-family: var(--rm-f-head); font-size: 0.92rem; font-weight: 700; color: var(--rm-cream); margin-bottom: 5px; }
.rm-ci-card p { font-size: 0.82rem; color: var(--rm-dune); line-height: 1.5; margin: 0; }
.rm-ci-card a { color: var(--rm-gold); }

.rm-team-line { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 24px 0; }
.rm-member-box {
  background: var(--rm-ink-card); border: 1px solid var(--rm-divider);
  border-radius: var(--rm-rnd-m); padding: 22px 14px; text-align: center; transition: var(--rm-t);
}
.rm-member-box:hover { border-color: rgba(200,168,74,0.22); }
.rm-member-ring {
  width: 56px; height: 56px; border-radius: 50%;
  margin: 0 auto 12px;
  background: linear-gradient(135deg, var(--rm-ruby), var(--rm-gold));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--rm-f-head); font-size: 1.2rem; font-weight: 700; color: #fff;
}
.rm-member-name { font-family: var(--rm-f-head); font-size: 0.92rem; font-weight: 700; color: var(--rm-cream); margin-bottom: 2px; }
.rm-member-pos { font-size: 0.74rem; color: var(--rm-gold); margin-bottom: 8px; }
.rm-member-note { font-size: 0.78rem; color: var(--rm-dune); line-height: 1.5; }

.rm-content-split {
  display: grid; grid-template-columns: 1fr 270px; gap: 40px;
  padding: 50px 0 80px; align-items: start;
}
.rm-article h2 { font-family: var(--rm-f-head); font-size: 1.3rem; font-weight: 700; color: var(--rm-cream); margin: 28px 0 11px; }
.rm-article h3 { font-family: var(--rm-f-head); font-size: 1.05rem; color: var(--rm-gold-hi); margin: 18px 0 8px; }
.rm-article p { font-size: 0.9rem; color: var(--rm-dune); line-height: 1.78; margin-bottom: 12px; }
.rm-article ul { margin: 10px 0 14px 0; padding-right: 18px; }
.rm-article li { font-size: 0.88rem; color: var(--rm-dune); line-height: 1.65; margin-bottom: 5px; }
.rm-article a { color: var(--rm-gold); text-decoration: underline; text-underline-offset: 3px; }
.rm-side-panel { position: sticky; top: 82px; }
.rm-side-card {
  background: var(--rm-ink-card); border: 1px solid var(--rm-divider);
  border-radius: var(--rm-rnd-m); padding: 20px; margin-bottom: 15px;
}
.rm-side-card h4 { font-family: var(--rm-f-head); font-size: 0.76rem; font-weight: 700; color: var(--rm-gold); margin-bottom: 13px; }
.rm-side-card ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.rm-side-card ul a { font-size: 0.83rem; color: var(--rm-sand); text-decoration: none; }
.rm-side-card ul a:hover { color: var(--rm-gold-hi); }

.rm-signs-arab { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 20px 0; }
.rm-sign-arab {
  background: var(--rm-ink-card); border: 1px solid var(--rm-divider);
  border-radius: var(--rm-rnd-m); padding: 16px 10px; text-align: center; transition: var(--rm-t);
}
.rm-sign-arab:hover { border-color: rgba(200,168,74,0.3); transform: translateY(-2px); }
.rm-sign-arab .sa { font-size: 1.5rem; display: block; margin-bottom: 4px; }
.rm-sign-arab .sn { font-family: var(--rm-f-head); font-size: 0.8rem; color: var(--rm-cream); }
.rm-sign-arab .sd { font-size: 0.68rem; color: var(--rm-dune); margin-top: 2px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .rm-feats-grid { grid-template-columns: repeat(2, 1fr); }
  .rm-footer-body { grid-template-columns: 1fr; }
  .rm-content-split { grid-template-columns: 1fr; }
  .rm-side-panel { position: static; }
}
@media (max-width: 768px) {
  .rm-nav-links { display: none; }
  .rm-burger-btn { display: flex; }
  .rm-reviews-wrap .rm-review-row-top { grid-template-columns: 1fr; }
  .rm-review-row-bot { grid-template-columns: 1fr; }
  .rm-feats-grid { grid-template-columns: 1fr; }
  .rm-plans-trio { grid-template-columns: 1fr; }
  .rm-plan-card.rm-plan-main { transform: none; }
  .rm-contact-wrap { grid-template-columns: 1fr; }
  .rm-field-row { grid-template-columns: 1fr; }
  .rm-footer-right { grid-template-columns: 1fr; }
  .rm-footer-base { flex-direction: column; align-items: flex-end; }
  .rm-footer-disc { text-align: right; max-width: 100%; }
  .rm-data-cells { grid-template-columns: 1fr; }
  .rm-contact-cards-grid { grid-template-columns: 1fr; }
  .rm-team-line { grid-template-columns: 1fr; }
  .rm-signs-arab { grid-template-columns: repeat(2, 1fr); }
  .rm-cta-layout { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .rm-outer { padding: 0 16px; }
  .rm-cookie-row { flex-direction: column; align-items: flex-end; }
  .rm-cookie-acts { width: 100%; }
  .rm-cookie-ok, .rm-cookie-skip { flex: 1; text-align: center; }
  .rm-form-box { padding: 20px 16px; }
  .rm-zodiac-strip { gap: 5px; }
}
