/* ============================================
   ATLAS EIGHT - Unified Styles
   Pixel-accurate recreation of Wix original
   ============================================ */

/* Fonts: Ubuntu Bold (custom), Open Sans (headings), Proxima Nova (body), Fraunces, Playfair Display, Montserrat */
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&family=Open+Sans:wght@300;400;600;700&family=Montserrat:wght@300;400;500;600&family=Fraunces:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* ---- Reset & Base ---- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Ubuntu', 'Open Sans', sans-serif;
  font-weight: 700;
  color: #6F210D;
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.8;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
  text-align: center;
  padding: 8px 20px;
  font-family: 'Ubuntu', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  background: #FF9900;
  text-transform: lowercase;
  line-height: normal;
  letter-spacing: 1.5px;
  position: relative;
  z-index: 2;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 100px;
  background: #F7F6F4;
  position: relative;
  min-height: 49px;
  z-index: 50;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: 980px;
  justify-content: space-between;
  padding: 0 60px;
}

.nav__list li {
  position: relative;
}

.nav__list li + li::before {
  content: '|';
  display: none;
  margin: 0 24px;
  font-size: 14px;
  color: rgba(111, 33, 13, 0.18);
  font-weight: 300;
  vertical-align: middle;
}

.nav__link {
  font-family: 'Ubuntu', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #6F210D;
  text-transform: lowercase;
  transition: color 0.3s;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: #6F210D;
  transition: width 0.3s;
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__link:hover {
  opacity: 1;
}

.nav__join-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  border-radius: 600px;
  background: rgba(255, 255, 255, 0.38);
  border: none;
  color: #6F210D;
  font-family: 'Ubuntu', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: lowercase;
  line-height: 1.36em;
  position: absolute;
  right: 100px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.2s ease;
}

.nav__join-btn:hover {
  background: rgba(247, 246, 244, 0.68);
  opacity: 1;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 4px;
}

.nav__hamburger span {
  width: 24px;
  height: 2px;
  background: #6F210D;
  transition: all 0.3s;
}

/* ============================================
   HOME: HERO SECTION (Logo + Join)
   ============================================ */
.hero {
  position: relative;
  height: clamp(420px, 35vw, 750px);
  display: flex;
  flex-direction: column;
  overflow: visible;
}

/* Fixed background: stays pinned while content scrolls over it */
.hero__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.hero__logo-area {
  position: relative;
  margin-top: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hero__logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__center-group {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.hero__text-overlay {
  text-align: center;
}

.hero__title {
  color: #FFFFFF;
  filter: drop-shadow(0 2px 20px rgba(0,0,0,0.3));
}

.hero__title .logo-svg {
  width: 480px;
  height: auto;
}

.logo-svg {
  display: block;
  margin: 0 auto;
}

.hero__tagline {
  color: #fff;
  font-family: 'Ubuntu', sans-serif;
  font-size: 19px;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  text-transform: lowercase;
  margin: 0;
  white-space: nowrap;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 80px;
  height: 80px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.38);
  color: #fff;
  font-family: 'Ubuntu', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: lowercase;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  line-height: 1.36em;
}

.hero__btn:hover {
  background: rgba(247, 246, 244, 0.68);
  opacity: 1;
}

.hero__btn svg {
  width: 12px;
  height: 12px;
  fill: #FFFFFF;
  vertical-align: middle;
  flex-shrink: 0;
}

.hero__scroll-indicator {
  position: absolute;
  top: 64%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 30px;
  height: 30px;
  opacity: 0.65;
}

.hero__scroll-indicator svg {
  width: 100%;
  height: 100%;
}

/* Hero sign-up overlay: hidden by default, slides in as side panel popup */

.hero__signup-overlay {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: fixed;
  top: 0;
  right: -400px;
  left: auto;
  bottom: 0;
  z-index: 200;
  width: 380px;
  max-width: 90%;
  height: 100vh;
  padding: 48px 40px 44px;
  background: rgba(111, 33, 13, 0.55);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-radius: 0;
  text-align: left;
  visibility: hidden;
  pointer-events: none;
  transition: right 0.4s ease, visibility 0s linear 0.4s;
}

.hero__signup-overlay.open {
  right: 0;
  visibility: visible;
  pointer-events: auto;
  transition: right 0.4s ease, visibility 0s linear 0s;
}

/* Close button: always visible */
.hero__signup-close {
  display: block;
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  padding: 6px;
  transition: color 0.2s;
  z-index: 201;
}

.hero__signup-close:hover {
  color: #FFFFFF;
}

/* Backdrop overlay behind the signup panel */
.signup-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.signup-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.hero__signup-heading {
  font-family: 'Ubuntu', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #F7F6F4;
  text-transform: lowercase;
  margin-bottom: 10px;
  line-height: 1.1em;
}

.hero__signup-subtitle {
  font-family: 'Ubuntu', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-transform: lowercase;
  line-height: 1.4em;
  margin-bottom: 6px;
}

.hero__signup-body {
  font-family: 'Ubuntu', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  text-transform: lowercase;
  line-height: 1.5em;
  margin-bottom: 24px;
}

.hero__signup-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero__signup-field {
  display: flex;
  flex-direction: column;
}

.hero__signup-label {
  font-family: 'Ubuntu', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 4px;
}

.hero__signup-input {
  width: 100%;
  padding: 7px 10px;
  border: 0;
  background: rgb(255, 251, 250);
  font-family: 'Ubuntu', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #6F210D;
  outline: none;
  border-radius: 0;
  height: 32px;
}

.hero__signup-submit {
  display: inline-block;
  padding: 9px 16px;
  background: #6F210D;
  color: #F7F6F4;
  font-family: 'Ubuntu', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: lowercase;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 8px;
  align-self: flex-start;
  min-width: 100px;
}

.hero__signup-submit:hover {
  background: rgba(111, 33, 13, 0.85);
}

/* ============================================
   HOME: WELCOME SECTION
   ============================================ */
.welcome {
  padding: 48px 0 48px;
  margin-top: 100px;
  background: #FFEAD2;
  text-align: left;
  position: relative;
  z-index: 1;
}

.welcome__container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.welcome__left {
  flex: 1;
}

.welcome__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  margin-left: 40px;
  margin-top: 8px;
}

.welcome__icon svg {
  width: 100%;
  height: 100%;
}

.welcome__heading {
  font-family: 'Ubuntu', 'Open Sans', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: #6F210D;
  text-transform: lowercase;
  margin-bottom: 12px;
  line-height: 1.4em;
}

.welcome__text {
  font-family: 'Ubuntu', 'Open Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  color: #6F210D;
  max-width: 560px;
  text-transform: lowercase;
}

/* ============================================
   HOME: SIGN UP + BENEFITS OVERVIEW
   Four-column row + text block below
   ============================================ */
.signup-benefits {
  padding: 58px 0 0;
  background: transparent;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.signup-benefits__columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1378px;
  margin: 0 auto;
  height: 423px;
}

.signup-benefits__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 423px;
  overflow: hidden;
  border-radius: 45px;
}

.signup-benefits__col--portrait {
  position: relative;
  order: 2;
}

.signup-benefits__col--btn {
  order: 1;
}

.signup-benefits__col--darkbtn {
  order: 3;
}

.signup-benefits__col--citrus {
  overflow: hidden;
  order: 4;
}

.signup-benefits__col--btn .coming-soon-label {
  position: absolute;
  bottom: 32%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.citrus-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.signup-benefits__text-block {
  max-width: 540px;
  margin: 0 auto;
  padding: 64px 40px 70px;
  text-align: center;
}

.btn--cream {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  background: #F7F6F4;
  color: #6F210D;
  font-family: 'Ubuntu', sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-transform: lowercase;
  border-radius: 0;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  position: absolute;
  top: 0;
  left: 0;
}

.btn--cream:hover {
  background: rgba(247, 246, 244, 0.74);
  opacity: 1;
}

.btn--cream svg {
  width: 18px;
  height: 18px;
}

.btn--dark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  background: #6F210D;
  color: #FF9900;
  font-family: 'Ubuntu', sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-transform: lowercase;
  border-radius: 0;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  position: absolute;
  top: 0;
  left: 0;
}

.btn--dark:hover {
  background: rgba(111, 33, 13, 0.8);
  opacity: 1;
}

.coming-soon-label {
  font-family: 'Ubuntu', 'Open Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #FF9900;
  text-transform: lowercase;
  text-align: center;
}

.skincare-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.benefits-overview-text {
  font-family: 'Ubuntu', 'Open Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #FF9900;
  text-transform: lowercase;
  text-align: center;
  line-height: 1;
}

/* ============================================
   HOME: OUR USERS SECTION
   ============================================ */
.users {
  padding: 76px 0 105px;
  background: #FFEAD2;
  position: relative;
  z-index: 1;
  text-align: center;
  min-height: 511px;
}

.users__heading {
  font-family: 'Ubuntu', 'Open Sans', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: #FF9900;
  text-transform: lowercase;
  margin-bottom: 50px;
}

.users__grid {
  display: flex;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.users__card {
  font-family: 'Ubuntu', 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #FF9900;
  text-transform: lowercase;
  text-align: center;
  line-height: 1;
  position: relative;
  width: 246px;
  height: 246px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* generous padding keeps text away from the overlap zone */
  padding: 40px 36px;
  flex-shrink: 0;
}

/* pull circles together so they overlap like a Venn diagram */
.users__card + .users__card {
  margin-left: -20px;
}

.users__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid #FF9900;
  background: transparent;
  z-index: 0;
  pointer-events: none;
}

/* ============================================
   HOME: THE CONCEPT SECTION
   ============================================ */
.concept {
  padding: 80px 0;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 40px;
}

/* Cream texture as full section background */
.concept__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.concept__text-area {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.concept__title-group {
  margin-bottom: 38px;
  text-align: center;
}

.concept__title-the {
  font-family: 'Ubuntu', 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #6F210D;
  text-transform: lowercase;
  display: block;
  line-height: 1.4em;
  margin-bottom: 8px;
}

.concept__title-brand {
  color: #6F210D;
  display: block;
  margin-bottom: 8px;
}

.concept__title-brand .logo-svg {
  width: 240px;
  height: auto;
  margin: 0 auto;
}

.concept__title-concept {
  font-family: 'Ubuntu', 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #6F210D;
  text-transform: lowercase;
  display: block;
  line-height: 1.4em;
}

.concept__pillars {
  display: grid;
  grid-template-columns: repeat(3, 210px);
  gap: 30px;
  justify-content: center;
}

.concept__pillar {
  text-align: center;
}

.concept__pillar-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
}

.concept__pillar-icon svg {
  width: 100%;
  height: 100%;
}

.concept__pillar-title {
  font-family: 'Ubuntu', 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #6F210D;
  text-transform: lowercase;
  line-height: 1.4em;
}

/* ============================================
   HOME: CTA / "ARE YOU WILLING TO GROW?"
   ============================================ */
.cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 60px 40px;
  background: transparent;
  min-height: 568px;
  position: relative;
  z-index: 1;
}

.cta__inner {
  display: flex;
  max-width: 920px;
  width: 100%;
}

.cta__image {
  width: 296px;
  min-width: 296px;
  height: 437px;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 25px 0 0 25px;
}

.cta__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta__content {
  background: #6F210D;
  padding: 52px 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  height: 437px;
  border-radius: 0 25px 25px 0;
}

.cta__heading {
  font-family: 'Ubuntu', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: lowercase;
  line-height: 1.1em;
  margin-bottom: 20px;
}

.cta__subheading {
  font-family: 'Ubuntu', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #F7F6F4;
  line-height: 1.2em;
  margin-bottom: 8px;
  text-transform: lowercase;
}

.cta__text {
  font-family: 'Ubuntu', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8em;
  color: #F7F6F4;
  margin-bottom: 14px;
  text-transform: lowercase;
}

.cta__text:last-of-type {
  font-size: 16px;
  line-height: 1.4em;
  margin-bottom: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 0;
  background: #fff;
  position: relative;
  z-index: 1;
  min-height: 193px;
}

.footer__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 56px 20px 36px;
}

.footer__left {
  text-align: left;
}

.footer__right {
  text-align: right;
}

.footer__brand-img {
  max-width: 160px;
  margin: 0 auto;
}

.footer__email {
  font-family: 'Ubuntu', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #6F210D;
}

.footer__email a {
  color: #6F210D;
}

.footer__email a:hover {
  color: #FF9900;
}

.footer__center {
  text-align: center;
}

.footer__brand-text {
  color: #6F210D;
  display: inline-block;
}

.footer__brand-text .logo-svg {
  width: 160px;
  height: auto;
}

.footer__follow {
  font-family: 'Ubuntu', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #6F210D;
  margin-bottom: 8px;
  text-transform: lowercase;
}

.footer__social {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer__social img {
  width: 29px;
  height: 29px;
}

.footer__social svg {
  width: 20px;
  height: 20px;
}

.footer__divider {
  display: none;
}

.footer__copy {
  display: none;
}

.footer__legal {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px 28px;
  text-align: center;
  font-family: 'Ubuntu', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: lowercase;
}

.footer__legal a {
  color: #6F210D;
  transition: color 0.2s ease;
}

.footer__legal a:hover {
  color: #FF9900;
  opacity: 1;
}

.footer__legal span {
  color: rgba(111, 33, 13, 0.3);
  margin: 0 10px;
}

@media (max-width: 480px) {
  .footer__legal {
    font-size: 11px;
    padding: 0 16px 22px;
  }

  .footer__legal span {
    margin: 0 6px;
  }
}

/* ============================================
   BENEFITS PAGE: HERO
   ============================================ */
.benefits-hero {
  position: relative;
  min-height: 125vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding: 80px 40px 60px;
}

.benefits-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.benefits-hero__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  width: 100%;
}

.benefits-hero__logo-area {
  margin-bottom: 16px;
  text-align: center;
}

.benefits-hero__logo-text {
  color: #F7F6F4;
}

.benefits-hero__logo-text .logo-svg {
  width: 360px;
  height: auto;
  margin: 0 auto;
}

.benefits-hero__tagline {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #F7F6F4;
  text-transform: lowercase;
  letter-spacing: 1px;
  line-height: 1.2em;
  margin-bottom: 60px;
}

.benefits-hero__title {
  font-family: 'Ubuntu', sans-serif;
  font-size: 25px;
  font-weight: 700;
  color: #F7F6F4;
  text-transform: lowercase;
  line-height: 1.2em;
  margin-bottom: 16px;
  text-align: left;
}

/* Benefits page: two-column layout with left text + right cards */
.benefits-hero__layout {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 60px;
  text-align: left;
  align-items: center;
}

.benefits-hero__left {
  padding-top: 0;
}

.benefits-hero__left-text {
  font-family: 'Ubuntu', sans-serif;
  font-size: 25px;
  font-weight: 700;
  color: #F7F6F4;
  text-transform: lowercase;
  line-height: 1em;
}

.benefits-hero__right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefits-hero__card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  background: transparent;
  padding: 12px 0;
  align-items: center;
  border-bottom: 1px solid rgba(247, 246, 244, 0.16);
}

.benefits-hero__card-title {
  font-family: 'Ubuntu', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #F7F6F4;
  text-transform: lowercase;
  line-height: 1em;
}

.benefits-hero__card-desc {
  font-family: 'Ubuntu', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #F7F6F4;
  text-transform: lowercase;
  line-height: 1.2em;
}

/* ============================================
   SIGN-UP PAGE: HERO
   ============================================ */
.signup-hero {
  position: relative;
  height: calc(100vh - 160px);
  min-height: 540px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.signup-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.signup-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.signup-hero__content {
  position: relative;
  z-index: 1;
  text-align: left;
  padding: 48px 48px 56px;
  max-width: 420px;
  background: rgba(238, 226, 220, 0.36);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-left: auto;
  margin-right: auto;
}

.signup-hero__title {
  font-family: 'Ubuntu', sans-serif;
  font-size: 50px;
  font-weight: 700;
  color: #F7F6F4;
  text-transform: lowercase;
  margin-bottom: 10px;
  line-height: max(0.8em, 1.15em);
  padding-top: 0;
  padding-bottom: 10px;
}

.signup-hero__subtitle {
  font-family: 'Ubuntu', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4em;
  color: rgba(255, 255, 255, 0.9);
  text-transform: lowercase;
  margin-bottom: 8px;
}

.signup-hero__body {
  font-family: 'Ubuntu', sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6em;
  color: rgba(255, 255, 255, 0.85);
  text-transform: lowercase;
  margin-bottom: 40px;
}

/* Sign-up form */
.signup-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 400px;
  margin: 0 auto;
}

.signup-form__field {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.signup-form__label {
  font-family: 'Ubuntu', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 6px;
}

.signup-form__input {
  width: 100%;
  padding: 8px 10px;
  border: 0;
  background: rgb(255, 251, 250);
  font-family: 'Ubuntu', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #6F210D;
  outline: none;
  transition: border-color 0.3s;
  border-radius: 0;
  height: 33px;
}

.signup-form__input::placeholder {
  color: rgba(111, 33, 13, 0.4);
}

.signup-form__input:focus {
  border-color: #FF9900;
}

.signup-form__input.error {
  border-color: #c0392b;
}

.signup-form__error {
  font-size: 11px;
  color: #FF9900;
  margin-top: 4px;
  min-height: 0;
}

.signup-form__error:empty {
  display: none;
}

.signup-form__submit {
  display: inline-block;
  padding: 10px 18px;
  background: #6F210D;
  color: #F7F6F4;
  font-family: 'Ubuntu', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: lowercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 16px;
  align-self: flex-start;
  min-width: 109px;
  min-height: 41px;
}

.signup-form__submit:hover {
  background: rgba(111, 33, 13, 0.8);
}

.signup-form__submit:disabled {
  background: #E2E2E2;
  color: #8F8F8F;
  cursor: not-allowed;
}

.signup-form__success {
  display: none;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.1);
  border-left: 3px solid #FF9900;
  text-align: left;
}

.signup-form__success.visible {
  display: block;
}

.signup-form__success p {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  line-height: 1.6;
  text-transform: lowercase;
}

/* ============================================
   FADE-IN ANIMATION (used with IntersectionObserver)
   Wix original has no scroll animations, so keep
   sections always visible. The JS adds a subtle
   entrance but content is never hidden.
   ============================================ */
.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}

.about-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(80, 20, 10, 0.12);
  z-index: 0;
  pointer-events: none;
}

.about-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.about-hero__content {
  position: relative;
  z-index: 1;
  padding: 60px 40px 80px;
  max-width: 980px;
  margin: 0 auto;
}

.about-hero__title {
  font-family: 'Fraunces', serif;
  font-size: 37px;
  font-weight: 300;
  color: #FFFFFF;
  margin-bottom: 24px;
}

.about-hero__body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.6em;
  max-width: 560px;
}

.about-hero__body p {
  margin-bottom: 16px;
}

.about-cta-bar {
  background: #6F210D;
  padding: 20px 40px;
}

.about-cta-bar__inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.about-cta-bar__text {
  font-family: 'Ubuntu', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #F7F6F4;
  text-transform: lowercase;
}

.about-cta-bar__text a {
  color: #F7F6F4;
  text-decoration: underline;
}

/* Reported Results section */
.about-results {
  padding: 80px 40px;
  text-align: center;
  background: #fff;
}

.about-results__title {
  font-family: 'Fraunces', serif;
  font-size: 44px;
  font-weight: 300;
  font-style: italic;
  color: #6F210D;
  margin-bottom: 30px;
}

.about-results__list {
  list-style: none;
  padding: 0;
  margin: 0 auto 60px;
  max-width: 600px;
}

.about-results__list li {
  font-family: 'Fraunces', serif;
  font-size: 27px;
  font-weight: 400;
  font-style: italic;
  color: #FF9900;
  line-height: 1.6em;
}

/* Mission / Values / Vision cards */
.about-mvv {
  padding: 60px 40px;
  background: #fff;
}

.about-mvv__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 980px;
  margin: 0 auto;
}

.about-mvv__card {
  background: #6F210D;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
}

.about-mvv__card-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 400;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.about-mvv__card-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.6em;
}

/* Wellness Tracking section */
.about-wellness {
  padding: 80px 40px;
  text-align: center;
  background: #fff;
}

.about-wellness__title {
  font-family: 'Playfair Display', serif;
  font-size: 63px;
  font-weight: 400;
  font-style: italic;
  color: #FF9900;
  margin-bottom: 20px;
}

.about-wellness__text {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #FF9900;
  line-height: 1.6em;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   SUCCESS STORIES PAGE
   ============================================ */
.results-hero {
  padding: 60px 40px 30px;
  text-align: center;
  background: linear-gradient(180deg, #FFEAD2 0%, #ffffff 60%);
}

.results-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: 63px;
  font-weight: 400;
  font-style: italic;
  color: #FF9900;
  margin-bottom: 30px;
}

.results-hero__list {
  list-style: none;
  padding: 0;
  margin: 0 auto 20px;
  max-width: 600px;
}

.results-hero__list li {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 400;
  font-style: italic;
  color: #FF9900;
  line-height: 1.6em;
}

.results-stories {
  padding: 20px 40px;
  background: #fff;
  max-width: 980px;
  margin: 0 auto;
}

.results-stories__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 20px;
}

.results-stories__header-img {
  width: 200px;
  min-width: 200px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.results-stories__header-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.results-stories__title {
  font-family: 'Playfair Display', serif;
  font-size: 35px;
  font-weight: 400;
  font-style: italic;
  color: #6F210D;
  margin-bottom: 0;
}

.results-features {
  padding: 10px 0;
  background: #fff;
}

.results-features__title {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #6F210D;
  margin-bottom: 20px;
}

.results-features__row1 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.results-features__stacked {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.results-features__card {
  background: #FFEAD2;
  border-radius: 12px;
  min-height: 180px;
  overflow: hidden;
}

.results-features__card--large {
  min-height: 240px;
}

.results-features__card--wide {
  min-height: 140px;
  margin-bottom: 20px;
}

.results-features__card--img {
  min-height: 0;
  flex: 1;
}

.results-features__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.results-cta-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 10px 40px 20px;
}

.results-cta-btn {
  display: inline-block;
  padding: 16px 48px;
  background: #6F210D;
  color: #F7F6F4;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  border-radius: 600px;
  text-align: center;
  transition: all 0.2s ease;
}

.results-cta-btn--wide {
  display: block;
  width: 100%;
  padding: 18px 48px;
}

.results-cta-btn:hover {
  background: rgba(111, 33, 13, 0.8);
  opacity: 1;
}

.results-more {
  padding: 20px 40px;
  background: #fff;
  max-width: 980px;
  margin: 0 auto;
}

.results-more__title {
  font-family: 'Playfair Display', serif;
  font-size: 35px;
  font-weight: 400;
  font-style: italic;
  color: #6F210D;
  margin-bottom: 30px;
}

.results-more__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

.results-more__card {
  background: #FFEAD2;
  border-radius: 12px;
  min-height: 150px;
  overflow: hidden;
}

.results-more__card--span2 {
  grid-column: span 2;
  min-height: 200px;
}

.results-more__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Chevron removed - not in Wix original */

/* ============================================
   MOBILE NAV ACTIVE STATE
   ============================================ */
.nav__list.active {
  display: flex !important;
}

/* ============================================
   RESPONSIVE: MEDIUM SCREENS (max 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .nav {
    padding: 5px 40px;
  }

  .nav__join-btn {
    right: 40px;
  }

  .signup-benefits__columns {
    max-width: 100%;
  }

  .cta {
    padding: 40px 20px;
  }

  .cta__inner {
    max-width: 100%;
  }

  .concept__banner-wrap {
    max-width: 100%;
  }
}

/* Hamburger open state */
.nav__hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   RESPONSIVE: TABLET (max 768px)
   ============================================ */
@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }

  /* Signup panel: same popup behavior as desktop, just slightly narrower */
  .hero__signup-overlay {
    width: 340px;
    padding: 40px 28px 44px;
  }

  /* Nav - keep links visible like Wix (no hamburger) */
  .nav {
    padding: 5px 24px;
  }

  .nav__list {
    max-width: 100%;
    justify-content: space-between;
    gap: 0;
    padding: 0 20px;
  }

  .nav__list li + li::before {
    margin: 0 12px;
  }

  .nav__link {
    font-size: 13px;
  }

  .nav__join-btn {
    display: none;
  }

  /* Hero */
  .hero {
    height: auto;
    min-height: 560px;
  }

  .hero__logo-area {
    height: 65%;
    min-height: 300px;
  }

  .hero__title .logo-svg {
    width: 280px;
  }

  .hero__center-group {
    gap: 20px;
  }

  .hero__tagline {
    font-size: 16px;
  }

  .hero__btn {
    font-size: 11px;
    width: 70px;
    height: 70px;
  }

  .hero__scroll-indicator {
    width: 26px;
    height: 26px;
    top: 72%;
    left: 50%;
  }

  /* Welcome - stays left-aligned like Wix at tablet */
  .welcome {
    padding: 40px 0;
    margin-top: 40px;
    text-align: left;
  }

  .welcome__container {
    flex-direction: row;
    align-items: flex-start;
  }

  .welcome__icon {
    margin-left: 20px;
    margin-top: 8px;
  }

  .welcome__heading {
    font-size: 28px;
  }

  .welcome__text {
    font-size: 15px;
    max-width: 100%;
  }

  /* Signup + Benefits grid: 2x2 */
  .signup-benefits {
    padding: 40px 0 0;
    min-height: auto;
  }

  .signup-benefits__columns {
    grid-template-columns: 1fr 1fr;
    height: auto;
  }

  /* Match Wix tablet/mobile: images top row, buttons bottom row */
  .signup-benefits__col--portrait {
    order: 1;
  }
  .signup-benefits__col--citrus {
    order: 2;
  }
  .signup-benefits__col--btn {
    order: 3;
  }
  .signup-benefits__col--darkbtn {
    order: 4;
  }

  .signup-benefits__col {
    height: 280px;
    min-height: 240px;
    border-radius: 20px;
  }

  .signup-benefits__text-block {
    padding: 40px 24px 50px;
    max-width: 100%;
  }

  .benefits-overview-text {
    font-size: 20px;
  }

  /* Users */
  .users {
    padding: 50px 0 70px;
    min-height: auto;
  }

  .users__heading {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .users__grid {
    max-width: 100%;
  }

  .users__card {
    width: 200px;
    height: 200px;
    font-size: 13px;
    padding: 30px 28px;
  }

  .users__card + .users__card {
    margin-left: -30px;
  }

  /* Concept */
  .concept {
    padding: 40px 0 0;
  }

  .concept__text-area {
    padding: 0 24px 30px;
  }

  .concept__banner-wrap {
    max-height: 300px;
  }

  .concept__title-brand .logo-svg {
    width: 180px;
  }

  .concept__title-the,
  .concept__title-concept {
    font-size: 14px;
  }

  .concept__pillars {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .concept__pillar-title {
    font-size: 13px;
  }

  .concept__pillar-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 10px;
  }

  /* CTA - stays horizontal on tablet like Wix */
  .cta {
    padding: 40px 20px;
    min-height: auto;
  }

  .cta__inner {
    flex-direction: row;
    max-width: 100%;
  }

  .cta__image {
    width: 240px;
    min-width: 240px;
    height: 380px;
    border-radius: 25px 0 0 25px;
  }

  .cta__content {
    padding: 36px 28px;
    height: 380px;
    border-radius: 0 25px 25px 0;
  }

  .cta__heading {
    font-size: 22px;
  }

  .cta__subheading,
  .cta__text {
    font-size: 13px;
  }

  .cta__text:last-of-type {
    font-size: 14px;
  }

  /* Benefits page */
  .benefits-hero {
    padding: 30px 20px 40px;
    min-height: auto;
  }

  .benefits-hero__logo-text .logo-svg {
    width: 220px;
  }

  .benefits-hero__tagline {
    font-size: 12px;
    margin-bottom: 24px;
  }

  .benefits-hero__layout {
    grid-template-columns: 2fr 3fr;
    gap: 30px;
  }

  .benefits-hero__left {
    padding-top: 40px;
  }

  .benefits-hero__left-text {
    font-size: 20px;
  }

  /* Sign-up page */
  .signup-hero {
    padding: 0;
    height: calc(100vh - 160px);
    min-height: 480px;
  }

  .signup-hero__content {
    padding: 36px 32px 44px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .signup-hero__title {
    font-size: 36px;
  }

  .signup-form__submit {
    align-self: flex-start;
  }

  /* Footer - stays horizontal like Wix on all viewports */
  .footer {
    min-height: 140px;
  }

  .footer__row {
    flex-direction: row;
    gap: 12px;
    text-align: left;
    padding: 40px 20px 30px;
  }

  .footer__left {
    text-align: left;
  }

  .footer__right {
    text-align: right;
  }

  .footer__social {
    justify-content: flex-end;
  }

  .footer__email {
    font-size: 12px;
  }

  .footer__brand-text .logo-svg {
    width: 130px;
  }

  .footer__follow {
    font-size: 12px;
  }

  .footer__social img {
    width: 24px;
    height: 24px;
  }

  /* About page */
  .about-hero__title {
    font-size: 28px;
  }

  .about-hero__body {
    font-size: 14px;
  }

  .about-mvv__grid {
    grid-template-columns: 1fr;
  }

  .about-results__title {
    font-size: 30px;
  }

  .about-results__list li {
    font-size: 20px;
  }

  .about-wellness__title {
    font-size: 36px;
  }

  /* Success stories */
  .results-hero__title {
    font-size: 36px;
  }

  .results-stories__header-img {
    width: 160px;
    min-width: 160px;
    height: 130px;
  }

  .results-features__row1 {
    grid-template-columns: 2fr 1fr;
  }

  .results-more__grid {
    grid-template-columns: 1fr 1fr;
  }

  .results-more__card--span2 {
    grid-column: span 1;
    min-height: 150px;
  }
}

/* ============================================
   RESPONSIVE: BENEFITS SINGLE COLUMN (max 600px)
   ============================================ */
@media (max-width: 600px) {
  .benefits-hero {
    padding: 40px 24px 60px;
  }

  .benefits-hero__logo-text .logo-svg {
    width: 280px;
  }

  .benefits-hero__tagline {
    font-size: 14px;
    margin-bottom: 32px;
    line-height: 1.5em;
  }

  .benefits-hero__layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .benefits-hero__left {
    padding-top: 0;
  }

  .benefits-hero__left-text {
    font-size: 20px;
    line-height: 1.4em;
  }

  .benefits-hero__title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .benefits-hero__right {
    gap: 0;
  }

  .benefits-hero__card {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(247, 246, 244, 0.16);
  }

  .benefits-hero__card-title {
    font-size: 16px;
    line-height: 1.3em;
  }

  .benefits-hero__card-desc {
    font-size: 14px;
    line-height: 1.5em;
  }
}

/* ============================================
   RESPONSIVE: SMALL PHONE (max 480px)
   ============================================ */
@media (max-width: 480px) {
  /* Signup panel: full-screen popup on mobile (overrides side panel) */
  .hero__signup-overlay {
    width: 100%;
    max-width: 100%;
    right: 0;
    left: 0;
    padding: 60px 32px 40px;
    align-items: center;
    text-align: left;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
  }

  .hero__signup-overlay.open {
    opacity: 1;
    transition: opacity 0.3s ease, visibility 0s linear 0s;
  }

  .hero__signup-close {
    display: block;
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 32px;
    color: rgba(255, 255, 255, 0.8);
    z-index: 201;
    background: none;
    border: none;
    cursor: pointer;
  }

  .hero__signup-heading {
    font-size: 36px;
    margin-bottom: 12px;
  }

  .hero__signup-subtitle {
    font-size: 14px;
    line-height: 1.4em;
    margin-bottom: 6px;
  }

  .hero__signup-body {
    font-size: 13px;
    line-height: 1.4em;
    margin-bottom: 24px;
  }

  .hero__signup-form {
    gap: 14px;
    width: 100%;
    max-width: 320px;
  }

  .hero__signup-input {
    height: 36px;
    font-size: 14px;
    padding: 8px 10px;
  }

  .hero__signup-submit {
    font-size: 15px;
    padding: 10px 16px;
    margin-top: 8px;
    min-width: 100px;
  }

  /* Nav: reduce letter-spacing and separator margins to prevent overflow on narrow screens */
  .nav__link {
    letter-spacing: 1px;
    font-size: 12px;
  }

  .nav__list li + li::before {
    margin: 0 8px;
  }

  .nav__list {
    padding: 0 10px;
  }

  .hero {
    height: 260px;
    min-height: auto;
  }

  .hero__logo-area {
    height: 100%;
    min-height: auto;
  }

  .hero__title .logo-svg {
    width: 220px;
  }

  .hero__center-group {
    gap: 16px;
    top: 48%;
  }

  .hero__tagline {
    font-size: 11px;
    white-space: nowrap;
  }

  .hero__btn {
    font-size: 10px;
    width: 55px;
    height: 55px;
  }

  .hero__scroll-indicator {
    width: 22px;
    height: 22px;
    top: 80%;
    left: 50%;
  }

  /* Welcome stays left-aligned on mobile like Wix */
  .welcome {
    text-align: left;
    margin-top: 40px;
  }

  .welcome__container {
    flex-direction: column;
    align-items: flex-start;
  }

  .welcome__icon {
    display: none;
  }

  .welcome__heading {
    font-size: 24px;
  }

  .welcome__text {
    font-size: 14px;
    max-width: 100%;
  }

  /* 2x2 checkerboard on phone: img/text alternating */
  .signup-benefits__columns {
    grid-template-columns: 1fr 1fr;
  }

  .signup-benefits__col--portrait { order: 1; }
  .signup-benefits__col--btn { order: 2; }
  .signup-benefits__col--darkbtn { order: 3; }
  .signup-benefits__col--citrus { order: 4; }

  .signup-benefits__col {
    height: 200px;
    border-radius: 15px;
  }

  /* Fix overlap: use normal flow for buttons on mobile */
  .signup-benefits__col--btn {
    background: #F7F6F4;
    gap: 6px;
    padding: 20px 12px;
  }

  .signup-benefits__col--btn .btn--cream {
    position: static;
    width: auto;
    height: auto;
    padding: 10px 20px;
    font-size: 16px;
  }

  .signup-benefits__col--btn .coming-soon-label {
    position: static;
    transform: none;
    font-size: 14px;
  }

  .signup-benefits__col--darkbtn {
    background: #6F210D;
  }

  .signup-benefits__col--darkbtn .btn--dark {
    position: static;
    width: auto;
    height: auto;
    padding: 10px 20px;
    font-size: 16px;
  }

  .btn--cream,
  .btn--dark {
    font-size: 18px;
  }

  .benefits-overview-text {
    font-size: 18px;
  }

  .users__heading {
    font-size: 16px;
  }

  /* Vertical Venn on mobile: circles overlap vertically */
  .users__grid {
    flex-direction: column;
    align-items: center;
    padding: 0 16px;
  }

  .users__card {
    width: 220px;
    height: 220px;
    font-size: 13px;
    padding: 36px 32px;
  }

  .users__card + .users__card {
    margin-left: 0;
    margin-top: -30px;
  }

  .concept__banner-wrap {
    max-height: 250px;
  }

  /* Keep 3-column pillars on mobile like Wix */
  .concept__pillars {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .concept__pillar-title {
    font-size: 11px;
  }

  .concept__pillar-icon {
    width: 32px;
    height: 32px;
    margin: 0 auto 8px;
  }

  /* CTA stays horizontal on phone like Wix */
  .cta {
    padding: 30px 16px;
    min-height: auto;
  }

  .cta__inner {
    flex-direction: column;
  }

  .cta__image {
    width: 100%;
    min-width: auto;
    height: 280px;
    border-radius: 25px 25px 0 0;
  }

  .cta__content {
    height: auto;
    border-radius: 0 0 25px 25px;
    padding: 32px 24px;
  }

  .cta__heading {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .cta__subheading {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .cta__text {
    font-size: 14px;
    line-height: 1.6em;
    margin-bottom: 10px;
  }

  .cta__text:last-of-type {
    font-size: 14px;
    line-height: 1.6em;
  }

  .signup-hero__title {
    font-size: 28px;
  }

  .signup-hero__content {
    max-width: 80%;
    padding: 32px 28px 40px;
    margin-left: auto;
    margin-right: auto;
  }

  .benefits-hero__card {
    grid-template-columns: 1fr;
    text-align: left;
    padding: 14px 0;
  }

  .results-stories__header {
    gap: 16px;
  }

  .results-stories__header-img {
    width: 120px;
    min-width: 120px;
    height: 100px;
  }

  .results-stories__title {
    font-size: 24px;
  }

  .results-hero__title {
    font-size: 30px;
  }

  .results-hero__list li {
    font-size: 18px;
  }

  .results-more__title {
    font-size: 24px;
  }

  .results-features__row1 {
    grid-template-columns: 2fr 1fr;
  }

  .results-more__grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Footer stays horizontal even on small phones */
  .footer__row {
    padding: 30px 16px 24px;
    gap: 8px;
  }

  .footer__email {
    font-size: 11px;
  }

  .footer__brand-text .logo-svg {
    width: 110px;
  }

  .footer__follow {
    font-size: 11px;
  }

  .footer__social img {
    width: 22px;
    height: 22px;
  }

  .footer__social {
    gap: 8px;
  }
}

/* ============================================
   CONTACT MODAL
   ============================================ */
.contact-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(111, 33, 13, 0.3);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.contact-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.contact-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.92);
  z-index: 901;
  width: 440px;
  max-width: 92vw;
  max-height: 90vh;
  overflow-y: auto;
  background: #F7F6F4;
  border-radius: 16px;
  box-shadow:
    0 24px 80px rgba(111, 33, 13, 0.2),
    0 0 0 1px rgba(111, 33, 13, 0.06);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.contact-modal__header {
  background: #6F210D;
  padding: 36px 36px 28px;
  text-align: center;
  position: relative;
  border-radius: 16px 16px 0 0;
}

.contact-modal__logo {
  color: #F7F6F4;
  display: block;
  margin: 0 0 16px;
}

.contact-modal__logo .logo-svg {
  width: 160px;
  height: auto;
}

.contact-modal__title {
  font-family: 'Ubuntu', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: rgba(247, 246, 244, 0.6);
  text-transform: lowercase;
  letter-spacing: 3px;
  margin: 0;
}

.contact-modal__accent {
  height: 3px;
  background: linear-gradient(90deg, #FF9900, #FFB84D, #FF9900);
}

.contact-modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  color: rgba(247, 246, 244, 0.45);
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  padding: 6px;
  transition: color 0.2s;
  border-radius: 50%;
}

.contact-modal__close:hover {
  color: #FFFFFF;
}

.contact-modal__body {
  padding: 32px 36px 36px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
}

.contact-form__label {
  font-family: 'Ubuntu', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: rgba(111, 33, 13, 0.55);
  text-transform: lowercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid rgba(111, 33, 13, 0.1);
  background: #FFFFFF;
  font-family: 'Ubuntu', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #6F210D;
  outline: none;
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  border-color: #FF9900;
  box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.1);
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: rgba(111, 33, 13, 0.25);
  font-weight: 300;
}

.contact-form__textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}

.contact-form__error {
  font-family: 'Ubuntu', sans-serif;
  font-size: 11px;
  color: #FF9900;
  margin-top: 4px;
  min-height: 0;
}

.contact-form__error:empty {
  display: none;
}

.contact-form__actions {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.contact-form__btn {
  padding: 12px 28px;
  font-family: 'Ubuntu', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.3px;
  border: none;
  border-radius: 600px;
  cursor: pointer;
  transition: all 0.25s ease;
  min-width: 100px;
}

.contact-form__btn--send {
  background: #6F210D;
  color: #F7F6F4;
  box-shadow: 0 2px 8px rgba(111, 33, 13, 0.2);
}

.contact-form__btn--send:hover {
  background: #8B2A11;
  box-shadow: 0 4px 16px rgba(111, 33, 13, 0.25);
  transform: translateY(-1px);
}

.contact-form__btn--send:disabled {
  background: #D4C8C3;
  color: #9E918C;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.contact-form__btn--cancel {
  background: transparent;
  color: rgba(111, 33, 13, 0.5);
  border: 1.5px solid rgba(111, 33, 13, 0.12);
}

.contact-form__btn--cancel:hover {
  color: #6F210D;
  border-color: rgba(111, 33, 13, 0.25);
  background: rgba(111, 33, 13, 0.03);
}

.contact-form__success {
  display: none;
  text-align: center;
  padding: 32px 16px;
}

.contact-form__success.visible {
  display: block;
}

.contact-form__success p {
  font-family: 'Ubuntu', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #6F210D;
  text-transform: lowercase;
  line-height: 1.7;
}

.footer__contact-link {
  font-family: 'Ubuntu', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #6F210D;
  text-transform: lowercase;
  cursor: pointer;
  transition: color 0.2s;
}

.footer__contact-link:hover {
  color: #FF9900;
  opacity: 1;
}

@media (max-width: 480px) {
  .contact-modal {
    width: 100%;
    max-width: 100vw;
    max-height: 100vh;
    border-radius: 0;
    top: 0;
    left: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .contact-modal.open {
    transform: translateY(0);
  }

  .contact-modal__header {
    border-radius: 0;
    padding: 28px 24px 22px;
  }

  .contact-modal__body {
    padding: 24px 24px 32px;
  }

  .footer__contact-link {
    font-size: 11px;
  }
}
