/* ================================================================
   DATESHALA V2 — home-v2.css
   Figma exact: Roobert font, #FFF9F9 bg
   Features bg: linear-gradient(180.48deg, #FF3C56 0.62%, #FF127A 120.88%)
   Download bg: linear-gradient(180.48deg, #FF3C56 0.62%, #FF127A 120.88%)
   Footer bg: #1A1A1A
   ================================================================ */

/* ---- VARIABLES ---- */
:root {
  --ds-bg:        #FFF9F9;
  --ds-white:     #FFFFFF;
  --ds-red:       #DB1738;
  --ds-grad:      linear-gradient(136.8deg, #FF3958 8.97%, #FF127A 86.16%);
  --ds-feat-grad: linear-gradient(180.48deg, #FF3C56 0.62%, #FF127A 120.88%);
  --ds-dark:      #1A1A1A;
  --ds-heading:   #1A1A1A;
  --ds-muted:     #9B9B9B;
  --ds-border:    #F0F0F0;
  --ds-font:      'Roobert', 'Segoe UI', sans-serif;
  --ds-font-logo: 'Hubballi', cursive;
  --ds-nav-h:     80px;
  --ds-r:         16px;
  --ds-r-btn:     8px;
  --ds-max:       1440px;
}

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

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

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

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

/* ===================== HERO ===================== */
.ds-hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: var(--ds-nav-h);
  overflow: hidden;
}
.ds-hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
.ds-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.ds-hero__wrap {
  position: relative; z-index: 1;
  max-width: var(--ds-max);
  margin: 0 auto;
  padding: 60px 60px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 40px;
  width: 100%;
}
/* Hero Left */
.ds-hero__left { flex: 0 0 50%; max-width: 50%; }
.ds-hero__badge {
  display: inline-block;
  background: rgba(219,23,56,0.08);
  color: var(--ds-red);
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 7px 18px; border-radius: 20px;
  margin-bottom: 24px;
}
.ds-hero__h1 {
  display: flex; flex-direction: column;
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 800; line-height: 1.1;
  margin-bottom: 20px;
}
.ds-hero__line1 {
  color: var(--ds-heading);
  display: flex; align-items: center; gap: 10px;
}
.ds-hero__heart-icon { width: 40px; height: 40px; flex-shrink: 0; }
.ds-hero__line2 {
  background: var(--ds-feat-grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ds-hero__sub {
  font-size: 16px; color: #666;
  line-height: 1.75; margin-bottom: 36px;
}
.ds-hero__cta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.ds-hero__trust {
  font-size: 14px; font-weight: 600; color: var(--ds-heading);
  background: var(--ds-white);
  border: 1px solid #E5E7EB;
  border-radius: 24px; padding: 10px 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
/* Hero Right */
.ds-hero__right { flex: 0 0 46%; max-width: 46%; position: relative; }
.ds-hero__phone {
  width: 100%; max-height: 600px; object-fit: contain;
  animation: dsFloat 5s ease-in-out infinite;
}
@keyframes dsFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
/* Hero Calling Card */
.ds-hero__callcard {
  position: absolute; bottom: 24px; left: -16px;
  background: var(--ds-white);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  min-width: 240px;
  animation: dsSlide .8s ease-out .5s both;
}
@keyframes dsSlide {
  from { opacity: 0; transform: translateX(-16px); }
  to   { opacity: 1; transform: translateX(0); }
}
.ds-hero__callcard-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  background: var(--ds-feat-grad);
}
.ds-hero__callcard-info { flex: 1; }
.ds-hero__callcard-name { font-size: 13px; font-weight: 700; color: var(--ds-heading); }
.ds-hero__callcard-sub  { font-size: 11px; color: var(--ds-muted); }
.ds-hero__callcard-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--ds-feat-grad);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

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

/* ===================== ABOUT ===================== */
.ds-about { background: var(--ds-bg); padding: 90px 0; }
.ds-about__wrap {
  max-width: var(--ds-max);
  margin: 0 auto; padding: 0 60px;
  display: flex; align-items: center; gap: 80px;
}
.ds-about__left { flex: 0 0 48%; max-width: 48%; position: relative; }
.ds-about__img  { width: 100%; border-radius: 24px; }
.ds-about__verified {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--ds-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(--ds-heading);
}
.ds-about__right { flex: 1; }
.ds-about__title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800; line-height: 1.2;
  color: var(--ds-heading); margin-bottom: 20px;
}
.ds-about__desc {
  font-size: 15px; color: #666;
  line-height: 1.85; margin-bottom: 28px;
}
/* About Calling Card — RECTANGLE shape (not pill/circle) */
.ds-about__callcard {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--ds-white);
  border: 1px solid #F0F0F0;
  border-radius: 12px;                 /* rectangle with rounded corners — NOT pill */
  padding: 12px 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  margin-bottom: 0;
  max-width: 320px;
}
.ds-about__callcard-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--ds-feat-grad);
}
.ds-about__callcard-info { flex: 1; min-width: 0; }
.ds-about__callcard-name { font-size: 13px; font-weight: 700; color: var(--ds-heading); }
.ds-about__callcard-sub  { font-size: 11px; color: var(--ds-muted); }
.ds-about__callcard-btns { display: flex; gap: 8px; flex-shrink: 0; }
.ds-about__callcard-dec,
.ds-about__callcard-acc {
  width: 32px; height: 32px; border-radius: 50%;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ds-about__callcard-dec { background: #EF4444; }
.ds-about__callcard-acc { background: #22C55E; }
.ds-about__cta { margin-top: 32px; display: inline-flex; }

/* ===================== WHY ===================== */
/* Figma: white bg, full-width, cards with light bg icon boxes */
.ds-why { background: #FFF4EE; padding: 90px 0 90px 0; }
.ds-why__wrap {
  max-width: var(--ds-max);
  margin: 0 auto; padding: 0 60px;
}
.ds-why__title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800; color: var(--ds-heading);
  text-align: center; margin-bottom: 48px; padding-bottom: 0;
}
.ds-why .ds-why__title { margin-top: 0; margin-bottom: 48px; }
.ds-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ds-why-card {
  background: #FFFFFF;
  border: 1px solid #F0F0F0;
  border-radius: var(--ds-r);
  padding: 32px 28px;
  transition: box-shadow .2s, transform .2s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.ds-why-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}
.ds-why-card__icon {
  width: 80px; height: 80px;
  border-radius: 16px;
  background: #F5F5FF;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.ds-why-card__icon img { width: 52px; height: 52px; object-fit: contain; }
.ds-why-card h4 {
  font-size: 16px; font-weight: 700;
  color: var(--ds-heading); margin-bottom: 10px;
}
.ds-why-card p {
  font-size: 14px; color: #888;
  line-height: 1.75;
}

/* ===================== STATS ===================== */
.ds-stats {
  background: var(--ds-feat-grad);
  padding: 40px 0;
}
.ds-stats__wrap {
  max-width: var(--ds-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;
}
.ds-stat-item {
  padding: 16px 24px;
  border-right: 1px solid rgba(255,255,255,0.25);
}
.ds-stat-item:last-child { border-right: none; }
.ds-stat-item h3 {
  font-size: 36px; font-weight: 800;
  color: var(--ds-white); margin-bottom: 6px;
}
.ds-stat-item p {
  font-size: 13px; color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

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

/* ===================== DOWNLOAD ===================== */
/* Contained gradient card on white page background */
.ds-download {
  background: var(--ds-white);
  padding: 0 60px 60px;
  width: 100%;
  overflow: hidden;
}
.ds-download__wrap {
  max-width: var(--ds-max);
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: flex-end;
  gap: 0;
  min-height: 420px;
  background: var(--ds-feat-grad);
  border-radius: 24px;
  overflow: hidden;
}
.ds-download__left { flex: 0 0 52%; padding: 48px 48px 48px 48px; }
.ds-download__sub {
  font-size: 14px; color: rgba(255,255,255,0.85);
  line-height: 1.7; margin-bottom: 28px !important;
}
.ds-download__title {
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 800; color: var(--ds-white);
  margin-bottom: 12px;
}
.ds-download__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 340px;
}
.ds-download__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ds-download__btn-img {
  height: 56px;
  width: 100%;
  object-fit: contain;
  border-radius: 8px;
  background: var(--ds-white);
  padding: 6px 12px;
}
.ds-download__qr-img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  background: var(--ds-white);
  padding: 6px;
  object-fit: contain;
}
.ds-download__right {
  flex: 1;
  display: flex; align-items: flex-end; justify-content: flex-end;
}
.ds-download__mockup {
  max-height: 460px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ===================== FOOTER ===================== */
.ds-footer { background: var(--ds-dark); padding: 60px 0 0; }
.ds-footer__wrap {
  max-width: var(--ds-max);
  margin: 0 auto; padding: 0 60px;
}
.ds-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);
}
/* Footer Brand */
.ds-footer__logo {
  display: flex; align-items: center; gap: 8px; margin-bottom: 16px;
}
.ds-footer__logo span {
  font-family: var(--ds-font-logo); font-size: 22px; color: var(--ds-white);
}
.ds-footer__tagline {
  font-size: 13px; color: rgba(255,255,255,0.45);
  line-height: 1.8; margin-bottom: 20px;
}
.ds-footer__social { display: flex; gap: 10px; }
.ds-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;
}
.ds-footer__social a:hover { border-color: rgba(255,255,255,0.5); }
/* Footer Columns */
.ds-footer__col h6 {
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--ds-white); margin-bottom: 20px;
}
.ds-footer__col ul li { margin-bottom: 12px; }
.ds-footer__col ul a {
  font-size: 14px; color: rgba(255,255,255,0.5);
  transition: color .2s;
}
.ds-footer__col ul a:hover { color: var(--ds-white); }
/* Subscribe */
.ds-footer__subscribe {
  display: flex;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px; overflow: hidden;
  margin-bottom: 24px;
}
.ds-footer__subscribe input {
  flex: 1; background: transparent; border: none;
  padding: 10px 14px; color: var(--ds-white);
  font-size: 13px; font-family: var(--ds-font); outline: none;
}
.ds-footer__subscribe input::placeholder { color: rgba(255,255,255,0.3); }
.ds-footer__subscribe button {
  padding: 0 16px;
  background: var(--ds-feat-grad);
  border: none; color: var(--ds-white);
  font-size: 18px; cursor: pointer;
}
.ds-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;
}
.ds-footer__contact a { font-size: 14px; color: rgba(255,255,255,0.7); }
/* Footer Bottom */
.ds-footer__bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 12px; color: rgba(255,255,255,0.25);
}

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

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

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

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

@media (max-width: 575px) {
  .ds-about-page__wrap { padding: 0 24px; }
  .ds-about-page__para { font-size: 15px; }
}

/* ===================== CONTACT PAGE ===================== */
.ds-contact-page {
  background: #FFF4EE;
  min-height: calc(100vh - var(--ds-nav-h));
  padding: calc(var(--ds-nav-h) + 48px) 0 90px;
}
.ds-contact-page__wrap {
  max-width: var(--ds-max);
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Hero strip */
.ds-contact-hero {
  background: var(--ds-feat-grad);
  border-radius: 20px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.ds-contact-hero__title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--ds-white);
  margin-bottom: 12px;
}
.ds-contact-hero__sub {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  max-width: 560px;
}
.ds-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;
}

/* Success message */
.ds-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;
}

/* Info cards */
.ds-contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ds-contact-card {
  background: var(--ds-white);
  border: 1px solid #F0F0F0;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: box-shadow .2s, transform .2s;
}
.ds-contact-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}
.ds-contact-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: #FFF4EE;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.ds-contact-card__label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--ds-muted); margin-bottom: 6px;
}
.ds-contact-card__value {
  font-size: 15px; font-weight: 700;
  color: var(--ds-heading); margin-bottom: 4px;
}
.ds-contact-card__sub {
  font-size: 13px; color: var(--ds-muted);
}

/* Form card */
.ds-contact-form-card {
  background: var(--ds-white);
  border: 1px solid #F0F0F0;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.ds-contact-form-card__title {
  font-size: 22px; font-weight: 800;
  color: var(--ds-heading); margin-bottom: 6px;
}
.ds-contact-form-card__sub {
  font-size: 14px; color: var(--ds-muted);
  margin-bottom: 28px;
}

/* Form fields */
.ds-contact-form { display: flex; flex-direction: column; gap: 20px; }
.ds-contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.ds-contact-form__group {
  display: flex; flex-direction: column; gap: 8px;
}
.ds-contact-form__group label {
  font-size: 13px; font-weight: 600;
  color: var(--ds-heading);
}
.ds-contact-form__req { color: var(--ds-red); }
.ds-contact-form__optional { font-weight: 400; color: var(--ds-muted); font-size: 12px; }

.ds-contact-form__group input,
.ds-contact-form__group textarea {
  font-family: var(--ds-font);
  background: #FAFAFA;
  border: 1px solid #F0F0F0;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--ds-heading);
  width: 100%;
  outline: none;
  transition: border-color .2s;
}
.ds-contact-form__group input:focus,
.ds-contact-form__group textarea:focus {
  border-color: var(--ds-red);
  background: var(--ds-white);
}
.ds-contact-form__group textarea {
  height: 120px;
  resize: none;
}
.ds-input-error { border-color: #EF4444 !important; }
.ds-contact-form__err {
  font-size: 12px; color: #EF4444; margin-top: 2px;
}
.ds-contact-form__btn {
  width: 100%;
  height: 54px;
  font-size: 16px;
  border-radius: 10px;
  margin-top: 4px;
}

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

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

/* ---- HERO ---- */
.bh-hero {
  background: linear-gradient(160deg, #FFF0F3 60%, #FFE0E8 100%);
  overflow: hidden;
  padding-top: var(--ds-nav-h);
}
.bh-hero__wrap {
  max-width: var(--ds-max);
  margin: 0 auto;
  padding: 60px 60px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.bh-hero__left { flex: 0 0 48%; max-width: 48%; }
.bh-hero__eyebrow {
  display: inline-block;
  color: var(--ds-red);
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 20px;
}
.bh-hero__h1 {
  display: flex; flex-direction: column;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800; line-height: 1.1;
  margin-bottom: 20px;
}
.bh-hero__line1 {
  color: var(--ds-heading);
  display: flex; align-items: center; gap: 10px;
}
.bh-hero__line2 {
  background: var(--ds-feat-grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex; align-items: center; gap: 10px;
}
.bh-hero__icon { width: 40px; height: 40px; flex-shrink: 0; }
.bh-hero__money-icon { width: 36px; height: 36px; flex-shrink: 0; }
.bh-hero__sub {
  font-size: 16px; color: #555;
  line-height: 1.75; margin-bottom: 32px;
  max-width: 440px;
}
.bh-hero__right {
  flex: 0 0 48%; max-width: 48%;
  display: flex; align-items: flex-end; justify-content: center;
}
.bh-hero__img {
  max-height: 520px; width: 100%;
  object-fit: contain; object-position: bottom;
  display: block;
}

/* ---- STEPS ---- */
.bh-steps {
  background: var(--ds-feat-grad);
  padding: 52px 0;
}
.bh-steps__wrap {
  max-width: var(--ds-max);
  margin: 0 auto; padding: 0 60px;
  display: flex; align-items: flex-start;
  gap: 0;
}
.bh-step {
  flex: 1;
  padding: 16px 28px;
  position: relative;
}
.bh-step:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,0.2);
}
.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;
}
.bh-step__icon img { width: 32px; height: 32px; object-fit: contain; }
.bh-step__num {
  font-size: 52px; font-weight: 800;
  color: rgba(255,255,255,0.15);
  line-height: 1; margin-bottom: 8px;
}
.bh-step__title {
  font-size: 15px; font-weight: 700;
  color: var(--ds-white); margin-bottom: 8px;
}
.bh-step__sub {
  font-size: 13px; color: rgba(255,255,255,0.8);
  line-height: 1.7;
}
.bh-step__connector { display: none; }

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

/* Outline button */
.ds-btn--out {
  background: transparent;
  border: 2px solid var(--ds-red);
  color: var(--ds-red) !important;
}
.ds-btn--out:hover {
  background: var(--ds-red);
  color: var(--ds-white) !important;
}

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

/* ---- STATS ---- */
.bh-stats {
  background: var(--ds-feat-grad);
  padding: 52px 0;
}
.bh-stats__wrap {
  max-width: var(--ds-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;
}
.bh-stat { padding: 16px 20px; border-right: 1px solid rgba(255,255,255,0.2); }
.bh-stat:last-child { border-right: none; }
.bh-stat h3 { font-size: 44px; font-weight: 800; color: var(--ds-white); margin-bottom: 8px; }
.bh-stat p { font-size: 13px; color: rgba(255,255,255,0.85); line-height: 1.5; }

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

/* ---- DOWNLOAD ---- */
.bh-download {
  background: var(--ds-white);
  padding: 0 60px 60px;
  width: 100%;
  overflow: hidden;
}
.bh-download__wrap {
  max-width: var(--ds-max);
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: flex-end;
  gap: 0;
  min-height: 420px;
  background: var(--ds-feat-grad);
  border-radius: 24px;
  overflow: hidden;
}
.bh-download__left { flex: 0 0 52%; padding: 48px 48px 48px 48px; }
.bh-download__sub {
  font-size: 14px; color: rgba(255,255,255,0.85);
  line-height: 1.7; margin-bottom: 28px;
}
.bh-download__title {
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 800; color: var(--ds-white);
  margin-bottom: 12px;
}
.bh-download__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 340px;
}
.bh-download__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bh-download__btn-img {
  height: 56px;
  width: 100%;
  object-fit: contain;
  border-radius: 8px;
  background: var(--ds-white);
  padding: 6px 12px;
}
.bh-download__qr-img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  background: var(--ds-white);
  padding: 6px;
  object-fit: contain;
}
.bh-download__right {
  flex: 1;
  display: flex; align-items: flex-end; justify-content: flex-end;
}
.bh-download__mockup {
  max-height: 460px;
  width: auto;
  object-fit: contain;
  display: block;
}

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

.ds-nav__host--active { color: var(--ds-red) !important; font-weight: 600; }
