/*
 * Beautier public polish layer.
 * Calm, product-led styling inspired by modern system interfaces. It deliberately
 * keeps Beautier's own content, palette and imagery instead of copying a brand UI.
 */
:root {
  --apple-page: #f5f5f7;
  --apple-surface: rgba(255, 255, 255, .94);
  --apple-surface-solid: #fff;
  --apple-surface-muted: #f2f2f4;
  --apple-ink: #1d1d1f;
  --apple-muted: #6e6e73;
  --apple-line: rgba(29, 29, 31, .11);
  --apple-line-strong: rgba(29, 29, 31, .18);
  --apple-accent: #71816b;
  --apple-warm: #c57a74;
  --apple-radius-sm: 14px;
  --apple-radius-md: 22px;
  --apple-radius-lg: 32px;
  --apple-shadow-sm: 0 1px 2px rgba(0, 0, 0, .03), 0 10px 34px rgba(0, 0, 0, .045);
  --apple-shadow-md: 0 24px 70px rgba(0, 0, 0, .08);
  --apple-shell: min(1440px, calc(100% - 40px));
  --apple-font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", Inter, Manrope, "Segoe UI", sans-serif;
}

html { scroll-behavior: smooth; }
body.be-home,
body.public-page:not(.public-page--master),
body.public-login-body {
  background: var(--apple-page) !important;
  color: var(--apple-ink) !important;
  font-family: var(--apple-font) !important;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.be-home :where(h1, h2, h3, h4, p, a, button, input, select, textarea),
body.public-page:not(.public-page--master) :where(h1, h2, h3, h4, p, a, button, input, select, textarea),
body.public-login-body :where(h1, h2, h3, h4, p, a, button, input, select, textarea) {
  font-family: var(--apple-font) !important;
}

body.be-home :where(button, a, summary),
body.public-page:not(.public-page--master) :where(button, a, summary),
body.public-login-body :where(button, a, summary) {
  -webkit-tap-highlight-color: transparent;
}

body.be-home :where(a, button, summary, input, select, textarea):focus-visible,
body.public-page:not(.public-page--master) :where(a, button, summary, input, select, textarea):focus-visible,
body.public-login-body :where(a, button, summary, input, select, textarea):focus-visible {
  outline: 3px solid rgba(0, 113, 227, .24) !important;
  outline-offset: 3px !important;
}

/* Shared marketing header */
body:is(.be-home, .public-page, .public-login-body) .public-header--marketing {
  top: 10px !important;
  width: var(--apple-shell) !important;
  max-width: 1440px !important;
  height: 70px !important;
  min-height: 70px !important;
  margin: 10px auto 20px !important;
  padding: 0 14px 0 20px !important;
  border: 1px solid rgba(255, 255, 255, .7) !important;
  border-radius: 22px !important;
  background: rgba(255, 255, 255, .82) !important;
  color: var(--apple-ink) !important;
  box-shadow: 0 14px 44px rgba(0, 0, 0, .07) !important;
  backdrop-filter: saturate(180%) blur(24px) !important;
  -webkit-backdrop-filter: saturate(180%) blur(24px) !important;
}

body:is(.be-home, .public-page, .public-login-body) .public-header--marketing .public-brand-mark {
  color: var(--apple-ink) !important;
  font-size: 29px !important;
}
body:is(.be-home, .public-page, .public-login-body) .public-header--marketing .public-brand-word {
  color: var(--apple-ink) !important;
  font-size: 13px !important;
}

/* Master pages keep the professional identity. General platform pages retain
   the compact Beautier lockup so the shared header never starts with a void. */
body.be-home .be-header.public-header--brandless {
  grid-template-columns: minmax(0, 1fr) auto !important;
}
body.be-home .be-header.public-header--brandless .be-nav {
  justify-content: center !important;
}
body.public-page .site-header.public-header--brandless > .desktop-nav,
body.public-login-body .site-header.public-header--brandless > .desktop-nav {
  margin-inline: auto !important;
  justify-content: center !important;
}
.me-header.public-header--brandless .me-header-start,
.direct-master-booking-header.public-header--brandless .direct-master-header-start {
  gap: 0 !important;
}
body:is(.be-home, .public-page, .public-login-body) .public-header--marketing .public-primary-nav {
  gap: clamp(7px, .8vw, 14px) !important;
}
body:is(.be-home, .public-page, .public-login-body) .public-header--marketing .public-header-link,
body:is(.be-home, .public-page, .public-login-body) .public-header--marketing .public-header-login {
  min-height: 42px !important;
  padding: 0 10px !important;
  border-radius: 999px !important;
  color: #363638 !important;
  font-size: 13px !important;
  font-weight: 590 !important;
  letter-spacing: -.01em !important;
  transition: color .18s ease, background-color .18s ease, transform .18s ease !important;
}
body:is(.be-home, .public-page, .public-login-body) .public-header--marketing .public-header-link:hover,
body:is(.be-home, .public-page, .public-login-body) .public-header--marketing .public-header-login:hover {
  background: rgba(29, 29, 31, .055) !important;
  color: var(--apple-ink) !important;
}
body:is(.be-home, .public-page, .public-login-body) .public-header--marketing .public-header-booking {
  min-height: 42px !important;
  padding: 0 16px !important;
  border: 1px solid rgba(197, 122, 116, .34) !important;
  border-radius: 999px !important;
  background: rgba(197, 122, 116, .11) !important;
  color: #955954 !important;
}
body:is(.be-home, .public-page, .public-login-body) .site-header.public-header--marketing > .desktop-nav > a.public-header-booking {
  min-width: max-content !important;
  padding-inline: 16px !important;
  flex: 0 0 auto !important;
}
body:is(.be-home, .public-page, .public-login-body) .public-header--marketing .public-header-booking:hover,
body:is(.be-home, .public-page, .public-login-body) .public-header--marketing .public-header-booking.active {
  border-color: rgba(197, 122, 116, .52) !important;
  background: rgba(197, 122, 116, .17) !important;
}
body:is(.be-home, .public-page, .public-login-body) .public-header--marketing .public-header-cta,
body:is(.be-home, .public-page, .public-login-body) .public-header--marketing .be-header-cta {
  min-height: 44px !important;
  padding: 0 19px !important;
  border-radius: 999px !important;
  background: var(--apple-ink) !important;
  box-shadow: none !important;
  font-size: 13px !important;
  font-weight: 650 !important;
}
body:is(.be-home, .public-page, .public-login-body) .public-header--marketing .public-header-cta:hover,
body:is(.be-home, .public-page, .public-login-body) .public-header--marketing .be-header-cta:hover {
  background: #000 !important;
  transform: translateY(-1px) !important;
}

@media (min-width: 1181px) {
  body:is(.be-home, .public-page, .public-login-body) .public-header--marketing .public-primary-nav > .public-header-link:not(.public-header-booking) .public-header-link-icon,
  body:is(.be-home, .public-page, .public-login-body) .public-header--marketing .public-primary-nav > .public-header-link:not(.public-header-booking) > .public-header-icon,
  body:is(.be-home, .public-page, .public-login-body) .public-header--marketing .public-header-link-arrow {
    display: none !important;
  }
}

/* Shared public footer: one light component across every website route. */
.public-footer {
  width: var(--apple-shell) !important;
  max-width: 1440px !important;
  margin: 28px auto 14px !important;
  padding: 54px 56px 24px !important;
  border: 1px solid var(--apple-line) !important;
  border-radius: var(--apple-radius-lg) !important;
  background: rgba(255, 255, 255, .9) !important;
  color: var(--apple-ink) !important;
  box-shadow: var(--apple-shadow-sm) !important;
  font-family: var(--apple-font) !important;
}
.public-footer-grid {
  grid-template-columns: minmax(260px, 1.55fr) repeat(3, minmax(118px, .72fr)) minmax(230px, 1.1fr) !important;
  gap: 42px !important;
}
.public-footer .public-brand-mark,
.public-footer .public-brand-word { color: var(--apple-ink) !important; }
.public-footer-brand > p,
.public-footer-newsletter > p {
  max-width: 280px !important;
  margin: 17px 0 !important;
  color: var(--apple-muted) !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
}
.public-footer h3 {
  margin: 3px 0 16px !important;
  color: var(--apple-muted) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: .08em !important;
}
.public-footer-column { gap: 11px !important; }
.public-footer-column a {
  color: #3a3a3c !important;
  font-size: 13px !important;
  line-height: 1.45 !important;
}
.public-footer-column a:hover { color: #0071e3 !important; text-decoration: none !important; }
.public-footer-socials a {
  width: 44px !important;
  height: 44px !important;
  border-color: var(--apple-line-strong) !important;
  background: var(--apple-surface-muted) !important;
}
.public-footer-socials a:hover { border-color: transparent !important; background: #e8e8ed !important; transform: translateY(-1px); }
.public-footer-newsletter-form { gap: 8px !important; }
.public-footer-newsletter-form input {
  height: 46px !important;
  padding: 0 15px !important;
  border: 1px solid var(--apple-line-strong) !important;
  border-radius: 14px !important;
  background: #fff !important;
  color: var(--apple-ink) !important;
  font-size: 13px !important;
}
.public-footer-newsletter-form button {
  width: 46px !important;
  height: 46px !important;
  border: 0 !important;
  border-radius: 14px !important;
  background: var(--apple-ink) !important;
}
.public-footer-stores .public-footer-store-badge {
  min-height: 36px !important;
  padding: 0 12px !important;
  border-color: var(--apple-line-strong) !important;
  border-radius: 999px !important;
  background: var(--apple-surface-muted) !important;
  font-size: 11px !important;
}
.public-footer-bottom {
  margin-top: 38px !important;
  padding-top: 20px !important;
  border-color: var(--apple-line) !important;
  color: var(--apple-muted) !important;
  font-size: 11px !important;
}

/* Home layout */
body.be-home main { overflow: clip; }
body.be-home .be-shell { width: var(--apple-shell) !important; max-width: 1440px !important; }
body.be-home .be-section { padding-top: clamp(76px, 7vw, 116px) !important; padding-bottom: clamp(76px, 7vw, 116px) !important; }
body.be-home .be-section-heading small,
body.be-home .be-dashboard-copy > small,
body.be-home .be-final-cta > div > small {
  color: var(--apple-warm) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: .12em !important;
}
body.be-home .be-section-heading h2 {
  color: var(--apple-ink) !important;
  font-size: clamp(38px, 4.2vw, 62px) !important;
  font-weight: 650 !important;
  line-height: 1.02 !important;
  letter-spacing: -.045em !important;
}
body.be-home .be-section-heading h2 em {
  color: var(--apple-muted) !important;
  font-style: normal !important;
  font-weight: 500 !important;
}
@media (min-width: 768px) {
  body.be-home .be-process .be-section-heading,
  body.be-home .be-process .be-section-heading h2 {
    width: 100% !important;
    max-width: none !important;
  }
}
body.be-home .be-button {
  min-height: 50px !important;
  padding: 0 21px !important;
  border-radius: 999px !important;
  font-size: 14px !important;
  font-weight: 650 !important;
  letter-spacing: -.01em !important;
}
body.be-home .be-button-dark { border-color: var(--apple-ink) !important; background: var(--apple-ink) !important; box-shadow: none !important; }
body.be-home .be-button-dark:hover { background: #000 !important; transform: translateY(-1px); }
body.be-home .be-button-light { border-color: var(--apple-line-strong) !important; background: rgba(255, 255, 255, .84) !important; color: var(--apple-ink) !important; }

body.be-home .be-hero {
  height: auto !important;
  min-height: 650px !important;
  margin-top: 8px !important;
  padding: 0 !important;
  grid-template-columns: minmax(380px, .85fr) minmax(520px, 1.15fr) !important;
  gap: clamp(30px, 5vw, 76px) !important;
  background: transparent !important;
}
body.be-home .be-hero-copy { padding: clamp(48px, 5vw, 80px) 0 clamp(42px, 5vw, 72px) clamp(14px, 2vw, 28px) !important; }
body.be-home .be-hero h1 {
  max-width: 760px !important;
  color: var(--apple-ink) !important;
  font-size: clamp(52px, 5.8vw, 88px) !important;
  font-weight: 650 !important;
  line-height: .97 !important;
  letter-spacing: -.058em !important;
}
body.be-home .be-hero h1 em { color: var(--apple-muted) !important; font-style: normal !important; font-weight: 520 !important; }
body.be-home .be-hero-copy > p {
  max-width: 610px !important;
  color: var(--apple-muted) !important;
  font-size: 17px !important;
  line-height: 1.55 !important;
  letter-spacing: -.01em !important;
}
body.be-home .be-hero-visual {
  min-height: 620px !important;
  border: 1px solid rgba(255, 255, 255, .7) !important;
  border-radius: 38px !important;
  overflow: hidden !important;
  box-shadow: var(--apple-shadow-md) !important;
}
body.be-home .be-hero-visual picture,
body.be-home .be-hero-visual > img { border-radius: inherit !important; }
body.be-home .be-float-card {
  min-height: 76px !important;
  padding: 14px 16px !important;
  border: 1px solid rgba(255, 255, 255, .76) !important;
  border-radius: 20px !important;
  background: rgba(255, 255, 255, .79) !important;
  box-shadow: 0 16px 44px rgba(0, 0, 0, .11) !important;
  backdrop-filter: saturate(170%) blur(22px) !important;
  -webkit-backdrop-filter: saturate(170%) blur(22px) !important;
}
body.be-home .be-float-card strong { font-size: 13px !important; }
body.be-home .be-float-card small { font-size: 11px !important; color: var(--apple-muted) !important; }
body.be-home .be-hero-stats {
  border: 1px solid var(--apple-line) !important;
  border-radius: 20px !important;
  background: rgba(255, 255, 255, .76) !important;
  box-shadow: var(--apple-shadow-sm) !important;
}
body.be-home .be-hero-stats strong { font-size: 17px !important; }
body.be-home .be-hero-stats small { font-size: 11px !important; color: var(--apple-muted) !important; }

body.be-home .be-trust {
  min-height: 112px !important;
  margin-top: 24px !important;
  padding: 18px 24px !important;
  border: 1px solid var(--apple-line) !important;
  border-radius: 26px !important;
  background: var(--apple-surface) !important;
  box-shadow: var(--apple-shadow-sm) !important;
}
body.be-home .be-trust strong { font-size: 20px !important; letter-spacing: -.03em !important; }
body.be-home .be-trust span { color: var(--apple-muted) !important; font-size: 13px !important; line-height: 1.4 !important; }

body.be-home :where(.be-step-card, .be-feature-grid > article, .be-setup-grid > article, .be-integrations article) {
  border: 1px solid var(--apple-line) !important;
  border-radius: 28px !important;
  background: var(--apple-surface) !important;
  box-shadow: var(--apple-shadow-sm) !important;
}
body.be-home .be-process-grid,
body.be-home .be-feature-grid,
body.be-home .be-setup-grid { gap: 18px !important; }
body.be-home .be-step-card { padding: 30px !important; }
body.be-home .be-step-card h3,
body.be-home .be-feature-grid h3,
body.be-home .be-setup-grid h3 {
  color: var(--apple-ink) !important;
  font-size: 20px !important;
  font-weight: 650 !important;
  line-height: 1.2 !important;
  letter-spacing: -.025em !important;
}
body.be-home .be-step-card > p,
body.be-home .be-feature-grid > article > p,
body.be-home .be-setup-grid > article > p {
  color: var(--apple-muted) !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
}
body.be-home .be-step-number,
body.be-home .be-setup-grid > article > span:first-child {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  background: rgba(197, 122, 116, .14) !important;
  color: #a35d58 !important;
  font-size: 13px !important;
}

body.be-home .be-dashboard {
  border: 1px solid var(--apple-line) !important;
  border-radius: 38px !important;
  background: var(--apple-surface-solid) !important;
  box-shadow: var(--apple-shadow-md) !important;
  overflow: hidden !important;
}
body.be-home .be-dashboard-copy { padding: clamp(46px, 5vw, 76px) !important; }
body.be-home .be-dashboard-copy h2 {
  color: var(--apple-ink) !important;
  font-size: clamp(38px, 4vw, 58px) !important;
  font-weight: 650 !important;
  line-height: 1.03 !important;
  letter-spacing: -.045em !important;
}
body.be-home .be-dashboard-copy li b { font-size: 14px !important; }
body.be-home .be-dashboard-copy li span { color: var(--apple-muted) !important; font-size: 13px !important; line-height: 1.5 !important; }

body.be-home .be-feature-grid > article { min-height: 250px !important; padding: 28px !important; }
body.be-home .be-feature-grid > article.feature-photo { padding: 0 !important; overflow: hidden !important; }
body.be-home .be-feature-grid :where(li, span, small, label, dt, dd) { font-size: 12px !important; line-height: 1.45 !important; }

body.be-home .be-setup-grid > article { min-height: 340px !important; padding: 28px !important; }
body.be-home .be-testimonial {
  height: auto !important;
  min-height: 390px !important;
  border-radius: 36px !important;
  overflow: hidden !important;
  box-shadow: var(--apple-shadow-md) !important;
}
body.be-home .be-testimonial > div { padding: clamp(38px, 5vw, 72px) !important; }
body.be-home .be-testimonial blockquote {
  font-family: var(--apple-font) !important;
  font-size: clamp(34px, 4vw, 58px) !important;
  font-weight: 600 !important;
  line-height: 1.04 !important;
  letter-spacing: -.045em !important;
}

body.be-home .be-plans {
  padding-top: 72px !important;
  padding-bottom: 72px !important;
  gap: 18px !important;
  overflow: visible !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}
body.be-home .be-plan-card,
body.be-home .be-plan-card.studio {
  height: auto !important;
  min-height: 430px !important;
  border: 1px solid var(--apple-line) !important;
  border-radius: 32px !important;
  background: var(--apple-surface-solid) !important;
  box-shadow: var(--apple-shadow-sm) !important;
  overflow: hidden !important;
}
body.be-home .be-plan-card { padding: 42px !important; }
body.be-home .be-plan-card.studio { padding: 0 !important; }
body.be-home .be-plan-copy { padding: 42px !important; }
body.be-home .be-plan-card h2,
body.be-home .be-plan-card.studio .be-plan-copy h2 {
  color: var(--apple-ink) !important;
  font-size: 34px !important;
  font-weight: 650 !important;
  line-height: 1.08 !important;
  letter-spacing: -.035em !important;
}
body.be-home .be-plan-card p,
body.be-home .be-plan-card li,
body.be-home .be-plan-card.studio .be-plan-copy > p { font-size: 14px !important; line-height: 1.5 !important; }

body.be-home .be-integrations { padding-bottom: 82px !important; }
body.be-home .be-integrations > div { gap: 14px !important; }
body.be-home .be-integrations article { min-height: 118px !important; padding: 20px !important; }
body.be-home .be-integrations strong { font-size: 14px !important; }
body.be-home .be-integrations small { color: var(--apple-muted) !important; font-size: 12px !important; line-height: 1.45 !important; }

body.be-home .be-faq {
  min-height: 470px !important;
  border: 1px solid var(--apple-line) !important;
  border-radius: 36px !important;
  background: var(--apple-surface-solid) !important;
  box-shadow: var(--apple-shadow-sm) !important;
  overflow: hidden !important;
}
body.be-home .be-faq summary { min-height: 62px !important; font-size: 15px !important; font-weight: 600 !important; }
body.be-home .be-faq details p { color: var(--apple-muted) !important; font-size: 14px !important; line-height: 1.55 !important; }

body.be-home .be-final-cta {
  min-height: 330px !important;
  margin-top: 28px !important;
  border: 1px solid var(--apple-line) !important;
  border-radius: 36px !important;
  background-color: #ebe4dc !important;
  box-shadow: var(--apple-shadow-sm) !important;
  overflow: hidden !important;
}
body.be-home .be-final-cta > div:first-child { padding: 54px 60px !important; }
body.be-home .be-final-cta h2 {
  color: var(--apple-ink) !important;
  font-size: clamp(38px, 4vw, 56px) !important;
  font-weight: 650 !important;
  line-height: 1.02 !important;
  letter-spacing: -.045em !important;
}
body.be-home .be-final-cta p { color: var(--apple-muted) !important; font-size: 15px !important; line-height: 1.55 !important; }

/* Other public routes inherit a restrained shell without changing their logic. */
body.public-page:not(.public-page--master) .public-main { width: var(--apple-shell) !important; max-width: 1440px !important; }
body.public-page:not(.public-page--master) :where(.button, .marketplace-load-more) {
  border-radius: 999px !important;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease, box-shadow .18s ease !important;
}
body.public-page:not(.public-page--master) :where(input:not([type="checkbox"]):not([type="radio"]), select, textarea) {
  border-color: var(--apple-line-strong) !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, .92) !important;
}

@media (hover: hover) {
  body.be-home :where(.be-step-card, .be-feature-grid > article, .be-setup-grid > article, .be-integrations article),
  .public-footer-socials a {
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease !important;
  }
  body.be-home :where(.be-step-card, .be-feature-grid > article, .be-setup-grid > article, .be-integrations article):hover {
    border-color: var(--apple-line-strong) !important;
    box-shadow: 0 18px 52px rgba(0, 0, 0, .075) !important;
    transform: translateY(-3px) !important;
  }
}

@media (max-width: 1180px) {
  :root { --apple-shell: min(100% - 24px, 960px); }
  body:is(.be-home, .public-page, .public-login-body) .public-header--marketing {
    height: 66px !important;
    min-height: 66px !important;
    padding: 0 12px 0 17px !important;
    border-radius: 20px !important;
  }
  body.be-home .be-header.public-header--brandless {
    grid-template-columns: minmax(0, 1fr) auto !important;
  }
  body.be-home .be-header.public-header--brandless .be-header-actions {
    grid-column: 2 !important;
  }
  body.public-page .site-header.public-header--brandless,
  body.public-login-body .site-header.public-header--brandless {
    grid-template-columns: minmax(0, 1fr) auto auto !important;
  }
  body.public-page .site-header.public-header--brandless > .mobile-header-language,
  body.public-login-body .site-header.public-header--brandless > .mobile-header-language {
    grid-column: 2 !important;
  }
  body.public-page .site-header.public-header--brandless > .site-menu-pill,
  body.public-login-body .site-header.public-header--brandless > .site-menu-pill {
    grid-column: 3 !important;
  }
  body.be-home .be-hero {
    height: auto !important;
    min-height: 0 !important;
    grid-template-columns: minmax(320px, .9fr) minmax(420px, 1.1fr) !important;
    gap: 28px !important;
  }
  body.be-home .be-hero h1 { font-size: clamp(48px, 6.2vw, 68px) !important; }
  body.be-home .be-hero-visual { min-height: 540px !important; }
  .public-footer { padding: 46px 38px 22px !important; }
  .public-footer-grid { grid-template-columns: minmax(220px, 1.3fr) repeat(3, minmax(100px, .8fr)) !important; gap: 34px 24px !important; }
  .public-footer-newsletter { grid-column: 1 / -1 !important; }
}

@media (max-width: 820px) {
  :root { --apple-shell: calc(100% - 24px); }
  body.be-home .be-section { padding-top: 66px !important; padding-bottom: 66px !important; }
  body.be-home .be-hero {
    height: auto !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  body.be-home .be-hero-copy { padding: 52px 10px 24px !important; }
  body.be-home .be-hero h1 { max-width: 680px !important; font-size: clamp(48px, 10vw, 72px) !important; }
  body.be-home .be-hero-copy > p { font-size: 16px !important; }
  body.be-home .be-hero-visual { min-height: 520px !important; border-radius: 30px !important; }
  body.be-home .be-trust { grid-template-columns: 1fr 1fr !important; }
  body.be-home .be-dashboard { border-radius: 30px !important; }
  body.be-home .be-plans { grid-template-columns: 1fr !important; }
  body.be-home .be-plan-card,
  body.be-home .be-plan-card.studio { min-height: 390px !important; }
  .public-footer-grid { grid-template-columns: 1fr 1fr !important; }
  .public-footer-brand,
  .public-footer-newsletter { grid-column: 1 / -1 !important; }
}

@media (max-width: 767px) {
  :root { --apple-shell: calc(100% - 16px); }
  body:is(.be-home, .public-page, .public-login-body) .public-header--marketing {
    top: 8px !important;
    width: var(--apple-shell) !important;
    height: 62px !important;
    min-height: 62px !important;
    margin: 8px auto 12px !important;
    padding: 0 9px 0 15px !important;
    border-radius: 18px !important;
  }
  body:is(.be-home, .public-page, .public-login-body) .public-header--marketing .public-brand-mark { font-size: 27px !important; }
  body:is(.be-home, .public-page, .public-login-body) .public-header--marketing .public-menu-toggle { border-radius: 999px !important; }
  body.be-home .be-shell { width: calc(100% - 20px) !important; }
  body.be-home .be-section { padding-top: 58px !important; padding-bottom: 58px !important; }
  body.be-home .be-section-heading h2 { font-size: clamp(34px, 10vw, 45px) !important; }
  body.be-home .be-hero-copy { padding: 42px 8px 18px !important; }
  body.be-home .be-hero h1 { font-size: clamp(43px, 13vw, 61px) !important; line-height: .98 !important; }
  body.be-home .be-hero-copy > p { font-size: 16px !important; line-height: 1.5 !important; }
  body.be-home .be-hero-actions { grid-template-columns: 1fr !important; gap: 10px !important; }
  body.be-home .be-hero-actions .be-button { width: 100% !important; }
  body.be-home .be-hero-visual { min-height: 430px !important; border-radius: 26px !important; }
  body.be-home .be-float-card { min-height: 68px !important; border-radius: 17px !important; }
  body.be-home .be-hero-stats { grid-template-columns: 1fr 1fr !important; border-radius: 18px !important; }
  body.be-home .be-trust { grid-template-columns: 1fr !important; gap: 0 !important; padding: 8px 18px !important; border-radius: 22px !important; }
  body.be-home .be-trust > * { min-height: 72px !important; }
  body.be-home :where(.be-step-card, .be-feature-grid > article, .be-setup-grid > article) { border-radius: 24px !important; }
  body.be-home .be-process-grid { padding-left: 0 !important; }
  body.be-home .be-process-grid::before { display: none !important; }
  body.be-home .be-step-card,
  body.be-home .be-step-card:nth-child(n) { min-height: 0 !important; padding: 24px !important; }
  body.be-home .be-step-card h3,
  body.be-home .be-step-card > p { padding-left: 42px !important; }
  body.be-home .be-dashboard { border-radius: 24px !important; }
  body.be-home .be-dashboard-copy { padding: 34px 24px !important; }
  body.be-home .be-dashboard-copy h2 { font-size: 38px !important; }
  body.be-home .be-feature-grid > article { min-height: 260px !important; padding: 24px !important; }
  body.be-home .be-feature-grid > article.feature-photo {
    min-height: 520px !important;
    display: flex !important;
    flex-direction: column !important;
  }
  body.be-home .be-feature-grid > article.feature-photo > div { min-height: 190px !important; padding: 24px !important; }
  body.be-home .be-feature-grid > article.feature-photo picture { min-height: 310px !important; flex: 1 !important; }
  body.be-home .be-feature-grid > article.feature-photo img { width: 100% !important; height: 100% !important; object-fit: cover !important; }
  body.be-home .be-setup-grid > article { min-height: 0 !important; padding: 24px !important; }
  body.be-home .be-testimonial { min-height: 420px !important; border-radius: 26px !important; }
  body.be-home .be-testimonial > div { padding: 28px !important; }
  body.be-home .be-testimonial blockquote { font-size: 32px !important; }
  body.be-home .be-plans { padding-top: 48px !important; padding-bottom: 48px !important; gap: 14px !important; }
  body.be-home .be-plan-card,
  body.be-home .be-plan-card.studio { min-height: 0 !important; border-radius: 26px !important; }
  body.be-home .be-plan-card { padding: 30px 24px !important; }
  body.be-home .be-plan-card.studio { grid-template-columns: 1fr !important; }
  body.be-home .be-plan-copy { min-height: 320px !important; padding: 30px 24px !important; }
  body.be-home .be-interior-art { min-height: 240px !important; }
  body.be-home .be-integrations > div { grid-template-columns: 1fr !important; }
  body.be-home .be-integrations article,
  body.be-home .be-integrations article:nth-child(n) { min-height: 94px !important; padding: 16px !important; }
  body.be-home .be-faq { border-radius: 26px !important; }
  body.be-home .be-faq .be-section-heading { padding: 32px 24px 12px !important; }
  body.be-home .be-faq-list { padding: 0 24px 28px !important; }
  body.be-home .be-faq summary { min-height: 58px !important; font-size: 14px !important; }
  body.be-home .be-final-cta { border-radius: 26px !important; }
  body.be-home .be-final-cta > div:first-child { padding: 36px 24px 250px !important; }
  body.be-home .be-final-cta h2 { font-size: 39px !important; }
  .public-footer {
    width: calc(100% - 16px) !important;
    margin: 16px auto 8px !important;
    padding: 36px 24px 22px !important;
    border-radius: 26px !important;
  }
  .public-footer-grid { grid-template-columns: 1fr !important; gap: 30px !important; }
  .public-footer-brand,
  .public-footer-newsletter,
  .public-footer-column:nth-of-type(3) { grid-column: auto !important; }
  .public-footer-brand > p,
  .public-footer-newsletter > p { font-size: 14px !important; }
  .public-footer-column a { min-height: 44px !important; font-size: 14px !important; }
  .public-footer-newsletter-form input { font-size: 16px !important; }
  .public-footer-bottom { align-items: flex-start !important; flex-direction: column !important; gap: 10px !important; font-size: 12px !important; }
}

/* Homepage readability and locale-safe layout.
   The editorial stylesheet contains an older compact desktop mode with fixed
   heights. Keep the newer visual language, but let translated content define
   the height of both product sections. */
@media (min-width: 1181px) {
  body.be-home .public-header--marketing,
  body.be-home .be-shell,
  body.be-home + .public-footer,
  body.be-home .public-footer {
    width: min(1680px, calc(100% - 56px)) !important;
    max-width: 1680px !important;
  }

  body.be-home .be-dashboard {
    height: auto !important;
    min-height: 640px !important;
    grid-template-columns: minmax(0, 1.08fr) minmax(520px, .92fr) !important;
    align-items: stretch !important;
  }
  body.be-home .be-dashboard-scene {
    min-height: 640px !important;
    padding: 46px 0 0 52px !important;
  }
  body.be-home .be-dashboard-window {
    height: 594px !important;
  }
  body.be-home .be-dashboard-copy {
    min-height: 640px !important;
    box-sizing: border-box !important;
    padding: 54px clamp(46px, 4vw, 72px) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
  }
  body.be-home .be-dashboard-copy h2 {
    max-width: 690px !important;
    margin: 12px 0 28px !important;
    font-size: clamp(43px, 3.1vw, 54px) !important;
    line-height: 1.02 !important;
    text-wrap: balance;
  }
  html[lang="uk"] body.be-home .be-dashboard-copy h2,
  html[lang="ru"] body.be-home .be-dashboard-copy h2 {
    font-size: clamp(41px, 2.9vw, 51px) !important;
  }
  body.be-home .be-dashboard-copy ul {
    margin-bottom: 30px !important;
    gap: 14px !important;
  }
  body.be-home .be-dashboard-copy li b { font-size: 15px !important; }
  body.be-home .be-dashboard-copy li span { font-size: 13.5px !important; }

  body.be-home .be-features .be-section-heading h2 {
    max-width: 1040px !important;
    text-wrap: balance;
  }
  body.be-home .be-feature-grid {
    width: 100% !important;
    margin-top: 46px !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    grid-auto-rows: minmax(286px, auto) !important;
    gap: 20px !important;
  }
  body.be-home .be-feature-grid > article {
    height: auto !important;
    min-height: 286px !important;
    padding: 30px !important;
  }
  body.be-home .be-feature-grid h3 { font-size: 25px !important; }
  body.be-home .be-feature-grid > article > p {
    margin-bottom: 18px !important;
    font-size: 15px !important;
    line-height: 1.48 !important;
  }
  body.be-home .be-feature-grid :where(li, span, small, label, dt, dd) {
    font-size: 13px !important;
    line-height: 1.45 !important;
  }
  body.be-home .feature-photo > div { padding: 30px !important; }
  body.be-home .feature-photo a {
    min-height: 42px !important;
    padding-inline: 15px !important;
    align-items: center !important;
    font-size: 12px !important;
  }
  body.be-home .be-calendar-ui { padding: 14px !important; }
  body.be-home .be-calendar-ui header,
  body.be-home .be-calendar-ui span { font-size: 12px !important; }
  body.be-home .be-calendar-ui i {
    width: 30px !important;
    height: 30px !important;
    font-size: 11px !important;
  }
}

@media (min-width: 768px) and (max-width: 1180px) {
  body.be-home .be-dashboard {
    height: auto !important;
    min-height: 0 !important;
    grid-template-columns: 1fr !important;
  }
  body.be-home .be-dashboard-scene {
    min-height: 520px !important;
    padding: 42px 0 0 42px !important;
  }
  body.be-home .be-dashboard-window { height: 478px !important; }
  body.be-home .be-dashboard-copy {
    min-height: 0 !important;
    padding: 48px !important;
  }
  body.be-home .be-dashboard-copy h2 {
    max-width: 760px !important;
    font-size: clamp(40px, 6vw, 54px) !important;
    text-wrap: balance;
  }
  body.be-home .be-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-auto-rows: minmax(270px, auto) !important;
  }
  body.be-home .be-feature-grid > article {
    height: auto !important;
    min-height: 270px !important;
  }
  body.be-home .be-feature-grid > article > p { font-size: 14px !important; }
  body.be-home .be-feature-grid :where(li, span, small, label, dt, dd) { font-size: 12px !important; }
}

@media (max-width: 767px) {
  body.be-home .be-dashboard {
    display: grid !important;
    height: auto !important;
    min-height: 0 !important;
    grid-template-columns: minmax(0, 1fr) !important;
  }
  body.be-home .be-dashboard-scene {
    min-height: 360px !important;
    padding: 28px 0 0 14px !important;
  }
  body.be-home .be-dashboard-window {
    height: 332px !important;
    grid-template-columns: 76px minmax(0, 1fr) !important;
  }
  body.be-home .be-dashboard-copy {
    min-height: 0 !important;
    padding: 34px 24px 38px !important;
  }
  body.be-home .be-dashboard-copy h2 {
    margin: 10px 0 24px !important;
    font-size: clamp(34px, 10vw, 42px) !important;
    line-height: 1.04 !important;
    text-wrap: balance;
  }
  body.be-home .be-dashboard-copy ul {
    margin-bottom: 26px !important;
    gap: 13px !important;
  }
  body.be-home .be-dashboard-copy li b { font-size: 14px !important; }
  body.be-home .be-dashboard-copy li span { font-size: 12px !important; }
  body.be-home .be-inline-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  body.be-home .be-inline-actions .be-button { width: 100% !important; }

  body.be-home .be-features .be-section-heading h2 { text-wrap: balance; }
  body.be-home .be-feature-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    grid-auto-rows: auto !important;
    gap: 14px !important;
  }
  body.be-home .be-feature-grid > article {
    height: auto !important;
    min-height: 280px !important;
    padding: 24px !important;
  }
  body.be-home .be-feature-grid > article.feature-photo { min-height: 500px !important; }
  body.be-home .be-feature-grid h3 { font-size: 24px !important; }
  body.be-home .be-feature-grid > article > p {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }
  body.be-home .be-feature-grid :where(li, span, small, label, dt, dd) {
    font-size: 12px !important;
    line-height: 1.45 !important;
  }
}

/* Setup steps: compact the transition from the features section and keep the
   numbered markers separate from translated headings at every breakpoint. */
body.be-home .be-features {
  padding-bottom: clamp(46px, 4vw, 68px) !important;
}
body.be-home .be-setup {
  padding-top: clamp(28px, 3vw, 46px) !important;
  padding-bottom: clamp(54px, 5vw, 76px) !important;
}
body.be-home .be-setup-grid {
  margin-top: 34px !important;
  gap: 20px !important;
}
body.be-home .be-setup-grid > article {
  position: relative !important;
  height: auto !important;
  min-height: 320px !important;
  padding: 28px !important;
  overflow: visible !important;
}
body.be-home .be-setup-grid > article > span:first-child {
  position: absolute !important;
  top: 26px !important;
  left: 26px !important;
  z-index: 2 !important;
  width: 34px !important;
  height: 34px !important;
  display: grid !important;
  place-items: center !important;
  border: 1px solid rgba(197, 122, 116, .2) !important;
  border-radius: 50% !important;
  background: rgba(197, 122, 116, .16) !important;
  color: #9e5853 !important;
  font-size: 14px !important;
  font-weight: 750 !important;
  line-height: 1 !important;
  box-shadow: none !important;
}
body.be-home .be-setup-grid h3 {
  min-height: 34px !important;
  margin: 0 0 5px !important;
  padding-left: 46px !important;
  display: flex !important;
  align-items: center !important;
  font-size: 20px !important;
  line-height: 1.2 !important;
}
body.be-home .be-setup-grid > article > p {
  min-height: 42px !important;
  margin: 0 0 18px !important;
  padding-left: 46px !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
}

@media (max-width: 767px) {
  body.be-home .be-features { padding-bottom: 36px !important; }
  body.be-home .be-setup {
    padding-top: 24px !important;
    padding-bottom: 50px !important;
  }
  body.be-home .be-setup-grid {
    margin-top: 24px !important;
    padding-left: 0 !important;
    gap: 14px !important;
  }
  body.be-home .be-setup-grid::before { display: none !important; }
  body.be-home .be-setup-grid > article {
    min-height: 0 !important;
    padding: 22px !important;
    overflow: hidden !important;
  }
  body.be-home .be-setup-grid > article > span:first-child {
    top: 20px !important;
    left: 20px !important;
    width: 32px !important;
    height: 32px !important;
    font-size: 13px !important;
  }
  body.be-home .be-setup-grid h3 {
    min-height: 32px !important;
    padding-left: 43px !important;
    font-size: 17px !important;
  }
  body.be-home .be-setup-grid > article > p {
    min-height: 0 !important;
    padding-left: 43px !important;
    font-size: 13px !important;
  }
  body.be-home .be-setup-grid dl {
    margin-top: 14px !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 6px 12px !important;
    font-size: 11px !important;
    line-height: 1.4 !important;
  }
  body.be-home .be-setup-grid dt {
    grid-column: 1 / -1 !important;
    margin: 0 !important;
  }
  body.be-home .be-setup-grid dd {
    min-width: 0 !important;
    margin: 0 !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* Home: native apps. This sits between the customer booking story and the
   professional dashboard, so the content changes audience without repeating
   the following product section. */
body.be-home .be-mobile-apps {
  position: relative !important;
  min-height: 640px !important;
  margin-top: clamp(18px, 2.5vw, 38px) !important;
  margin-bottom: clamp(28px, 3.5vw, 54px) !important;
  padding: clamp(48px, 5.3vw, 82px) clamp(44px, 5.7vw, 88px) !important;
  display: grid !important;
  grid-template-columns: minmax(360px, .86fr) minmax(520px, 1.14fr) !important;
  align-items: center !important;
  gap: clamp(34px, 5vw, 84px) !important;
  overflow: hidden !important;
  border: 1px solid rgba(29, 29, 31, .09) !important;
  border-radius: 32px !important;
  background:
    radial-gradient(circle at 86% 20%, rgba(197, 122, 116, .13), transparent 34%),
    linear-gradient(135deg, #fff 0%, #fbf8f4 52%, #f4eee8 100%) !important;
  box-shadow: var(--apple-shadow-sm) !important;
}
body.be-home .be-mobile-apps::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(255, 255, 255, .74), transparent 42%);
}
body.be-home .be-mobile-apps-copy {
  position: relative;
  z-index: 3;
  max-width: 620px;
}
body.be-home .be-mobile-apps-brand {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
body.be-home .be-mobile-apps-brand > img {
  width: 62px;
  height: 62px;
  border: 1px solid rgba(29, 29, 31, .08);
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 14px 34px rgba(63, 43, 36, .11);
}
body.be-home .be-mobile-apps-brand > span {
  min-width: 0;
  display: grid;
  gap: 3px;
}
body.be-home .be-mobile-apps-brand small {
  color: var(--apple-warm);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: .12em;
}
body.be-home .be-mobile-apps-brand strong {
  color: var(--apple-ink);
  font-size: 22px;
  font-weight: 720;
  letter-spacing: -.035em;
}
body.be-home .be-mobile-apps-copy h2 {
  max-width: 650px;
  margin: 0;
  color: var(--apple-ink);
  font-size: clamp(46px, 4.35vw, 66px);
  font-weight: 660;
  line-height: 1;
  letter-spacing: -.052em;
  text-wrap: balance;
}
body.be-home .be-mobile-apps-copy > p {
  max-width: 580px;
  margin: 23px 0 24px;
  color: var(--apple-muted);
  font-size: 17px;
  line-height: 1.58;
  letter-spacing: -.012em;
}
body.be-home .be-mobile-apps-benefits {
  margin: 0 0 30px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  list-style: none;
}
body.be-home .be-mobile-apps-benefits li {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #3b3b3d;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}
body.be-home .be-mobile-apps-benefits li > span {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e7eee3;
  color: #62745c;
  font-size: 12px;
  font-weight: 800;
}
body.be-home .be-mobile-apps-stores {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}
body.be-home .be-mobile-apps-stores > .be-store-badge {
  min-width: 174px;
  min-height: 62px;
  padding: 9px 17px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  border: 1px solid #1d1d1f;
  border-radius: 16px;
  background: #1d1d1f;
  color: #fff;
  box-shadow: none;
  transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease;
}
body.be-home .be-mobile-apps-stores > a.be-store-badge:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .12);
}
body.be-home .be-mobile-apps-store-icon {
  width: 27px !important;
  height: 32px !important;
  flex: 0 0 27px;
  fill: currentColor !important;
  stroke: none !important;
}
body.be-home .be-mobile-apps-stores > .be-store-badge > span {
  display: grid;
  gap: 1px;
  text-align: left;
}
body.be-home .be-mobile-apps-stores small {
  color: rgba(255, 255, 255, .76);
  font-size: 9px;
  font-weight: 520;
  line-height: 1;
}
body.be-home .be-mobile-apps-stores strong {
  color: #fff;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.1;
  letter-spacing: -.02em;
}
body.be-home .be-mobile-apps-stores > .be-store-badge.is-coming-soon {
  border-color: #d2d2d7;
  background: #f5f5f7;
  color: #6e6e73;
  box-shadow: none;
  cursor: default;
}
body.be-home .be-mobile-apps-stores > .be-store-badge.is-coming-soon small,
body.be-home .be-mobile-apps-stores > .be-store-badge.is-coming-soon strong {
  color: inherit;
}
body.be-home .be-mobile-apps-visual {
  position: relative;
  z-index: 2;
  min-width: 0;
  min-height: 590px;
  align-self: stretch;
}
body.be-home .be-mobile-apps-orb {
  position: absolute;
  top: 50%;
  left: 51%;
  width: min(550px, 82%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 36% 32%, rgba(255, 255, 255, .96), rgba(235, 216, 203, .82) 58%, rgba(197, 122, 116, .18) 100%);
  filter: drop-shadow(0 30px 44px rgba(78, 55, 46, .09));
  transform: translate(-50%, -50%);
}
body.be-home .be-mobile-app-phone {
  position: absolute;
  z-index: 2;
  width: min(250px, 41%);
  aspect-ratio: 9 / 20;
  margin: 0;
  padding: 7px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 38px;
  background: #171513;
  box-shadow: 0 28px 60px rgba(43, 31, 26, .22), inset 0 0 0 1px rgba(255, 255, 255, .14);
}
body.be-home .be-mobile-app-phone > img {
  position: absolute;
  inset: 7px;
  width: calc(100% - 14px);
  height: calc(100% - 14px);
  border-radius: 31px;
  object-fit: cover;
  object-position: top center;
}
body.be-home .be-mobile-app-phone--bookings {
  top: 12px;
  left: 18%;
  transform: rotate(-4.5deg);
}
body.be-home .be-mobile-app-phone--confirmed {
  right: 10%;
  bottom: 2px;
  z-index: 3;
  transform: rotate(4.5deg);
}
body.be-home .be-mobile-apps-badge {
  position: absolute;
  z-index: 5;
  min-height: 42px;
  padding: 9px 13px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, .84);
  border-radius: 999px;
  background: rgba(255, 255, 255, .8);
  color: #383638;
  font-size: 12px;
  font-weight: 650;
  white-space: nowrap;
  box-shadow: 0 14px 36px rgba(56, 41, 35, .1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
body.be-home .be-mobile-apps-badge > i {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e7eee3;
  color: #62745c;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}
body.be-home .be-mobile-apps-badge--client {
  top: 48px;
  left: 0;
}
body.be-home .be-mobile-apps-badge--client > i {
  background: url('/assets/img/app-icon-site.png') center / cover no-repeat;
}
body.be-home .be-mobile-apps-badge--booking {
  right: 0;
  bottom: 42px;
}

@media (max-width: 1100px) {
  body.be-home .be-mobile-apps {
    grid-template-columns: minmax(330px, .92fr) minmax(430px, 1.08fr) !important;
    gap: 24px !important;
  }
  body.be-home .be-mobile-app-phone { width: min(230px, 44%); }
  body.be-home .be-mobile-app-phone--bookings { left: 8%; }
  body.be-home .be-mobile-app-phone--confirmed { right: 5%; }
  body.be-home .be-mobile-apps-badge { font-size: 11px; }
}

@media (max-width: 900px) {
  body.be-home .be-mobile-apps {
    min-height: 0 !important;
    padding: 54px 48px 0 !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 26px !important;
  }
  body.be-home .be-mobile-apps-copy { max-width: 680px; }
  body.be-home .be-mobile-apps-copy h2 { max-width: 680px; }
  body.be-home .be-mobile-apps-benefits { max-width: 620px; }
  body.be-home .be-mobile-apps-visual {
    width: min(100%, 720px);
    min-height: 600px;
    margin-inline: auto;
  }
  body.be-home .be-mobile-app-phone { width: min(255px, 40%); }
  body.be-home .be-mobile-app-phone--bookings { left: 17%; }
  body.be-home .be-mobile-app-phone--confirmed { right: 16%; }
}

@media (max-width: 767px) {
  body.be-home .be-mobile-apps {
    margin-top: 8px !important;
    margin-bottom: 18px !important;
    padding: 32px 22px 0 !important;
    gap: 22px !important;
    border-radius: 26px !important;
  }
  body.be-home .be-mobile-apps-brand {
    margin-bottom: 18px;
    gap: 11px;
  }
  body.be-home .be-mobile-apps-brand > img {
    width: 50px;
    height: 50px;
    border-radius: 15px;
  }
  body.be-home .be-mobile-apps-brand small { font-size: 9px; }
  body.be-home .be-mobile-apps-brand strong { font-size: 18px; }
  body.be-home .be-mobile-apps-copy h2 {
    font-size: clamp(36px, 10.5vw, 45px);
    line-height: 1.02;
  }
  body.be-home .be-mobile-apps-copy > p {
    margin: 16px 0 19px;
    font-size: 14px;
    line-height: 1.48;
  }
  body.be-home .be-mobile-apps-benefits {
    margin-bottom: 24px;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }
  body.be-home .be-mobile-apps-benefits li { font-size: 12px; }
  body.be-home .be-mobile-apps-stores {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  body.be-home .be-mobile-apps-stores > .be-store-badge {
    min-width: 0;
    min-height: 58px;
    padding: 8px 11px;
    gap: 8px;
    border-radius: 14px;
  }
  body.be-home .be-mobile-apps-store-icon {
    width: 22px !important;
    height: 27px !important;
    flex-basis: 22px;
  }
  body.be-home .be-mobile-apps-stores small { font-size: 7.5px; }
  body.be-home .be-mobile-apps-stores strong { font-size: 13px; }
  body.be-home .be-mobile-apps-visual {
    width: 100%;
    min-height: 420px;
  }
  body.be-home .be-mobile-apps-orb {
    top: 52%;
    width: 105%;
  }
  body.be-home .be-mobile-app-phone {
    width: min(184px, 50%);
    padding: 5px;
    border-radius: 29px;
  }
  body.be-home .be-mobile-app-phone > img {
    inset: 5px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    border-radius: 24px;
  }
  body.be-home .be-mobile-app-phone--bookings {
    top: 14px;
    left: 6%;
    transform: rotate(-4deg);
  }
  body.be-home .be-mobile-app-phone--confirmed {
    right: 5%;
    bottom: -2px;
    transform: rotate(4deg);
  }
  body.be-home .be-mobile-apps-badge {
    min-height: 36px;
    padding: 7px 10px;
    gap: 7px;
    font-size: 10px;
  }
  body.be-home .be-mobile-apps-badge > i {
    width: 19px;
    height: 19px;
  }
  body.be-home .be-mobile-apps-badge--client {
    top: 28px;
    left: 0;
  }
  body.be-home .be-mobile-apps-badge--booking {
    right: 0;
    bottom: 24px;
  }
}

@media (max-width: 390px) {
  body.be-home .be-mobile-apps { padding-inline: 18px !important; }
  body.be-home .be-mobile-apps-copy h2 { font-size: 35px; }
  body.be-home .be-mobile-apps-stores > .be-store-badge { padding-inline: 9px; }
  body.be-home .be-mobile-apps-stores strong { font-size: 12px; }
  body.be-home .be-mobile-apps-visual { min-height: 385px; }
  body.be-home .be-mobile-apps-badge--booking { display: none; }
}
