/* Global Estedad typography */
body,
body *,
button,
input,
select,
textarea {
  font-family: "Estedad", Tahoma, "Segoe UI", Arial, sans-serif;
}

/* Refined landing navigation */
.landing-header {
  background: rgba(255, 253, 249, 0.92);
  border-bottom-color: rgba(42, 35, 28, 0.08);
  box-shadow: 0 8px 30px rgba(48, 36, 25, 0.035);
}

.landing-nav { height: 84px; }
.landing-brand { gap: 10px; font-size: 1.42rem; letter-spacing: -0.025em; }
.landing-header .landing-brand > span { color: var(--orange); }

.landing-header .brand-logo {
  width: 58px;
  height: 58px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
}

.landing-links {
  align-items: center;
  gap: 6px;
  margin: 0 auto;
  padding: 5px;
  border: 1px solid rgba(54, 43, 32, 0.07);
  border-radius: 15px;
  background: rgba(240, 234, 225, 0.58);
}

.landing-links a {
  padding: 7px 14px;
  border-radius: 10px;
  color: #6e655c;
  font-size: 0.82rem;
  font-weight: 650;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.landing-links a::after { display: none; }
.landing-links a:hover,
.landing-links a:focus-visible { background: rgba(255, 107, 44, 0.1); color: var(--orange-dark); transform: translateY(-1px); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 43px;
  padding: 8px 20px;
  border-radius: 12px;
  background: var(--orange);
  box-shadow: 0 8px 18px rgba(255, 107, 44, 0.22);
  animation: none;
}
.nav-cta:hover { background: var(--orange-dark); }

.nav-toggle {
  display: none;
  width: 43px;
  height: 43px;
  padding: 0;
  border: 1px solid rgba(37, 31, 25, 0.12);
  border-radius: 12px;
  background: #fff;
  color: var(--orange);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.25s ease;
}

/* Oversized hero object and full-width brand signature */
.home-hero { isolation: isolate; }
.hero-side-word {
  position: absolute;
  z-index: 0;
  top: auto;
  right: -2%;
  bottom: 0;
  width: 59%;
  color: var(--orange);
  font-size: clamp(8rem, 10.5vw, 14rem);
  font-weight: 900;
  line-height: 0.78;
  letter-spacing: 0.045em;
  text-align: center;
  white-space: nowrap;
  direction: ltr;
  opacity: 0.075;
  transform: none;
  user-select: none;
  pointer-events: none;
}

.hero-inner { z-index: 2; }

.hero-copy {
  position: relative;
  isolation: isolate;
}

.hero-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -25% -18% -22% -15%;
  background: radial-gradient(ellipse at 68% 40%, rgba(255, 107, 44, 0.22) 0%, rgba(255, 126, 69, 0.13) 29%, rgba(255, 169, 123, 0.05) 49%, transparent 72%);
  filter: blur(26px);
  pointer-events: none;
}

.hero-video-stage {
  min-height: 670px;
  transform: translateX(clamp(-150px, -8vw, -85px));
}
.hero-object-video {
  width: min(218%, 1180px);
  max-width: none;
  max-height: 920px;
  animation: hero-object-float 5.5s ease-in-out infinite;
}

.hero-video-stage::after { width: 82%; height: 13%; bottom: 5%; }

@keyframes hero-object-float {
  0%, 100% { transform: translateY(0) rotate(-0.4deg); }
  50% { transform: translateY(-10px) rotate(0.5deg); }
}

.home-hero .hero-actions .button-primary {
  position: relative;
  isolation: isolate;
  animation: none;
}

.home-hero .hero-actions .button-primary::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  border: 2px solid rgba(255, 107, 44, 0.5);
  border-radius: inherit;
  pointer-events: none;
  animation: hero-subscribe-pulse 1.85s cubic-bezier(0.2, 0.75, 0.25, 1) infinite;
}

@keyframes hero-subscribe-pulse {
  0% { opacity: 0.72; transform: scale(1); }
  78%, 100% { opacity: 0; transform: scale(1.22, 1.48); }
}

/* Three-day trial: quiet editorial split with one clear action */
.gift-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(105deg, #fffaf5, #ffe7d9);
}

.gift-section::after {
  content: "";
  position: absolute;
  right: 50%;
  top: 12%;
  bottom: 12%;
  border-right: 2px dashed rgba(255, 107, 44, 0.82);
  pointer-events: none;
}

/* The old gift artwork is no longer part of this section. Keep it hidden if a
   long-running template process briefly serves the previous markup. */
.gift-section .gift-banner-art,
.gift-section .gift-banner-image { display: none !important; }

.gift-inner {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(74px, 9vw, 132px);
}

.gift-copy {
  justify-self: end;
  text-align: center;
}

.gift-copy h2 {
  font-size: clamp(2.15rem, 3.2vw, 3.25rem);
  line-height: 1.42;
}
.gift-copy h2 span { display: block; white-space: nowrap; }
.gift-copy > p { margin-inline: auto; }
.brand-accent { color: var(--orange); }
.gift-copy h2 .love-accent {
  display: inline;
  color: #ff6b2c !important;
  font-style: normal;
  -webkit-text-fill-color: #ff6b2c;
}

.gift-pricing-cta {
  display: inline-flex;
  min-height: 51px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 27px;
  padding: 11px 22px;
  border-radius: 13px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 13px 28px rgba(42, 31, 23, 0.16);
  font-size: 0.82rem;
  font-weight: 850;
  text-decoration: none;
  transition: background 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.gift-pricing-cta span { color: #ff9e72; font-size: 1.05rem; transition: transform 0.22s ease; }
.gift-pricing-cta:hover {
  background: var(--orange-dark);
  box-shadow: 0 16px 34px rgba(233, 86, 25, 0.24);
  transform: translateY(-3px);
}
.gift-pricing-cta:hover span { transform: translateX(-3px); }

.gift-section-badge {
  display: flex;
  width: max-content;
  min-width: 90px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  padding: 7px 17px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  box-shadow: 0 9px 22px rgba(255, 107, 44, 0.22);
  font-size: 0.76rem;
  font-weight: 850;
}

.trial-offer {
  position: relative;
  width: min(100%, 520px);
  justify-self: start;
  padding: clamp(28px, 4vw, 42px) 0;
  text-align: center;
}

.trial-offer > * { position: relative; z-index: 1; }
.trial-offer-head { display: flex; align-items: center; justify-content: center; }
.trial-offer-head .gift-section-badge { margin-bottom: 22px; }
.trial-offer h3 { max-width: 480px; margin: 0 auto 10px; font-size: clamp(2rem, 3.2vw, 3.15rem); font-weight: 900; line-height: 1.4; letter-spacing: -0.045em; }
.trial-description { max-width: 450px; margin: 0 auto 26px; color: #685d54; font-size: 0.88rem; line-height: 2; }

.trial-form { display: grid; gap: 8px; }
.trial-form > label { color: #564b43; font-size: 0.73rem; font-weight: 800; text-align: center; }
.trial-input-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; padding: 5px; border: 1px solid rgba(91, 64, 47, 0.14); border-radius: 16px; background: rgba(255, 255, 255, 0.84); box-shadow: 0 13px 35px rgba(95, 59, 37, 0.08); transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.trial-input-row:focus-within { border-color: rgba(255, 107, 44, 0.55); box-shadow: 0 13px 35px rgba(95, 59, 37, 0.08), 0 0 0 4px rgba(255, 107, 44, 0.08); }
.trial-input-row input { min-width: 0; padding: 12px 14px; border: 0; outline: 0; background: transparent; color: var(--ink); font-size: 0.91rem; text-align: left; }
.trial-input-row button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 9px; padding: 10px 18px; border: 0; border-radius: 11px; background: var(--ink); color: #fff; font-size: 0.76rem; font-weight: 850; cursor: pointer; transition: background 0.2s ease, transform 0.2s ease; }
.trial-input-row button:hover { background: var(--orange-dark); transform: translateX(-2px); }
.trial-input-row button:disabled { cursor: wait; opacity: 0.68; transform: none; }
.trial-form .errorlist { margin: 2px 0 0; padding: 0; color: #a94236; font-size: 0.68rem; list-style: none; }

.trial-ajax-feedback {
  display: none;
  gap: 3px;
  margin-top: 9px;
  padding: 14px 17px;
  border: 1px solid transparent;
  border-radius: 13px;
  text-align: center;
  animation: trialFeedbackIn 0.28s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.trial-ajax-feedback.is-visible { display: grid; }
.trial-ajax-feedback strong { font-size: 0.76rem; }
.trial-ajax-feedback span { font-size: 0.68rem; }
.trial-ajax-feedback.is-error { border-color: #ef9b8e; background: #ffe0dc; color: #942f22; }
.trial-ajax-feedback.is-neutral { border-color: #dbcbbd; background: #f3ebe4; color: #62564d; }
@keyframes trialFeedbackIn { from { opacity: 0; transform: translateY(-7px); } to { opacity: 1; transform: none; } }

.trial-feedback { display: grid; gap: 2px; margin: 0 0 18px; padding: 12px 15px; border-radius: 12px; font-size: 0.7rem; }
.trial-feedback strong { font-size: 0.76rem; }
.trial-feedback.is-success { background: #e7f4ec; color: #256846; }
.trial-feedback.is-error { background: #f9e9e6; color: #934438; }
.trial-feedback.is-neutral { background: #f1ece5; color: #655b52; }

.trial-success > div {
  width: min(440px, 100%);
  overflow: hidden;
  padding: 38px 34px 32px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 0, rgba(255, 185, 151, 0.3), transparent 38%),
    #fffaf6;
  box-shadow: 0 35px 110px rgba(42, 26, 18, 0.34);
  transform: translateY(18px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.trial-success.is-open > div { transform: none; }
.trial-success-close {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(81, 60, 45, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  color: var(--orange);
  font-size: 1.3rem;
  cursor: pointer;
}

.trial-success-mark {
  display: grid;
  width: 132px;
  height: 122px;
  margin: 0 auto 15px;
  place-items: center;
  background: transparent;
}

.trial-success-mark img { display: block; width: 122px; height: 122px; object-fit: contain; border-radius: 0; filter: drop-shadow(0 15px 19px rgba(179, 70, 31, 0.18)); }
.trial-success .trial-success-kicker { margin: 0 0 5px; color: var(--orange-dark); font-size: 0.72rem; font-weight: 850; }
.trial-success h2 { margin: 0; font-size: clamp(1.65rem, 5vw, 2.2rem); line-height: 1.55; }
.trial-success h2 + p { margin: 7px 0 25px; color: #766b62; font-size: 0.88rem; }
.trial-success .trial-success-action {
  position: static;
  width: 100%;
  height: auto;
  min-height: 51px;
  border: 0;
  border-radius: 13px;
  background: var(--ink);
  color: #fff;
  font-size: 0.8rem;
}

@media (max-width: 900px) {
  .gift-section::after { top: 50%; right: 8%; left: 8%; bottom: auto; border-right: 0; border-top: 2px dashed rgba(255, 107, 44, 0.82); }
  .gift-inner { grid-template-columns: 1fr; gap: 72px; }
  .gift-copy { justify-self: center; padding-bottom: 20px; }
  .trial-offer { justify-self: center; padding-top: 18px; text-align: center; }
}

@media (max-width: 520px) {
  .gift-section::after { top: 48%; }
  .gift-inner { gap: 62px; }
  .trial-offer h3 { font-size: 2.05rem; }
  .gift-copy h2 { font-size: clamp(1.9rem, 9.4vw, 2.2rem); }
  .trial-input-row { grid-template-columns: 1fr; gap: 5px; }
  .trial-input-row input { min-height: 50px; }
  .trial-input-row button { width: 100%; }
}

/* Refined subscription offer */
.active-plan-card {
  display: grid;
  min-height: 0;
  place-items: initial;
  align-content: start;
  padding: 28px 32px 22px;
  overflow: hidden;
  border: 1px solid rgba(56, 44, 34, 0.1);
  border-radius: 28px;
  background:
    radial-gradient(circle at 4% 3%, rgba(255, 107, 44, 0.13), transparent 28%),
    linear-gradient(150deg, #fff 0%, #fffdf9 72%, #fff7f0 100%);
  box-shadow: 0 22px 60px rgba(58, 42, 29, 0.1), 0 3px 10px rgba(58, 42, 29, 0.04);
}

.active-plan-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 32px;
  left: 32px;
  height: 4px;
  border-radius: 0 0 8px 8px;
  background: var(--orange);
}

.active-plan-card::after {
  content: "";
  position: absolute;
  top: -74px;
  left: -62px;
  width: 190px;
  height: 190px;
  border: 30px solid rgba(255, 107, 44, 0.055);
  border-radius: 50%;
  pointer-events: none;
}

.plan-card-cross { display: none; }

.plan-card-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(56, 44, 34, 0.09);
}

.plan-selected-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange-dark);
  font-size: 0.75rem;
  font-weight: 850;
}

.plan-selected-label i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 107, 44, 0.1);
}

.plan-daily-note { color: #8a8177; font-size: 0.68rem; font-weight: 650; }

.plan-card-offer {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 24px;
  padding: 25px 0 21px;
}

.plan-card-name,
.active-plan-price { display: grid; margin: 0; }
.plan-card-name strong { font-size: clamp(1.55rem, 2.4vw, 2.1rem); font-weight: 900; line-height: 1.35; }
.active-plan-price > div { display: flex; align-items: baseline; gap: 8px; direction: rtl; }
.active-plan-price strong { color: var(--orange); font-size: clamp(2.15rem, 3.4vw, 3.15rem); letter-spacing: -0.065em; line-height: 1.15; }
.active-plan-price span { color: var(--ink); font-size: 0.76rem; font-weight: 700; }

.plan-benefits {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0;
  padding: 16px 0 0;
  border-top: 1px solid rgba(56, 44, 34, 0.09);
  list-style: none;
}

.plan-benefits li { display: flex; align-items: center; gap: 6px; color: #645c53; font-size: 0.68rem; font-weight: 700; white-space: nowrap; }
.plan-benefits li span { display: grid; width: 19px; height: 19px; place-items: center; border-radius: 50%; background: rgba(255, 107, 44, 0.11); color: var(--orange-dark); font-size: 0.62rem; }

.pricing-selector .plan-open-form {
  position: relative;
  z-index: 2;
  display: flex;
  right: auto;
  left: auto;
  bottom: auto;
  width: 100%;
  min-height: 56px;
  margin: 20px 0 0;
  border-radius: 14px;
  background: var(--orange);
  box-shadow: 0 12px 25px rgba(255, 107, 44, 0.22);
  transform: none;
  justify-content: center;
  isolation: isolate;
}

.pricing-selector .plan-open-form::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  border: 2px solid rgba(255, 107, 44, 0.5);
  border-radius: inherit;
  pointer-events: none;
  animation: hero-subscribe-pulse 1.85s cubic-bezier(0.2, 0.75, 0.25, 1) infinite;
}

.pricing-selector .plan-open-form:hover {
  background: var(--orange-dark);
  box-shadow: 0 16px 30px rgba(255, 107, 44, 0.28);
  transform: translateY(-2px);
}

/* Purchase target and gift disclosure controls */
.purchase-for-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  margin: 22px 0 20px;
  padding: 5px;
  border: 1px solid rgba(71, 59, 48, 0.09);
  border-radius: 14px;
  background: #f2ede6;
}

.purchase-for-switch label {
  display: grid;
  min-height: 43px;
  place-items: center;
  border-radius: 10px;
  color: #746b62;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.purchase-for-switch label.is-active {
  background: #fff;
  color: var(--orange-dark);
  box-shadow: 0 5px 15px rgba(47, 36, 26, 0.08);
}

.purchase-for-switch input { position: absolute; opacity: 0; pointer-events: none; }

.gift-lead-fields {
  display: grid;
  gap: 14px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition: max-height 0.38s ease, opacity 0.25s ease, transform 0.3s ease, margin 0.3s ease;
}

.lead-modal.is-gift .gift-lead-fields {
  max-height: 410px;
  margin-top: 14px;
  overflow: visible;
  opacity: 1;
  transform: none;
}

.gift-notify-switch {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 11px;
  color: #5f594f;
  cursor: pointer;
}

.gift-notify-switch > input { position: absolute; opacity: 0; }
.gift-notify-switch > span:last-child { display: grid; }
.gift-notify-switch strong { font-size: 0.74rem; }
.gift-notify-switch small { color: #8c8379; font-size: 0.62rem; font-weight: 550; }
.switch-track { position: relative; width: 40px; height: 23px; border-radius: 20px; background: #d7d0c7; transition: background 0.2s ease; }
.switch-track i { position: absolute; top: 3px; right: 3px; width: 17px; height: 17px; border-radius: 50%; background: #fff; box-shadow: 0 2px 6px rgba(32, 30, 26, 0.18); transition: transform 0.22s ease; }
.gift-notify-switch > input:checked + .switch-track { background: var(--orange); }
.gift-notify-switch > input:checked + .switch-track i { transform: translateX(-17px); }
.gift-notify-switch > input:focus-visible + .switch-track { outline: 3px solid rgba(255, 107, 44, 0.2); outline-offset: 2px; }

.gift-sender-name {
  display: grid;
  gap: 7px;
  max-height: 0;
  overflow: hidden;
  color: #5f594f;
  font-size: 0.74rem;
  font-weight: 800;
  opacity: 0;
  transition: max-height 0.28s ease, opacity 0.2s ease;
}

.gift-sender-name.is-visible { max-height: 110px; overflow: visible; opacity: 1; }
.gift-sender-name input { width: 100%; padding: 13px 15px; border: 1px solid #d9d0c3; border-radius: 11px; outline: none; background: #fff; }
.gift-sender-name input:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255, 107, 44, 0.09); }

/* Premium lead modal */
.lead-modal-backdrop {
  background:
    radial-gradient(circle at 73% 24%, rgba(255, 107, 44, 0.17), transparent 28%),
    rgba(25, 21, 18, 0.74);
  backdrop-filter: blur(12px) saturate(0.8);
}

.lead-modal-panel {
  width: min(520px, 100%);
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 245, 0.98));
  box-shadow: 0 36px 110px rgba(25, 19, 15, 0.4), 0 0 0 1px rgba(255, 107, 44, 0.05);
}

.lead-modal-head { padding-bottom: 19px; border-bottom: 1px solid rgba(58, 45, 35, 0.09); }
.lead-modal-brand { gap: 11px; font-size: 1.08rem; }
.lead-modal-brand img {
  width: 49px;
  height: 49px;
  border: 2px solid #fff;
  background: #fff7f0;
  box-shadow: 0 7px 18px rgba(58, 43, 31, 0.12), 0 0 0 1px rgba(255, 107, 44, 0.15);
}

.lead-modal-close {
  width: 42px;
  height: 42px;
  border-color: rgba(255, 107, 44, 0.22);
  background: rgba(255, 107, 44, 0.06);
  color: var(--orange-dark);
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.lead-modal-close:hover { background: var(--orange); color: #fff; transform: rotate(5deg); }

.selected-plan-medal {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  justify-items: start;
  align-items: center;
  gap: 0 24px;
  margin: 22px 0 18px;
  padding: 23px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background:
    radial-gradient(circle at 0 0, rgba(255, 107, 44, 0.27), transparent 38%),
    linear-gradient(135deg, #26211d, #171411);
  color: #fff;
  text-align: right;
  box-shadow: 0 16px 35px rgba(31, 24, 19, 0.2);
}

.selected-plan-medal::before,
.selected-plan-medal::after { content: none; }
.selected-plan-medal > span { grid-column: 1; color: #ffb18c; font-size: 0.66rem; }
.selected-plan-medal > strong { grid-column: 1; color: #fff; font-size: 1.45rem; line-height: 1.5; }
.selected-plan-medal > div { grid-column: 2; grid-row: 1 / 3; gap: 7px; margin: 0; }
.selected-plan-medal b { color: #fff; font-size: 1.85rem; letter-spacing: -0.04em; }
.selected-plan-medal small { color: rgba(255, 255, 255, 0.64); }

.purchase-for-switch {
  margin: 0 0 20px;
  padding: 5px;
  border-color: rgba(58, 45, 35, 0.09);
  background: #eee9e2;
}

.purchase-for-switch label { min-height: 47px; }
.purchase-for-switch label > span { display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.purchase-for-switch label > span img { width: 26px; height: 26px; object-fit: contain; opacity: 0.72; transition: opacity 0.2s ease; }
.purchase-for-switch label.is-active > span img { opacity: 1; }
.purchase-for-switch label.is-active {
  background: #fff;
  color: var(--orange-dark);
  box-shadow: 0 7px 18px rgba(42, 32, 24, 0.09), inset 0 0 0 1px rgba(255, 107, 44, 0.06);
}

.lead-modal-copy { margin-top: 2px; }
.lead-modal-copy h3 { font-size: 1.52rem; letter-spacing: -0.025em; }
.lead-modal-copy p { margin: 5px 0 17px; font-size: 0.73rem; }
.lead-phone-field { gap: 8px; }
.lead-phone-field input,
.gift-sender-name input {
  min-height: 54px;
  border-color: rgba(83, 65, 50, 0.16);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: inset 0 1px 2px rgba(42, 32, 24, 0.03);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.personal-name-field { max-height: 92px; overflow: visible; opacity: 1; transition: max-height .24s ease, opacity .18s ease, margin .24s ease; }
.personal-name-field.is-hidden { max-height: 0; margin: 0; overflow: hidden; opacity: 0; pointer-events: none; }

.lead-phone-field input:hover,
.gift-sender-name input:hover { border-color: rgba(255, 107, 44, 0.35); }
.lead-phone-field input:focus,
.gift-sender-name input:focus { background: #fff; box-shadow: 0 0 0 4px rgba(255, 107, 44, 0.11); }

.lead-submit {
  min-height: 57px;
  margin-top: 18px;
  border-radius: 14px;
  background: linear-gradient(110deg, var(--orange-dark), var(--orange) 58%, #ff824d);
  box-shadow: 0 14px 30px rgba(255, 107, 44, 0.25);
}

.lead-submit:hover { box-shadow: 0 18px 36px rgba(255, 107, 44, 0.32); }
.lead-privacy { margin-top: 12px; color: #948a80; }

/* Keep pricing headline on exactly two lines on desktop */
.pricing-shell {
  grid-template-columns: minmax(480px, 1.05fr) minmax(420px, 0.95fr);
  gap: clamp(54px, 7vw, 100px);
}

.pricing-copy { max-width: 580px; }
.pricing-copy h2 { font-size: clamp(2.9rem, 4vw, 4rem); line-height: 1.35; }
.pricing-copy h2 span { display: block; white-space: nowrap; }

/* Autoplaying message showcase */
.message-showcase {
  position: relative;
  overflow: hidden;
  padding: 74px 0 110px;
  background:
    radial-gradient(circle at 23% 60%, rgba(255, 208, 181, 0.38), transparent 31%),
    #fffaf5;
}

.message-showcase-shell {
  display: grid;
  grid-template-columns: minmax(430px, 0.95fr) minmax(520px, 1.05fr);
  align-items: center;
  gap: clamp(50px, 6vw, 92px);
}

.message-showcase-copy {
  position: relative;
  z-index: 6;
  max-width: 540px;
  text-align: right;
}

.message-showcase-copy h2 {
  margin: 3px 0 0;
  font-size: clamp(2.25rem, 4.2vw, 4rem);
  font-weight: 850;
  line-height: 1.35;
  letter-spacing: -0.045em;
}

.message-showcase-copy > p:last-child {
  max-width: 490px;
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 2;
}

.message-carousel {
  position: relative;
  min-width: 0;
  width: 100%;
  margin: 0;
  pointer-events: none;
  user-select: none;
}

.message-carousel-stage {
  position: relative;
  height: clamp(540px, 48vw, 650px);
  isolation: isolate;
}

.message-slide {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: clamp(235px, 23vw, 310px);
  margin: 0;
  transform-origin: center 88%;
  will-change: transform, opacity, filter;
  transition:
    transform 1.05s cubic-bezier(0.22, 0.8, 0.25, 1),
    opacity 0.72s ease,
    filter 0.9s ease;
}

.message-slide img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 35px rgba(54, 40, 29, 0.17));
}

.message-slide[data-position="front"] {
  z-index: 4;
  opacity: 1;
  filter: none;
  transform: translate3d(-50%, 0, 0) scale(1) rotate(0deg);
}

.message-slide[data-position="right"] {
  z-index: 2;
  opacity: 0.48;
  filter: blur(1.2px) saturate(0.78);
  transform: translate3d(calc(-50% + clamp(125px, 14vw, 185px)), 52px, 0) scale(0.77) rotate(5deg);
}

.message-slide[data-position="right"] img,
.message-slide[data-position="left"] img,
.message-slide[data-position="back"] img {
  mix-blend-mode: screen;
}

.message-slide[data-position="front"] img { mix-blend-mode: normal; }

.message-slide[data-position="left"] {
  z-index: 2;
  opacity: 0.48;
  filter: blur(1.2px) saturate(0.78);
  transform: translate3d(calc(-50% - clamp(125px, 14vw, 185px)), 52px, 0) scale(0.77) rotate(-5deg);
}

.message-slide[data-position="back"] {
  z-index: 1;
  opacity: 0;
  filter: blur(5px) saturate(0.6);
  transform: translate3d(-50%, 92px, 0) scale(0.57) rotate(0deg);
}

/* FAQ */
.faq-section { scroll-margin-top: 84px; background: #fffaf5; }
.faq-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(500px, 1.28fr);
  align-items: start;
  gap: clamp(70px, 10vw, 150px);
}

.faq-intro { position: sticky; top: 125px; max-width: 390px; }
.faq-intro h2 {
  margin: 4px 0 17px;
  font-size: clamp(2.35rem, 3.6vw, 3.75rem);
  font-weight: 850;
  line-height: 1.35;
  letter-spacing: -0.04em;
}

.faq-intro > p:last-child { margin: 0; color: var(--muted); font-size: 0.91rem; line-height: 2; }
.faq-list { border-top: 1px solid rgba(255, 107, 44, 0.48); }
.faq-list details { border-bottom: 1px solid rgba(255, 107, 44, 0.48); }
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 27px 0;
  color: var(--ink);
  font-size: 1.03rem;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:focus { outline: none; }
.faq-list summary:focus-visible {
  outline: 2px solid rgba(255, 107, 44, 0.48);
  outline-offset: 7px;
  border-radius: 6px;
}
.faq-list summary span {
  position: relative;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(67, 53, 42, 0.13);
  border-radius: 50%;
  transition: background 0.25s ease, transform 0.25s ease;
}

.faq-list summary span::before,
.faq-list summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 2px;
  border-radius: 2px;
  background: var(--orange);
  transform: translate(-50%, -50%);
}

.faq-list summary span::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform 0.25s ease; }
.faq-list details[open] summary span { background: var(--orange); transform: rotate(180deg); }
.faq-list details[open] summary span::before,
.faq-list details[open] summary span::after { background: #fff; }
.faq-list details[open] summary span::after { transform: translate(-50%, -50%) rotate(0); }
.faq-list details > p {
  max-width: 650px;
  margin: -7px 0 0;
  padding: 0 0 27px 55px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 2.05;
}

/* Orange wave footer */
.landing-footer {
  position: relative;
  margin-top: 0;
  padding: 72px 0 28px !important;
  background: var(--orange);
  color: #fff;
  isolation: isolate;
}

.landing-footer::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: calc(100% - 2px);
  left: 0;
  height: 94px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100' preserveAspectRatio='none'%3E%3Cpath fill='%23ff6b2c' d='M0 72C180 110 322 4 520 36c190 31 286 83 476 41 177-39 280-84 444-48v71H0Z'/%3E%3C/svg%3E");
  background-position: center bottom;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.footer-inner {
  grid-template-columns: minmax(250px, 1.15fr) minmax(260px, 0.9fr) minmax(280px, 1fr);
  align-items: start;
  gap: clamp(34px, 6vw, 82px);
}

.footer-logo { gap: 14px; color: #fff; }
.footer-logo img {
  width: 80px;
  height: 80px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
}

.footer-logo strong { font-size: 1.7rem; }
.footer-logo small { color: rgba(255, 255, 255, 0.76); }
.footer-brand .footer-action { margin-top: 22px; }
.footer-navigation > p,
.footer-action > p { margin: 5px 0 15px; color: #fff; font-size: 0.86rem; font-weight: 800; }
.footer-inner .footer-navigation nav { display: grid; grid-template-columns: 1fr; gap: 8px; padding: 0; }
.footer-inner .footer-navigation nav a { color: rgba(255, 255, 255, 0.78); font-size: 0.77rem; transition: color 0.2s ease, transform 0.2s ease; }
.footer-inner .footer-navigation nav a:hover { color: #fff; transform: translateX(-3px); }
.footer-action > p { max-width: 310px; line-height: 1.85; }
.footer-action > a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 43px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  background: #fff8f1;
  color: var(--orange-dark);
  box-shadow: 0 9px 25px rgba(120, 42, 11, 0.16);
  font-size: 0.82rem;
  font-weight: 850;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.footer-action > a:hover {
  background: #fff;
  box-shadow: 0 13px 30px rgba(120, 42, 11, 0.22);
  transform: translateY(-3px) rotate(-1deg);
}

.footer-visual {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  display: block;
  width: auto;
  pointer-events: none;
}

.footer-visual img {
  display: block;
  width: auto;
  height: clamp(370px, 31vw, 560px);
  max-width: 42vw;
  object-fit: contain;
  filter: none;
  transform: none;
  transition: none;
}

.copyright {
  grid-column: 1 / -1;
  margin: 28px 0 0;
  padding-top: 20px;
  border-top-color: rgba(255, 255, 255, 0.23);
  color: rgba(255, 255, 255, 0.66);
}

@media (max-width: 980px) {
  .landing-links { gap: 2px; }
  .landing-links a { padding-inline: 10px; }
  .pricing-shell { grid-template-columns: minmax(380px, 1fr) minmax(380px, 1fr); gap: 38px; }
  .pricing-copy h2 { font-size: clamp(2.65rem, 4.7vw, 3.45rem); }
  .message-showcase-shell { grid-template-columns: minmax(360px, 0.9fr) minmax(430px, 1.1fr); gap: 30px; }
  .message-slide { width: clamp(225px, 25vw, 280px); }
  .faq-shell { grid-template-columns: minmax(250px, 0.75fr) minmax(430px, 1.25fr); gap: 55px; }
  .hero-object-video { width: min(205%, 980px); }
  .hero-side-word { font-size: clamp(7rem, 12.5vw, 10rem); opacity: 0.065; }
}

@media (max-width: 900px) {
  .landing-nav { height: 72px; }
  .landing-header .brand-logo { width: 49px; height: 49px; }
  .landing-brand { font-size: 1.2rem; }
  .nav-cta { min-height: 41px; padding-inline: 14px; }
  .nav-toggle { display: block; }
  .landing-actions { gap: 8px; }
  .landing-links {
    position: fixed;
    z-index: 60;
    top: 82px;
    right: 15px;
    left: 15px;
    display: grid;
    gap: 2px;
    margin: 0;
    padding: 9px;
    border-color: rgba(54, 43, 32, 0.09);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 22px 60px rgba(40, 30, 22, 0.15);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: visibility 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
  }
  .landing-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 14px;
    text-align: center;
  }
  .nav-open .landing-links { visibility: visible; opacity: 1; transform: none; }
  .nav-open .nav-toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .nav-open .nav-toggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .home-hero { min-height: auto; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding-block: 56px 28px;
    text-align: center;
  }
  .hero-copy { max-width: 680px; justify-self: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .pricing-shell { grid-template-columns: 1fr; }
  .pricing-copy { max-width: 560px; justify-self: center; text-align: center; }
  .pricing-copy > p:last-child { margin-inline: auto; }
  .pricing-selector { width: min(100%, 560px); justify-self: center; }
  .pricing-copy h2 span { white-space: normal; }
  .message-showcase { padding: 78px 0 100px; }
  .message-showcase-shell { grid-template-columns: 1fr; gap: 10px; }
  .message-showcase-copy { max-width: 560px; }
  .message-carousel-stage { height: clamp(555px, 82vw, 650px); }
  .hero-video-stage { min-height: 520px; transform: none; }
  .hero-object-video { width: min(126%, 720px); }
  .hero-side-word {
    top: auto;
    right: 4%;
    bottom: 1%;
    width: 92%;
    display: block;
    font-size: clamp(4.4rem, 17vw, 7.5rem);
    opacity: 0.06;
    transform: none;
  }
  .faq-shell { grid-template-columns: 1fr; gap: 38px; }
  .faq-intro { position: static; max-width: 530px; }
  .faq-list details > p { padding-left: 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-logo { justify-content: flex-start; }
  .copyright { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
  .home-page main { overflow-x: clip; }
  .landing-brand span { display: none; }
  .nav-cta { font-size: 0.72rem; }
  .hero-object-video { width: 100%; max-width: 100%; }
  .home-hero .hero-actions .button-primary::after,
  .pricing-selector .plan-open-form::after { animation: none; opacity: 0; }
  .pricing-copy h2 { font-size: clamp(2.25rem, 10.2vw, 3rem); }
  .message-showcase { padding-top: 68px; }
  .message-showcase-copy { width: 100%; }
  .message-showcase-copy h2 { font-size: clamp(2rem, 9.8vw, 2.75rem); }
  .message-carousel { margin-top: 14px; }
  .message-carousel-stage { height: clamp(510px, 146vw, 610px); }
  .message-slide { width: min(67vw, 280px); }
  .message-slide[data-position="right"] {
    transform: translate3d(calc(-50% + 15vw), 50px, 0) scale(0.7) rotate(5deg);
  }
  .message-slide[data-position="left"] {
    transform: translate3d(calc(-50% - 15vw), 50px, 0) scale(0.7) rotate(-5deg);
  }
  .faq-list summary { gap: 18px; padding-block: 23px; font-size: 0.93rem; }
  .faq-list summary span { flex-basis: 30px; width: 30px; height: 30px; }
  .faq-list details > p { font-size: 0.82rem; }
  .landing-footer { margin-top: 0; padding: 55px 0 calc(min(82vw, 360px) + 32px) !important; }
  .footer-inner { grid-template-columns: 1fr; text-align: right; }
  .footer-brand,
  .copyright { grid-column: auto; }
  .footer-navigation,
  .footer-visual { padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, 0.2); }
  .footer-logo { justify-content: flex-start; }
  .footer-logo img { width: 70px; height: 70px; }
  .footer-visual {
    position: absolute;
    bottom: 0;
    left: 0;
    width: auto;
    min-height: 0;
    padding: 0;
    border: 0;
  }
  .footer-visual img {
    width: auto;
    height: min(82vw, 360px);
    max-width: 92vw;
    transform: none;
  }
  .footer-inner .footer-navigation nav { grid-template-columns: 1fr; }
  .copyright { text-align: center; }
  .active-plan-card { min-height: 0; padding: 25px 22px 20px; border-radius: 24px; }
  .active-plan-card::before { right: 22px; left: 22px; }
  .plan-card-head { align-items: flex-start; }
  .plan-daily-note { max-width: 110px; text-align: left; }
  .plan-card-offer { grid-template-columns: 0.72fr 1.28fr; gap: 14px; padding-block: 25px 22px; }
  .plan-card-name strong { font-size: 1.45rem; }
  .active-plan-price strong { font-size: clamp(2rem, 9.5vw, 2.7rem); }
  .plan-benefits { grid-template-columns: 1fr; gap: 9px; padding-block: 15px; }
  .plan-benefits li { font-size: 0.7rem; }
  .pricing-selector .plan-open-form { width: 100%; min-height: 53px; }
  .lead-modal-panel { padding: 19px; border-radius: 24px; }
  .lead-modal-head { padding-bottom: 15px; }
  .lead-modal-brand img { width: 43px; height: 43px; }
  .selected-plan-medal { gap: 0 14px; margin-top: 17px; padding: 19px 18px; }
  .selected-plan-medal > strong { font-size: 1.25rem; }
  .selected-plan-medal b { font-size: 1.55rem; }
  .lead-modal-copy h3 { font-size: 1.35rem; }
}

@media (prefers-reduced-motion: reduce) {
  .landing-links,
  .nav-toggle span,
  .faq-list summary span { transition: none; }
  .nav-cta,
  .hero-object-video,
  .home-hero .hero-actions .button-primary { animation: none; }
  .home-hero .hero-actions .button-primary::after { animation: none; opacity: 0; }
  .pricing-selector .plan-open-form::after { animation: none; opacity: 0; }
  .message-slide { transition: none; }
}

/* Live announcement and feel-good ticker */
.site-announcement {
  color: #fff;
  background: var(--orange);
  border-bottom: 1px solid rgba(117, 48, 19, 0.12);
}
.site-announcement-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}
.site-announcement-inner p {
  margin: 0;
  font-size: 0.69rem;
  font-weight: 780;
  letter-spacing: -0.01em;
}
.site-announcement-inner > span {
  color: #ffd6c3;
  font-size: 0.7rem;
  animation: announcementSpark 2.2s ease-in-out infinite;
}
.site-announcement-inner > span:last-child { animation-delay: -1.1s; }
@keyframes announcementSpark { 50% { opacity: 0.45; transform: rotate(20deg) scale(0.86); } }

.hopelet-ticker {
  position: relative;
  z-index: 5;
  width: 100%;
  overflow: hidden;
  direction: ltr;
  color: #29251d;
  background: #f3ca45;
  border-block: 1px solid rgba(111, 88, 17, 0.15);
}
.hopelet-ticker::before,
.hopelet-ticker::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: clamp(28px, 5vw, 80px);
  pointer-events: none;
}
.hopelet-ticker::before { left: 0; background: linear-gradient(90deg, #f3ca45, rgba(243, 202, 69, 0)); }
.hopelet-ticker::after { right: 0; background: linear-gradient(-90deg, #f3ca45, rgba(243, 202, 69, 0)); }
.hopelet-ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  animation: hopeletTicker 58s linear infinite;
  will-change: transform;
}
.hopelet-ticker:hover .hopelet-ticker-track { animation-play-state: paused; }
.hopelet-ticker-group {
  display: flex;
  flex: none;
  align-items: center;
  gap: 30px;
  padding: 15px 15px;
}
.hopelet-ticker-group span {
  direction: rtl;
  white-space: nowrap;
  font-size: 0.75rem;
  font-weight: 780;
}
.hopelet-ticker-group i {
  color: rgba(55, 45, 18, 0.42);
  font-size: 0.68rem;
  font-style: normal;
}
@keyframes hopeletTicker { to { transform: translateX(-50%); } }

/* Discount code inside the order flow */
.discount-entry {
  margin-top: 4px;
  padding-block: 17px 15px;
  border-block: 1px dashed rgba(68, 54, 42, 0.16);
}
.discount-entry-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.discount-entry-head span,
.discount-entry-head label { color: #514a43; font-size: 0.72rem; font-weight: 820; }
.discount-entry-head small { color: #9b9288; font-size: 0.59rem; }
.discount-entry-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px; }
.discount-entry-row input {
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid #d9d0c3;
  border-radius: 11px;
  outline: none;
  color: var(--ink);
  background: #fff;
  font-family: "Vazirmatn", sans-serif !important;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.discount-entry-row input:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(255, 107, 44, 0.1); }
.discount-apply {
  padding: 9px 16px;
  border: 0;
  border-radius: 11px;
  color: #fff;
  background: var(--ink);
  font-size: 0.69rem;
  font-weight: 820;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.discount-apply:hover { background: var(--orange); transform: translateX(-2px); }
.discount-apply:disabled { cursor: wait; opacity: 0.65; transform: none; }
.discount-feedback { min-height: 20px; margin: 6px 2px 0; color: #a64235; font-size: 0.62rem; }
.discount-entry.is-valid .discount-feedback { color: #2f7b59; }
.discount-result {
  max-height: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-5px);
  transition: max-height 0.3s ease, opacity 0.2s ease, transform 0.25s ease, margin 0.25s ease;
}
.discount-entry.is-valid .discount-result {
  max-height: 50px;
  margin-top: 7px;
  opacity: 1;
  transform: none;
}
.discount-result span { color: #6c645b; font-size: 0.62rem; }
.discount-result span b { color: #2f7b59; }
.discount-result strong { color: var(--orange-dark); font-size: 0.72rem; }
.discount-result b { font-family: "Vazirmatn", sans-serif !important; }

@media (max-width: 760px) {
  .site-announcement-inner { min-height: 34px; gap: 10px; }
  .site-announcement-inner p { max-width: 84vw; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 0.61rem; }
  .hopelet-ticker-group { gap: 23px; padding-block: 12px; }
  .hopelet-ticker-group span { font-size: 0.68rem; }
}
@media (max-width: 420px) {
  .discount-entry-row { grid-template-columns: 1fr; }
  .discount-apply { min-height: 43px; }
}
@media (prefers-reduced-motion: reduce) {
  .site-announcement-inner > span { animation: none; }
  .hopelet-ticker-track { animation-play-state: paused; }
}

/* Mobile composition: branded header, fixed conversion action and contained media. */
.mobile-sticky-cta,
.mobile-info-trigger,
.mobile-contact-trigger { display: none; }

.hopelet-info-modal {
  position: fixed;
  z-index: 210;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  visibility: hidden;
  opacity: 0;
  transition: visibility .3s ease, opacity .3s ease;
}
.hopelet-info-modal.is-open { visibility: visible; opacity: 1; }
.hopelet-info-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(36, 27, 20, .58);
  backdrop-filter: blur(9px);
  cursor: pointer;
}
.hopelet-info-panel {
  position: relative;
  isolation: isolate;
  width: min(410px, 100%);
  max-height: calc(100svh - 36px);
  overflow: auto;
  padding: 28px 25px 24px;
  border: 1px solid rgba(255, 107, 44, .15);
  border-radius: 30px;
  background: linear-gradient(145deg, #fffdfa, #fff1e7);
  box-shadow: 0 34px 90px rgba(45, 31, 21, .28);
  text-align: center;
  transform: translateY(24px) scale(.97);
  transition: transform .38s cubic-bezier(.2, .8, .2, 1);
}
.hopelet-info-modal.is-open .hopelet-info-panel { transform: none; }
.hopelet-info-close {
  position: absolute;
  z-index: 3;
  top: 16px;
  left: 16px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(48, 37, 29, .11);
  border-radius: 50%;
  background: rgba(255, 255, 255, .78);
  color: #665b52;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}
.hopelet-info-art {
  position: relative;
  display: grid;
  width: 128px;
  height: 128px;
  margin: 0 auto 16px;
  place-items: center;
  border-radius: 43% 57% 50% 50%;
  background: #ffd9c7;
  transform: rotate(-3deg);
}
.hopelet-info-art::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(255, 107, 44, .42);
  border-radius: inherit;
}
.hopelet-info-art img {
  position: relative;
  z-index: 1;
  width: 112px;
  height: 112px;
  object-fit: contain;
  transform: rotate(3deg) translateY(7px);
}
.hopelet-info-kicker { margin: 0; color: var(--orange); font-size: .68rem; font-weight: 850; }
.hopelet-info-panel h2 { margin: 4px 0 10px; font-size: 1.8rem; line-height: 1.45; }
.hopelet-info-copy { margin: 0; color: #6f655c; font-size: .82rem; line-height: 2; }
.hopelet-info-copy + .hopelet-info-copy { margin-top: 9px; }
.hopelet-info-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 20px 0;
  padding-block: 13px;
  border-block: 1px solid rgba(66, 49, 37, .1);
}
.hopelet-info-facts span { color: #4f463e; font-size: .7rem; font-weight: 800; }
.hopelet-info-facts span + span { border-right: 1px solid rgba(66, 49, 37, .1); }
.hopelet-info-okay {
  width: 100%;
  min-height: 50px;
  border: 0;
  border-radius: 14px;
  background: var(--orange);
  color: #fff;
  box-shadow: 0 13px 28px rgba(255, 107, 44, .24);
  font-size: .82rem;
  font-weight: 900;
  cursor: pointer;
}

.hopelet-contact-modal {
  position: fixed;
  z-index: 210;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  visibility: hidden;
  opacity: 0;
  transition: visibility .3s ease, opacity .3s ease;
}
.hopelet-contact-modal.is-open { visibility: visible; opacity: 1; }
.hopelet-contact-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(36, 27, 20, .58);
  backdrop-filter: blur(9px);
  cursor: pointer;
}
.hopelet-contact-panel {
  position: relative;
  width: min(390px, 100%);
  max-height: calc(100svh - 36px);
  overflow: auto;
  padding: 27px 23px 23px;
  border: 1px solid rgba(255, 107, 44, .15);
  border-radius: 28px;
  background: linear-gradient(145deg, #fffdfa, #fff1e7);
  box-shadow: 0 34px 90px rgba(45, 31, 21, .28);
  text-align: center;
  transform: translateY(24px) scale(.97);
  transition: transform .38s cubic-bezier(.2, .8, .2, 1);
}
.hopelet-contact-modal.is-open .hopelet-contact-panel { transform: none; }
.hopelet-contact-close {
  position: absolute;
  top: 15px;
  left: 15px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(48, 37, 29, .11);
  border-radius: 50%;
  background: rgba(255, 255, 255, .78);
  color: #665b52;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}
.hopelet-contact-art {
  display: grid;
  width: 104px;
  height: 104px;
  margin: 0 auto 14px;
  place-items: center;
  border-radius: 50%;
  background: #ffd9c7;
}
.hopelet-contact-art img { width: 88px; height: 88px; object-fit: contain; }
.hopelet-contact-panel h2 { margin: 2px 0 5px; font-size: 1.7rem; }
.hopelet-contact-panel > p { margin: 0 0 18px; color: #74685f; font-size: .76rem; }
.hopelet-contact-list { display: grid; gap: 9px; }
.hopelet-contact-link {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 11px;
  min-height: 62px;
  padding: 9px 12px;
  border: 1px solid rgba(66, 49, 37, .1);
  border-radius: 15px;
  background: rgba(255, 255, 255, .72);
  color: #3f3731;
  text-align: right;
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
.hopelet-contact-link:hover { border-color: rgba(255, 107, 44, .32); background: #fff; transform: translateY(-2px); }
.hopelet-contact-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: #fff0e7;
  color: var(--orange);
  font-size: 1rem;
  font-style: normal;
  font-weight: 900;
}
.hopelet-contact-mark svg {
  width: 21px;
  height: 21px;
  overflow: visible;
}
.hopelet-contact-mark.is-instagram svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}
.hopelet-contact-mark.is-telegram svg {
  fill: currentColor;
  stroke: none;
}
.hopelet-contact-text { display: grid; }
.hopelet-contact-text strong { font-size: .78rem; }
.hopelet-contact-text small { color: #877b72; font-family: "Vazirmatn", sans-serif; font-size: .7rem; direction: ltr; }
.hopelet-contact-arrow { color: var(--orange); font-size: 1rem; }

@media (max-width: 680px) {
  .home-page { padding-bottom: 0; }

  .landing-nav {
    position: relative;
    height: 68px;
    justify-content: space-between;
  }
  .landing-header .landing-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--orange);
    font-size: 1.22rem;
    font-weight: 900;
  }
  .landing-header .landing-brand span { display: inline; color: var(--orange); }
  .landing-header .brand-logo { width: 44px; height: 44px; }
  .landing-actions .nav-cta { display: none; }
  .landing-actions { margin-right: auto; }
  .landing-links { top: 112px; }

  .mobile-sticky-cta {
    position: fixed;
    z-index: 45;
    right: auto;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    left: 50%;
    display: flex;
    width: min(58vw, 280px);
    min-height: 58px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    overflow: visible;
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 17px;
    background: var(--orange);
    color: #fff;
    box-shadow: 0 16px 38px rgba(129, 48, 15, .3);
    font-size: .92rem;
    font-weight: 900;
    text-decoration: none;
    isolation: isolate;
    transform: translateX(-50%);
    transition: transform .25s ease, opacity .25s ease, background .2s ease;
  }
  .mobile-info-trigger {
    position: fixed;
    z-index: 45;
    right: 14px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    display: flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 16px 38px rgba(129, 48, 15, .25);
    cursor: pointer;
    transition: transform .25s ease, opacity .25s ease, background .2s ease;
  }
  .mobile-info-trigger img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    transform: translateY(4px);
    transition: transform .25s ease;
  }
  .mobile-info-trigger:active { background: var(--orange-dark); transform: scale(.94); }
  .mobile-info-trigger:active img { transform: translateY(4px) scale(.96); }
  .mobile-contact-trigger {
    position: fixed;
    z-index: 45;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    left: 14px;
    display: flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 16px 38px rgba(129, 48, 15, .25);
    cursor: pointer;
    transition: transform .25s ease, opacity .25s ease, background .2s ease;
  }
  .mobile-contact-trigger img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    transform: translateY(2px);
    transition: transform .25s ease;
  }
  .mobile-contact-trigger:active { background: var(--orange-dark); transform: scale(.94); }
  .mobile-contact-trigger:active img { transform: translateY(2px) scale(.96); }
  .mobile-sticky-cta::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: -2px;
    border: 2px solid rgba(255, 107, 44, .48);
    border-radius: inherit;
    pointer-events: none;
    animation: mobileCtaPulse 1.8s cubic-bezier(.2, .7, .25, 1) infinite;
  }
  .mobile-sticky-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    animation: mobileCrownBeat 1.8s ease-in-out infinite;
  }
  .mobile-sticky-cta:active { background: var(--orange-dark); transform: translateX(-50%) scale(.985); }
  .modal-open .mobile-sticky-cta,
  .footer-in-view .mobile-sticky-cta {
    opacity: 0;
    transform: translate(-50%, calc(120% + env(safe-area-inset-bottom, 0px)));
    pointer-events: none;
  }
  .modal-open .mobile-info-trigger,
  .footer-in-view .mobile-info-trigger {
    opacity: 0;
    transform: translateY(calc(120% + env(safe-area-inset-bottom, 0px)));
    pointer-events: none;
  }
  .modal-open .mobile-contact-trigger,
  .footer-in-view .mobile-contact-trigger {
    opacity: 0;
    transform: translateY(calc(120% + env(safe-area-inset-bottom, 0px)));
    pointer-events: none;
  }
  @keyframes mobileCtaPulse {
    0% { opacity: .72; transform: scale(1); }
    72%, 100% { opacity: 0; transform: scale(1.11, 1.28); }
  }
  @keyframes mobileCrownBeat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-2px) scale(1.08); }
  }

  .home-hero .hero-side-word { display: none; }
  .home-hero .hero-inner {
    width: min(100% - 32px, 560px);
    min-width: 0;
    padding: 44px 0 10px;
  }
  .home-hero .hero-copy,
  .home-hero .hero-copy h1,
  .home-hero .hero-lead { text-align: center; }
  .home-hero .hero-copy { width: 100%; min-width: 0; }
  .home-hero .hero-copy h1 {
    width: 100%;
    height: auto;
    min-height: 0;
    margin-inline: auto;
    padding-inline: 2px;
    overflow: visible;
    font-size: clamp(2rem, 8.8vw, 2.7rem);
    line-height: 1.55;
    letter-spacing: -.035em;
  }
  .home-hero .hero-title-line {
    width: 100%;
    height: auto;
    min-height: 1.55em;
    white-space: normal;
  }
  .home-hero .rotating-word-wrap {
    width: auto;
    min-width: 0;
    height: 1.2em;
    margin-inline-start: .12em;
    top: 0;
    display: inline-flex;
    align-items: baseline;
    vertical-align: baseline;
  }
  .home-hero .rotating-word {
    width: auto;
    min-width: max-content;
    padding-block: 0;
    line-height: 1.2;
    white-space: nowrap;
  }
  .home-hero .hero-lead {
    width: 100%;
    max-width: 500px;
    margin: 20px auto 0;
    padding-inline: 4px;
    overflow-wrap: anywhere;
    font-size: .91rem;
    line-height: 2;
  }
  .hero-video-stage {
    width: 100%;
    min-height: 520px;
    margin: -24px 0 -24px;
    overflow: hidden;
  }
  .hero-object-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(132vw, 590px);
    max-width: none;
    min-width: 0;
    margin: 0;
    animation: none;
    transform: translate(-50%, -50%);
  }

  .home-page main section,
  .section-intro,
  .process-step,
  .gift-copy,
  .trial-offer,
  .pricing-copy,
  .message-showcase-copy,
  .faq-intro,
  .footer-inner,
  .footer-brand,
  .footer-navigation,
  .copyright { text-align: center; }
  .section-intro > p:last-child,
  .gift-copy > p,
  .pricing-copy > p:last-child,
  .message-showcase-copy > p:last-child,
  .faq-intro > p:last-child,
  .footer-action > p { margin-right: auto; margin-left: auto; }

  .process-line { gap: 48px; }
  .process-line::before { display: none; }
  .process-step { padding-bottom: 0; }
  .process-step:not(:last-child)::after {
    content: none;
  }
  .process-step h3,
  .process-step p { position: relative; z-index: 1; margin-right: auto; margin-left: auto; background: var(--surface); }
  .process-step h3 { display: table; padding: 0 12px; }

  .gift-section::after {
    top: 49%;
    right: 8%;
    left: 8%;
    border: 0;
    border-top: 1px solid rgba(255, 107, 44, .45);
  }
  .gift-copy h2 span { white-space: normal; }
  .gift-copy h2 .brand-accent {
    display: inline;
    color: var(--orange) !important;
  }

  .message-showcase { overflow-x: clip; overflow-y: visible; }
  .message-carousel,
  .message-carousel-stage { width: 100%; overflow: visible; }
  .message-carousel-stage { height: clamp(535px, 152vw, 640px); }
  .message-slide { width: min(78vw, 310px); }
  .message-slide[data-position="right"] {
    opacity: .38;
    transform: translate3d(calc(-50% + 12vw), 42px, 0) scale(.78) rotate(4deg);
  }
  .message-slide[data-position="left"] {
    opacity: .38;
    transform: translate3d(calc(-50% - 12vw), 42px, 0) scale(.78) rotate(-4deg);
  }
  .message-slide[data-position="back"] {
    opacity: 0;
    transform: translate3d(-50%, 72px, 0) scale(.64);
  }
  .message-slide[data-position="right"] img,
  .message-slide[data-position="left"] img { mix-blend-mode: normal; }

  .faq-list summary {
    position: relative;
    justify-content: center;
    padding: 23px 42px;
    text-align: center;
  }
  .faq-list summary span { position: absolute; left: 0; }
  .faq-list details > p { margin: -6px auto 0; padding: 0 18px 25px; text-align: center; }

  .landing-footer {
    margin-top: 0;
    padding: 64px 0 calc(min(120vw, 550px) + 30px + env(safe-area-inset-bottom, 0px)) !important;
    text-align: center !important;
  }
  .landing-footer::before {
    height: 62px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 430 64' preserveAspectRatio='none'%3E%3Cpath fill='%23ff6b2c' d='M0 38C64 67 112 5 179 21c67 16 91 56 157 28 39-17 66-36 94-25v40H0Z'/%3E%3C/svg%3E");
  }
  .footer-inner { display: grid; grid-template-columns: 1fr; gap: 28px; }
  .footer-logo { justify-content: center; }
  .footer-logo span { text-align: center; }
  .footer-action { display: grid; justify-items: center; }
  .footer-navigation { padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .2); }
  .footer-inner .footer-navigation nav { justify-items: center; }
  .footer-visual {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: auto;
    padding: 0;
    border: 0;
  }
  .footer-visual img { width: auto; height: min(120vw, 550px); max-width: 110vw; }
  .copyright { margin-top: 0; }
}

@media (max-width: 380px) {
  .home-hero .hero-copy h1 { font-size: 1.94rem; }
  .hero-video-stage { min-height: 480px; }
  .hero-object-video { width: 138vw; min-width: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-sticky-cta { transition: none; }
  .mobile-info-trigger,
  .mobile-contact-trigger,
  .hopelet-info-modal,
  .hopelet-info-panel,
  .hopelet-contact-modal,
  .hopelet-contact-panel { transition: none; }
  .mobile-sticky-cta::before,
  .mobile-sticky-icon { animation: none; }
}

/* Hero guide action: a quieter, tactile counterpoint to the orange CTA. */
.home-hero .hero-guide-button {
  position: relative;
  min-width: 190px;
  overflow: visible;
  border-color: transparent;
  background: rgba(255, 253, 249, .64);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9), 0 9px 25px rgba(67, 48, 33, .06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: color .24s ease, border-color .24s ease, background .24s ease, box-shadow .24s ease, transform .24s cubic-bezier(.2, .8, .2, 1);
}
#how-it-works { scroll-margin-top: 130px; }
.home-hero .hero-guide-button::before {
  display: none;
}
.home-hero .hero-guide-button > span { position: relative; z-index: 1; }
.hero-guide-trace {
  position: absolute;
  z-index: 2;
  inset: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  overflow: visible;
  pointer-events: none;
}
.hero-guide-trace rect {
  x: 1px;
  y: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  rx: 17px;
  ry: 17px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 4 8;
  stroke-dashoffset: 0;
  vector-effect: non-scaling-stroke;
  opacity: .72;
  animation: heroGuideTrace 1.5s linear infinite;
}
@keyframes heroGuideTrace { to { stroke-dashoffset: -24; } }
.home-hero .hero-guide-button:hover,
.home-hero .hero-guide-button:focus-visible {
  border-color: transparent;
  background: rgba(255, 255, 255, .88);
  color: var(--orange-dark);
  box-shadow: inset 0 1px 0 #fff, 0 14px 32px rgba(75, 50, 31, .1);
  transform: translateY(-3px);
}
.home-hero .hero-guide-button:hover::before,
.home-hero .hero-guide-button:focus-visible::before { transform: none; }
.home-hero .hero-guide-button:hover .hero-guide-trace rect,
.home-hero .hero-guide-button:focus-visible .hero-guide-trace rect { opacity: 1; }
.home-hero .hero-guide-button:active { box-shadow: inset 0 2px 5px rgba(91, 61, 38, .08); transform: translateY(0) scale(.985); }
.hero-guide-icon {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  object-fit: contain;
  filter: drop-shadow(0 4px 7px rgba(114, 70, 28, .13));
  transition: transform .32s cubic-bezier(.2, .8, .2, 1);
}
.hero-guide-button:hover .hero-guide-icon,
.hero-guide-button:focus-visible .hero-guide-icon { transform: rotate(-5deg) scale(1.08); }

/* Mobile header: two independent sticky glass islands, matching the sketch. */
@media (max-width: 680px) {
  .landing-header {
    position: sticky;
    border-bottom: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .landing-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    height: 88px;
    align-items: center;
    pointer-events: none;
  }
  .home-hero {
    margin-top: 0;
    padding-top: 88px;
  }
  .landing-header .landing-brand,
  .landing-header .landing-actions {
    pointer-events: auto;
    border: 1px solid rgba(255, 255, 255, .72);
    background: rgba(255, 252, 247, .72);
    box-shadow: 0 12px 35px rgba(72, 48, 31, .11), inset 0 1px 0 rgba(255, 255, 255, .9);
    backdrop-filter: blur(18px) saturate(145%);
    -webkit-backdrop-filter: blur(18px) saturate(145%);
  }
  .landing-header .landing-brand {
    min-height: 58px;
    padding: 5px 8px 5px 15px;
    border-radius: 19px;
    transition: transform .24s ease, box-shadow .24s ease;
  }
  .landing-header .landing-brand:active { transform: scale(.975); box-shadow: 0 7px 20px rgba(72, 48, 31, .09); }
  .landing-header .landing-brand span { padding-inline: 1px 2px; }
  .landing-header .brand-logo { width: 46px; height: 46px; }
  .landing-header .landing-actions {
    order: 2;
    width: 58px;
    height: 58px;
    margin-right: 0;
    padding: 5px;
    border-radius: 19px;
  }
  .landing-header .nav-toggle {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 14px;
    background: transparent;
    transition: color .2s ease, background .2s ease, transform .22s ease;
  }
  .landing-header .nav-toggle:hover,
  .landing-header .nav-toggle:focus-visible { background: rgba(255, 107, 44, .09); }
  .landing-header .nav-toggle:active { transform: scale(.9); }
  .landing-header .nav-toggle span { width: 20px; height: 2.5px; margin-block: 6px; }
  .landing-links {
    position: absolute;
    top: calc(100% + 7px);
    right: 0;
    left: 0;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, .72);
    background: rgba(255, 252, 247, .9);
    box-shadow: 0 20px 50px rgba(55, 38, 25, .16), inset 0 1px 0 #fff;
    backdrop-filter: blur(22px) saturate(145%);
    -webkit-backdrop-filter: blur(22px) saturate(145%);
    pointer-events: auto;
    transform: translateY(-8px) scale(.985);
    transform-origin: top center;
  }
  .nav-open .landing-links { transform: none; }
  .landing-links a { min-height: 48px; }
  .hero-actions .hero-guide-button { min-height: 58px; }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero .hero-guide-button,
  .home-hero .hero-guide-button::before,
  .hero-guide-icon,
  .landing-header .landing-brand,
  .landing-header .nav-toggle { transition: none; }
  .hero-guide-trace rect { animation: none; }
}
