/* ================================================================
   REALDOST — home.css
   Brand: #7E63FB (light purple) → #6953FA (deep purple)
   BG: #F9F8FF  |  Features/Stats/Download: purple gradient
   Footer: #1A1A1A
   ================================================================ */

/* ---- VARIABLES ---- */
:root {
  --rd-bg:        #F9F8FF;
  --rd-white:     #FFFFFF;
  --rd-primary:   #6953FA;
  --rd-grad:      linear-gradient(136.8deg, #7E63FB 8.97%, #5B45F5 86.16%);
  --rd-feat-grad: linear-gradient(180.48deg, #7E63FB 0.62%, #5B45F5 120.88%);
  --rd-dark:      #1A1A1A;
  --rd-heading:   #1A1A1A;
  --rd-muted:     #9B9B9B;
  --rd-border:    #EBEBFF;
  --rd-font:      'Inter', 'Segoe UI', sans-serif;
  --rd-font-logo: 'Hubballi', cursive;
  --rd-nav-h:     80px;
  --rd-r:         16px;
  --rd-r-btn:     8px;
  --rd-max:       1440px;
}

/* ---- RESET ---- */
.rd-page {
  font-family: var(--rd-font);
  background: var(--rd-bg);
  margin: 0; padding: 0;
  color: var(--rd-heading);
  -webkit-font-smoothing: antialiased;
}
.rd-page *, .rd-page *::before, .rd-page *::after { box-sizing: border-box; }
.rd-page p, .rd-page h1, .rd-page h2,
.rd-page h3, .rd-page h4, .rd-page ul { margin: 0; padding: 0; }
.rd-page ul { list-style: none; }
.rd-page a  { text-decoration: none; color: inherit; }
.rd-page img { display: block; max-width: 100%; }

/* ---- UTILITY ---- */
.rd-grad-text {
  background: var(--rd-feat-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- BUTTONS ---- */
.rd-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--rd-font); font-weight: 600;
  border: none; cursor: pointer; border-radius: var(--rd-r-btn);
  transition: opacity .2s, transform .15s;
  text-decoration: none !important; white-space: nowrap;
}
.rd-btn:hover  { opacity: .88; transform: translateY(-1px); }
.rd-btn:active { transform: translateY(0); }
.rd-btn--grad  { background: var(--rd-feat-grad); color: #fff !important; }
.rd-btn--out {
  background: transparent;
  border: 2px solid var(--rd-primary);
  color: var(--rd-primary) !important;
}
.rd-btn--out:hover {
  background: var(--rd-primary);
  color: var(--rd-white) !important;
}
.rd-btn--sm    { height: 38px; padding: 0 24px; font-size: 14px; }
.rd-btn--lg    { height: 52px; padding: 0 36px; font-size: 16px; }

/* ===================== NAVBAR ===================== */
.rd-nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--rd-nav-h);
  background: rgba(249,248,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rd-border);
  z-index: 9999;
}
.rd-nav__wrap {
  max-width: var(--rd-max);
  margin: 0 auto;
  padding: 0 60px;
  height: var(--rd-nav-h);
  display: flex; align-items: center; justify-content: space-between;
}
/* Logo */
.rd-nav__logo {
  display: flex; align-items: center; gap: 0; flex-shrink: 0;
}
.rd-nav__logo img { height: 36px; width: auto; max-width: 200px; object-fit: contain; }
.rd-nav__logo-text {
  font-family: var(--rd-font-logo); font-size: 26px;
  background: var(--rd-feat-grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}
/* Nav links */
.rd-nav__links {
  display: flex; align-items: center; gap: 32px;
}
.rd-nav__item { position: relative; }
.rd-nav__item a {
  font-size: 14px; font-weight: 500;
  color: #9B9B9B;
  transition: color .2s;
  display: block; padding-bottom: 4px;
}
.rd-nav__item a:hover { color: var(--rd-primary); }
.rd-nav__item--active a { color: var(--rd-primary); font-weight: 600; }
.rd-nav__dot {
  position: absolute; bottom: -12px; left: 50%;
  transform: translateX(-50%);
  width: 6px; height: 6px;
  background: var(--rd-primary); border-radius: 50%;
  display: block;
}
/* Right side */
.rd-nav__right { display: flex; align-items: center; gap: 28px; flex-shrink: 0; }
.rd-nav__host  { font-size: 14px; font-weight: 500; color: var(--rd-heading); transition: color .2s; }
.rd-nav__host:hover { color: var(--rd-primary); }
.rd-nav__host--active { color: var(--rd-primary) !important; font-weight: 600; }
/* Burger */
.rd-nav__burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.rd-nav__burger span { width: 24px; height: 2px; background: var(--rd-heading); border-radius: 2px; display: block; }
/* Mobile menu */
.rd-nav__mobile {
  display: none; flex-direction: column;
  padding: 16px 60px; background: var(--rd-white);
  border-top: 1px solid var(--rd-border);
}
.rd-nav__mobile.open { display: flex; }
.rd-nav__mobile a {
  font-size: 15px; color: var(--rd-heading);
  padding: 12px 0; border-bottom: 1px solid var(--rd-border);
}

/* ===================== HERO ===================== */
.rd-hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: var(--rd-nav-h);
  overflow: hidden;
  /* Purple CSS background — no external image dependency */
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(126,99,251,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(105,83,250,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 90% 10%, rgba(148,124,255,0.12) 0%, transparent 50%),
    #F9F8FF;
}
/* Decorative blob shapes via pseudo-elements */
.rd-hero::before {
  content: '';
  position: absolute;
  right: -100px; top: 10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(126,99,251,0.12) 0%, transparent 70%);
  z-index: 0;
}
.rd-hero::after {
  content: '';
  position: absolute;
  left: -80px; bottom: 0;
  width: 500px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(105,83,250,0.08) 0%, transparent 70%);
  z-index: 0;
}
/* Hide the old bg img element */
.rd-hero__bg { display: none; }
.rd-hero__wrap {
  position: relative; z-index: 2;
  max-width: var(--rd-max);
  margin: 0 auto;
  padding: 60px 60px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 40px;
  width: 100%;
}
/* Hero Left */
.rd-hero__left { flex: 0 0 50%; max-width: 50%; }
.rd-hero__badge {
  display: inline-block;
  background: rgba(105,83,250,0.10);
  color: var(--rd-primary);
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 7px 18px; border-radius: 20px;
  margin-bottom: 24px;
}
.rd-hero__h1 {
  display: flex; flex-direction: column;
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 800; line-height: 1.1;
  margin-bottom: 20px;
}
.rd-hero__line1 {
  color: var(--rd-heading);
  display: flex; align-items: center; gap: 10px;
}
.rd-hero__icon { width: 40px; height: 40px; flex-shrink: 0; }
.rd-hero__line2 {
  background: var(--rd-feat-grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.rd-hero__sub {
  font-size: 16px; color: #666;
  line-height: 1.75; margin-bottom: 36px;
}
.rd-hero__cta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.rd-hero__trust {
  font-size: 14px; font-weight: 600; color: var(--rd-heading);
  background: var(--rd-white);
  border: 1px solid #E5E7EB;
  border-radius: 24px; padding: 10px 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
/* Hero Right */
.rd-hero__right { flex: 0 0 46%; max-width: 46%; position: relative; }
.rd-hero__phone {
  width: 100%; max-height: 600px; object-fit: contain;
  animation: rdFloat 5s ease-in-out infinite;
}
@keyframes rdFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

/* ===================== FEATURES ===================== */
.rd-features {
  background: var(--rd-feat-grad);
  padding: 0; width: 100%;
}
.rd-features__wrap {
  max-width: var(--rd-max);
  margin: 0 auto;
  padding: 60px 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.rd-feature-card { text-align: center; padding: 20px; }
.rd-feature-card__icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.rd-feature-card__icon img { width: 36px; height: 36px; object-fit: contain; }
.rd-feature-card__icon svg { width: 36px; height: 36px; }
.rd-feature-card__title {
  font-size: 18px; font-weight: 700;
  color: var(--rd-white); margin-bottom: 12px;
}
.rd-feature-card__desc {
  font-size: 14px; color: rgba(255,255,255,0.85);
  line-height: 1.75;
}

/* ===================== ABOUT ===================== */
.rd-about { background: var(--rd-bg); padding: 90px 0; }
.rd-about__wrap {
  max-width: var(--rd-max);
  margin: 0 auto; padding: 0 60px;
  display: flex; align-items: center; gap: 80px;
}
.rd-about__left { flex: 0 0 48%; max-width: 48%; position: relative; }
.rd-about__img  { width: 100%; border-radius: 24px; }
.rd-about__verified {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--rd-white);
  border-radius: 10px; padding: 12px 20px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  font-size: 14px; font-weight: 700; color: var(--rd-heading);
}
.rd-about__right { flex: 1; }
.rd-about__title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800; line-height: 1.2;
  color: var(--rd-heading); margin-bottom: 20px;
}
.rd-about__desc {
  font-size: 15px; color: #666;
  line-height: 1.85; margin-bottom: 28px;
}
/* Call card */
.rd-about__callcard {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--rd-white);
  border: 1px solid var(--rd-border);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 4px 20px rgba(105,83,250,0.10);
  max-width: 320px;
}
.rd-about__callcard-avatar {
  width: 40px; height: 40px;
  border-radius: 50%; object-fit: cover;
  flex-shrink: 0; background: var(--rd-feat-grad);
}
.rd-about__callcard-info { flex: 1; min-width: 0; }
.rd-about__callcard-name { font-size: 13px; font-weight: 700; color: var(--rd-heading); }
.rd-about__callcard-sub  { font-size: 11px; color: var(--rd-muted); }
.rd-about__callcard-btns { display: flex; gap: 8px; flex-shrink: 0; }
.rd-about__callcard-dec,
.rd-about__callcard-acc {
  width: 32px; height: 32px; border-radius: 50%;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.rd-about__callcard-dec { background: #EF4444; }
.rd-about__callcard-acc { background: #22C55E; }

/* ===================== WHY ===================== */
.rd-why { background: #F5F3FF; padding: 90px 0; }
.rd-why__wrap {
  max-width: var(--rd-max);
  margin: 0 auto; padding: 0 60px;
}
.rd-why__title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800; color: var(--rd-heading);
  text-align: center; margin-bottom: 48px;
}
.rd-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.rd-why-card {
  background: var(--rd-white);
  border: 1px solid #EDE8FF;
  border-radius: var(--rd-r);
  padding: 32px 28px;
  transition: box-shadow .2s, transform .2s;
  box-shadow: 0 2px 12px rgba(105,83,250,0.06);
}
.rd-why-card:hover {
  box-shadow: 0 8px 32px rgba(105,83,250,0.14);
  transform: translateY(-3px);
}
.rd-why-card__icon {
  width: 80px; height: 80px;
  border-radius: 16px;
  background: #EDE8FF;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.rd-why-card__icon img { width: 52px; height: 52px; object-fit: contain; }
.rd-why-card__icon svg { width: 36px; height: 36px; }
.rd-why-card h4 { font-size: 16px; font-weight: 700; color: var(--rd-heading); margin-bottom: 10px; }
.rd-why-card p { font-size: 14px; color: #888; line-height: 1.75; }

/* ===================== STATS ===================== */
.rd-stats { background: var(--rd-feat-grad); padding: 40px 0; }
.rd-stats__wrap {
  max-width: var(--rd-max);
  margin: 0 auto; padding: 32px 40px;
  display: grid; grid-template-columns: repeat(4,1fr);
  text-align: left;
  border: 2px dashed rgba(255,255,255,0.5);
  border-radius: 16px;
}
.rd-stat-item {
  padding: 16px 24px;
  border-right: 1px solid rgba(255,255,255,0.25);
}
.rd-stat-item:last-child { border-right: none; }
.rd-stat-item h3 { font-size: 36px; font-weight: 800; color: var(--rd-white); margin-bottom: 6px; }
.rd-stat-item p  { font-size: 13px; color: rgba(255,255,255,0.85); line-height: 1.5; }

/* ===================== TESTIMONIALS ===================== */
.rd-testi { background: var(--rd-white); padding: 90px 0 40px; }
.rd-testi__wrap {
  max-width: 860px;
  margin: 0 auto; padding: 0 40px;
  text-align: center;
}
.rd-testi__quote { font-size: 80px; line-height: 1; color: #E5E7EB; margin-bottom: -20px; font-family: Georgia, serif; }
.rd-testi__swiper { padding-bottom: 20px !important; }
.rd-testi__text { font-size: 18px; font-style: italic; color: var(--rd-heading); line-height: 1.8; margin-bottom: 24px; }
.rd-testi__name { font-size: 16px; font-weight: 700; color: var(--rd-heading); }
.rd-testi__loc  { font-size: 14px; color: var(--rd-muted); margin-top: 4px; }
.rd-testi__nav  { display: flex; justify-content: center; gap: 16px; margin-top: 32px; }
.rd-testi__prev,
.rd-testi__next {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid #E5E7EB;
  background: var(--rd-white);
  font-size: 18px; color: var(--rd-heading);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.rd-testi__prev:hover,
.rd-testi__next:hover {
  background: var(--rd-feat-grad);
  color: var(--rd-white);
  border-color: transparent;
}

/* ===================== DOWNLOAD ===================== */
.rd-download {
  background: var(--rd-white);
  padding: 0 60px 60px;
  width: 100%;
}
.rd-download__wrap {
  max-width: var(--rd-max);
  margin: 0 auto;
  background: var(--rd-feat-grad);
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 52px 56px;
}
/* Left: title + subtitle + store buttons */
.rd-download__left {
  flex: 1;
  padding-right: 48px;
}
.rd-download__title {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 800; color: var(--rd-white);
  margin-bottom: 14px;
}
.rd-download__sub {
  font-size: 14px; color: rgba(255,255,255,0.85);
  line-height: 1.75; margin-bottom: 32px;
  max-width: 420px;
}
.rd-download__store-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
}
.rd-download__store-img {
  height: 52px; width: auto;
  border-radius: 10px;
  background: var(--rd-white);
  padding: 8px 16px;
  object-fit: contain;
  display: block;
}
/* Divider */
.rd-download__divider {
  width: 1px;
  align-self: stretch;
  background: rgba(255,255,255,0.2);
  margin: 0 48px;
  flex-shrink: 0;
}
/* Right: QR codes */
.rd-download__right {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.rd-download__qr-block {
  display: flex;
  gap: 20px;
}
.rd-download__qr-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.rd-download__qr-img {
  width: 120px; height: 120px;
  border-radius: 12px;
  background: var(--rd-white);
  padding: 8px;
  object-fit: contain;
  display: block;
}
.rd-download__qr-label {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.9);
}
.rd-download__qr-hint {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

/* ===================== FOOTER ===================== */
.rd-footer { background: var(--rd-dark); padding: 60px 0 0; }
.rd-footer__wrap { max-width: var(--rd-max); margin: 0 auto; padding: 0 60px; }
.rd-footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.rd-footer__logo { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.rd-footer__logo-img { height: 38px; width: auto; max-width: 180px; object-fit: contain; filter: brightness(0) invert(1); }
.rd-footer__logo-fallback {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--rd-font-logo); font-size: 22px;
  background: var(--rd-feat-grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; font-weight: 700;
}
.rd-footer__tagline { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.8; margin-bottom: 20px; }
.rd-footer__social { display: flex; gap: 10px; }
.rd-footer__social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s;
}
.rd-footer__social a:hover { border-color: rgba(126,99,251,0.6); }
.rd-footer__col h6 {
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--rd-white); margin-bottom: 20px;
}
.rd-footer__col ul li { margin-bottom: 12px; }
.rd-footer__col ul a { font-size: 14px; color: rgba(255,255,255,0.5); transition: color .2s; }
.rd-footer__col ul a:hover { color: var(--rd-white); }
.rd-footer__subscribe {
  display: flex;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px; overflow: hidden;
  margin-bottom: 24px;
}
.rd-footer__subscribe input {
  flex: 1; background: transparent; border: none;
  padding: 10px 14px; color: var(--rd-white);
  font-size: 13px; font-family: var(--rd-font); outline: none;
}
.rd-footer__subscribe input::placeholder { color: rgba(255,255,255,0.3); }
.rd-footer__subscribe button {
  padding: 0 16px;
  background: var(--rd-feat-grad);
  border: none; color: var(--rd-white);
  font-size: 18px; cursor: pointer;
}
.rd-footer__contact-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 6px;
}
.rd-footer__contact a { font-size: 14px; color: rgba(255,255,255,0.7); }
.rd-footer__bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 12px; color: rgba(255,255,255,0.25);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1199px) {
  .rd-why__grid { grid-template-columns: repeat(2,1fr); }
  .rd-footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 991px) {
  .rd-nav__links, .rd-nav__right { display: none !important; }
  .rd-nav__burger { display: flex !important; }

  .rd-hero__wrap { flex-direction: column; text-align: center; padding: 40px 24px; }
  .rd-hero__left, .rd-hero__right { flex: 0 0 100%; max-width: 100%; }
  .rd-hero__cta { justify-content: center; }

  .rd-features__wrap { grid-template-columns: 1fr; padding: 40px 24px; gap: 24px; }
  .rd-about__wrap { flex-direction: column; gap: 40px; padding: 0 24px; }
  .rd-about__left { flex: 0 0 100%; max-width: 100%; }
  .rd-why__wrap { padding: 0 24px; }
  .rd-why__grid { grid-template-columns: 1fr; }
  .rd-stats__wrap { grid-template-columns: repeat(2,1fr); padding: 0 24px; }
  .rd-testi__wrap { padding: 0 24px; }
  .rd-download { padding: 0 24px 40px; }
  .rd-download__wrap { flex-direction: column; padding: 36px 28px; }
  .rd-download__left { padding-right: 0; }
  .rd-download__divider { width: 100%; height: 1px; margin: 28px 0; align-self: auto; }
  .rd-download__right { width: 100%; }
  .rd-footer__wrap { padding: 0 24px; }
  .rd-footer__top { grid-template-columns: 1fr; }
  .rd-nav__wrap, .rd-nav__mobile { padding-left: 24px; padding-right: 24px; }
}
@media (max-width: 575px) {
  .rd-stats__wrap { grid-template-columns: repeat(2,1fr); }
  .rd-stat-item h3 { font-size: 28px; }
  .rd-download__right { display: none; }
}

/* ===================== ABOUT PAGE ===================== */
.rd-about-page {
  background: #F5F3FF;
  min-height: calc(100vh - var(--rd-nav-h));
  padding: calc(var(--rd-nav-h) + 60px) 0 90px;
}
.rd-about-page__wrap { max-width: var(--rd-max); margin: 0 auto; padding: 0 60px; }
.rd-about-page__header { text-align: center; margin-bottom: 56px; }
.rd-about-page__title { font-size: clamp(32px, 4vw, 52px); font-weight: 800; color: var(--rd-heading); margin-bottom: 20px; }
.rd-about-page__divider { width: 60px; height: 4px; background: var(--rd-feat-grad); border-radius: 4px; margin: 0 auto; }
.rd-about-page__content { display: flex; flex-direction: column; gap: 28px; }
.rd-about-page__para { font-size: 16px; color: #555; line-height: 1.9; }
.rd-about-page__para--cta { font-size: 17px; color: var(--rd-heading); font-weight: 500; }
.rd-about-page__para--cta strong {
  background: var(--rd-feat-grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; font-weight: 700;
}
.rd-about-page__btn-wrap { margin-top: 16px; display: flex; justify-content: center; }

/* ===================== CONTACT PAGE ===================== */
.rd-contact-page {
  background: #F5F3FF;
  min-height: calc(100vh - var(--rd-nav-h));
  padding: calc(var(--rd-nav-h) + 48px) 0 90px;
}
.rd-contact-page__wrap { max-width: var(--rd-max); margin: 0 auto; padding: 0 60px; display: flex; flex-direction: column; gap: 28px; }
.rd-contact-hero {
  background: var(--rd-feat-grad);
  border-radius: 20px; padding: 40px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.rd-contact-hero__title { font-size: clamp(24px, 3vw, 36px); font-weight: 800; color: var(--rd-white); margin-bottom: 12px; }
.rd-contact-hero__sub { font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.75; max-width: 560px; }
.rd-contact-hero__icon { width: 80px; height: 80px; border-radius: 50%; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.rd-contact-success { background: #F0FDF4; border: 1px solid #86EFAC; border-radius: 12px; padding: 16px 20px; display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; color: #15803D; }
.rd-contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.rd-contact-card { background: var(--rd-white); border: 1px solid #EDE8FF; border-radius: 16px; padding: 28px 24px; box-shadow: 0 2px 12px rgba(105,83,250,0.06); transition: box-shadow .2s, transform .2s; }
.rd-contact-card:hover { box-shadow: 0 8px 32px rgba(105,83,250,0.12); transform: translateY(-3px); }
.rd-contact-card__icon { width: 48px; height: 48px; border-radius: 12px; background: #EDE8FF; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.rd-contact-card__label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--rd-muted); margin-bottom: 6px; }
.rd-contact-card__value { font-size: 15px; font-weight: 700; color: var(--rd-heading); margin-bottom: 4px; }
.rd-contact-card__sub { font-size: 13px; color: var(--rd-muted); }
.rd-contact-form-card { background: var(--rd-white); border: 1px solid #EDE8FF; border-radius: 20px; padding: 40px; box-shadow: 0 2px 12px rgba(105,83,250,0.06); }
.rd-contact-form-card__title { font-size: 22px; font-weight: 800; color: var(--rd-heading); margin-bottom: 6px; }
.rd-contact-form-card__sub { font-size: 14px; color: var(--rd-muted); margin-bottom: 28px; }
.rd-contact-form { display: flex; flex-direction: column; gap: 20px; }
.rd-contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.rd-contact-form__group { display: flex; flex-direction: column; gap: 8px; }
.rd-contact-form__group label { font-size: 13px; font-weight: 600; color: var(--rd-heading); }
.rd-contact-form__req { color: var(--rd-primary); }
.rd-contact-form__group input,
.rd-contact-form__group textarea { font-family: var(--rd-font); background: #FAFAFA; border: 1px solid #EDE8FF; border-radius: 10px; padding: 12px 16px; font-size: 14px; color: var(--rd-heading); width: 100%; outline: none; transition: border-color .2s; }
.rd-contact-form__group input:focus,
.rd-contact-form__group textarea:focus { border-color: var(--rd-primary); background: var(--rd-white); }
.rd-contact-form__group textarea { height: 120px; resize: none; }
.rd-contact-form__btn { width: 100%; height: 54px; font-size: 16px; border-radius: 10px; margin-top: 4px; }

/* Input error state */
.rd-input-error { border-color: #EF4444 !important; }
.rd-contact-form__err { font-size: 12px; color: #EF4444; margin-top: 2px; }

@media (max-width: 767px) {
  .rd-contact-page__wrap { padding: 0 20px; }
  .rd-contact-hero { flex-direction: column; padding: 28px 24px; }
  .rd-contact-hero__icon { display: none; }
  .rd-contact-cards { grid-template-columns: 1fr; }
  .rd-contact-form__row { grid-template-columns: 1fr; }
  .rd-contact-form-card { padding: 24px 20px; }
  .rd-about-page__wrap { padding: 0 24px; }
}

/* ===================== BECOME A HOST PAGE ===================== */

/* HERO */
.rd-bh-hero {
  background:
    radial-gradient(ellipse 70% 60% at 80% 40%, rgba(126,99,251,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(105,83,250,0.07) 0%, transparent 60%),
    #F5F3FF;
  padding-top: var(--rd-nav-h);
  overflow: hidden;
}
.rd-bh-hero__wrap {
  max-width: var(--rd-max); margin: 0 auto;
  padding: 60px 60px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 48px;
}
.rd-bh-hero__left { flex: 0 0 48%; max-width: 48%; }
.rd-bh-hero__eyebrow {
  display: inline-block; color: var(--rd-primary);
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px;
}
.rd-bh-hero__h1 {
  display: flex; flex-direction: column;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800; line-height: 1.1; margin-bottom: 20px;
}
.rd-bh-hero__line1 { color: var(--rd-heading); }
.rd-bh-hero__line2 {
  background: var(--rd-feat-grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.rd-bh-hero__sub { font-size: 16px; color: #555; line-height: 1.75; margin-bottom: 32px; max-width: 440px; }
.rd-bh-hero__right {
  flex: 0 0 48%; max-width: 48%;
  display: flex; align-items: flex-end; justify-content: center;
}
.rd-bh-hero__img { max-height: 520px; width: 100%; object-fit: contain; object-position: bottom; display: block; }

/* STEPS */
.rd-bh-steps { background: var(--rd-feat-grad); padding: 52px 0; }
.rd-bh-steps__wrap {
  max-width: var(--rd-max); margin: 0 auto; padding: 0 60px;
  display: flex; align-items: flex-start; gap: 0;
}
.rd-bh-step { flex: 1; padding: 16px 28px; position: relative; }
.rd-bh-step:not(:last-child) { border-right: 1px solid rgba(255,255,255,0.2); }
.rd-bh-step__icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px; overflow: hidden;
}
.rd-bh-step__num { font-size: 52px; font-weight: 800; color: rgba(255,255,255,0.15); line-height: 1; margin-bottom: 8px; }
.rd-bh-step__title { font-size: 15px; font-weight: 700; color: var(--rd-white); margin-bottom: 8px; }
.rd-bh-step__sub { font-size: 13px; color: rgba(255,255,255,0.8); line-height: 1.7; }

/* EARNINGS */
.rd-bh-earn { background: var(--rd-white); padding: 90px 0; }
.rd-bh-earn__wrap {
  max-width: var(--rd-max); margin: 0 auto; padding: 0 60px;
  display: flex; align-items: center; gap: 80px;
}
.rd-bh-earn__left { flex: 0 0 48%; max-width: 48%; }
.rd-bh-earn__img { width: 100%; border-radius: 24px; filter: drop-shadow(0 16px 48px rgba(105,83,250,0.15)); }
.rd-bh-earn__right { flex: 1; }
.rd-bh-earn__title { font-size: clamp(28px, 3vw, 42px); font-weight: 800; line-height: 1.2; color: var(--rd-heading); margin-bottom: 16px; }
.rd-bh-earn__sub { font-size: 15px; color: #666; line-height: 1.85; margin-bottom: 24px; }
.rd-bh-earn__badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: #EDE8FF; border-radius: 12px;
  padding: 10px 16px; margin-bottom: 28px;
}
.rd-bh-earn__badge-avs { display: flex; }
.rd-bh-earn__badge-av {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--rd-feat-grad);
  border: 2px solid var(--rd-white); display: block;
}
.rd-bh-earn__badge-av + .rd-bh-earn__badge-av { margin-left: -6px; }
.rd-bh-earn__badge-text { font-size: 13px; font-weight: 700; color: var(--rd-primary); }
.rd-bh-earn__btns { display: flex; gap: 16px; }

/* WHY */
.rd-bh-why { background: #F5F3FF; padding: 90px 0; }
.rd-bh-why__wrap { max-width: var(--rd-max); margin: 0 auto; padding: 0 60px; }
.rd-bh-why__title { font-size: clamp(26px, 3vw, 40px); font-weight: 800; color: var(--rd-heading); text-align: center; margin-bottom: 52px; }
.rd-bh-why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.rd-bh-why-card {
  background: var(--rd-white); border: 1px solid #EDE8FF;
  border-radius: var(--rd-r); padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(105,83,250,0.06);
  transition: box-shadow .2s, transform .2s;
}
.rd-bh-why-card:hover { box-shadow: 0 8px 32px rgba(105,83,250,0.14); transform: translateY(-3px); }
.rd-bh-why-card__icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: #EDE8FF;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.rd-bh-why-card h4 { font-size: 16px; font-weight: 700; color: var(--rd-heading); margin-bottom: 10px; }
.rd-bh-why-card p { font-size: 14px; color: #888; line-height: 1.75; }

/* STATS */
.rd-bh-stats { background: var(--rd-feat-grad); padding: 52px 0; }
.rd-bh-stats__wrap {
  max-width: var(--rd-max); margin: 0 auto; padding: 28px 48px;
  display: grid; grid-template-columns: repeat(4,1fr);
  text-align: center;
  border: 2px dashed rgba(255,255,255,0.4);
  border-radius: 16px;
}
.rd-bh-stat { padding: 16px 20px; border-right: 1px solid rgba(255,255,255,0.2); }
.rd-bh-stat:last-child { border-right: none; }
.rd-bh-stat h3 { font-size: 44px; font-weight: 800; color: var(--rd-white); margin-bottom: 8px; }
.rd-bh-stat p { font-size: 13px; color: rgba(255,255,255,0.85); line-height: 1.5; }

/* TESTIMONIALS */
.rd-bh-testi { background: var(--rd-white); padding: 90px 0; }
.rd-bh-testi__wrap { max-width: 760px; margin: 0 auto; padding: 0 40px; text-align: center; }
.rd-bh-testi__quote { font-size: 72px; line-height: 1; color: #E5E7EB; font-family: Georgia,serif; margin-bottom: -16px; }
.rd-bh-testi__swiper { padding-bottom: 20px !important; }
.rd-bh-testi__text { font-size: 17px; font-style: italic; color: var(--rd-heading); line-height: 1.85; margin-bottom: 24px; }
.rd-bh-testi__name { font-size: 16px; font-weight: 700; color: var(--rd-heading); }
.rd-bh-testi__role { font-size: 13px; color: var(--rd-muted); margin-top: 4px; }
.rd-bh-testi__nav { display: flex; justify-content: center; gap: 16px; margin-top: 28px; }
.rd-bh-testi__prev,
.rd-bh-testi__next {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid #E5E7EB; background: var(--rd-white);
  font-size: 18px; color: var(--rd-heading);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.rd-bh-testi__prev:hover,
.rd-bh-testi__next:hover { background: var(--rd-feat-grad); color: var(--rd-white); border-color: transparent; }

/* RESPONSIVE — Become a Host */
@media (max-width: 991px) {
  .rd-bh-hero__wrap { flex-direction: column; padding: 40px 24px 0; text-align: center; }
  .rd-bh-hero__left { flex: 0 0 100%; max-width: 100%; }
  .rd-bh-hero__sub { max-width: 100%; }
  .rd-bh-hero__right { flex: 0 0 100%; max-width: 100%; }
  .rd-bh-steps__wrap { flex-direction: column; padding: 0 24px; }
  .rd-bh-step { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .rd-bh-step:last-child { border-bottom: none; }
  .rd-bh-earn__wrap { flex-direction: column; gap: 40px; padding: 0 24px; }
  .rd-bh-earn__left { flex: 0 0 100%; max-width: 100%; }
  .rd-bh-why__wrap { padding: 0 24px; }
  .rd-bh-why__grid { grid-template-columns: repeat(2,1fr); }
  .rd-bh-stats__wrap { grid-template-columns: repeat(2,1fr); padding: 24px; }
  .rd-bh-testi__wrap { padding: 0 24px; }
}
@media (max-width: 575px) {
  .rd-bh-why__grid { grid-template-columns: 1fr; }
  .rd-bh-stats__wrap { grid-template-columns: repeat(2,1fr); }
  .rd-bh-stat h3 { font-size: 32px; }
}
