/* ============================================================
   ZABANLY — Dana font (Digikala-style), self-hosted.
   Put these .woff2 files in:  public_html/assets/fonts/
   Get them from: github.com/rastikerdar/dana-font  (Releases)
   ============================================================ */
@font-face{font-family:"Dana";font-style:normal;font-weight:400;font-display:swap;src:url("/assets/fonts/Dana-Regular.woff2") format("woff2");}
@font-face{font-family:"Dana";font-style:normal;font-weight:500;font-display:swap;src:url("/assets/fonts/Dana-Medium.woff2") format("woff2");}
@font-face{font-family:"Dana";font-style:normal;font-weight:700;font-display:swap;src:url("/assets/fonts/Dana-Bold.woff2") format("woff2");}
@font-face{font-family:"Dana";font-style:normal;font-weight:800;font-display:swap;src:url("/assets/fonts/Dana-ExtraBold.woff2") format("woff2");}
@font-face{font-family:"Dana";font-style:normal;font-weight:900;font-display:swap;src:url("/assets/fonts/Dana-Black.woff2") format("woff2");}

:root {
  --orange: #ff7a3d;
  --orange-dark: #f2672f;
  --sale: #f4b09d;
  --ink: #111111;
  --muted: #6b6b6b;
  --white: #ffffff;
  --lime: #dcfb62;
  --mint: #67e5c4;
  --coral: #ff9b77;
  --yellow: #f6ff74;
  --purple: #dba2ff;
  --hover-yellow: #fdb900;
  --header-height: 72px;
  --sale-height: 50px;
  --card-width: 390px;
  --card-height: 220px;
  --row-top: 36vh;
  --card-gap: 18px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }

.sale-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 100%;
  height: var(--sale-height);
  display: grid;
  place-items: center;
  background: var(--sale);
  color: #050505;
  font-size: 20px;
  line-height: 1;
  transition: transform .42s ease, opacity .32s ease;
}
.sale-bar.is-hidden { transform: translateY(-100%); opacity: 0; }

.site-header {
  position: fixed;
  z-index: 90;
  top: var(--sale-height);
  left: 0;
  width: 100%;
  height: var(--header-height);
  color: #fff;
  transition: background .35s ease, color .35s ease, top .42s ease, box-shadow .35s ease;
}

.brand-logo{ height:50px; width:auto; display:block; }
.footer-logo .brand-logo{ height:30px; }


.site-header.is-white {
  top: 0;
  background: rgba(255,255,255,.965);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(0,0,0,.04);
  backdrop-filter: blur(14px);
}
.nav-shell {
  width: min(1440px, calc(100% - 64px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
}
.brand {
  color: var(--orange);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -.045em;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  height: 100%;
  font-size: 15px;
  font-weight: 200;
}
.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.nav-trigger {
  height: 100%;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  opacity: .96;
  transition: color .18s ease;
}
.nav-trigger:hover,
.nav-item:hover .nav-trigger,
.nav-item:focus-within .nav-trigger { color: var(--hover-yellow); }
.chevron { font-size: .88em; line-height: 1; }
.nav-dropdown {
  position: absolute;
  left: 0;
  top: calc(100% - 6px);
  z-index: 120;
  min-width: 208px;
  padding: 10px;
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 22px 50px rgba(0,0,0,.18);
  opacity: 0;
  transform: translateY(10px) scale(.98);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.dropdown-link {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 10px;
  color: #111;
  font-size: 15px;
  font-weight: 750;
  white-space: nowrap;
  transition: background .16s ease, color .16s ease, transform .16s ease;
}
.dropdown-link + .dropdown-link { margin-top: 4px; }
.dropdown-link.is-featured { background: transparent; color: #050505; }
.dropdown-link:hover,
.dropdown-link.is-featured:hover {
  background: var(--hover-yellow);
  color: #050505;
  transform: translateX(2px);
}
.nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 15px;
  font-weight: 700;
}
.header-language-group {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.header-language-group::after {
  content: "";
  position: absolute;
  left: -8px;
  right: -8px;
  top: 100%;
  height: 18px;
}
.language-button {
  border: 0;
  background: transparent;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 400;
  transition: color .16s ease;
}
.language-button:hover,
.header-language-group.is-open .language-button,
.header-language-group:hover .language-button { color: var(--hover-yellow); }
.header-language-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 16px);
  z-index: 130;
  width: 288px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 12px;
  border-radius: 14px;
  background: #fff;
  color: #111;
  box-shadow: 0 22px 50px rgba(0,0,0,.18);
  opacity: 0;
  transform: translateY(10px) scale(.98);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.header-language-group:hover .header-language-menu,
.header-language-group.is-open .header-language-menu,
.header-language-group:focus-within .header-language-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.header-language-option {
  min-height: 44px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #111;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 750;
  text-align: left;
  transition: background .16s ease, transform .16s ease;
}
.header-language-option:hover,
.header-language-option.is-featured:hover {
  background: var(--hover-yellow);
  transform: translateX(2px);
}
.header-language-option.is-featured { background: transparent; }
.flag { font-size: 20px; }
.flag-img {
  width: 23px;
  height: 16px;
  display: inline-block;
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0,0,0,.12);
}
.login-link:hover { color: var(--hover-yellow); }
.nav-cta,
.hero-cta {
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--orange);
  color: #050505;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(255, 122, 61, .25);
}
.nav-cta {
  min-width: 166px;
  height: 52px;
}
.nav-cta:hover,
.hero-cta:hover { background: var(--hover-yellow); transform: translateY(-1px); }
.mobile-menu {
  display: none;
  margin-left: auto;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.15);
  color: inherit;
  font-size: 23px;
}

.scroll-scene {
  position: relative;
  height: 320vh;
  background: #fff;
}
.sticky-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  isolation: isolate;
  background: #000;
}
.stage-white {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #fff;
  opacity: 0;
  will-change: opacity;
}
.hero-video {
  position: absolute;
  z-index: 3;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  background: #000;
  will-change: width, height, left, top, border-radius, box-shadow, opacity;
  box-shadow: none;
}
.video-darkener {
  position: absolute;
  z-index: 4;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  background: rgba(0,0,0,.54);
  will-change: opacity, width, height, left, top, border-radius;
}

.hero-copy {
  position: absolute;
  z-index: 7;
  left: 50%;
  top: 50%;
  width: min(1220px, calc(100% - 40px));
  transform: translate(-50%, -40%);
  text-align: center;
  color: #fff;
  will-change: opacity, transform;
}
.hero-title {
  margin: 0;
  font-size: clamp(56px, 7.6vw, 142px);
  line-height: .95;
  font-weight: 950;
  letter-spacing: -.07em;
  text-wrap: balance;
}
.hero-word {
  --sticker-bg: var(--lime);
  --active-color: var(--lime);
  --sticker-rotate: -4deg;
  --sticker-font: clamp(32px, 3.55vw, 72px);
  --sticker-bottom: calc(100% + 18px);
  --sticker-lift: 16px;
  position: relative;
  display: inline-block;
  padding-inline: .03em;
  color: #fff;
  text-shadow: 0 6px 0 rgba(0,0,0,.24);
  transition: color .18s ease, transform .18s ease;
  cursor: default;
  isolation: isolate;
}
.hero-word:hover {
  color: var(--active-color);
  transform: translateY(-3px);
}
.hero-word[data-color="lime"] { --sticker-bg: var(--lime); --active-color: var(--lime); --sticker-rotate: -3deg; }
.hero-word[data-color="mint"] { --sticker-bg: var(--mint); --active-color: var(--mint); --sticker-rotate: 0deg; }
.hero-word[data-color="coral"] { --sticker-bg: var(--orange); --active-color: var(--orange); --sticker-rotate: -4deg; }
.hero-word[data-color="yellow"] { --sticker-bg: var(--yellow); --active-color: var(--yellow); --sticker-rotate: -3deg; }
.hero-word[data-color="purple"] { --sticker-bg: var(--purple); --active-color: var(--purple); --sticker-rotate: 10deg; }

.hero-word::before,
.hero-word::after {
  position: absolute;
  left: var(--sticker-x, 50%);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity .18s ease,
    transform .26s cubic-bezier(.18,.9,.2,1.18);
}

.hero-word::after {
  content: attr(data-sticker);
  bottom: var(--sticker-bottom);
  transform: translateX(-50%) translateY(var(--sticker-lift)) rotate(var(--sticker-rotate)) scale(.88);
  min-width: max-content;
  background: var(--sticker-bg);
  color: #000;
  font-size: var(--sticker-font);
  line-height: .9;
  font-weight: 950;
  letter-spacing: -.075em;
  text-shadow: none;
  z-index: 24;
  filter: drop-shadow(0 7px 0 rgba(0,0,0,.18));
  transform-origin: 50% 100%;
}

.hero-word::before {
  content: "";
  bottom: calc(var(--sticker-bottom) - 34px);
  transform: translateX(-50%) translateY(var(--sticker-lift)) rotate(var(--sticker-rotate)) scale(.88);
  width: 48px;
  height: 54px;
  background: var(--sticker-bg);
  clip-path: polygon(18% 0, 100% 0, 46% 100%);
  z-index: 23;
  filter: drop-shadow(0 5px 0 rgba(0,0,0,.14));
}

/* Clean curved speech banner: Watch / Assista */
.hero-word[data-shape="arc"] {
  --sticker-font: clamp(36px, 3.85vw, 76px);
  --sticker-bottom: calc(100% + 18px);
  --sticker-rotate: -3deg;
}
.hero-word[data-shape="arc"]::after {
  padding: .20em .72em .30em;
  border-radius: 50% 50% 30% 30% / 58% 58% 34% 34%;
  clip-path: polygon(2% 28%, 14% 13%, 37% 4%, 50% 0, 63% 4%, 86% 13%, 98% 28%, 94% 77%, 62% 73%, 54% 85%, 50% 100%, 46% 85%, 38% 73%, 6% 77%);
}
.hero-word[data-shape="arc"]::before {
  width: 54px;
  height: 60px;
  bottom: calc(var(--sticker-bottom) - 35px);
  transform: translateX(-50%) translateY(var(--sticker-lift)) rotate(-3deg) scale(.88);
  clip-path: polygon(5% 0, 95% 0, 51% 100%);
  border-radius: 0 0 18px 18px;
}

/* Slanted rounded-rectangle sticker: Learn / Aprende */
.hero-word[data-shape="banner"] {
  --sticker-font: clamp(34px, 3.65vw, 74px);
  --sticker-bottom: calc(100% - 2px);
  --sticker-rotate: -4deg;
}
.hero-word[data-shape="banner"]::after {
  padding: .19em .64em .27em;
  border-radius: 32px 40px 34px 28px / 42px 34px 36px 32px;
  clip-path: polygon(6% 15%, 82% 3%, 94% 8%, 100% 50%, 94% 82%, 58% 86%, 52% 100%, 46% 87%, 8% 92%, 0 42%);
}
.hero-word[data-shape="banner"]::before {
  bottom: calc(var(--sticker-bottom) - 31px);
  width: 42px;
  height: 55px;
  transform: translateX(-42%) translateY(var(--sticker-lift)) rotate(-6deg) scale(.88);
  clip-path: polygon(8% 0, 96% 0, 50% 100%);
}

/* Soft cloud stickers: Tap / Do it again */
.hero-word[data-shape="cloud"] {
  --sticker-font: clamp(36px, 4vw, 76px);
  --sticker-bottom: calc(100% + 18px);
}
.hero-word[data-shape="cloud"]::after {
  padding: .20em .58em .24em;
  border-radius: 46% 54% 52% 48% / 62% 58% 42% 38%;
  box-shadow:
    -.42em .02em 0 .01em var(--sticker-bg),
    -.25em -.25em 0 .02em var(--sticker-bg),
    .05em -.31em 0 .04em var(--sticker-bg),
    .36em -.20em 0 .03em var(--sticker-bg),
    .48em .03em 0 .01em var(--sticker-bg);
}
.hero-word[data-shape="cloud"]::before {
  bottom: calc(var(--sticker-bottom) - 30px);
  width: 46px;
  height: 50px;
  transform: translateX(-52%) translateY(var(--sticker-lift)) rotate(8deg) scale(.88);
  clip-path: polygon(2% 0, 100% 0, 32% 100%);
  border-radius: 0 0 18px 10px;
}
.hero-word[data-color="purple"] {
  --sticker-font: clamp(42px, 4.25vw, 82px);
  --sticker-bottom: calc(100% + 26px);
  --sticker-rotate: 10deg;
}
.hero-word[data-color="purple"]::after {
  padding: .18em .48em .22em;
  letter-spacing: -.11em;
  border-radius: 52% 48% 50% 50% / 62% 62% 38% 38%;
  box-shadow:
    -.34em .02em 0 .03em var(--sticker-bg),
    -.12em -.27em 0 .05em var(--sticker-bg),
    .17em -.28em 0 .04em var(--sticker-bg),
    .39em -.02em 0 .03em var(--sticker-bg);
}
.hero-word[data-color="mint"] {
  --sticker-font: clamp(36px, 3.8vw, 74px);
  --sticker-bottom: calc(100% + 15px);
}
.hero-word[data-color="mint"]::after {
  border-radius: 34px 42px 38px 36px / 34px 40px 36px 38px;
  box-shadow:
    -.22em .01em 0 .03em var(--sticker-bg),
    .20em -.02em 0 .03em var(--sticker-bg),
    0 -.18em 0 .02em var(--sticker-bg);
}

.hero-word:hover::before,
.hero-word:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0) rotate(var(--sticker-rotate)) scale(1);
}
.hero-word[data-shape="arc"]:hover::before { transform: translateX(-50%) translateY(0) rotate(-3deg) scale(1); }
.hero-word[data-shape="banner"]:hover::before { transform: translateX(-42%) translateY(0) rotate(-6deg) scale(1); }
.hero-word[data-shape="cloud"]:hover::before { transform: translateX(-52%) translateY(0) rotate(8deg) scale(1); }

.hero-subtitle {
  margin: 30px auto 0;
  font-size: clamp(16px, 1.25vw, 22px);
  line-height: 1.42;
  font-weight: 800;
  letter-spacing: -.03em;
  text-shadow: 0 2px 12px rgba(0,0,0,.45);
}
.hero-cta {
  margin-top: 34px;
  width: 190px;
  height: 75px;
  font-size: 20px;
  transition: transform .2s ease, background .2s ease;
}

.language-strip {
  position: absolute;
  z-index: 8;
  left: 50%;
  bottom: 22px;
  width: min(1040px, calc(100vw - 130px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #fff;
  font-size: 20px;
  font-weight: 850;
  text-shadow: 0 2px 10px rgba(0,0,0,.45);
  white-space: nowrap;
  will-change: opacity, transform;
  pointer-events: auto;
}
.language-window {
  flex: 1 1 auto;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.language-window::-webkit-scrollbar { display: none; }
.language-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.8vw, 46px);
  padding: 4px 2px;
}
.language-item {
  border: 2px solid transparent;
  background: transparent;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 20px;
  font-weight: 850;
  line-height: 1;
  text-shadow: inherit;
  transition: background .16s ease, color .16s ease, border-color .16s ease, transform .16s ease;
}
.language-item .flag-img { width: 25px; height: 17px; }
.language-item:hover {
  background: var(--hover-yellow);
  color: #050505;
  border-color: rgba(0,0,0,.85);
  text-shadow: none;
  transform: translateY(-2px);
}
.language-item.is-active {
  background: rgba(255,255,255,.96);
  color: #050505;
  border-color: rgba(0,0,0,.9);
  text-shadow: none;
}
.language-arrow {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font-size: 44px;
  line-height: .7;
  cursor: pointer;
  transition: color .16s ease, transform .16s ease, opacity .16s ease;
}
.language-arrow:hover:not(:disabled) {
  color: var(--hover-yellow);
  transform: scale(1.12);
}
.language-arrow:disabled {
  opacity: .28;
  cursor: default;
}

.cards-layer {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: var(--row-top);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: var(--card-gap);
  opacity: 0;
  pointer-events: none;
  will-change: opacity, transform;
}
.movie-card,
.center-slot {
  width: var(--card-width);
  height: var(--card-height);
  flex: 0 0 var(--card-width);
  border-radius: 18px;
}
.movie-card {
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(90deg, rgba(0,0,0,.68), rgba(0,0,0,.05)), var(--image);
  background-size: cover;
  background-position: center;
  box-shadow: 0 14px 35px rgba(0,0,0,.13);
}
.movie-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.3));
}
.country-pill {
  position: absolute;
  z-index: 2;
  left: 16px;
  top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 30px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  color: #5c5c5c;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 6px 16px rgba(0,0,0,.14);
}
.country-pill .flag-img {
  width: 20px;
  height: 14px;
}
.movie-card h2 {
  position: absolute;
  z-index: 2;
  left: 22px;
  bottom: 24px;
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 2.7vw, 52px);
  line-height: .9;
  font-weight: 950;
  letter-spacing: -.055em;
  text-shadow: 0 2px 0 rgba(0,0,0,.15);
}
.edge-card { opacity: .86; }
.center-slot { background: transparent; }

.video-cover {
  position: absolute;
  z-index: 6;
  left: 50%;
  top: var(--row-top);
  width: var(--card-width);
  height: var(--card-height);
  transform: translateX(-50%);
  border-radius: 18px;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  background-size: cover;
  background-position: center;
  will-change: opacity, top, width, height;
}
.video-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.08) 60%, rgba(0,0,0,.34));
}
.video-cover h2 {
  position: absolute;
  left: 22px;
  bottom: 22px;
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 2.8vw, 54px);
  line-height: .9;
  font-weight: 950;
  letter-spacing: -.06em;
  text-shadow: 0 3px 0 rgba(0,0,0,.22);
}
.video-cover em {
  display: block;
  margin-top: 8px;
  font-family: Georgia, serif;
  font-size: .48em;
  font-weight: 700;
  letter-spacing: .01em;
}
.video-pill { left: 16px; top: 14px; }

.after-section {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 80px 24px;
  color: #777;
  background: #fff;
  font-size: 18px;
}
.after-section code {
  padding: 4px 8px;
  border-radius: 8px;
  background: #f3f3f3;
  color: #111;
}

@media (max-width: 1100px) {
  .nav-links { gap: 14px; font-size: 14px; }
  .dropdown-link { font-size: 14px; }
  .nav-actions { gap: 14px; }
  .nav-cta { min-width: 140px; }
  .movie-card h2 { font-size: 34px; }
}

@media (max-width: 860px) {
  :root { --header-height: 66px; --sale-height: 42px; }
  .sale-bar { font-size: 16px; }
  .nav-shell { width: min(100% - 28px, 760px); }
  .nav-links, .nav-actions { display: none; }
  .mobile-menu { display: inline-grid; place-items: center; }
  .site-header.is-white .mobile-menu { background: #f4f4f4; }
  .hero-copy { top: 52%; transform: translate(-50%, -50%); }
  .hero-title { font-size: clamp(52px, 16vw, 96px); }
  .hero-subtitle { width: min(520px, 92vw); }
  .hero-cta { width: 210px; height: 72px; }
  .language-strip { width: min(100% - 28px, 680px); gap: 8px; font-size: 17px; }
  .language-track { gap: 16px; }
  .language-item { font-size: 17px; padding-inline: 12px; }
  .language-arrow { flex-basis: 36px; width: 36px; height: 36px; font-size: 38px; }
  .cards-layer { gap: 14px; }
}

@media (max-width: 560px) {
  .brand { font-size: 25px; }
  .hero-title { font-size: 58px; }
  .hero-word::after { font-size: 36px; }
  .cards-layer { gap: 12px; }
  .movie-card.edge-card { display: none; }
}


/* ------------------------------------------------------------
   Continued homepage sections: text, orange, purple, and lime
------------------------------------------------------------ */
.post-hero-copy {
  min-height: 86vh;
  display: grid;
  place-items: center;
  padding: clamp(92px, 10vw, 160px) 24px clamp(96px, 12vw, 180px);
  background: #fff;
  text-align: center;
  overflow: hidden;
}
.post-copy-inner {
  width: min(980px, 94vw);
}
.post-hero-copy h2 {
  margin: 0;
  color: #050505;
  font-size: clamp(58px, 7vw, 112px);
  line-height: .92;
  font-weight: 950;
  letter-spacing: -.075em;
}
.post-hero-copy p {
  margin: 46px auto 0;
  max-width: 900px;
  color: #0b0b0b;
  font-size: clamp(18px, 1.5vw, 26px);
  line-height: 1.35;
  letter-spacing: -.035em;
}
.section-cta {
  display: inline-grid;
  place-items: center;
  width: 250px;
  height: 76px;
  margin-top: 56px;
  border-radius: 999px;
  background: var(--orange);
  color: #050505;
  font-size: 18px;
  font-weight: 950;
  box-shadow: 0 16px 32px rgba(255,122,61,.26);
  transition: transform .2s ease, background .2s ease;
}
.section-cta:hover {
  background: var(--hover-yellow);
  transform: translateY(-2px);
}
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(90px);
  transition: opacity .72s cubic-bezier(.2,.75,.2,1), transform .72s cubic-bezier(.2,.75,.2,1);
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-stack {
  position: relative;
  background: #fff;
  padding: 0 0 26vh;
  isolation: isolate;
}
.orange-scroll-panel {
  position: relative;
  min-height: 260vh;
  padding: 0 0 30vh;
}
.feature-card {
  width: min(1380px, calc(100% - 72px));
  min-height: min(780px, calc(100vh - 120px));
  margin: 0 auto;
  border-radius: clamp(34px, 4.4vw, 72px);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(320px, .92fr) minmax(430px, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 96px);
  padding: clamp(54px, 5vw, 82px) clamp(44px, 5.4vw, 86px);
  color: #050505;
  box-shadow: 0 2px 0 rgba(0,0,0,.02);
}
.feature-card-orange {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  z-index: 2;
  background: var(--orange);
}
.feature-card-purple,
.feature-card-lime {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  z-index: 4;
  margin-top: -42vh;
  min-height: min(760px, calc(100vh - 120px));
}
.feature-card-purple {
  background: #ddb0ff;
}
.feature-card-lime {
  z-index: 6;
  background: var(--lime);
}
.feature-copy {
  position: relative;
  z-index: 2;
  align-self: center;
}
.feature-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 18px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: rgba(255,255,255,.25);
  color: rgba(0,0,0,.74);
  font-size: 15px;
  font-weight: 950;
  letter-spacing: -.02em;
}
.feature-copy h2 {
  margin: 0;
  font-size: clamp(54px, 6.2vw, 100px);
  line-height: .9;
  letter-spacing: -.08em;
  font-weight: 950;
}
.feature-copy p {
  margin: 30px 0 0;
  max-width: 620px;
  color: #101010;
  font-size: clamp(18px, 1.48vw, 26px);
  line-height: 1.38;
  letter-spacing: -.04em;
  font-weight: 550;
}

.orange-visual {
  position: relative;
  min-height: 530px;
  align-self: stretch;
}
.orange-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(34px) scale(.97);
  pointer-events: none;
  transition: opacity .56s ease, transform .72s cubic-bezier(.2,.75,.2,1);
}
.orange-slide.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.visual-window {
  position: absolute;
  right: 0;
  top: 10px;
  width: min(620px, 100%);
  height: 430px;
  border-radius: 34px 0 0 0;
  overflow: hidden;
  background: #141218;
  box-shadow: 0 28px 60px rgba(0,0,0,.18);
}
.visual-window.light { background: #fff; }
.visual-window::before {
  content: "My Learning   Practice   Lessons";
  position: absolute;
  left: 24px;
  top: 22px;
  z-index: 2;
  color: rgba(255,255,255,.65);
  font-size: 12px;
  font-weight: 850;
  word-spacing: 18px;
}
.visual-window.light::before { color: rgba(0,0,0,.55); }
.visual-grid {
  position: absolute;
  inset: 70px 26px 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}
.visual-tile {
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  min-height: 110px;
  filter: saturate(.95);
}
.visual-tile:nth-child(1) { background-image: url('assets/images/card-70.jpg'); }
.visual-tile:nth-child(2) { background-image: url('assets/images/card-110.jpg'); }
.visual-tile:nth-child(3) { background-image: url('assets/images/spiderman-poster.jpg'); }
.visual-tile:nth-child(4) { background-image: url('assets/images/card-130.jpg'); }
.visual-tile:nth-child(5) { background-image: url('assets/images/card-55.jpg'); }
.visual-tile:nth-child(6) { background-image: url('assets/images/card-40.jpg'); }
.book-pages .visual-tile {
  min-height: 150px;
  background: #f3f3f3;
  display: grid;
  place-items: center;
  color: #202020;
  font-size: clamp(22px, 2vw, 36px);
  font-weight: 950;
  letter-spacing: -.08em;
  text-align: center;
}
.book-pages .visual-tile:nth-child(1) { background: #dff86b; }
.book-pages .visual-tile:nth-child(2) { background: #e8e8e8; }
.book-pages .visual-tile:nth-child(3) { background: #fff18f; }
.book-pages .visual-tile:nth-child(4) { background: #d6edff; }
.book-pages .visual-tile:nth-child(5) { background: #ff605f; color: #fff; }
.book-pages .visual-tile:nth-child(6) { background: #d9f0f6; }
.phone-card {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 4;
  width: 230px;
  min-height: 440px;
  border-radius: 32px;
  padding: 24px 22px;
  background: #fff;
  color: #111;
  box-shadow: 0 28px 60px rgba(0,0,0,.18);
}
.phone-card.dark { background: #161319; color: #fff; }
.phone-tabs {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
  font-size: 12px;
  font-weight: 900;
}
.phone-tabs span {
  opacity: .72;
}
.phone-tabs span.is-on {
  opacity: 1;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(255,255,255,.16);
}
.phone-copy {
  color: inherit;
  font-size: 15px;
  line-height: 1.52;
  font-family: Georgia, serif;
}
.genre-menu {
  position: absolute;
  left: 10px;
  bottom: 56px;
  z-index: 5;
  width: 202px;
  border-radius: 24px;
  padding: 20px 24px;
  background: #26242b;
  color: #fff;
  box-shadow: 0 28px 60px rgba(0,0,0,.2);
}
.genre-menu::before {
  content: "Genres";
  position: absolute;
  right: -12px;
  top: -54px;
  width: 116px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #26242b;
  font-size: 15px;
  font-weight: 800;
}
.genre-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 16px 0;
  font-size: 16px;
  font-weight: 750;
}
.checkbox {
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  border-radius: 5px;
  display: inline-grid;
  place-items: center;
  color: var(--orange);
  font-size: 18px;
  line-height: 1;
}
.checkbox.is-checked::before { content: "✓"; }
.movie-preview {
  position: absolute;
  right: 0;
  top: 24px;
  width: min(610px, 100%);
  height: 430px;
  border-radius: 34px 34px 0 0;
  overflow: hidden;
  background-image: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.42)), url('assets/images/card-70.jpg');
  background-size: cover;
  background-position: center;
  box-shadow: 0 28px 60px rgba(0,0,0,.18);
}
.movie-preview::after {
  content: "";
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: 36px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange) 48%, rgba(255,255,255,.65) 49%);
}
.phone-stack {
  position: absolute;
  left: 6px;
  top: 144px;
  z-index: 5;
  width: 230px;
  min-height: 420px;
  border-radius: 30px;
  background: #18151c;
  color: #fff;
  padding: 22px 18px;
  box-shadow: 0 28px 60px rgba(0,0,0,.2);
}
.phone-search {
  width: 100%;
  height: 28px;
  margin: 18px 0;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
}
.phone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.phone-poster {
  min-height: 112px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
}
.phone-poster:nth-child(1) { background-image: url('assets/images/card-55.jpg'); }
.phone-poster:nth-child(2) { background-image: url('assets/images/card-130.jpg'); }
.phone-poster:nth-child(3) { background-image: url('assets/images/card-70.jpg'); }
.phone-poster:nth-child(4) { background-image: url('assets/images/spiderman-poster.jpg'); }
.orange-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.orange-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(0,0,0,.22);
  cursor: pointer;
  transition: width .18s ease, background .18s ease;
}
.orange-dot.is-active {
  width: 34px;
  background: #050505;
}

.word-demo-card {
  align-self: stretch;
  min-height: 500px;
  display: grid;
  align-items: center;
}
.word-demo-image {
  position: relative;
  width: min(650px, 100%);
  min-height: 520px;
  margin-left: auto;
  border-radius: 42px 42px 0 42px;
  overflow: hidden;
  background-image: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.45)), var(--image);
  background-size: cover;
  background-position: center;
  box-shadow: 0 28px 60px rgba(0,0,0,.14);
}
.demo-subtitle {
  position: absolute;
  left: 54px;
  right: 54px;
  bottom: 58px;
  color: #fff;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -.055em;
  text-shadow: 0 3px 0 rgba(0,0,0,.42);
}
.learning-word {
  position: relative;
  display: inline-block;
  padding: .02em .03em;
  border-radius: 10px;
  cursor: pointer;
  transition: color .16s ease, background .16s ease, transform .16s ease;
}
.learning-word:hover,
.learning-word.is-active {
  color: #1a071f;
  background: rgba(221,176,255,.88);
  transform: translateY(-2px);
  text-shadow: none;
}
.word-tooltip {
  position: absolute;
  left: 42px;
  bottom: 170px;
  z-index: 3;
  min-width: 190px;
  min-height: 68px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 12px;
  background: #050505;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.15;
  box-shadow: 0 14px 34px rgba(0,0,0,.22);
  transition: transform .2s ease, opacity .2s ease, background .2s ease, color .2s ease;
}
.word-tooltip::after {
  content: "";
  position: absolute;
  right: -13px;
  top: 50%;
  width: 18px;
  height: 24px;
  transform: translateY(-50%);
  background: inherit;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.word-tooltip.is-meaning {
  left: auto;
  right: 70px;
  bottom: 116px;
  min-width: auto;
  min-height: 52px;
  background: #ddb0ff;
  color: #050505;
  border-radius: 14px 14px 14px 4px;
  font-size: 20px;
  text-shadow: none;
}
.word-tooltip.is-meaning::after {
  right: auto;
  left: 18px;
  top: calc(100% - 2px);
  transform: none;
  width: 28px;
  height: 18px;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.word-tooltip small {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: inherit;
  font-weight: 950;
}

.quiz-phone {
  position: relative;
  justify-self: center;
  width: min(480px, 100%);
  min-height: 610px;
  padding: 70px 56px 58px;
  border-radius: 48px 48px 0 0;
  background: #fff;
  box-shadow: 0 28px 60px rgba(0,0,0,.10);
}
.quiz-progress {
  position: absolute;
  left: 58px;
  right: 58px;
  top: 64px;
  height: 10px;
  border-radius: 999px;
  background: #f0f0f0;
  overflow: hidden;
}
.quiz-progress span {
  display: block;
  width: 60%;
  height: 100%;
  border-radius: inherit;
  background: var(--lime);
}
.quiz-word {
  margin: 92px 0 8px;
  text-align: center;
  font-size: clamp(30px, 2.7vw, 44px);
  font-weight: 950;
  letter-spacing: -.06em;
}
.quiz-word button {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: .72em;
  transform: translateY(-2px);
}
.quiz-question {
  margin: 12px 0 46px;
  text-align: center;
  font-size: 20px;
  font-weight: 650;
}
.quiz-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.quiz-option {
  min-height: 132px;
  border: 4px solid transparent;
  border-radius: 10px;
  background: var(--lime);
  color: #050505;
  font-size: 22px;
  font-weight: 950;
  cursor: pointer;
  transition: transform .14s ease, border-color .14s ease, background .14s ease;
}
.quiz-option:hover {
  transform: translateY(-3px);
  border-color: #050505;
}
.quiz-option.is-correct,
.quiz-option.is-wrong {
  display: grid;
  place-items: center;
  color: #050505;
  font-size: 44px;
}
.quiz-option.is-correct { background: #90f3a6; border-color: #050505; }
.quiz-option.is-wrong { background: #ff8888; border-color: #050505; }
.quiz-feedback {
  min-height: 28px;
  margin-top: 22px;
  text-align: center;
  font-size: 18px;
  font-weight: 900;
}

@media (max-width: 980px) {
  .feature-card {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 46px 28px;
    width: min(100% - 28px, 760px);
  }
  .feature-card-orange,
  .feature-card-purple,
  .feature-card-lime {
    top: 80px;
    min-height: auto;
  }
  .orange-scroll-panel { min-height: 230vh; }
  .orange-visual { min-height: 480px; }
  .visual-window,
  .movie-preview { width: 100%; height: 340px; }
  .phone-card,
  .phone-stack { width: 210px; min-height: 340px; }
  .word-demo-image { min-height: 440px; }
  .demo-subtitle { left: 28px; right: 28px; bottom: 44px; }
  .quiz-phone { width: min(430px, 100%); min-height: 520px; padding-inline: 32px; }
}

@media (max-width: 620px) {
  .post-hero-copy h2 { font-size: clamp(48px, 16vw, 72px); }
  .post-hero-copy p { margin-top: 28px; }
  .feature-card {
    width: calc(100% - 18px);
    border-radius: 32px;
    padding: 38px 22px;
  }
  .feature-copy h2 { font-size: clamp(46px, 14vw, 66px); }
  .feature-copy p { font-size: 17px; }
  .feature-card-purple,
  .feature-card-lime { margin-top: -32vh; }
  .orange-visual { min-height: 420px; }
  .visual-window,
  .movie-preview { height: 275px; border-radius: 28px; }
  .phone-card,
  .phone-stack {
    width: 176px;
    min-height: 300px;
    padding: 18px 16px;
  }
  .phone-copy { font-size: 12px; }
  .genre-menu { width: 176px; padding: 14px 18px; }
  .word-demo-image { min-height: 360px; border-radius: 30px 30px 0 30px; }
  .demo-subtitle { font-size: 27px; }
  .word-tooltip { left: 22px; bottom: 150px; transform: scale(.86); transform-origin: left bottom; }
  .word-tooltip.is-meaning { right: 28px; bottom: 96px; }
  .quiz-phone { min-height: 500px; padding: 56px 22px 36px; border-radius: 34px 34px 0 0; }
  .quiz-progress { left: 32px; right: 32px; top: 42px; }
  .quiz-word { margin-top: 74px; }
  .quiz-option { min-height: 104px; font-size: 19px; }
}

/* ------------------------------------------------------------
   Refinement pass: remove the blank gap and make lower panels
   softer / blob-like / cleaner.
------------------------------------------------------------ */
.scroll-scene {
  height: 280vh;
}

.carousel-copy {
  position: absolute;
  z-index: 5;
  left: 50%;
  top: calc(var(--row-top) + var(--card-height) + clamp(18px, 3.2vh, 34px));
  width: min(980px, calc(100vw - 48px));
  text-align: center;
  color: #050505;
  opacity: 0;
  transform: translate(-50%, 74px) scale(.985);
  pointer-events: none;
  will-change: opacity, transform;
}
.carousel-copy h2 {
  margin: 0;
  font-size: clamp(48px, 5.7vw, 92px);
  line-height: .92;
  font-weight: 950;
  letter-spacing: -.078em;
}
.carousel-copy p {
  margin: clamp(18px, 2.3vw, 32px) auto 0;
  max-width: 850px;
  font-size: clamp(17px, 1.35vw, 24px);
  line-height: 1.35;
  letter-spacing: -.035em;
}

.post-hero-copy {
  min-height: 54vh;
  padding: clamp(52px, 6vw, 86px) 24px clamp(58px, 8vw, 100px);
}
.post-hero-copy h2 {
  font-size: clamp(48px, 5.8vw, 88px);
}
.post-hero-copy p {
  margin-top: clamp(22px, 2.4vw, 34px);
}

.feature-stack {
  padding: 0 0 18vh;
  background:
    radial-gradient(circle at 18% 4%, rgba(221, 176, 255, .20), transparent 24%),
    radial-gradient(circle at 82% 22%, rgba(220, 251, 98, .22), transparent 26%),
    #fff;
}
.orange-scroll-panel {
  min-height: 232vh;
  padding: 0 0 18vh;
}
.feature-card {
  --panel-bg: #fff;
  position: relative;
  overflow: visible;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none;
  isolation: isolate;
}
.feature-card::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: var(--panel-bg);
  border-radius: 72px 92px 84px 64px / 78px 70px 96px 84px;
  box-shadow: 0 28px 70px rgba(0,0,0,.06);
}
.feature-card::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: clamp(210px, 20vw, 340px);
  height: clamp(72px, 7vw, 118px);
  border-radius: 999px;
  background: var(--panel-bg);
  opacity: .88;
  pointer-events: none;
}
.feature-card > * {
  position: relative;
  z-index: 2;
}
.feature-card-orange {
  --panel-bg: var(--orange);
  top: calc(var(--header-height) + 18px);
}
.feature-card-orange::before {
  border-radius: 78px 78px 108px 72px / 84px 88px 110px 88px;
}
.feature-card-orange::after {
  top: -38px;
  right: 8%;
  box-shadow:
    -115px 20px 0 -22px var(--panel-bg),
    116px 16px 0 -30px var(--panel-bg);
  transform: rotate(-2deg);
}
.feature-card-purple,
.feature-card-lime {
  top: calc(var(--header-height) + 18px);
  margin-top: -36vh;
}
.feature-card-purple {
  --panel-bg: #ddb0ff;
}
.feature-card-purple::before {
  border-radius: 98px 64px 82px 96px / 78px 106px 90px 110px;
}
.feature-card-purple::after {
  top: -42px;
  left: 7%;
  box-shadow:
    98px -7px 0 -26px var(--panel-bg),
    205px 22px 0 -38px var(--panel-bg);
  transform: rotate(1.5deg);
}
.feature-card-lime {
  --panel-bg: var(--lime);
  margin-top: -32vh;
}
.feature-card-lime::before {
  border-radius: 92px 120px 74px 92px / 96px 72px 98px 84px;
}
.feature-card-lime::after {
  top: -48px;
  right: 10%;
  box-shadow:
    -96px 17px 0 -28px var(--panel-bg),
    116px 15px 0 -34px var(--panel-bg),
    210px 36px 0 -54px var(--panel-bg);
  transform: rotate(-1.8deg);
}

.feature-copy h2 {
  letter-spacing: -.086em;
}
.feature-copy p {
  max-width: 650px;
}

.orange-visual,
.word-demo-card,
.quiz-phone {
  filter: drop-shadow(0 24px 44px rgba(0,0,0,.08));
}
.visual-window,
.movie-preview {
  border-radius: 46px 46px 10px 46px;
  box-shadow: 0 24px 54px rgba(0,0,0,.15);
}
.visual-window.light {
  border-radius: 46px 46px 10px 46px;
}
.phone-card,
.phone-stack,
.genre-menu {
  border-radius: 34px;
  box-shadow: 0 24px 54px rgba(0,0,0,.16);
}
.phone-card {
  border-radius: 38px 38px 30px 30px;
}
.genre-menu::before {
  border-radius: 999px 999px 999px 38px;
}
.word-demo-image {
  border-radius: 54px 54px 18px 72px;
  box-shadow: none;
}
.word-tooltip {
  border-radius: 18px 18px 18px 8px;
}
.word-tooltip.is-meaning {
  border-radius: 18px 18px 18px 6px;
}
.quiz-phone {
  border-radius: 58px 58px 18px 58px;
  box-shadow: none;
}
.quiz-option {
  border-radius: 22px;
}
.quiz-option:hover {
  transform: translateY(-4px) scale(1.015);
}

@media (max-width: 980px) {
  .scroll-scene { height: 270vh; }
  .carousel-copy {
    top: calc(var(--row-top) + var(--card-height) + 18px);
  }
  .carousel-copy h2 { font-size: clamp(38px, 10vw, 66px); }
  .feature-card::before { border-radius: 44px; }
  .feature-card::after { display: none; }
  .feature-card-purple,
  .feature-card-lime { margin-top: -26vh; }
}

@media (max-width: 620px) {
  .carousel-copy { width: min(92vw, 520px); }
  .carousel-copy h2 { font-size: clamp(34px, 12vw, 54px); }
  .carousel-copy p { font-size: 16px; }
  .post-hero-copy { min-height: 44vh; padding-top: 42px; }
}

/* -----------------------------------------------------------
   FINAL HOVER STICKER STYLE
   Simple asymmetric oval speech bubbles, cleaner than cloud/banner.
   Edit only this block if you want to tune the hover shapes.
----------------------------------------------------------- */
.hero-word[data-shape] {
  --sticker-bottom: calc(100% + 16px);
}

.hero-word[data-shape]::after {
  padding: .18em .68em .25em !important;
  clip-path: none !important;
  box-shadow: none !important;
  border-radius: 56% 44% 51% 49% / 58% 52% 48% 42% !important;
  min-width: max-content;
  white-space: nowrap;
  filter: drop-shadow(0 7px 0 rgba(0,0,0,.18)) !important;
}

.hero-word[data-shape]::before {
  width: 42px !important;
  height: 38px !important;
  bottom: calc(var(--sticker-bottom) - 25px) !important;
  left: var(--sticker-x, 50%) !important;
  clip-path: polygon(18% 0, 100% 0, 46% 100%) !important;
  border-radius: 34% 66% 58% 42% / 35% 42% 58% 65% !important;
  box-shadow: none !important;
  filter: drop-shadow(0 5px 0 rgba(0,0,0,.14)) !important;
}

/* Watch / Assista: wide asymmetric oval */
.hero-word[data-color="lime"] {
  --sticker-font: clamp(36px, 3.9vw, 76px) !important;
  --sticker-rotate: -3deg !important;
  --sticker-bottom: calc(100% + 18px) !important;
}
.hero-word[data-color="lime"]::after {
  border-radius: 58% 42% 50% 50% / 56% 60% 40% 44% !important;
  padding-inline: .78em !important;
}

/* Tap / Chinese: compact oval, slightly tilted */
.hero-word[data-color="purple"] {
  --sticker-font: clamp(42px, 4.25vw, 82px) !important;
  --sticker-rotate: 8deg !important;
  --sticker-bottom: calc(100% + 24px) !important;
}
.hero-word[data-color="purple"]::after {
  border-radius: 54% 46% 49% 51% / 60% 54% 46% 40% !important;
  padding: .14em .58em .22em !important;
  letter-spacing: -.08em !important;
}
.hero-word[data-color="purple"]::before {
  transform: translateX(-50%) translateY(var(--sticker-lift)) rotate(6deg) scale(.88) !important;
}

/* Learn / Aprende: asymmetric pill, not angular */
.hero-word[data-color="coral"] {
  --sticker-font: clamp(34px, 3.7vw, 74px) !important;
  --sticker-rotate: -4deg !important;
  --sticker-bottom: calc(100% + 2px) !important;
}
.hero-word[data-color="coral"]::after {
  border-radius: 52% 48% 44% 56% / 58% 48% 52% 42% !important;
  padding-inline: .72em !important;
}
.hero-word[data-color="coral"]::before {
  transform: translateX(-45%) translateY(var(--sticker-lift)) rotate(-6deg) scale(.88) !important;
}

/* Do it again / Refais-le: long soft oval */
.hero-word[data-color="mint"] {
  --sticker-font: clamp(36px, 3.85vw, 74px) !important;
  --sticker-rotate: 1deg !important;
  --sticker-bottom: calc(100% + 16px) !important;
}
.hero-word[data-color="mint"]::after {
  border-radius: 48% 52% 53% 47% / 56% 60% 40% 44% !important;
  padding-inline: .76em !important;
}

.hero-word:hover::before,
.hero-word[data-shape="arc"]:hover::before,
.hero-word[data-shape="banner"]:hover::before,
.hero-word[data-shape="cloud"]:hover::before {
  opacity: 1 !important;
  transform: translateX(-50%) translateY(0) rotate(var(--sticker-rotate)) scale(1) !important;
}
.hero-word[data-color="coral"]:hover::before {
  transform: translateX(-45%) translateY(0) rotate(-6deg) scale(1) !important;
}
.hero-word[data-color="purple"]:hover::before {
  transform: translateX(-50%) translateY(0) rotate(6deg) scale(1) !important;
}

/* -----------------------------------------------------------
   USER FIX 2026-06-22: remove duplicate intro, attach copy/button,
   and refine orange auto-changing panel.
------------------------------------------------------------ */
.carousel-copy {
  top: calc(var(--row-top) + var(--card-height) + clamp(8px, 1.5vh, 16px)) !important;
  width: min(980px, calc(100vw - 44px)) !important;
}
.carousel-copy p {
  margin: clamp(10px, 1.3vw, 18px) auto 0 !important;
  max-width: 860px;
}
.carousel-cta {
  display: inline-grid;
  place-items: center;
  width: 238px;
  height: 72px;
  margin-top: clamp(18px, 2.2vw, 28px);
  border-radius: 999px;
  background: var(--orange);
  color: #050505;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -.02em;
  box-shadow: 0 18px 36px rgba(255,122,61,.25);
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
  pointer-events: auto;
}
.carousel-cta:hover {
  background: var(--hover-yellow);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(253,185,0,.25);
}
.post-hero-copy { display: none !important; }

.feature-stack {
  padding-top: clamp(18px, 3vh, 36px) !important;
  background:
    radial-gradient(circle at 15% 8%, rgba(221, 176, 255, .18), transparent 24%),
    radial-gradient(circle at 88% 14%, rgba(220, 251, 98, .18), transparent 24%),
    #fff !important;
}
.orange-scroll-panel {
  min-height: 220vh !important;
  padding: clamp(30px, 5vh, 58px) 0 22vh !important;
}
.feature-card-orange {
  width: min(1320px, calc(100% - 72px)) !important;
  min-height: min(720px, calc(100vh - 138px)) !important;
  top: calc(var(--header-height) + 24px) !important;
  grid-template-columns: minmax(350px, .92fr) minmax(500px, 1fr) !important;
  gap: clamp(38px, 5vw, 92px) !important;
  padding: clamp(58px, 5vw, 82px) clamp(52px, 5.8vw, 92px) !important;
}
.feature-card-orange::before {
  border-radius: 72px 82px 96px 70px / 76px 82px 90px 86px !important;
  background: var(--orange) !important;
}
.feature-card-orange::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: -34px;
  right: 7.5%;
  width: clamp(210px, 19vw, 330px);
  height: clamp(72px, 7vw, 116px);
  border-radius: 64% 44% 58% 48% / 56% 70% 42% 58%;
  background: var(--orange);
  opacity: .96;
  transform: rotate(-2deg);
  box-shadow:
    -88px 20px 0 -34px var(--orange),
    94px 18px 0 -42px var(--orange);
}
.feature-card-orange .feature-copy {
  transition: opacity .34s ease, transform .46s cubic-bezier(.2,.75,.2,1), filter .34s ease;
}
.feature-card-orange.is-changing .feature-copy {
  opacity: .18;
  filter: blur(2px);
  transform: translateY(18px);
}
.feature-card-orange .feature-kicker {
  background: rgba(255,255,255,.28);
  color: rgba(0,0,0,.78);
  min-height: 38px;
  padding: 0 18px;
}
.feature-card-orange .feature-copy h2 {
  max-width: 540px;
  font-size: clamp(62px, 5.9vw, 100px);
  line-height: .92;
}
.feature-card-orange .feature-copy p {
  max-width: 640px;
  margin-top: 26px;
  font-size: clamp(19px, 1.35vw, 25px);
}
.orange-visual {
  min-height: 548px !important;
  filter: none !important;
}
.orange-slide {
  opacity: 0;
  transform: translateY(34px) scale(.975);
  filter: blur(8px);
  transition:
    opacity .72s cubic-bezier(.2,.75,.2,1),
    transform .78s cubic-bezier(.2,.75,.2,1),
    filter .72s cubic-bezier(.2,.75,.2,1) !important;
}
.orange-slide.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
.visual-window,
.movie-preview {
  right: 0 !important;
  top: 18px !important;
  width: min(620px, 100%) !important;
  height: 430px !important;
  border-radius: 34px 34px 4px 34px !important;
  box-shadow: 0 26px 58px rgba(0,0,0,.16) !important;
}
.visual-window::before {
  content: "My Learning     Practice     Lessons" !important;
  left: 26px !important;
  top: 22px !important;
  word-spacing: 18px !important;
}
.visual-grid {
  inset: 74px 28px 28px !important;
  gap: 14px !important;
}
.visual-tile {
  border-radius: 14px !important;
}
.movie-preview {
  background-image: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.48)), url('assets/images/card-70.jpg') !important;
}
.music-preview {
  background-image: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.35)), url('assets/images/card-40.jpg') !important;
}
.phone-stack,
.phone-card,
.lyrics-card {
  position: absolute;
  z-index: 5;
  left: 28px;
  top: 126px;
  width: 230px;
  min-height: 418px;
  border-radius: 32px !important;
  background: #18151c;
  color: #fff;
  padding: 22px 18px;
  box-shadow: 0 24px 54px rgba(0,0,0,.18) !important;
}
.phone-card {
  top: auto;
  bottom: 8px;
  background: #fff;
  color: #171717;
  width: 242px;
  min-height: 450px;
  padding: 24px 22px;
}
.phone-card .phone-tabs span.is-on { background: #ececec; }
.phone-stack .phone-tabs span.is-on,
.lyrics-card .phone-tabs span.is-on {
  background: rgba(255,255,255,.18);
}
.phone-copy {
  font-size: 15px;
  line-height: 1.55;
}
.genre-menu {
  left: 34px !important;
  bottom: 44px !important;
  border-radius: 30px !important;
}
.genre-menu::before {
  right: auto !important;
  left: -6px !important;
  top: -54px !important;
  border-radius: 999px !important;
}
.lyrics-card p {
  margin: 20px 0 0;
  font-size: 21px;
  line-height: 1.35;
  font-weight: 850;
  text-align: center;
  color: rgba(255,255,255,.82);
}
.artist-row {
  position: absolute;
  right: 38px;
  bottom: 78px;
  z-index: 4;
  display: flex;
  gap: 14px;
  align-items: center;
}
.artist-row span {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.88);
  color: #111;
  font-size: 9px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(0,0,0,.10);
}
.orange-progress {
  bottom: 6px !important;
  gap: 9px !important;
}
.orange-dot {
  width: 11px !important;
  height: 11px !important;
  opacity: .7;
}
.orange-dot.is-active {
  width: 34px !important;
  opacity: 1;
}

@media (max-width: 980px) {
  .feature-card-orange {
    grid-template-columns: 1fr !important;
    width: min(94vw, 760px) !important;
    min-height: auto !important;
    padding: 46px 28px 58px !important;
  }
  .orange-visual { min-height: 480px !important; }
  .feature-card-orange .feature-copy h2 { font-size: clamp(50px, 12vw, 78px); }
  .visual-window, .movie-preview { height: 360px !important; }
  .phone-stack, .phone-card, .lyrics-card { transform: scale(.88); transform-origin: left top; }
}

@media (max-width: 620px) {
  .carousel-copy { top: calc(var(--row-top) + var(--card-height) + 8px) !important; }
  .carousel-cta { width: 206px; height: 62px; font-size: 16px; }
  .feature-card-orange { width: calc(100% - 18px) !important; }
  .orange-visual { min-height: 420px !important; }
  .visual-window, .movie-preview { height: 310px !important; }
  .phone-stack, .phone-card, .lyrics-card { left: 4px; top: 112px; transform: scale(.76); }
}

/* -----------------------------------------------------------
   FINAL USER FIX: clean intro copy + image-based orange auto loop
   Uses uploaded orange-section assets and removes the extra top blob/gap.
------------------------------------------------------------ */
.carousel-copy {
  top: calc(var(--row-top) + var(--card-height) + clamp(4px, 1.1vh, 12px)) !important;
  width: min(980px, calc(100vw - 44px)) !important;
}
.carousel-copy h2 {
  margin: 0 !important;
  font-size: clamp(52px, 6.2vw, 96px) !important;
  line-height: .91 !important;
  letter-spacing: -.082em !important;
}
.carousel-copy p {
  margin: clamp(8px, 1.2vw, 16px) auto 0 !important;
  max-width: 880px !important;
  font-size: clamp(18px, 1.45vw, 25px) !important;
}
.carousel-cta {
  margin-top: clamp(12px, 1.6vw, 22px) !important;
}

.feature-stack {
  padding-top: 0 !important;
  margin-top: 0 !important;
  background:
    radial-gradient(circle at 13% 6%, rgba(221, 176, 255, .18), transparent 24%),
    radial-gradient(circle at 88% 10%, rgba(220, 251, 98, .20), transparent 25%),
    #fff !important;
}
.orange-scroll-panel {
  min-height: 185vh !important;
  padding: clamp(6px, 1vh, 14px) 0 18vh !important;
  margin-top: 0 !important;
}
.feature-card-orange {
  width: min(1320px, calc(100% - 72px)) !important;
  min-height: min(690px, calc(100vh - 128px)) !important;
  top: calc(var(--header-height) + 10px) !important;
  grid-template-columns: minmax(370px, .9fr) minmax(520px, 1fr) !important;
  gap: clamp(30px, 4vw, 72px) !important;
  padding: clamp(54px, 4.8vw, 78px) clamp(54px, 5.5vw, 90px) !important;
}
.feature-card-orange::before {
  border-radius: 58px 82px 74px 64px / 62px 58px 86px 78px !important;
  background: var(--orange) !important;
  box-shadow: none !important;
}
.feature-card-orange::after {
  display: none !important;
  content: none !important;
}
.feature-card-orange .feature-copy {
  align-self: center !important;
  transform-origin: left center;
  transition: opacity .42s ease, transform .54s cubic-bezier(.19,1,.22,1), filter .42s ease !important;
}
.feature-card-orange.is-changing .feature-copy {
  opacity: 0 !important;
  filter: blur(5px) !important;
  transform: translateY(24px) scale(.985) !important;
}
.feature-card-orange .feature-kicker {
  min-height: 38px !important;
  padding: 0 18px !important;
  margin-bottom: 28px !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,.26) !important;
  color: rgba(0,0,0,.76) !important;
  font-size: 15px !important;
}
.feature-card-orange .feature-copy h2 {
  max-width: 600px !important;
  font-size: clamp(62px, 5.9vw, 98px) !important;
  line-height: .91 !important;
  letter-spacing: -.086em !important;
}
.feature-card-orange .feature-copy p {
  max-width: 620px !important;
  margin-top: clamp(20px, 2vw, 28px) !important;
  font-size: clamp(19px, 1.32vw, 24px) !important;
  line-height: 1.32 !important;
  letter-spacing: -.035em !important;
}

.orange-visual {
  position: relative !important;
  min-height: 540px !important;
  align-self: center !important;
  overflow: visible !important;
  filter: none !important;
}
.orange-slide {
  position: absolute !important;
  inset: 0 !important;
  opacity: 0;
  transform: translateY(26px) scale(.965);
  filter: blur(10px);
  pointer-events: none;
  transition:
    opacity .78s cubic-bezier(.19,1,.22,1),
    transform .88s cubic-bezier(.19,1,.22,1),
    filter .78s cubic-bezier(.19,1,.22,1) !important;
}
.orange-slide.is-active {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
  filter: blur(0) !important;
  pointer-events: auto !important;
}
.orange-shot {
  position: absolute;
  display: block;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
  filter: drop-shadow(0 24px 42px rgba(0,0,0,.18));
}
.shot-video {
  top: 6px;
  right: 0;
  width: min(610px, 88%);
  height: auto;
  border-radius: 34px;
}
.orange-phone {
  position: absolute;
  z-index: 4;
  width: min(246px, 40%);
  border-radius: 32px;
  filter: drop-shadow(0 24px 42px rgba(0,0,0,.22));
  overflow: visible;
}
.orange-phone img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
}
.orange-tabs {
  display: none;
}

.orange-slide-movies .movie-library-phone {
  left: 42px;
  top: 116px;
}
.orange-slide-movies .shot-movies-video {
  right: 6px;
  top: 0;
}

.orange-slide-music .lyrics-phone {
  left: 66px;
  top: 78px;
  width: min(226px, 38%);
}
.orange-slide-music .shot-music-video {
  right: 0;
  top: 6px;
  width: min(610px, 90%);
}
.shot-artists {
  right: 34px;
  bottom: 94px;
  width: min(330px, 50%);
  height: auto;
  border-radius: 999px;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.16));
}

.orange-slide-books .shot-books-grid {
  right: 0;
  top: 6px;
  width: min(610px, 90%);
  height: auto;
  border-radius: 34px;
}
.orange-slide-books .shot-books-text {
  left: 62px;
  top: 98px;
  width: min(248px, 40%);
  height: auto;
  border-radius: 32px;
  z-index: 5;
}

.orange-slide-shows .tv-interface {
  position: absolute;
  right: 0;
  top: 8px;
  width: min(610px, 90%);
  height: 430px;
  overflow: hidden;
  border-radius: 34px 34px 0 34px;
  background: #15131a;
  color: #fff;
  padding: 26px 28px;
  box-shadow: 0 24px 46px rgba(0,0,0,.18);
}
.tv-top {
  font-size: 12px;
  font-weight: 760;
  color: rgba(255,255,255,.74);
  letter-spacing: -.02em;
}
.tv-row-title {
  margin-top: 26px;
  font-size: 13px;
  font-weight: 880;
  color: rgba(255,255,255,.86);
}
.tv-row-title.second { margin-top: 20px; }
.tv-poster-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 10px;
}
.tv-poster-row span {
  position: relative;
  min-height: 78px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 10px;
  font-size: 22px;
  line-height: .82;
  font-weight: 950;
  letter-spacing: -.05em;
  background: var(--bg) center/cover no-repeat, #34313b;
}
.tv-poster-row span::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.55));
}
.tv-poster-row span { isolation: isolate; }
.tv-poster-row span > * { position: relative; }
.tv-poster-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 10px;
}
.tv-poster-grid span {
  height: 82px;
  border-radius: 12px;
  background: linear-gradient(135deg, #dcfb62, #76e4c9);
  opacity: .88;
}
.tv-poster-grid span:nth-child(2) { background-image: url('assets/images/card-55.jpg'); background-size: cover; background-position: center; }
.tv-poster-grid span:nth-child(3) { background-image: url('assets/images/card-40.jpg'); background-size: cover; background-position: center; }
.tv-poster-grid span:nth-child(5) { background-image: url('assets/images/card-130.jpg'); background-size: cover; background-position: center; }
.shot-genres {
  left: 38px;
  top: 128px;
  width: min(218px, 35%);
  height: auto;
  border-radius: 30px;
  z-index: 5;
}

.orange-progress {
  position: absolute !important;
  left: 50% !important;
  bottom: -8px !important;
  transform: translateX(-50%) !important;
  display: flex !important;
  gap: 10px !important;
  z-index: 8 !important;
}
.orange-dot {
  border: 0 !important;
  width: 11px !important;
  height: 11px !important;
  border-radius: 999px !important;
  background: rgba(0,0,0,.22) !important;
  padding: 0 !important;
  cursor: pointer !important;
  transition: width .28s cubic-bezier(.19,1,.22,1), background .28s ease, opacity .28s ease !important;
}
.orange-dot.is-active {
  width: 34px !important;
  background: #070707 !important;
}

@media (max-width: 980px) {
  .feature-card-orange {
    grid-template-columns: 1fr !important;
    width: min(94vw, 760px) !important;
    min-height: auto !important;
    padding: 44px 28px 58px !important;
  }
  .orange-visual { min-height: 470px !important; }
  .feature-card-orange .feature-copy h2 { font-size: clamp(52px, 12vw, 78px) !important; }
  .shot-video, .orange-slide-books .shot-books-grid, .orange-slide-shows .tv-interface { width: 100% !important; }
  .orange-phone, .orange-slide-books .shot-books-text { width: 34% !important; }
}

@media (max-width: 620px) {
  .carousel-copy h2 { font-size: clamp(34px, 12vw, 54px) !important; }
  .carousel-copy p { font-size: 16px !important; }
  .feature-card-orange { width: calc(100% - 18px) !important; }
  .orange-visual { min-height: 390px !important; }
  .shot-video, .orange-slide-books .shot-books-grid, .orange-slide-shows .tv-interface { height: 280px !important; object-fit: cover; }
  .orange-phone, .orange-slide-books .shot-books-text, .orange-slide-music .lyrics-phone { transform: scale(.82); transform-origin: left top; }
  .shot-artists { bottom: 92px; width: 52%; }
}


/* -----------------------------------------------------------
   FINAL TWEAK: remove orange slide dots, slower loop, no 1px snap
------------------------------------------------------------ */
.orange-progress,
.orange-dot {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.orange-slide {
  transform: translate3d(0, 24px, 0) scale(.985) !important;
  transform-origin: 50% 50% !important;
  backface-visibility: hidden !important;
  -webkit-backface-visibility: hidden !important;
  will-change: opacity, transform, filter !important;
  transition:
    opacity 1.05s cubic-bezier(.19,1,.22,1),
    transform 1.18s cubic-bezier(.19,1,.22,1),
    filter 1.05s cubic-bezier(.19,1,.22,1) !important;
}

.orange-slide.is-active {
  transform: translate3d(0, 0, 0) scale(1) !important;
}

.orange-shot,
.orange-phone,
.tv-interface {
  backface-visibility: hidden !important;
  -webkit-backface-visibility: hidden !important;
  transform: translate3d(0, 0, 0) !important;
  will-change: opacity, transform !important;
}

.orange-slide-movies .movie-library-phone,
.orange-slide-music .lyrics-phone,
.orange-slide-books .shot-books-text,
.shot-genres {
  transform: translate3d(0, 0, 0) !important;
}

.feature-card-orange .feature-copy {
  transition: opacity .58s ease, transform .72s cubic-bezier(.19,1,.22,1), filter .58s ease !important;
}

.feature-card-orange.is-changing .feature-copy {
  transform: translate3d(0, 20px, 0) scale(.99) !important;
}

/* -----------------------------------------------------------
   Sticky panel pass: orange pins to the top, purple rises from
   the bottom and locks slightly lower, like the reference video.
------------------------------------------------------------ */
.feature-stack {
  padding-top: 0 !important;
}
.orange-scroll-panel {
  min-height: 245vh !important;
  padding-top: 0 !important;
  padding-bottom: 26vh !important;
}
.feature-card-orange {
  position: sticky !important;
  top: 0 !important;
  z-index: 2 !important;
  transform: translateZ(0) !important;
}
.feature-card-orange::before {
  border-radius: 76px 78px 104px 70px / 80px 82px 108px 86px !important;
}
.feature-card-purple {
  position: sticky !important;
  top: clamp(78px, 10vh, 116px) !important;
  z-index: 8 !important;
  margin-top: -54vh !important;
  transform: translateZ(0) !important;
}
.feature-card-purple::before {
  border-radius: 94px 72px 90px 96px / 82px 102px 92px 108px !important;
  box-shadow: 0 34px 76px rgba(42, 10, 60, .12) !important;
}
.feature-card-lime {
  position: sticky !important;
  top: clamp(78px, 10vh, 116px) !important;
  z-index: 10 !important;
  margin-top: -40vh !important;
  transform: translateZ(0) !important;
}

/* Persian meaning tooltip + click-to-play pronunciation. */
.word-tooltip {
  pointer-events: auto !important;
}
.word-tooltip.is-meaning {
  min-height: 54px !important;
  padding: 10px 12px 10px 16px !important;
  gap: 8px !important;
  border-radius: 18px 18px 18px 8px !important;
  background: #ddb0ff !important;
  color: #050505 !important;
  font-size: 18px !important;
  box-shadow: 0 16px 34px rgba(0,0,0,.22) !important;
  z-index: 12 !important;
}
.word-tooltip.is-meaning::after {
  left: 50% !important;
  right: auto !important;
  top: calc(100% - 2px) !important;
  transform: translateX(-50%) !important;
  width: 26px !important;
  height: 18px !important;
  clip-path: polygon(0 0, 100% 0, 50% 100%) !important;
}
.word-tooltip.is-meaning small {
  direction: rtl;
  font-size: 18px !important;
  font-weight: 950 !important;
  line-height: 1.1 !important;
}
.tooltip-sound {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: rgba(255,255,255,.46);
  color: #050505;
  cursor: pointer;
  font-size: 17px;
  transition: transform .16s ease, background .16s ease;
}
.tooltip-sound:hover {
  background: #fff;
  transform: scale(1.08);
}
.learning-word:focus-visible {
  outline: 3px solid #ddb0ff;
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .feature-card-orange { top: 0 !important; }
  .feature-card-purple,
  .feature-card-lime { top: 76px !important; }
  .feature-card-purple { margin-top: -34vh !important; }
  .feature-card-lime { margin-top: -28vh !important; }
}

/* -----------------------------------------------------------
   FINAL PASS: panel timing + clean overlap + compact header
   - Orange card pins to the viewport top.
   - Purple rises from the bottom while orange is still pinned.
   - Lime waits until after purple; it no longer arrives attached.
   - Decorative top blobs above purple/lime are removed.
------------------------------------------------------------ */

/* Header behaviour: full menu while scrolling up, compact while scrolling down */
.site-header {
  transition:
    background .28s ease,
    color .28s ease,
    box-shadow .28s ease,
    transform .32s cubic-bezier(.19,1,.22,1),
    top .32s ease !important;
}
.site-header.is-compact .nav-links,
.site-header.is-compact .language-button,
.site-header.is-compact .login-link,
.site-header.is-compact .mobile-menu {
  opacity: 0 !important;
  transform: translateY(-10px) !important;
  pointer-events: none !important;
  width: 0 !important;
  max-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}
.site-header.is-compact .nav-shell {
  justify-content: space-between !important;
}
.site-header.is-compact .nav-actions {
  margin-left: auto !important;
  gap: 0 !important;
}
.site-header.is-compact .nav-cta {
  opacity: 1 !important;
  transform: none !important;
  pointer-events: auto !important;
}
.site-header.is-compact .brand {
  opacity: 1 !important;
}
.site-header.is-compact .header-language-menu {
  display: none !important;
}

/* Feature stack timing */
.feature-stack {
  position: relative !important;
  padding-top: 0 !important;
  padding-bottom: 34vh !important;
  overflow: visible !important;
}
.orange-scroll-panel {
  min-height: 138vh !important;
  padding: 0 0 0 !important;
  margin: 0 !important;
  position: relative !important;
  z-index: 2 !important;
}
.feature-card-orange {
  position: sticky !important;
  top: 0 !important;
  z-index: 3 !important;
  margin-top: 0 !important;
  transform: translate3d(0,0,0) !important;
  will-change: transform !important;
}

/* clean rounded cards: no extra decorative blobs above panels */
.feature-card-orange::after,
.feature-card-purple::after,
.feature-card-lime::after {
  content: none !important;
  display: none !important;
}
.feature-card-purple,
.feature-card-lime {
  overflow: hidden !important;
}
.feature-card-purple::before,
.feature-card-lime::before {
  inset: 0 !important;
}

/* Purple starts before the orange section finishes, so it rises from the bottom while orange is pinned. */
.feature-card-purple {
  position: sticky !important;
  top: clamp(72px, 8vh, 96px) !important;
  z-index: 8 !important;
  margin-top: -62vh !important;
  min-height: min(720px, calc(100vh - 112px)) !important;
  transform: translate3d(0,0,0) !important;
  border-radius: 78px 84px 72px 92px / 76px 92px 86px 96px !important;
}
.feature-card-purple::before {
  border-radius: 78px 84px 72px 92px / 76px 92px 86px 96px !important;
  box-shadow: 0 34px 78px rgba(76, 26, 112, .14) !important;
}

/* Lime comes later, separated from purple. */
.feature-card-lime {
  position: sticky !important;
  top: clamp(72px, 8vh, 96px) !important;
  z-index: 10 !important;
  margin-top: 28vh !important;
  min-height: min(720px, calc(100vh - 112px)) !important;
  transform: translate3d(0,0,0) !important;
  border-radius: 82px 96px 74px 88px / 88px 76px 92px 80px !important;
}
.feature-card-lime::before {
  border-radius: 82px 96px 74px 88px / 88px 76px 92px 80px !important;
  box-shadow: 0 34px 78px rgba(134, 165, 0, .12) !important;
}

/* Keep purple content clean when it first enters. */
.feature-card-purple .feature-copy,
.feature-card-purple .word-demo-card {
  transform: translate3d(0,0,0) !important;
}

@media (max-width: 980px) {
  .orange-scroll-panel { min-height: 132vh !important; }
  .feature-card-purple { margin-top: -52vh !important; top: 72px !important; }
  .feature-card-lime { margin-top: 24vh !important; top: 72px !important; }
}

/* -----------------------------------------------------------
   FINAL REFINEMENT 2: glass header + corrected panel sequence
   - Glass/pill header while scrolling.
   - Orange card sits alone first; purple does not appear while orange is centered.
   - Purple enters from the bottom only after orange has pinned to the top.
   - Lime repeats the same behaviour after purple.
   - All three cards share the same size.
------------------------------------------------------------ */

.site-header.is-white,
.site-header.is-compact,
.site-header.is-expanded {
  background: transparent !important;
  box-shadow: none !important;
}

.site-header.is-white .nav-shell,
.site-header.is-compact .nav-shell,
.site-header.is-expanded .nav-shell {
  height: 58px !important;
  margin-top: 7px !important;
  padding: 0 18px !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, .68) !important;
  border: 1px solid rgba(255, 255, 255, .72) !important;
  box-shadow: 0 18px 55px rgba(0,0,0,.08) !important;
  backdrop-filter: blur(20px) saturate(1.2) !important;
  -webkit-backdrop-filter: blur(20px) saturate(1.2) !important;
}

.site-header.is-compact .nav-shell {
  width: min(1440px, calc(100% - 72px)) !important;
  background: rgba(255, 255, 255, .60) !important;
}

.site-header.is-compact .header-language-group,
.site-header.is-compact .nav-links,
.site-header.is-compact .login-link,
.site-header.is-compact .mobile-menu {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(-8px) scale(.98) !important;
  width: 0 !important;
  max-width: 0 !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

.site-header.is-compact .nav-actions {
  margin-left: auto !important;
  gap: 0 !important;
}

.site-header.is-compact .brand,
.site-header.is-compact .nav-cta {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: none !important;
}

/* One shared card geometry for orange, purple and lime. */
.feature-stack {
  position: relative !important;
  padding-top: 0 !important;
  padding-bottom: 70vh !important;
  overflow: visible !important;
  --feature-card-w: min(1320px, calc(100% - 72px));
  --feature-card-h: min(690px, calc(100vh - 128px));
  --feature-stick-top: clamp(78px, 8vh, 98px);
}

.orange-scroll-panel {
  position: relative !important;
  min-height: 172vh !important;
  padding: 0 !important;
  margin: 0 !important;
  z-index: 3 !important;
}

.feature-card-orange,
.feature-card-purple,
.feature-card-lime {
  width: var(--feature-card-w) !important;
  min-height: var(--feature-card-h) !important;
  height: var(--feature-card-h) !important;
  grid-template-columns: minmax(370px, .9fr) minmax(520px, 1fr) !important;
  gap: clamp(30px, 4vw, 72px) !important;
  padding: clamp(54px, 4.8vw, 78px) clamp(54px, 5.5vw, 90px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  overflow: hidden !important;
}

.feature-card-orange {
  position: sticky !important;
  top: 0 !important;
  z-index: 3 !important;
  margin-top: 0 !important;
}

.feature-card-purple,
.feature-card-lime {
  position: sticky !important;
  top: var(--feature-stick-top) !important;
  opacity: 0;
  transform: translate3d(0, 140px, 0) scale(.985);
  will-change: opacity, transform, filter;
  filter: blur(8px);
  transition: none !important;
}

.feature-card-purple {
  z-index: 8 !important;
  margin-top: 0 !important;
}

.feature-card-lime {
  z-index: 12 !important;
  margin-top: 64vh !important;
}

/* same outer softness, no decorative tabs/blobs above cards */
.feature-card-orange::after,
.feature-card-purple::after,
.feature-card-lime::after {
  content: none !important;
  display: none !important;
}

.feature-card-orange::before,
.feature-card-purple::before,
.feature-card-lime::before {
  inset: 0 !important;
  box-shadow: 0 30px 76px rgba(0,0,0,.07) !important;
}

.feature-card-orange::before {
  border-radius: 58px 82px 74px 64px / 62px 58px 86px 78px !important;
}

.feature-card-purple::before {
  border-radius: 72px 84px 72px 88px / 78px 88px 84px 92px !important;
}

.feature-card-lime::before {
  border-radius: 72px 84px 72px 88px / 78px 88px 84px 92px !important;
}

.feature-card-purple.panel-revealed,
.feature-card-lime.panel-revealed {
  pointer-events: auto !important;
}

@media (max-width: 980px) {
  .feature-stack {
    --feature-card-w: min(100% - 20px, 720px);
    --feature-card-h: auto;
    --feature-stick-top: 72px;
  }
  .orange-scroll-panel { min-height: 150vh !important; }
  .feature-card-orange,
  .feature-card-purple,
  .feature-card-lime {
    grid-template-columns: 1fr !important;
    height: auto !important;
    min-height: 760px !important;
    padding: 42px 28px !important;
  }
  .feature-card-lime { margin-top: 56vh !important; }
}

/* -----------------------------------------------------------
   FINAL SEQUENCE FIX: real overlay stack
   Orange pins first. Purple enters from bottom over orange.
   Lime enters later from bottom over purple. All cards same size.
------------------------------------------------------------ */
.feature-stack {
  --feature-card-w: min(1320px, calc(100% - 72px)) !important;
  --feature-card-h: min(690px, calc(100vh - 128px)) !important;
  --feature-stick-top: 0px !important;
  position: relative !important;
  min-height: 390vh !important;
  padding-top: 0 !important;
  padding-bottom: 115vh !important;
  overflow: visible !important;
}

.orange-scroll-panel {
  position: relative !important;
  min-height: 200vh !important;
  height: 200vh !important;
  padding: 0 !important;
  margin: 0 !important;
  z-index: 2 !important;
}

.feature-card-orange,
.feature-card-purple,
.feature-card-lime {
  width: var(--feature-card-w) !important;
  min-height: var(--feature-card-h) !important;
  height: var(--feature-card-h) !important;
  grid-template-columns: minmax(370px, .9fr) minmax(520px, 1fr) !important;
  gap: clamp(30px, 4vw, 72px) !important;
  padding: clamp(54px, 4.8vw, 78px) clamp(54px, 5.5vw, 90px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  overflow: hidden !important;
  backface-visibility: hidden !important;
  -webkit-backface-visibility: hidden !important;
}

.feature-card-orange {
  position: sticky !important;
  top: var(--feature-stick-top) !important;
  z-index: 3 !important;
  margin-top: 0 !important;
}

.feature-card-purple {
  position: sticky !important;
  top: var(--feature-stick-top) !important;
  z-index: 8 !important;
  margin-top: -100vh !important;
  opacity: 0;
  transform: translate3d(0, 100px, 0) scale(.985);
  filter: blur(9px);
  pointer-events: none;
  --panel-alpha: .08;
  --panel-bg: rgba(221, 176, 255, var(--panel-alpha)) !important;
}

.feature-card-lime {
  position: sticky !important;
  top: var(--feature-stick-top) !important;
  z-index: 12 !important;
  margin-top: 78vh !important;
  opacity: 0;
  transform: translate3d(0, 100px, 0) scale(.985);
  filter: blur(9px);
  pointer-events: none;
  --panel-alpha: .08;
  --panel-bg: rgba(220, 251, 98, var(--panel-alpha)) !important;
}

.feature-card-purple::before,
.feature-card-lime::before {
  background: var(--panel-bg) !important;
  backdrop-filter: blur(12px) saturate(1.05) !important;
  -webkit-backdrop-filter: blur(12px) saturate(1.05) !important;
}

.feature-card-purple.panel-revealed,
.feature-card-lime.panel-revealed {
  pointer-events: auto !important;
}

.feature-card-orange::after,
.feature-card-purple::after,
.feature-card-lime::after {
  display: none !important;
  content: none !important;
}

@media (max-width: 980px) {
  .feature-stack {
    --feature-card-w: min(100% - 20px, 720px) !important;
    --feature-card-h: 760px !important;
    --feature-stick-top: 0px !important;
  }
  .orange-scroll-panel {
    min-height: 190vh !important;
    height: 190vh !important;
  }
  .feature-card-orange,
  .feature-card-purple,
  .feature-card-lime {
    grid-template-columns: 1fr !important;
    min-height: var(--feature-card-h) !important;
    height: var(--feature-card-h) !important;
    padding: 42px 28px !important;
  }
  .feature-card-purple { margin-top: -94vh !important; }
  .feature-card-lime { margin-top: 68vh !important; }
}


/* -----------------------------------------------------------
   USER TWEAK: cleaner compact header shell
   The nav shell keeps its pill shape and sizing, but the visible
   white overlay/background and border are removed.
------------------------------------------------------------ */
.site-header.is-white .nav-shell,
.site-header.is-compact .nav-shell,
.site-header.is-expanded .nav-shell {
  background: transparent !important;
  border: 0 !important;
}

.site-header.is-compact .nav-shell {
  width: min(1440px, calc(100% - 72px)) !important;
  background: transparent !important;
}

/* Content-you'll-love horizontal scroll section
   Placed after the first Stream global headline. The card row moves left when
   scrolling down and reverses naturally when scrolling up. */
.content-love-section {
  position: relative;
  min-height: 210vh;
  margin-top: 0;
  background: #d7a2fb;
  isolation: isolate;
}

.content-love-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 18% 16%, rgba(255,255,255,.20), transparent 28%),
    linear-gradient(180deg, #d9a2ff 0%, #d7a2fb 62%, #d49cf9 100%);
}

.content-love-copy {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100% - 44px));
  margin: 0 auto clamp(44px, 6vh, 70px);
  text-align: center;
  color: #050505;
  transform: translateY(var(--love-copy-y, 0));
  opacity: var(--love-copy-opacity, 1);
  will-change: transform, opacity;
}

.content-love-copy h2 {
  margin: 0;
  font-size: clamp(52px, 6.4vw, 104px);
  line-height: .88;
  font-weight: 950;
  letter-spacing: -.075em;
}

.content-love-copy p {
  margin: 30px 0 0;
  font-size: clamp(18px, 1.45vw, 25px);
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: -.035em;
}

.content-love-viewport {
  position: relative;
  z-index: 3;
  width: 100vw;
  overflow: visible;
  pointer-events: auto;
}

.content-love-track {
  --love-x: 0px;
  display: flex;
  align-items: stretch;
  gap: clamp(18px, 2vw, 28px);
  width: max-content;
  padding: 0 clamp(16px, 5vw, 74px);
  transform: translate3d(var(--love-x), 0, 0);
  will-change: transform;
}

.love-card {
  position: relative;
  flex: 0 0 clamp(260px, 18.5vw, 352px);
  height: clamp(395px, 43vh, 510px);
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 20px 52px rgba(88, 29, 118, .12);
}

.love-card h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 25px 24px 0;
  color: #050505;
  font-size: clamp(21px, 1.35vw, 28px);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: -.055em;
}

.love-card-art {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 69%;
  background-image: var(--image);
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}

.love-card:hover .love-card-art { transform: scale(1.05); }

.love-card-art::before {
  content: "";
  position: absolute;
  inset: -2px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,0) 22%);
}

.love-card-art.wave-1 { clip-path: ellipse(95% 66% at 50% 36%); background-position: center; }
.love-card-art.wave-2 { clip-path: ellipse(96% 64% at 53% 38%); background-position: center top; }
.love-card-art.wave-3 { clip-path: ellipse(100% 65% at 50% 38%); background-position: center; }
.love-card-art.wave-4 { clip-path: ellipse(105% 62% at 48% 34%); background-position: center; }
.love-card-art.wave-5 { clip-path: ellipse(110% 64% at 50% 35%); background-position: center top; }
.love-card-art.wave-6 { clip-path: ellipse(104% 66% at 46% 35%); background-position: center; }

@media (max-width: 900px) {
  .content-love-section { min-height: 190vh; }
  .content-love-sticky { justify-content: flex-start; padding-top: 18vh; }
  .content-love-copy { margin-bottom: 34px; }
  .content-love-copy h2 { font-size: clamp(44px, 12vw, 74px); }
  .content-love-copy p { font-size: 17px; }
  .love-card { flex-basis: min(76vw, 320px); height: 440px; }
}

/* ------------------------------------------------------------
   USER UPDATE: Content-you'll-love section polish
   - replace cards with uploaded assets
   - start horizontal movement as soon as section enters viewport
   - keep CTA fully visible before purple section
------------------------------------------------------------ */
.scroll-scene {
  height: 292vh !important;
}
.carousel-copy {
  top: calc(var(--row-top) + var(--card-height) - clamp(2px, .3vh, 6px)) !important;
  padding-bottom: clamp(84px, 10vh, 132px) !important;
}
.carousel-cta {
  margin-top: clamp(18px, 2.1vw, 30px) !important;
  position: relative !important;
  z-index: 8 !important;
}
.content-love-section {
  margin-top: clamp(78px, 11vh, 138px) !important;
  min-height: 225vh !important;
}
.content-love-sticky {
  justify-content: center !important;
  padding-top: clamp(42px, 7vh, 84px) !important;
  padding-bottom: clamp(58px, 8vh, 96px) !important;
}
.content-love-copy {
  margin-bottom: clamp(36px, 5.2vh, 64px) !important;
}
.content-love-viewport {
  width: 100vw !important;
  overflow: visible !important;
}
.content-love-track {
  gap: clamp(18px, 2vw, 28px) !important;
  padding: 0 clamp(22px, 4.8vw, 82px) !important;
  transition: transform .04s linear !important;
}
.love-card {
  flex-basis: clamp(290px, 19.4vw, 370px) !important;
  height: clamp(410px, 43vh, 520px) !important;
  border-radius: 16px !important;
}
.love-card-art {
  height: 70% !important;
  background-size: cover !important;
}
.love-card-art.wave-1 { background-position: center center !important; }
.love-card-art.wave-2 { background-position: center center !important; }
.love-card-art.wave-3 { background-position: center center !important; }
.love-card-art.wave-4 { background-position: center center !important; }
.love-card-art.wave-5 { background-position: center center !important; }
.love-card-art.wave-6 { background-position: center center !important; }

@media (max-width: 900px) {
  .scroll-scene { height: 300vh !important; }
  .content-love-section { margin-top: 84px !important; min-height: 215vh !important; }
  .content-love-sticky { padding-top: 14vh !important; justify-content: flex-start !important; }
  .love-card { flex-basis: min(78vw, 330px) !important; height: 440px !important; }
}


/* ------------------------------------------------------------
   FINAL USER FIX: Content-you'll-love must NOT pin/stick.
   It scrolls normally; the cards move horizontally in proportion
   to the section's vertical scroll position.
------------------------------------------------------------ */
.content-love-section {
  position: relative !important;
  min-height: auto !important;
  height: auto !important;
  margin-top: clamp(150px, 18vh, 230px) !important;
  padding: clamp(92px, 12vh, 140px) 0 clamp(110px, 14vh, 170px) !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 18% 16%, rgba(255,255,255,.22), transparent 28%),
    linear-gradient(180deg, #d9a2ff 0%, #d7a2fb 62%, #d49cf9 100%) !important;
}

.content-love-sticky {
  position: relative !important;
  top: auto !important;
  height: auto !important;
  min-height: 100svh !important;
  overflow: visible !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  padding: 0 !important;
  background: transparent !important;
}

.content-love-copy {
  margin: 0 auto clamp(44px, 6vh, 72px) !important;
  transform: translate3d(0, var(--love-copy-y, 0), 0) !important;
}

.content-love-viewport {
  width: 100vw !important;
  overflow: visible !important;
}

.content-love-track {
  transition: none !important;
  will-change: transform !important;
}

@media (max-width: 900px) {
  .content-love-section {
    margin-top: 120px !important;
    padding: 78px 0 120px !important;
  }
  .content-love-sticky {
    min-height: auto !important;
  }
}

/* ------------------------------------------------------------
   USER FINAL TWEAK: Content-you'll-love should not be full-screen.
   The section scrolls normally, has a small bottom margin, and the
   half-visible CTA above it is removed.
------------------------------------------------------------ */
.content-love-section {
  min-height: auto !important;
  height: auto !important;
  margin-top: clamp(82px, 10vh, 130px) !important;
  margin-bottom: clamp(58px, 7vh, 108px) !important;
  padding: clamp(70px, 8vh, 108px) 0 clamp(82px, 9vh, 122px) !important;
}

.content-love-sticky {
  position: relative !important;
  top: auto !important;
  height: auto !important;
  min-height: 0 !important;
  overflow: visible !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  padding: 0 !important;
  background: transparent !important;
}

.carousel-cta {
  display: none !important;
}

@media (max-width: 900px) {
  .content-love-section {
    margin-top: 72px !important;
    margin-bottom: 78px !important;
    padding: 58px 0 86px !important;
  }
}

/* ------------------------------------------------------------
   USER UPDATE: Stream intro copy on the right + muted autoplay video
------------------------------------------------------------ */
.carousel-copy.stream-intro {
  width: min(1280px, calc(100vw - 72px)) !important;
  display: grid !important;
  grid-template-columns: minmax(420px, 0.92fr) minmax(420px, 1fr) !important;
  align-items: center !important;
  gap: clamp(36px, 5vw, 90px) !important;
  text-align: initial !important;
}

.stream-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: clamp(26px, 3vw, 44px);
  padding: clamp(10px, 1vw, 15px);
  background: #050505;
  box-shadow: 0 24px 60px rgba(0,0,0,.22);
  overflow: hidden;
  isolation: isolate;
}

.stream-video-frame::after {
  content: "";
  position: absolute;
  inset: clamp(10px, 1vw, 15px);
  border-radius: clamp(18px, 2.2vw, 32px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
  pointer-events: none;
  z-index: 2;
}

.stream-loop-video {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: clamp(18px, 2.2vw, 32px);
  object-fit: cover;
  background: #000;
}

.stream-copy-fa {
  justify-self: end;
  max-width: 620px;
  text-align: right;
  font-family: "Vazirmatn", "IRANSans", "Tahoma", "Segoe UI", Arial, sans-serif;
}

.carousel-copy.stream-intro .stream-copy-fa h2 {
  margin: 0 !important;
  font-family: inherit;
  font-size: clamp(50px, 5.5vw, 96px) !important;
  line-height: 1.08 !important;
  font-weight: 950 !important;
  letter-spacing: -0.055em !important;
  color: #050505;
}

.carousel-copy.stream-intro .stream-copy-fa p {
  margin: clamp(18px, 2.2vw, 30px) 0 0 !important;
  max-width: 590px !important;
  font-family: inherit;
  font-size: clamp(19px, 1.45vw, 26px) !important;
  line-height: 1.8 !important;
  font-weight: 650 !important;
  letter-spacing: -0.01em !important;
  color: #111;
}

.carousel-copy.stream-intro .carousel-cta {
  display: inline-grid !important;
  margin-top: clamp(24px, 2.7vw, 38px) !important;
  width: 222px;
  height: 68px;
}

@media (max-width: 980px) {
  .carousel-copy.stream-intro {
    width: min(92vw, 720px) !important;
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .stream-video-frame {
    order: 2;
  }

  .stream-copy-fa {
    order: 1;
    justify-self: stretch;
    max-width: none;
    text-align: center;
  }

  .carousel-copy.stream-intro .stream-copy-fa h2 {
    font-size: clamp(38px, 10vw, 66px) !important;
  }

  .carousel-copy.stream-intro .stream-copy-fa p {
    margin-inline: auto !important;
    font-size: 17px !important;
    line-height: 1.75 !important;
  }
}

@media (max-width: 560px) {
  .carousel-copy.stream-intro {
    width: min(94vw, 520px) !important;
    gap: 20px !important;
  }

  .stream-video-frame {
    border-radius: 24px;
    padding: 8px;
  }

  .stream-loop-video { border-radius: 18px; }

  .carousel-copy.stream-intro .carousel-cta {
    width: 190px;
    height: 58px;
  }
}


/* ------------------------------------------------------------
   FINAL FIX 2026-06-22: Persian stream intro placement + font
   - prevents the stream intro from sitting under the card row
   - uses a proper Persian font and removes Arabic-breaking spacing
------------------------------------------------------------ */
.carousel-copy.stream-intro {
  top: calc(var(--row-top) + var(--card-height) + clamp(30px, 4.3vh, 54px)) !important;
  width: min(1210px, calc(100vw - 92px)) !important;
  grid-template-columns: minmax(390px, .92fr) minmax(410px, .88fr) !important;
  gap: clamp(34px, 4.2vw, 72px) !important;
  align-items: center !important;
  z-index: 9 !important;
}

.stream-video-frame {
  max-width: 560px !important;
  justify-self: start !important;
  border-radius: clamp(24px, 2.7vw, 40px) !important;
  padding: clamp(9px, .9vw, 13px) !important;
  box-shadow: 0 20px 54px rgba(0,0,0,.20) !important;
}

.stream-copy-fa {
  justify-self: end !important;
  max-width: 560px !important;
  text-align: right !important;
  direction: rtl !important;
  font-family: "Vazirmatn", "IRANYekan", "Yekan Bakh", "IranSans", Tahoma, Arial, sans-serif !important;
  text-rendering: optimizeLegibility;
}

.carousel-copy.stream-intro .stream-copy-fa h2 {
  font-family: "Vazirmatn", "IRANYekan", "Yekan Bakh", "IranSans", Tahoma, Arial, sans-serif !important;
  font-size: clamp(38px, 4.15vw, 72px) !important;
  line-height: 1.22 !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  word-spacing: 0 !important;
  text-wrap: balance;
}

.carousel-copy.stream-intro .stream-copy-fa p {
  max-width: 540px !important;
  font-family: "Vazirmatn", "IRANYekan", "Yekan Bakh", "IranSans", Tahoma, Arial, sans-serif !important;
  font-size: clamp(16px, 1.2vw, 21px) !important;
  line-height: 1.95 !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  word-spacing: 0 !important;
}

.carousel-copy.stream-intro .carousel-cta {
  margin-top: clamp(18px, 2.2vw, 28px) !important;
  width: 206px !important;
  height: 62px !important;
}

@media (max-width: 1100px) {
  .carousel-copy.stream-intro {
    top: calc(var(--row-top) + var(--card-height) + 30px) !important;
    width: min(94vw, 980px) !important;
    grid-template-columns: minmax(340px, .95fr) minmax(350px, .9fr) !important;
    gap: 28px !important;
  }
  .carousel-copy.stream-intro .stream-copy-fa h2 {
    font-size: clamp(34px, 4.5vw, 58px) !important;
  }
}

@media (max-width: 860px) {
  .carousel-copy.stream-intro {
    top: calc(var(--row-top) + var(--card-height) + 22px) !important;
    width: min(92vw, 680px) !important;
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }
  .stream-video-frame {
    justify-self: center !important;
    width: min(92vw, 520px) !important;
    order: 2 !important;
  }
  .stream-copy-fa {
    justify-self: center !important;
    text-align: center !important;
    order: 1 !important;
  }
  .carousel-copy.stream-intro .stream-copy-fa h2 {
    font-size: clamp(32px, 8vw, 54px) !important;
    line-height: 1.25 !important;
  }
  .carousel-copy.stream-intro .stream-copy-fa p {
    margin-inline: auto !important;
    font-size: 16px !important;
    line-height: 1.85 !important;
  }
}

/* ------------------------------------------------------------
   FIX 2026-06-22: keep the latest page and replace the old
   centered Stream headline with a clean Persian/right + video/left block.
------------------------------------------------------------ */
.carousel-copy.stream-intro {
  top: calc(var(--row-top) + var(--card-height) + clamp(14px, 2.2vh, 28px)) !important;
  left: 50% !important;
  width: min(1200px, calc(100vw - 72px)) !important;
  display: grid !important;
  grid-template-columns: minmax(360px, 0.88fr) minmax(420px, 1fr) !important;
  align-items: center !important;
  justify-items: stretch !important;
  gap: clamp(32px, 4.6vw, 76px) !important;
  text-align: initial !important;
  pointer-events: none;
  z-index: 16 !important;
}

.stream-video-frame {
  position: relative !important;
  width: min(100%, 560px) !important;
  aspect-ratio: 16 / 9 !important;
  justify-self: start !important;
  border-radius: clamp(24px, 2.6vw, 38px) !important;
  padding: clamp(9px, .9vw, 13px) !important;
  background: #050505 !important;
  box-shadow: 0 22px 58px rgba(0,0,0,.20) !important;
  overflow: hidden !important;
  isolation: isolate !important;
}

.stream-video-frame::after {
  content: "";
  position: absolute;
  inset: clamp(9px, .9vw, 13px);
  border-radius: clamp(17px, 2vw, 28px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.10);
  pointer-events: none;
  z-index: 2;
}

.stream-loop-video {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  border-radius: clamp(17px, 2vw, 28px) !important;
  object-fit: cover !important;
  background: #000 !important;
}

.stream-copy-fa {
  justify-self: end !important;
  max-width: 570px !important;
  text-align: right !important;
  direction: rtl !important;
  font-family: "Vazirmatn", "Yekan Bakh", "IRANYekan", "IranSans", Tahoma, Arial, sans-serif !important;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.carousel-copy.stream-intro .stream-copy-fa h2 {
  margin: 0 !important;
  font-family: inherit !important;
  font-size: clamp(38px, 4.1vw, 70px) !important;
  line-height: 1.22 !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  word-spacing: 0 !important;
  color: #050505 !important;
  text-wrap: balance;
}

.carousel-copy.stream-intro .stream-copy-fa p {
  margin: clamp(15px, 1.8vw, 24px) 0 0 !important;
  max-width: 540px !important;
  font-family: inherit !important;
  font-size: clamp(16px, 1.15vw, 20px) !important;
  line-height: 1.9 !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  word-spacing: 0 !important;
  color: #111 !important;
}

.carousel-copy.stream-intro .carousel-cta {
  display: inline-grid !important;
  place-items: center !important;
  margin-top: clamp(18px, 2.1vw, 28px) !important;
  width: 206px !important;
  height: 62px !important;
  pointer-events: auto !important;
}

@media (max-width: 980px) {
  .carousel-copy.stream-intro {
    top: calc(var(--row-top) + var(--card-height) + 18px) !important;
    width: min(92vw, 700px) !important;
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }
  .stream-video-frame {
    order: 2 !important;
    justify-self: center !important;
    width: min(92vw, 520px) !important;
  }
  .stream-copy-fa {
    order: 1 !important;
    justify-self: center !important;
    text-align: center !important;
    max-width: 620px !important;
  }
  .carousel-copy.stream-intro .stream-copy-fa h2 {
    font-size: clamp(32px, 8vw, 54px) !important;
    line-height: 1.24 !important;
  }
  .carousel-copy.stream-intro .stream-copy-fa p {
    margin-inline: auto !important;
    font-size: 16px !important;
    line-height: 1.85 !important;
  }
}

@media (max-width: 560px) {
  .carousel-copy.stream-intro {
    width: min(94vw, 520px) !important;
    gap: 18px !important;
  }
  .stream-video-frame { padding: 8px !important; }
  .stream-video-frame,
  .stream-loop-video { border-radius: 20px !important; }
  .carousel-copy.stream-intro .carousel-cta {
    width: 188px !important;
    height: 56px !important;
  }
}

/* ------------------------------------------------------------
   FINAL SPACING FIX 2026-06-22
   Keeps the Persian/video stream block fully clear before the
   purple Content-you'll-love section enters the viewport.
------------------------------------------------------------ */
.scroll-scene {
  height: 360vh !important;
}

.carousel-copy.stream-intro {
  top: calc(var(--row-top) + var(--card-height) + clamp(10px, 1.6vh, 22px)) !important;
  padding-bottom: 0 !important;
}

.stream-video-frame {
  max-width: 520px !important;
}

.carousel-copy.stream-intro .stream-copy-fa h2 {
  font-size: clamp(36px, 3.85vw, 66px) !important;
  line-height: 1.18 !important;
}

.carousel-copy.stream-intro .stream-copy-fa p {
  font-size: clamp(15px, 1.05vw, 19px) !important;
  line-height: 1.85 !important;
}

.content-love-section {
  margin-top: clamp(190px, 23vh, 300px) !important;
  position: relative !important;
  z-index: 1 !important;
}

@media (max-width: 980px) {
  .scroll-scene {
    height: 380vh !important;
  }
  .content-love-section {
    margin-top: clamp(150px, 20vh, 240px) !important;
  }
}


/* ------------------------------------------------------------
   FINAL USER UPDATE: balanced Persian stream spacing + pricing
------------------------------------------------------------ */
.scroll-scene {
  height: 346vh !important;
}

.carousel-copy.stream-intro {
  top: calc(var(--row-top) + var(--card-height) + clamp(28px, 3.8vh, 54px)) !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.carousel-copy.stream-intro .carousel-cta {
  display: grid !important;
  margin: clamp(20px, 2.4vw, 34px) auto 0 !important;
}

.content-love-section {
  margin-top: clamp(96px, 12vh, 160px) !important;
}

@media (max-width: 980px) {
  .scroll-scene { height: 360vh !important; }
  .content-love-section { margin-top: clamp(88px, 12vh, 136px) !important; }
}

.pricing-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(90px, 11vh, 140px) clamp(18px, 4vw, 72px);
  background:
    radial-gradient(circle at 18% 15%, rgba(255,122,59,.16), transparent 28%),
    radial-gradient(circle at 82% 26%, rgba(216,162,255,.12), transparent 30%),
    linear-gradient(180deg, #1d1d1d 0%, #161616 100%);
  color: #fff;
  font-family: "Vazirmatn", "Yekan Bakh", "IRANYekan", Tahoma, Arial, sans-serif;
}

.pricing-inner {
  width: min(1280px, 100%);
  margin: 0 auto;
}

.pricing-heading {
  text-align: center;
  margin: 0 auto clamp(44px, 6vh, 76px);
  max-width: 780px;
}

.pricing-eyebrow {
  display: inline-grid;
  place-items: center;
  min-height: 42px;
  padding: 0 22px;
  border-radius: 999px;
  background: rgba(253,185,0,.14);
  color: #fdb900;
  border: 1px solid rgba(253,185,0,.42);
  font-size: 15px;
  font-weight: 900;
}

.pricing-heading h2 {
  margin: 18px 0 0;
  font-size: clamp(38px, 4.7vw, 82px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -0.025em;
}

.pricing-heading p {
  margin: 20px auto 0;
  max-width: 660px;
  color: rgba(255,255,255,.76);
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 1.9;
  font-weight: 600;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2.6vw, 34px);
  align-items: stretch;
}

.pricing-card {
  position: relative;
  min-height: 318px;
  padding: clamp(30px, 3vw, 42px);
  border-radius: 28px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 30px 90px rgba(0,0,0,.22);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform .45s cubic-bezier(.2,.8,.2,1), border-color .45s ease, box-shadow .45s ease;
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,0));
  pointer-events: none;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(253,185,0,.55);
  box-shadow: 0 34px 100px rgba(253,185,0,.12), 0 30px 90px rgba(0,0,0,.28);
}

.pricing-card.is-featured {
  border-color: #fdb900;
  background: linear-gradient(180deg, rgba(253,185,0,.08), rgba(255,255,255,.045));
}

.plan-badge {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-grid;
  place-items: center;
  height: 44px;
  padding: 0 28px;
  border-radius: 999px;
  background: #fdb900;
  color: #171717;
  font-size: 15px;
  font-weight: 950;
  box-shadow: 0 14px 34px rgba(253,185,0,.24);
  white-space: nowrap;
}

.pricing-card h3 {
  margin: 0;
  font-size: clamp(26px, 2.1vw, 38px);
  line-height: 1.1;
  font-weight: 950;
}

.pricing-note {
  margin: 14px 0 0;
  color: rgba(255,255,255,.66);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 600;
  min-height: 52px;
}

.discount {
  display: inline-grid;
  place-items: center;
  min-width: 58px;
  height: 34px;
  padding: 0 12px;
  margin-top: 10px;
  border-radius: 999px;
  background: rgba(253,185,0,.16);
  color: #fdb900;
  font-size: 16px;
  font-weight: 950;
}

.price {
  margin-top: auto;
  color: #fdb900;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 9px;
  direction: ltr;
}

.price strong {
  font-size: clamp(36px, 3.4vw, 56px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.03em;
}

.price span {
  color: rgba(255,255,255,.72);
  font-size: 15px;
  font-weight: 700;
}

.pricing-button {
  display: grid;
  place-items: center;
  width: min(100%, 245px);
  height: 58px;
  margin-top: 28px;
  border-radius: 16px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 900;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.pricing-card.is-featured .pricing-button,
.pricing-button:hover {
  background: #fdb900;
  color: #171717;
}

.pricing-button:hover {
  transform: translateY(-2px);
}

@media (max-width: 960px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { min-height: 285px; }
}

/* ------------------------------------------------------------
   FINAL USER FIX: Persian stream spacing + compact simple pricing
------------------------------------------------------------ */
.scroll-scene {
  height: 368vh !important;
}

.carousel-copy.stream-intro {
  top: calc(var(--row-top) + var(--card-height) + clamp(42px, 5.2vh, 76px)) !important;
  width: min(1220px, calc(100vw - 84px)) !important;
  grid-template-columns: minmax(390px, .9fr) minmax(430px, 1fr) !important;
  gap: clamp(42px, 5vw, 92px) !important;
  align-items: center !important;
}

.stream-video-frame {
  width: min(100%, 560px) !important;
  max-width: 560px !important;
}

.carousel-copy.stream-intro .stream-copy-fa {
  align-self: center !important;
}

.carousel-copy.stream-intro .carousel-cta {
  display: grid !important;
  place-items: center !important;
  margin: clamp(24px, 2.7vw, 38px) auto 0 !important;
  width: 214px !important;
  height: 64px !important;
  border-radius: 999px !important;
  position: relative !important;
  z-index: 5 !important;
}

.content-love-section {
  margin-top: clamp(190px, 22vh, 300px) !important;
}

@media (max-width: 980px) {
  .scroll-scene { height: 388vh !important; }
  .carousel-copy.stream-intro {
    top: calc(var(--row-top) + var(--card-height) + 34px) !important;
    width: min(92vw, 720px) !important;
    grid-template-columns: 1fr !important;
  }
  .content-love-section { margin-top: clamp(170px, 20vh, 260px) !important; }
}

/* Reduce the empty space after the yellow feature card before pricing. */
.feature-stack {
  padding-bottom: clamp(42px, 7vh, 86px) !important;
  margin-bottom: 0 !important;
}

/* Simple premium cards like the reference: plain dark area, no colorful section background. */
.pricing-section {
  margin-top: 0 !important;
  padding: clamp(54px, 7vh, 86px) clamp(18px, 4vw, 72px) clamp(70px, 8vh, 105px) !important;
  background: #1f1f1f !important;
  background-image: none !important;
  color: #fff !important;
  font-family: "Vazirmatn", "Yekan Bakh", "IRANYekan", Tahoma, Arial, sans-serif !important;
}

.pricing-inner {
  width: min(1320px, 100%) !important;
  margin: 0 auto !important;
}

.pricing-heading {
  margin: 0 auto clamp(28px, 4vh, 46px) !important;
  text-align: center !important;
}

.pricing-eyebrow {
  background: transparent !important;
  border: 1px solid rgba(253, 185, 0, .55) !important;
  color: #fdb900 !important;
  min-height: 38px !important;
  padding: 0 20px !important;
  border-radius: 999px !important;
  font-weight: 900 !important;
}

.pricing-heading h2 {
  margin: 16px 0 0 !important;
  font-size: clamp(32px, 3.5vw, 58px) !important;
  line-height: 1.14 !important;
  letter-spacing: 0 !important;
}

.pricing-heading p,
.pricing-note {
  display: none !important;
}

.pricing-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: clamp(18px, 2.2vw, 32px) !important;
  align-items: stretch !important;
}

.pricing-card {
  min-height: 255px !important;
  padding: clamp(28px, 2.6vw, 38px) clamp(22px, 2.5vw, 34px) !important;
  border-radius: 26px !important;
  background: #202020 !important;
  border: 1px solid rgba(255,255,255,.13) !important;
  box-shadow: 0 22px 70px rgba(0,0,0,.22) !important;
}

.pricing-card::before {
  display: none !important;
}

.pricing-card.is-featured {
  border-color: #fdb900 !important;
  background: #202020 !important;
  box-shadow: 0 22px 70px rgba(0,0,0,.24), 0 0 0 1px rgba(253,185,0,.15) inset !important;
}

.pricing-card:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(253,185,0,.75) !important;
}

.plan-badge {
  top: -20px !important;
  height: 40px !important;
  padding: 0 24px !important;
  border-radius: 999px !important;
  background: #fdb900 !important;
  color: #1d1d1d !important;
  font-size: 14px !important;
  font-weight: 950 !important;
}

.pricing-card h3 {
  font-size: clamp(24px, 2vw, 34px) !important;
  font-weight: 950 !important;
  margin: 0 0 12px !important;
}

.discount {
  margin: 0 auto 12px !important;
  background: rgba(255,255,255,.10) !important;
  color: #fdb900 !important;
  min-width: 56px !important;
  height: 32px !important;
  font-size: 15px !important;
}

.price {
  margin-top: auto !important;
  direction: ltr !important;
  color: #fdb900 !important;
  gap: 8px !important;
}

.price strong {
  font-size: clamp(34px, 3.1vw, 50px) !important;
  font-weight: 950 !important;
}

.price span {
  color: rgba(255,255,255,.72) !important;
  font-size: 14px !important;
}

.pricing-button {
  width: min(100%, 230px) !important;
  height: 56px !important;
  margin-top: 28px !important;
  border-radius: 15px !important;
  background: rgba(255,255,255,.10) !important;
  border: 1px solid rgba(255,255,255,.20) !important;
  color: #fff !important;
}

.pricing-card.is-featured .pricing-button,
.pricing-button:hover {
  background: #fdb900 !important;
  color: #171717 !important;
}

@media (max-width: 1120px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 620px) {
  .pricing-grid {
    grid-template-columns: 1fr !important;
  }
  .pricing-card {
    min-height: 235px !important;
  }
}

/* ------------------------------------------------------------
   FINAL FIX 2026-06-22: Persian stream section + simple colored pricing cards
   - Stream block is centered in the available white area and no longer cuts the CTA/video.
   - More balanced top/bottom spacing.
   - Pricing section has no colored/dark section background; only plan cards are styled.
------------------------------------------------------------ */


/* Give the first scroll stage enough room so the Persian block can breathe. */
.scroll-scene {
  height: 380vh !important;
  margin-bottom: 0 !important;
}

.sticky-stage {
  overflow: hidden !important;
}

/* Center the Persian/video intro between the movie row and the purple section. */
.carousel-copy.stream-intro {
  top: calc(var(--row-top) + var(--card-height) + clamp(54px, 6.4vh, 90px)) !important;
  width: min(1180px, calc(100vw - 104px)) !important;
  display: grid !important;
  grid-template-columns: minmax(340px, .88fr) minmax(430px, 1fr) !important;
  gap: clamp(48px, 5.8vw, 98px) !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  z-index: 26 !important;
  overflow: visible !important;
}

.stream-video-frame {
  width: min(100%, 500px) !important;
  max-width: 500px !important;
  aspect-ratio: 16 / 9 !important;
  justify-self: center !important;
  padding: clamp(8px, .75vw, 11px) !important;
  border-radius: clamp(24px, 2.4vw, 34px) !important;
  box-shadow: 0 22px 52px rgba(0,0,0,.16) !important;
}

.stream-loop-video,
.stream-video-frame::after {
  border-radius: clamp(17px, 1.8vw, 25px) !important;
}

.stream-copy-fa {
  justify-self: center !important;
  align-self: center !important;
  width: min(100%, 580px) !important;
  max-width: 580px !important;
  text-align: right !important;
  direction: rtl !important;
  font-family: "Vazirmatn", "Yekan Bakh", "IRANYekan", "IranSans", Tahoma, Arial, sans-serif !important;
}

.carousel-copy.stream-intro .stream-copy-fa h2 {
  font-family: "Vazirmatn", "Yekan Bakh", "IRANYekan", "IranSans", Tahoma, Arial, sans-serif !important;
  font-size: clamp(40px, 4.35vw, 72px) !important;
  line-height: 1.18 !important;
  font-weight: 900 !important;
  letter-spacing: -.018em !important;
  margin: 0 !important;
  color: #050505 !important;
}

.carousel-copy.stream-intro .stream-copy-fa p {
  margin: clamp(18px, 2.2vw, 28px) 0 0 !important;
  max-width: 560px !important;
  font-family: "Vazirmatn", "Yekan Bakh", "IRANYekan", "IranSans", Tahoma, Arial, sans-serif !important;
  font-size: clamp(15px, 1.12vw, 19px) !important;
  line-height: 2.05 !important;
  font-weight: 650 !important;
  letter-spacing: 0 !important;
  color: #111 !important;
}

.carousel-copy.stream-intro .carousel-cta {
  display: grid !important;
  place-items: center !important;
  width: 210px !important;
  height: 60px !important;
  margin: clamp(24px, 2.7vw, 34px) auto 0 !important;
  border-radius: 999px !important;
  position: relative !important;
  z-index: 40 !important;
  overflow: visible !important;
  background: var(--orange) !important;
  color: #050505 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Keep the purple content section below the Persian/video block with real breathing space. */
.content-love-section {
  margin-top: clamp(210px, 25vh, 340px) !important;
}

@media (max-height: 820px) and (min-width: 981px) {
  .carousel-copy.stream-intro {
    top: calc(var(--row-top) + var(--card-height) + clamp(34px, 4.3vh, 58px)) !important;
    grid-template-columns: minmax(310px, .82fr) minmax(390px, .98fr) !important;
    gap: clamp(38px, 5vw, 78px) !important;
  }
  .stream-video-frame {
    max-width: 430px !important;
  }
  .carousel-copy.stream-intro .stream-copy-fa h2 {
    font-size: clamp(36px, 3.85vw, 58px) !important;
    line-height: 1.14 !important;
  }
  .carousel-copy.stream-intro .stream-copy-fa p {
    font-size: clamp(14px, 1vw, 17px) !important;
    line-height: 1.85 !important;
    margin-top: 14px !important;
  }
  .carousel-copy.stream-intro .carousel-cta {
    width: 190px !important;
    height: 54px !important;
    margin-top: 18px !important;
  }
  .content-love-section {
    margin-top: clamp(220px, 27vh, 360px) !important;
  }
}

@media (max-width: 980px) {
  .scroll-scene { height: 420vh !important; }
  .carousel-copy.stream-intro {
    top: calc(var(--row-top) + var(--card-height) + 40px) !important;
    width: min(92vw, 720px) !important;
    grid-template-columns: 1fr !important;
    gap: 26px !important;
  }
  .stream-video-frame {
    order: 2 !important;
    width: min(92vw, 500px) !important;
  }
  .stream-copy-fa {
    order: 1 !important;
    text-align: center !important;
    width: min(100%, 620px) !important;
  }
  .carousel-copy.stream-intro .stream-copy-fa h2 {
    font-size: clamp(32px, 8.4vw, 54px) !important;
    line-height: 1.24 !important;
  }
  .carousel-copy.stream-intro .stream-copy-fa p {
    margin-inline: auto !important;
    font-size: 15px !important;
    line-height: 1.9 !important;
  }
  .content-love-section {
    margin-top: clamp(190px, 24vh, 300px) !important;
  }
}

/* Bring pricing closer to the yellow feature card, but keep clean spacing. */
.feature-stack {
  padding-bottom: clamp(28px, 4.8vh, 56px) !important;
  margin-bottom: 0 !important;
}

.pricing-section {
  margin-top: 0 !important;
  padding: clamp(42px, 5.5vh, 72px) clamp(18px, 4vw, 72px) clamp(70px, 8vh, 108px) !important;
  background: transparent !important;
  background-image: none !important;
  color: #111 !important;
  overflow: visible !important;
  font-family: "Vazirmatn", "Yekan Bakh", "IRANYekan", "IranSans", Tahoma, Arial, sans-serif !important;
}

.pricing-inner {
  width: min(1280px, 100%) !important;
  margin: 0 auto !important;
}

.pricing-heading {
  text-align: center !important;
  margin: 0 auto clamp(28px, 4vh, 46px) !important;
  color: #111 !important;
}

.pricing-eyebrow {
  background: rgba(253, 185, 0, .14) !important;
  border: 1px solid rgba(253, 185, 0, .40) !important;
  color: #111 !important;
}

.pricing-heading h2 {
  color: #111 !important;
  font-size: clamp(32px, 4vw, 64px) !important;
  letter-spacing: 0 !important;
}

.pricing-heading p,
.pricing-note {
  display: none !important;
}

.pricing-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: clamp(18px, 2vw, 30px) !important;
  align-items: stretch !important;
}

.pricing-card {
  --plan-accent: #fdb900;
  position: relative !important;
  min-height: 250px !important;
  padding: clamp(28px, 2.4vw, 38px) clamp(22px, 2.3vw, 32px) !important;
  border-radius: 28px !important;
  background: #1e1e1e !important;
  border: 1.5px solid color-mix(in srgb, var(--plan-accent) 65%, transparent) !important;
  color: #fff !important;
  box-shadow: 0 24px 76px rgba(0,0,0,.16) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
}

.pricing-card::before {
  display: none !important;
}

.pricing-card.plan-monthly { --plan-accent: #355bff; }
.pricing-card.plan-quarter { --plan-accent: #fdb900; }
.pricing-card.plan-half { --plan-accent: #b56cff; }
.pricing-card.plan-yearly { --plan-accent: #23d484; }

.pricing-card.is-featured,
.pricing-card:hover {
  border-color: var(--plan-accent) !important;
  box-shadow: 0 26px 90px rgba(0,0,0,.20), 0 0 0 1px color-mix(in srgb, var(--plan-accent) 28%, transparent) inset !important;
}

.pricing-card h3 {
  margin: 0 0 12px !important;
  color: #fff !important;
  font-size: clamp(24px, 2vw, 34px) !important;
  line-height: 1.1 !important;
  font-weight: 900 !important;
}

.discount {
  display: inline-grid !important;
  place-items: center !important;
  min-width: 54px !important;
  height: 32px !important;
  margin: 0 auto 14px !important;
  padding: 0 12px !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,.12) !important;
  color: var(--plan-accent) !important;
  font-weight: 900 !important;
}

.price {
  margin-top: auto !important;
  direction: ltr !important;
  color: var(--plan-accent) !important;
  gap: 8px !important;
}

.price strong {
  color: var(--plan-accent) !important;
  font-size: clamp(34px, 3.1vw, 50px) !important;
  font-weight: 900 !important;
}

.price span {
  color: rgba(255,255,255,.74) !important;
}

.pricing-button {
  width: min(100%, 230px) !important;
  height: 56px !important;
  margin-top: 28px !important;
  border-radius: 15px !important;
  background: rgba(255,255,255,.10) !important;
  border: 1px solid rgba(255,255,255,.22) !important;
  color: #fff !important;
  font-weight: 900 !important;
}

.pricing-card.is-featured .pricing-button,
.pricing-button:hover {
  background: var(--plan-accent) !important;
  color: #171717 !important;
  border-color: transparent !important;
}

.plan-badge {
  top: -20px !important;
  background: var(--plan-accent) !important;
  color: #161616 !important;
}

@media (max-width: 1120px) {
  .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}

@media (max-width: 620px) {
  .pricing-grid { grid-template-columns: 1fr !important; }
  .pricing-card { min-height: 235px !important; }
}

/* ------------------------------------------------------------
   FINAL RESTORE: English Stream Global intro like reference
   - restores the original centered English headline under the cards
   - keeps the autoplay video/text block after the purple content section
------------------------------------------------------------ */
.scroll-scene {
  height: 292vh !important;
  margin-bottom: 0 !important;
}

.carousel-copy.stream-intro.stream-intro-english {
  display: block !important;
  position: absolute !important;
  left: 50% !important;
  top: calc(var(--row-top) + var(--card-height) + clamp(18px, 3.1vh, 40px)) !important;
  width: min(980px, calc(100vw - 48px)) !important;
  padding: 0 0 clamp(84px, 10vh, 132px) !important;
  text-align: center !important;
  color: #050505 !important;
  direction: ltr !important;
  grid-template-columns: none !important;
  gap: 0 !important;
  align-items: initial !important;
  justify-content: initial !important;
  z-index: 30 !important;
  overflow: visible !important;
  pointer-events: none;
}

.carousel-copy.stream-intro.stream-intro-english h2 {
  margin: 0 !important;
  font-family: inherit !important;
  color: #050505 !important;
  font-size: clamp(50px, 5.8vw, 94px) !important;
  line-height: .91 !important;
  font-weight: 950 !important;
  letter-spacing: -.078em !important;
  text-align: center !important;
}

.carousel-copy.stream-intro.stream-intro-english p {
  margin: clamp(20px, 2.3vw, 34px) auto 0 !important;
  max-width: 870px !important;
  color: #111 !important;
  font-family: inherit !important;
  font-size: clamp(17px, 1.32vw, 24px) !important;
  line-height: 1.35 !important;
  font-weight: 400 !important;
  letter-spacing: -.035em !important;
  text-align: center !important;
}

.carousel-copy.stream-intro.stream-intro-english .carousel-cta {
  display: inline-grid !important;
  place-items: center !important;
  width: 206px !important;
  height: 62px !important;
  margin: clamp(28px, 3vw, 42px) auto 0 !important;
  border-radius: 999px !important;
  background: var(--orange) !important;
  color: #050505 !important;
  font-weight: 950 !important;
  text-decoration: none !important;
  position: relative !important;
  z-index: 8 !important;
  box-shadow: 0 18px 42px rgba(255,122,61,.22) !important;
}

.carousel-copy.stream-intro.stream-intro-english .carousel-cta:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 22px 48px rgba(255,122,61,.30) !important;
}

.content-love-section {
  margin-top: clamp(0px, 0vh, 126px) !important;
}

.stream-after-love {
  position: relative !important;
  z-index: 3 !important;
  background: #fff !important;
  padding: clamp(86px, 11vh, 140px) 0 clamp(90px, 11vh, 148px) !important;
  overflow: hidden !important;
}

.stream-after-love-inner {
  width: min(1280px, calc(100% - 72px)) !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: minmax(420px, .92fr) minmax(420px, 1fr) !important;
  align-items: center !important;
  gap: clamp(42px, 6vw, 96px) !important;
}

.stream-after-video-frame {
  position: relative !important;
  width: 100% !important;
  max-width: 560px !important;
  justify-self: center !important;
  aspect-ratio: 16 / 9 !important;
  padding: clamp(10px, 1vw, 15px) !important;
  border-radius: clamp(26px, 3vw, 44px) !important;
  background: #050505 !important;
  box-shadow: 0 26px 64px rgba(0,0,0,.20) !important;
  overflow: hidden !important;
  isolation: isolate !important;
}

.stream-after-video-frame::after {
  content: "" !important;
  position: absolute !important;
  inset: clamp(10px, 1vw, 15px) !important;
  border-radius: clamp(18px, 2.2vw, 32px) !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08) !important;
  pointer-events: none !important;
  z-index: 2 !important;
}

.stream-after-video {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  border-radius: clamp(18px, 2.2vw, 32px) !important;
  object-fit: cover !important;
  background: #000 !important;
}

.stream-after-copy {
  justify-self: end !important;
  max-width: 660px !important;
  text-align: left !important;
  direction: ltr !important;
}

.stream-after-copy h2 {
  margin: 0 !important;
  color: #050505 !important;
  font-size: clamp(48px, 5.4vw, 94px) !important;
  line-height: .88 !important;
  font-weight: 950 !important;
  letter-spacing: -.075em !important;
}

.stream-after-copy p {
  margin: clamp(22px, 2vw, 30px) 0 0 !important;
  max-width: 620px !important;
  color: #111 !important;
  font-size: clamp(18px, 1.35vw, 24px) !important;
  line-height: 1.38 !important;
  font-weight: 500 !important;
  letter-spacing: -.035em !important;
}

.stream-after-cta {
  display: inline-grid !important;
  place-items: center !important;
  width: 206px !important;
  height: 62px !important;
  margin-top: clamp(24px, 2.3vw, 34px) !important;
  border-radius: 999px !important;
  background: var(--orange) !important;
  color: #050505 !important;
  font-weight: 950 !important;
  text-decoration: none !important;
  box-shadow: 0 18px 42px rgba(255,122,61,.22) !important;
}

@media (max-width: 980px) {
  .scroll-scene { height: 310vh !important; }
  .carousel-copy.stream-intro.stream-intro-english {
    top: calc(var(--row-top) + var(--card-height) + 24px) !important;
    width: min(92vw, 720px) !important;
  }
  .carousel-copy.stream-intro.stream-intro-english h2 {
    font-size: clamp(38px, 10vw, 66px) !important;
  }
  .carousel-copy.stream-intro.stream-intro-english p { font-size: 16px !important; }
  .content-love-section { margin-top: 84px !important; }

  .stream-after-love { padding: 70px 0 92px !important; }
  .stream-after-love-inner {
    width: min(92vw, 720px) !important;
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .stream-after-video-frame {
    order: 1 !important;
    width: min(92vw, 560px) !important;
  }
  .stream-after-copy {
    order: 2 !important;
    justify-self: center !important;
    text-align: center !important;
  }
  .stream-after-copy p { margin-inline: auto !important; }
}

@media (max-width: 560px) {
  .stream-after-copy h2 { font-size: clamp(38px, 13vw, 58px) !important; }
  .stream-after-copy p { font-size: 16px !important; }
  .stream-after-cta { width: 188px !important; height: 56px !important; }
}

/* ------------------------------------------------------------
   Streaming hero + moving user reviews
   Added after premium subscription plans.
------------------------------------------------------------ */
.streaming-study-hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  background: #050505;
  overflow: hidden;
  isolation: isolate;
}

.streaming-study-bg {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  background-image: url('assets/images/streaming-studying.webp');
  background-size: cover;
  background-position: center;
}

.streaming-study-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 72% 38%, rgba(255,255,255,.04), transparent 28%), rgba(0,0,0,.18);
  z-index: 1;
}

.streaming-study-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(0,0,0,.38), rgba(0,0,0,.08) 34%, rgba(0,0,0,.58)),
    linear-gradient(90deg, rgba(0,0,0,.52), rgba(0,0,0,.10) 52%, rgba(0,0,0,.16));
}

.streaming-study-bg h2 {
  position: relative;
  z-index: 3;
  margin: 0;
  width: min(900px, calc(100% - 42px));
  color: #fff;
  text-align: center;
  font-size: clamp(54px, 6.4vw, 118px);
  line-height: .88;
  font-weight: 950;
  letter-spacing: -.08em;
  text-shadow: 0 8px 36px rgba(0,0,0,.35);
}

.reviews-motion-section {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: clamp(92px, 12vh, 150px) 0 clamp(110px, 14vh, 180px);
  isolation: isolate;
}

.reviews-motion-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(36px, 5vh, 76px);
}

.reviews-heading {
  margin: 0 auto;
  width: min(980px, calc(100% - 44px));
  text-align: center;
  color: #050505;
  font-size: clamp(52px, 6.5vw, 112px);
  line-height: .88;
  font-weight: 950;
  letter-spacing: -.078em;
}

.reviews-row {
  --reviews-x: 0px;
  width: max-content;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 32px);
  padding: 0 clamp(20px, 3vw, 54px);
  transform: translate3d(var(--reviews-x), 0, 0);
  will-change: transform;
}

.reviews-row-top { margin-left: -110px; }
.reviews-row-mid { margin-left: -40px; }
.reviews-row-bottom { margin-left: -160px; }

.review-bubble {
  position: relative;
  flex: 0 0 clamp(320px, 28vw, 560px);
  min-height: 132px;
  padding: 24px 26px 22px;
  border-radius: 18px;
  color: #050505;
  box-shadow: 0 18px 48px rgba(0,0,0,.06);
}

.review-bubble::before {
  content: "";
  position: absolute;
  left: -13px;
  top: 46%;
  width: 26px;
  height: 26px;
  background: inherit;
  transform: rotate(45deg);
  border-radius: 5px;
}

.review-bubble p {
  margin: 0;
  font-size: clamp(14px, .95vw, 18px);
  line-height: 1.32;
  font-weight: 700;
  letter-spacing: -.025em;
}

.review-bubble.small { flex-basis: clamp(210px, 16vw, 300px); }
.review-bubble.wide { flex-basis: clamp(420px, 34vw, 650px); }

.review-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.015em;
}

.review-meta img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 3px 10px rgba(0,0,0,.15);
}

.review-meta b {
  margin-left: 4px;
  color: #00a77a;
  font-size: 13px;
  font-weight: 700;
}

.review-purple { background: #d9a2ff; }
.review-lime { background: #d7f66f; }
.review-orange { background: #ff7a3d; }
.review-mint { background: #68dcb3; }
.review-gray { background: #e5e5e5; }
.review-blue { background: #85aef5; }

@media (max-width: 900px) {
  .streaming-study-hero,
  .streaming-study-bg { min-height: 82svh; }
  .streaming-study-bg h2 { font-size: clamp(44px, 13vw, 76px); }
  .reviews-motion-section { padding: 76px 0 108px; }
  .reviews-heading { font-size: clamp(42px, 13vw, 78px); }
  .review-bubble { flex-basis: min(82vw, 420px); }
  .review-bubble.wide { flex-basis: min(88vw, 480px); }
}

/* ------------------------------------------------------------
   FINAL USER CHANGE 2026-06-23
   - Pricing moved after review/testimonial section.
   - Review cards prepared for Persian RTL writing.
   - Charcoal footer added after premium plans.
------------------------------------------------------------ */

.reviews-motion-section[dir="rtl"] .reviews-row {
  direction: rtl !important;
}

.reviews-motion-section[dir="rtl"] .review-bubble {
  direction: rtl !important;
  text-align: right !important;
  font-family: "Vazirmatn", "Yekan Bakh", "IRANYekan", "IranSans", Tahoma, Arial, sans-serif !important;
}

.reviews-motion-section[dir="rtl"] .review-bubble::before {
  left: auto !important;
  right: -13px !important;
}

.reviews-motion-section[dir="rtl"] .review-meta {
  direction: rtl !important;
  justify-content: flex-start !important;
}

.reviews-motion-section[dir="rtl"] .review-meta b {
  margin-left: 0 !important;
  margin-right: 4px !important;
}

/* Pricing now belongs after reviews, so keep it visually close and final. */
.reviews-motion-section + .pricing-section {
  margin-top: 0 !important;
  padding-top: clamp(76px, 9vh, 120px) !important;
}

.pricing-section {
  scroll-margin-top: 100px !important;
}

.site-footer {
  position: relative !important;
  z-index: 4 !important;
  background:
    radial-gradient(circle at 18% 12%, rgba(255,122,61,.13), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(213,249,89,.10), transparent 26%),
    #171717 !important;
  color: #fff !important;
  padding: clamp(62px, 8vh, 96px) clamp(20px, 5vw, 78px) clamp(42px, 6vh, 72px) !important;
  overflow: hidden !important;
  font-family: inherit !important;
}

.site-footer::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(180deg, rgba(255,255,255,.045), transparent 38%) !important;
  pointer-events: none !important;
}

.site-footer-inner {
  position: relative !important;
  z-index: 2 !important;
  width: min(1180px, 100%) !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: minmax(220px, 1fr) minmax(220px, 1fr) minmax(260px, 1.25fr) !important;
  gap: clamp(34px, 5vw, 86px) !important;
  align-items: start !important;
}

.footer-brand-block {
  grid-column: 3 !important;
  text-align: right !important;
  justify-self: end !important;
  max-width: 360px !important;
}

.footer-logo {
  display: inline-block !important;
  color: var(--orange) !important;
  font-size: clamp(30px, 2.8vw, 46px) !important;
  line-height: 1 !important;
  font-weight: 950 !important;
  letter-spacing: -.055em !important;
  text-decoration: none !important;
  margin-bottom: 18px !important;
}

.footer-brand-block p {
  margin: 0 0 24px !important;
  color: rgba(255,255,255,.72) !important;
  font-size: 16px !important;
  line-height: 1.55 !important;
  font-weight: 600 !important;
}

.footer-column {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 11px !important;
  min-width: 0 !important;
}

.site-footer-inner .footer-column:nth-of-type(1) {
  grid-column: 2 !important;
}

.site-footer-inner .footer-column:nth-of-type(2) {
  grid-column: 1 !important;
}

.footer-column h3 {
  margin: 0 0 10px !important;
  color: #fff !important;
  font-size: clamp(19px, 1.4vw, 25px) !important;
  line-height: 1.1 !important;
  font-weight: 950 !important;
  letter-spacing: -.035em !important;
}

.footer-column a {
  color: rgba(255,255,255,.68) !important;
  text-decoration: none !important;
  font-size: 15px !important;
  line-height: 1.25 !important;
  font-weight: 700 !important;
  transition: color .2s ease, transform .2s ease !important;
}

.footer-column a:hover {
  color: var(--orange) !important;
  transform: translateX(3px) !important;
}

.footer-socials {
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
  gap: 12px !important;
}

.social-icon {
  width: 44px !important;
  height: 44px !important;
  display: inline-grid !important;
  place-items: center !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,.08) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  text-decoration: none !important;
  transition: transform .2s ease, background .2s ease, border-color .2s ease !important;
}

.social-icon svg {
  width: 22px !important;
  height: 22px !important;
  fill: currentColor !important;
}

.social-icon:hover {
  transform: translateY(-2px) !important;
  background: var(--orange) !important;
  color: #111 !important;
  border-color: var(--orange) !important;
}

@media (max-width: 900px) {
  .site-footer-inner {
    grid-template-columns: 1fr !important;
    gap: 34px !important;
  }
  .footer-brand-block,
  .site-footer-inner .footer-column:nth-of-type(1),
  .site-footer-inner .footer-column:nth-of-type(2) {
    grid-column: 1 !important;
    justify-self: stretch !important;
    text-align: left !important;
  }
  .footer-socials {
    justify-content: flex-start !important;
  }
}

/* FOOTER SIZE + COLUMN ALIGNMENT FIX
   - Footer reduced in height
   - Logo/about/contact columns start on the same horizontal line
   - Three equal visual columns with clean spacing */
.site-footer {
  min-height: auto !important;
  padding: clamp(34px, 4.6vh, 54px) clamp(22px, 5vw, 72px) clamp(30px, 4.2vh, 48px) !important;
}

.site-footer-inner {
  width: min(1120px, 100%) !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(30px, 4.5vw, 64px) !important;
  align-items: start !important;
  justify-items: stretch !important;
  margin: 0 auto !important;
}

.footer-brand-block,
.footer-column {
  align-self: start !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.footer-brand-block {
  grid-column: 3 !important;
  justify-self: end !important;
  width: 100% !important;
  max-width: 300px !important;
  text-align: right !important;
}

.site-footer-inner .footer-column:nth-of-type(1) {
  grid-column: 2 !important;
  justify-self: center !important;
  width: 100% !important;
  max-width: 270px !important;
}

.site-footer-inner .footer-column:nth-of-type(2) {
  grid-column: 1 !important;
  justify-self: start !important;
  width: 100% !important;
  max-width: 330px !important;
}

.footer-column {
  gap: 8px !important;
}

.footer-column h3 {
  margin: 0 0 12px !important;
  font-size: clamp(18px, 1.25vw, 22px) !important;
  line-height: 1 !important;
}

.footer-column a {
  font-size: 14px !important;
  line-height: 1.18 !important;
}

.footer-logo {
  font-size: clamp(28px, 2.2vw, 38px) !important;
  margin-bottom: 10px !important;
}

.footer-brand-block p {
  font-size: 14px !important;
  line-height: 1.45 !important;
  margin: 0 0 16px !important;
}

.footer-socials {
  gap: 9px !important;
}

.social-icon {
  width: 38px !important;
  height: 38px !important;
}

.social-icon svg {
  width: 19px !important;
  height: 19px !important;
}

@media (max-width: 900px) {
  .site-footer {
    padding: 34px 22px 34px !important;
  }

  .site-footer-inner {
    grid-template-columns: 1fr !important;
    gap: 26px !important;
  }

  .footer-brand-block,
  .site-footer-inner .footer-column:nth-of-type(1),
  .site-footer-inner .footer-column:nth-of-type(2) {
    grid-column: 1 !important;
    justify-self: stretch !important;
    max-width: none !important;
    text-align: left !important;
  }

  .footer-socials {
    justify-content: flex-start !important;
  }
}

/* ============================================================
   FINAL FOOTER ALIGNMENT OVERRIDE
   Fixes footer columns so logo/About/Contact sit on one clean row
   with equal visual spacing. This block intentionally overrides all
   previous footer positioning rules.
============================================================ */
.site-footer {
  position: relative !important;
  z-index: 4 !important;
  min-height: 0 !important;
  height: auto !important;
  padding: clamp(42px, 5vh, 64px) clamp(24px, 5vw, 80px) clamp(42px, 5vh, 64px) !important;
  margin: 0 !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 122, 61, .11), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(213, 249, 89, .10), transparent 28%),
    #171717 !important;
  color: #fff !important;
}

.site-footer::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(180deg, rgba(255,255,255,.04), transparent 45%) !important;
  pointer-events: none !important;
}

.site-footer-inner {
  position: relative !important;
  z-index: 2 !important;
  width: min(1160px, 100%) !important;
  max-width: 1160px !important;
  min-height: 0 !important;
  height: auto !important;
  margin: 0 auto !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  grid-auto-rows: auto !important;
  gap: clamp(36px, 5vw, 78px) !important;
  align-items: start !important;
  justify-items: stretch !important;
}

.site-footer-inner > .footer-brand-block,
.site-footer-inner > .footer-column {
  position: static !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  transform: none !important;
  translate: none !important;
  align-self: start !important;
  margin: 0 !important;
  padding: 0 !important;
  min-height: 0 !important;
  height: auto !important;
}

.site-footer-inner > .footer-brand-block {
  grid-column: 3 !important;
  grid-row: 1 !important;
  justify-self: end !important;
  width: 100% !important;
  max-width: 310px !important;
  text-align: right !important;
}

.site-footer-inner > nav[aria-label="About Lingopie"] {
  grid-column: 2 !important;
  grid-row: 1 !important;
  justify-self: center !important;
  width: 100% !important;
  max-width: 280px !important;
  text-align: left !important;
}

.site-footer-inner > nav[aria-label="Contact and support"] {
  grid-column: 1 !important;
  grid-row: 1 !important;
  justify-self: start !important;
  width: 100% !important;
  max-width: 340px !important;
  text-align: left !important;
}

.site-footer .footer-column {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 8px !important;
}

.site-footer .footer-column h3 {
  margin: 0 0 12px !important;
  padding: 0 !important;
  color: #fff !important;
  font-size: clamp(18px, 1.2vw, 22px) !important;
  line-height: 1.05 !important;
  font-weight: 950 !important;
  letter-spacing: -.035em !important;
}

.site-footer .footer-column a {
  display: block !important;
  color: rgba(255,255,255,.68) !important;
  text-decoration: none !important;
  font-size: 14px !important;
  line-height: 1.2 !important;
  font-weight: 700 !important;
}

.site-footer .footer-logo {
  display: inline-block !important;
  margin: 0 0 10px !important;
  padding: 0 !important;
  color: var(--orange) !important;
  font-size: clamp(28px, 2.15vw, 38px) !important;
  line-height: 1 !important;
  font-weight: 950 !important;
  letter-spacing: -.055em !important;
  text-decoration: none !important;
}

.site-footer .footer-brand-block p {
  margin: 0 0 16px !important;
  padding: 0 !important;
  color: rgba(255,255,255,.72) !important;
  font-size: 14px !important;
  line-height: 1.42 !important;
  font-weight: 600 !important;
}

.site-footer .footer-socials {
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
  gap: 9px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.site-footer .social-icon {
  width: 38px !important;
  height: 38px !important;
  min-width: 38px !important;
  min-height: 38px !important;
  display: inline-grid !important;
  place-items: center !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,.08) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  color: #fff !important;
}

.site-footer .social-icon svg {
  width: 19px !important;
  height: 19px !important;
  fill: currentColor !important;
}

@media (max-width: 900px) {
  .site-footer {
    padding: 36px 24px !important;
  }

  .site-footer-inner {
    width: 100% !important;
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .site-footer-inner > .footer-brand-block,
  .site-footer-inner > nav[aria-label="About Lingopie"],
  .site-footer-inner > nav[aria-label="Contact and support"] {
    grid-column: 1 !important;
    grid-row: auto !important;
    justify-self: stretch !important;
    max-width: none !important;
    width: 100% !important;
    text-align: left !important;
  }

  .site-footer .footer-socials {
    justify-content: flex-start !important;
  }
}


/* ============================================================
   RESPONSIVE REFINEMENT - 2026-06-23
   Persian compact header, real hamburger menu, removed post-copy CTAs,
   and smaller purple-section cards on tablet/mobile.
============================================================ */
html[lang="fa"], body {
  font-family: Vazirmatn, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Remove the orange CTA that appeared after the sentence
   "Turn your late-night TV binges..." in every viewport. */
.carousel-copy.stream-intro.stream-intro-english .carousel-cta,
.carousel-cta,
.stream-after-cta {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Persian, shorter, cleaner header. */
.site-header .nav-shell {
  gap: clamp(14px, 2vw, 28px) !important;
}

.brand {
  letter-spacing: -.025em !important;
}

.nav-links {
  direction: rtl !important;
  justify-content: center !important;
  margin-inline: auto !important;
  gap: clamp(16px, 2vw, 34px) !important;
  font-family: Vazirmatn, inherit !important;
  font-weight: 200 !important;
}

.nav-trigger {
  text-align: right !important;
  white-space: nowrap !important;
}

.nav-actions {
  margin-left: 0 !important;
  margin-inline-start: auto !important;
  gap: clamp(12px, 1.4vw, 18px) !important;
  font-family: Vazirmatn, inherit !important;
}

.language-button,
.login-link,
.nav-cta {
  font-family: Vazirmatn, inherit !important;
  white-space: nowrap !important;
}

.header-language-menu {
  direction: rtl !important;
  grid-template-columns: 1fr !important;
  width: 190px !important;
}

.header-language-option {
  justify-content: flex-start !important;
  text-align: right !important;
}

.mobile-menu {
  cursor: pointer !important;
  z-index: 160 !important;
}

/* Real right-side hamburger drawer. */
.mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 140;
  background: rgba(0,0,0,.36);
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 150;
  width: min(86vw, 360px);
  height: 100svh;
  padding: 22px 22px 28px;
  background: rgba(255,255,255,.96);
  color: #050505;
  box-shadow: -22px 0 58px rgba(0,0,0,.18);
  transform: translateX(104%);
  transition: transform .28s cubic-bezier(.19,1,.22,1);
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-family: Vazirmatn, inherit;
  backdrop-filter: blur(18px) saturate(1.12);
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
}

body.mobile-nav-open {
  overflow: hidden;
}

body.mobile-nav-open .mobile-drawer-backdrop {
  opacity: 1;
  pointer-events: auto;
}

body.mobile-nav-open .mobile-drawer {
  transform: translateX(0);
}

.mobile-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.mobile-drawer-head strong {
  color: var(--orange);
  font-size: 25px;
  font-weight: 950;
  letter-spacing: -.03em;
}

.mobile-drawer-close {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: #f1f1f1;
  color: #050505;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.mobile-drawer-links {
  display: grid;
  gap: 8px;
  margin-top: 6px;
}

.mobile-drawer-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
  min-height: 50px;
  padding: 0 14px;
  border-radius: 15px;
  background: #f7f7f7;
  color: #080808;
  font-size: 16px;
  font-weight: 600;
}

.mobile-drawer-links a:hover {
  background: var(--hover-yellow);
}

.mobile-drawer-actions {
  margin-top: auto;
  display: grid;
  gap: 10px;
}

.mobile-drawer-login,
.mobile-drawer-cta {
  display: grid;
  place-items: center;
  min-height: 52px;
  border-radius: 999px;
  font-weight: 900;
}

.mobile-drawer-login {
  background: #f3f3f3;
  color: #050505;
}

.mobile-drawer-cta {
  background: var(--orange);
  color: #050505;
  box-shadow: 0 12px 28px rgba(255,122,61,.22);
}

/* Header breakpoints: fewer desktop links, hamburger when space becomes tight. */
@media (min-width: 981px) {
  .mobile-menu {
    display: none !important;
  }

  .site-header.is-compact .mobile-menu {
    display: none !important;
  }
}

@media (max-width: 1100px) and (min-width: 981px) {
  .nav-links { gap: 18px !important; font-size: 14px !important; }
  .nav-cta { min-width: 136px !important; height: 48px !important; }
  .language-button, .login-link { font-size: 14px !important; }
}

@media (max-width: 980px) {
  .nav-shell {
    width: min(100% - 28px, 820px) !important;
    padding-inline: 16px !important;
  }

  .nav-links,
  .nav-actions {
    display: none !important;
  }

  .mobile-menu {
    display: inline-grid !important;
    place-items: center !important;
    margin-left: 0 !important;
    margin-inline-start: auto !important;
    background: rgba(255,255,255,.30) !important;
  }

  .site-header.is-white .mobile-menu,
  .site-header.is-expanded .mobile-menu,
  .site-header.is-compact .mobile-menu {
    display: inline-grid !important;
    opacity: 1 !important;
    transform: none !important;
    width: 46px !important;
    max-width: 46px !important;
    min-width: 46px !important;
    padding: 0 !important;
    pointer-events: auto !important;
    background: #f4f4f4 !important;
    color: #050505 !important;
  }
}

@media (max-width: 560px) {
  .nav-shell {
    width: min(100% - 20px, 420px) !important;
    height: 56px !important;
    padding-inline: 14px !important;
  }

  .brand {
    font-size: 22px !important;
  }

  .mobile-menu {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    max-width: 42px !important;
    font-size: 21px !important;
  }
}

/* Smaller, proportional cards in the purple horizontal block. */
@media (max-width: 900px) {
  .content-love-section {
    margin-top: clamp(56px, 8vh, 86px) !important;
    margin-bottom: clamp(48px, 7vh, 78px) !important;
    padding: clamp(52px, 7vh, 78px) 0 clamp(66px, 8vh, 92px) !important;
    overflow: hidden !important;
  }

  .content-love-copy {
    width: min(92vw, 680px) !important;
    margin-bottom: 28px !important;
  }

  .content-love-copy h2 {
    font-size: clamp(40px, 10vw, 66px) !important;
    line-height: .93 !important;
  }

  .content-love-copy p {
    margin-top: 14px !important;
    font-size: clamp(14px, 3.1vw, 17px) !important;
    line-height: 1.45 !important;
  }

  .content-love-track {
    gap: 14px !important;
    padding-inline: 18px !important;
  }

  .love-card {
    flex-basis: min(58vw, 250px) !important;
    height: clamp(286px, 46vh, 340px) !important;
    border-radius: 14px !important;
  }

  .love-card h3 {
    padding: 18px 17px 0 !important;
    font-size: clamp(16px, 3.8vw, 20px) !important;
    line-height: 1.05 !important;
  }

  .love-card-art {
    height: 63% !important;
    background-size: cover !important;
  }
}

@media (max-width: 480px) {
  .content-love-section {
    padding-top: 46px !important;
    padding-bottom: 70px !important;
  }

  .content-love-track {
    gap: 12px !important;
    padding-inline: 14px !important;
  }

  .love-card {
    flex-basis: min(64vw, 230px) !important;
    height: clamp(250px, 40vh, 310px) !important;
  }

  .love-card h3 {
    font-size: 16px !important;
    padding: 16px 15px 0 !important;
  }

  .love-card-art {
    height: 61% !important;
  }
}

@media (max-width: 390px) {
  .love-card {
    flex-basis: 214px !important;
    height: 286px !important;
  }

  .content-love-copy h2 {
    font-size: 39px !important;
  }
}

/* ============================================================
   RESPONSIVE REFINEMENT - 2026-06-23 v2
   Move Persian desktop menu next to logo + smaller image cards.
============================================================ */
@media (min-width: 981px) {
  .site-header .nav-shell {
    justify-content: flex-start !important;
  }

  .site-header .brand {
    flex: 0 0 auto !important;
  }

  .site-header .nav-links {
    flex: 0 0 auto !important;
    justify-content: flex-start !important;
    margin: 0 !important;
    margin-inline-start: clamp(18px, 2vw, 34px) !important;
    margin-inline-end: 0 !important;
    gap: clamp(14px, 1.6vw, 24px) !important;
  }

  .site-header .nav-actions {
    margin-left: auto !important;
    margin-inline-start: auto !important;
  }
}

@media (max-width: 980px) {
  :root {
    --card-gap: 12px;
  }

  .movie-card,
  .center-slot,
  .video-cover {
    border-radius: 14px !important;
  }

  .movie-card h2,
  .video-cover h2 {
    left: 17px !important;
    bottom: 18px !important;
    font-size: clamp(25px, 4.2vw, 34px) !important;
    line-height: .92 !important;
  }

  .country-pill {
    left: 12px !important;
    top: 12px !important;
    height: 27px !important;
    padding: 0 10px !important;
    font-size: 12px !important;
  }

  .country-pill .flag-img {
    width: 18px !important;
    height: 12px !important;
  }
}

@media (max-width: 560px) {
  :root {
    --card-gap: 9px;
  }

  .movie-card,
  .center-slot,
  .video-cover {
    border-radius: 12px !important;
  }

  .movie-card h2,
  .video-cover h2 {
    left: 13px !important;
    bottom: 14px !important;
    font-size: clamp(21px, 6.4vw, 27px) !important;
    letter-spacing: -.045em !important;
  }

  .video-cover em {
    margin-top: 5px !important;
  }

  .country-pill {
    left: 10px !important;
    top: 10px !important;
    height: 24px !important;
    padding: 0 8px !important;
    gap: 5px !important;
    font-size: 11px !important;
  }

  .country-pill .flag-img {
    width: 16px !important;
    height: 11px !important;
  }

  .language-strip {
    bottom: 18px !important;
  }
}

/* Purple horizontal block: make cards/images less dominant on tablet and phone. */
@media (max-width: 900px) {
  .content-love-copy {
    margin-bottom: 22px !important;
  }

  .content-love-track {
    gap: 12px !important;
    padding-inline: 14px !important;
  }

  .love-card {
    flex-basis: min(52vw, 224px) !important;
    height: clamp(244px, 39vh, 300px) !important;
    border-radius: 13px !important;
  }

  .love-card h3 {
    padding: 16px 15px 0 !important;
    font-size: clamp(15px, 3.2vw, 18px) !important;
    line-height: 1.08 !important;
  }

  .love-card-art {
    height: 58% !important;
    background-size: cover !important;
    background-position: center !important;
  }
}

@media (max-width: 480px) {
  .content-love-copy h2 {
    font-size: clamp(34px, 9vw, 42px) !important;
  }

  .content-love-copy p {
    font-size: 13.5px !important;
    max-width: 92vw !important;
  }

  .content-love-track {
    gap: 10px !important;
    padding-inline: 12px !important;
  }

  .love-card {
    flex-basis: min(54vw, 202px) !important;
    height: clamp(218px, 34vh, 260px) !important;
  }

  .love-card h3 {
    font-size: 15px !important;
    padding: 14px 13px 0 !important;
  }

  .love-card-art {
    height: 55% !important;
  }
}

@media (max-width: 390px) {
  .love-card {
    flex-basis: 190px !important;
    height: 242px !important;
  }

  .love-card h3 {
    font-size: 14px !important;
  }
}

/* ------------------------------------------------------------
   FINAL MOBILE PRICING SIZE FIX 2026-06-23
   Makes premium plan cards visibly smaller on narrow screens.
------------------------------------------------------------ */
@media (max-width: 620px) {
  .pricing-section {
    padding-top: 34px !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
    padding-bottom: 54px !important;
  }

  .pricing-inner {
    width: 100% !important;
  }

  .pricing-heading {
    margin-bottom: 20px !important;
  }

  .pricing-heading h2 {
    font-size: clamp(27px, 7.2vw, 34px) !important;
    line-height: 1.25 !important;
  }

  .pricing-eyebrow {
    font-size: 12px !important;
    padding: 7px 14px !important;
  }

  .pricing-grid {
    width: min(82vw, 300px) !important;
    margin: 0 auto !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    justify-items: center !important;
  }

  .pricing-card {
    width: 100% !important;
    min-height: 178px !important;
    padding: 20px 18px 18px !important;
    border-radius: 22px !important;
    box-shadow: 0 14px 42px rgba(0,0,0,.14) !important;
  }

  .pricing-card h3 {
    margin-bottom: 8px !important;
    font-size: 22px !important;
    line-height: 1.15 !important;
  }

  .discount {
    min-width: 44px !important;
    height: 26px !important;
    margin-bottom: 9px !important;
    padding: 0 9px !important;
    font-size: 12px !important;
  }

  .price {
    gap: 6px !important;
  }

  .price strong {
    font-size: 30px !important;
    line-height: 1.05 !important;
  }

  .price span {
    font-size: 11px !important;
  }

  .pricing-button {
    width: min(100%, 190px) !important;
    height: 44px !important;
    margin-top: 18px !important;
    border-radius: 12px !important;
    font-size: 14px !important;
  }

  .plan-badge {
    top: -15px !important;
    padding: 7px 18px !important;
    font-size: 12px !important;
  }
}

@media (max-width: 430px) {
  .pricing-grid {
    width: min(78vw, 286px) !important;
    gap: 13px !important;
  }

  .pricing-card {
    min-height: 168px !important;
    padding: 18px 16px 16px !important;
    border-radius: 20px !important;
  }

  .pricing-card h3 {
    font-size: 20px !important;
  }

  .price strong {
    font-size: 27px !important;
  }

  .pricing-button {
    width: min(100%, 170px) !important;
    height: 40px !important;
    margin-top: 15px !important;
    font-size: 13px !important;
  }
}

@media (max-width: 380px) {
  .pricing-grid {
    width: min(76vw, 270px) !important;
  }

  .pricing-card {
    min-height: 158px !important;
    padding: 16px 14px 15px !important;
  }

  .price strong {
    font-size: 25px !important;
  }
}

/* ------------------------------------------------------------
   USER FIX v4: faster first-screen video shrink on all viewports.
   The JS timing already completes the shrink earlier; these final
   height overrides reduce the physical scroll distance as well.
------------------------------------------------------------ */
.scroll-scene {
  height: 285vh !important;
}

@media (max-width: 980px) {
  .scroll-scene {
    height: 270vh !important;
  }
}

@media (max-width: 560px) {
  .scroll-scene {
    height: 255vh !important;
  }
}

/* ------------------------------------------------------------
   USER FIX v5: three-language homepage switcher.
   Header language menu now shows only Persian, English, German.
------------------------------------------------------------ */
.header-language-option.is-active,
.mobile-language-option.is-active {
  background: rgba(255, 122, 61, .14) !important;
  color: var(--orange) !important;
}

body[data-language="en"] .header-language-menu,
body[data-language="de"] .header-language-menu {
  direction: ltr !important;
}

body[data-language="en"] .header-language-option,
body[data-language="de"] .header-language-option {
  justify-content: flex-start !important;
  text-align: left !important;
}

.mobile-drawer-language {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(0,0,0,.045);
}

.mobile-language-option {
  min-height: 44px;
  border: 0;
  border-radius: 13px;
  background: #fff;
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
  padding: 0 13px;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  font-weight: 850;
  text-align: start;
}

.mobile-language-option:hover {
  background: var(--hover-yellow);
}

.mobile-drawer[dir="rtl"] .mobile-language-option,
.mobile-drawer[dir="rtl"] .mobile-drawer-links a {
  justify-content: flex-start;
  text-align: right;
}

/* ------------------------------------------------------------
   USER UPDATE v6 - Persian font/alignment + German overflow control
   - Uses a Yekan-first font stack without bundling font files.
   - Persian text blocks are centered.
   - German long labels/headlines are reduced and wrapped safely.
------------------------------------------------------------ */
:root {
  --fa-font: "Dana", "Vazirmatn", Tahoma, Arial, sans-serif;
}

body[data-language="fa"] {
  font-family: var(--fa-font) !important;
}

body[data-language="fa"] :is(
  .sale-bar,
  .nav-links,
  .nav-actions,
  .header-language-menu,
  .mobile-drawer,
  .hero-copy,
  .language-strip,
  .carousel-copy,
  .stream-after-copy,
  .content-love-copy,
  .love-card,
  .feature-copy,
  .word-demo-card,
  .quiz-phone,
  .streaming-study-bg,
  .reviews-motion-section,
  .pricing-section,
  .site-footer
) {
  font-family: var(--fa-font) !important;
  letter-spacing: 0 !important;
  word-spacing: 0 !important;
}

/* Keep the Latin logo sharp instead of forcing a Persian font on it. */
body[data-language="fa"] :is(.brand, .footer-logo, .mobile-drawer-head strong) {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  letter-spacing: -.025em !important;
}

body[data-language="fa"] :is(
  .hero-copy,
  .hero-title,
  .hero-subtitle,
  .carousel-copy.stream-intro.stream-intro-english,
  .carousel-copy.stream-intro.stream-intro-english h2,
  .carousel-copy.stream-intro.stream-intro-english p,
  .stream-after-copy,
  .stream-after-copy h2,
  .stream-after-copy p,
  .content-love-copy,
  .content-love-copy h2,
  .content-love-copy p,
  .feature-copy,
  .feature-copy h2,
  .feature-copy p,
  .reviews-heading,
  .reviews-motion-section .review-bubble,
  .pricing-heading,
  .pricing-card,
  .footer-brand-block,
  .footer-column
) {
  text-align: center !important;
}

body[data-language="fa"] :is(.hero-subtitle, .stream-after-copy p, .content-love-copy p, .feature-copy p, .pricing-heading p, .footer-brand-block p) {
  margin-left: auto !important;
  margin-right: auto !important;
}

body[data-language="fa"] .hero-title {
  line-height: 1.15 !important;
  letter-spacing: 0 !important;
}

body[data-language="fa"] .hero-word {
  text-shadow: 0 5px 0 rgba(0,0,0,.22) !important;
}

body[data-language="fa"] .hero-word::after {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif !important;
}

body[data-language="fa"] .nav-links {
  direction: rtl !important;
  text-align: center !important;
}

body[data-language="fa"] .nav-trigger,
body[data-language="fa"] .header-language-option,
body[data-language="fa"] .mobile-language-option {
  justify-content: center !important;
  text-align: center !important;
}

body[data-language="fa"] .mobile-drawer {
  text-align: center !important;
}

body[data-language="fa"] .mobile-drawer-links a,
body[data-language="fa"] .mobile-drawer-actions a {
  justify-content: center !important;
  text-align: center !important;
}

body[data-language="fa"] .stream-after-copy {
  justify-self: center !important;
  direction: rtl !important;
}

body[data-language="fa"] .feature-copy {
  justify-self: center !important;
}

body[data-language="fa"] .reviews-motion-section .review-bubble {
  direction: rtl !important;
  text-align: center !important;
}

body[data-language="fa"] .reviews-motion-section .review-meta {
  justify-content: center !important;
  direction: rtl !important;
}

body[data-language="fa"] .pricing-section {
  direction: rtl !important;
}

body[data-language="fa"] .price {
  direction: ltr !important;
}

body[data-language="fa"] .site-footer-inner > .footer-brand-block,
body[data-language="fa"] .site-footer-inner > nav[aria-label="About Lingopie"],
body[data-language="fa"] .site-footer-inner > nav[aria-label="Contact and support"] {
  justify-self: center !important;
  text-align: center !important;
}

body[data-language="fa"] .site-footer .footer-column {
  align-items: center !important;
}

body[data-language="fa"] .site-footer .footer-socials {
  justify-content: center !important;
}

/* German text can be long. Reduce critical typography and allow safe wrapping. */
body[data-language="de"] :is(h1, h2, h3, p, a, button, .review-bubble p, .pricing-button) {
  hyphens: auto;
  overflow-wrap: anywhere;
}

body[data-language="de"] .nav-links {
  gap: clamp(10px, 1.25vw, 18px) !important;
  font-size: 13px !important;
}

body[data-language="de"] .nav-actions {
  gap: 12px !important;
  font-size: 13px !important;
}

body[data-language="de"] .nav-cta {
  min-width: 142px !important;
  height: 48px !important;
  padding-inline: 16px !important;
}

body[data-language="de"] .language-button,
body[data-language="de"] .login-link {
  font-size: 13px !important;
}

body[data-language="de"] .hero-title {
  font-size: clamp(46px, 6.6vw, 112px) !important;
  line-height: .98 !important;
  letter-spacing: -.052em !important;
}

body[data-language="de"] .hero-subtitle {
  font-size: clamp(14px, 1.05vw, 19px) !important;
  line-height: 1.45 !important;
}

body[data-language="de"] .hero-cta {
  width: 222px !important;
  height: 78px !important;
  font-size: 17px !important;
}

body[data-language="de"] .language-item {
  font-size: 17px !important;
  padding-inline: 11px !important;
}

body[data-language="de"] .carousel-copy.stream-intro.stream-intro-english h2,
body[data-language="de"] .stream-after-copy h2 {
  font-size: clamp(42px, 5.05vw, 78px) !important;
  line-height: .98 !important;
  letter-spacing: -.055em !important;
}

body[data-language="de"] .carousel-copy.stream-intro.stream-intro-english p,
body[data-language="de"] .stream-after-copy p {
  font-size: clamp(15px, 1.1vw, 19px) !important;
  line-height: 1.5 !important;
  letter-spacing: -.02em !important;
}

body[data-language="de"] .content-love-copy h2 {
  font-size: clamp(42px, 5.3vw, 84px) !important;
  line-height: .96 !important;
  letter-spacing: -.055em !important;
}

body[data-language="de"] .content-love-copy p {
  font-size: clamp(15px, 1.1vw, 19px) !important;
}

body[data-language="de"] .love-card h3 {
  font-size: clamp(17px, 1.05vw, 22px) !important;
  line-height: 1.12 !important;
  letter-spacing: -.035em !important;
}

body[data-language="de"] .feature-copy h2,
body[data-language="de"] .feature-card-orange .feature-copy h2 {
  font-size: clamp(42px, 4.9vw, 80px) !important;
  line-height: 1.02 !important;
  letter-spacing: -.055em !important;
}

body[data-language="de"] .feature-copy p,
body[data-language="de"] .feature-card-orange .feature-copy p {
  font-size: clamp(15px, 1.08vw, 20px) !important;
  line-height: 1.48 !important;
}

body[data-language="de"] .feature-kicker {
  font-size: 13px !important;
  min-height: 34px !important;
  padding-inline: 15px !important;
}

body[data-language="de"] .word-tooltip strong {
  font-size: 14px !important;
  line-height: 1.18 !important;
}

body[data-language="de"] .streaming-study-bg h2 {
  font-size: clamp(52px, 7.8vw, 118px) !important;
  line-height: .95 !important;
}

body[data-language="de"] .reviews-heading {
  font-size: clamp(44px, 5.7vw, 88px) !important;
  line-height: .98 !important;
}

body[data-language="de"] .review-bubble p {
  font-size: clamp(13px, .82vw, 16px) !important;
  line-height: 1.38 !important;
}

body[data-language="de"] .review-meta {
  font-size: 12px !important;
}

body[data-language="de"] .pricing-heading h2 {
  font-size: clamp(28px, 3.3vw, 52px) !important;
  line-height: 1.2 !important;
}

body[data-language="de"] .pricing-eyebrow {
  font-size: 13px !important;
}

body[data-language="de"] .pricing-card h3 {
  font-size: clamp(20px, 1.65vw, 28px) !important;
  line-height: 1.16 !important;
}

body[data-language="de"] .pricing-button {
  font-size: 15px !important;
}

body[data-language="de"] .plan-badge {
  font-size: 12px !important;
  padding-inline: 18px !important;
}

body[data-language="de"] .site-footer .footer-column h3 {
  font-size: clamp(16px, 1vw, 20px) !important;
}

body[data-language="de"] .site-footer .footer-column a,
body[data-language="de"] .site-footer .footer-brand-block p {
  font-size: 12.5px !important;
  line-height: 1.28 !important;
}

@media (max-width: 980px) {
  body[data-language="de"] .hero-title {
    font-size: clamp(42px, 12.5vw, 76px) !important;
    line-height: 1.02 !important;
  }

  body[data-language="de"] .carousel-copy.stream-intro.stream-intro-english h2,
  body[data-language="de"] .stream-after-copy h2,
  body[data-language="de"] .content-love-copy h2,
  body[data-language="de"] .reviews-heading {
    font-size: clamp(34px, 8.8vw, 58px) !important;
    line-height: 1.04 !important;
  }

  body[data-language="de"] .feature-copy h2,
  body[data-language="de"] .feature-card-orange .feature-copy h2 {
    font-size: clamp(34px, 8.5vw, 58px) !important;
    line-height: 1.08 !important;
  }

  body[data-language="de"] .feature-copy p,
  body[data-language="de"] .feature-card-orange .feature-copy p {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }

  body[data-language="de"] .pricing-card h3 {
    font-size: 22px !important;
  }
}

@media (max-width: 560px) {
  body[data-language="de"] .hero-title {
    font-size: clamp(34px, 11vw, 48px) !important;
  }

  body[data-language="de"] .hero-subtitle,
  body[data-language="de"] .carousel-copy.stream-intro.stream-intro-english p,
  body[data-language="de"] .stream-after-copy p,
  body[data-language="de"] .content-love-copy p {
    font-size: 13.5px !important;
  }

  body[data-language="de"] .hero-cta {
    width: 188px !important;
    height: 58px !important;
    font-size: 15px !important;
  }

  body[data-language="de"] .love-card h3 {
    font-size: 13.5px !important;
  }

  body[data-language="de"] .pricing-grid {
    width: min(84vw, 306px) !important;
  }
}
/* ============================================================
   FINAL PERSIAN FONT OVERRIDE - FIXED
   Body/content Persian text: Javan
   Header/footer Persian text: Yekan Bakh, 10px
   Font files included in: assets/fonts/
============================================================ */
@font-face {
  font-family: "Javan";
  font-style: normal;
  font-weight: 100 950;
  font-display: swap;
  src: url("./assets/fonts/Javanweb.woff2") format("woff2");
}

@font-face {
  font-family: "YekanBakhSite";
  font-style: normal;
  font-weight: 100 950;
  font-display: swap;
  src: url("./assets/fonts/YekanBakhNoEn-RegularSemiCondensed.woff2") format("woff2");
}

:root {
  --fa-font: "Javan", Tahoma, Arial, sans-serif;
  --fa-body-font: "Javan", Tahoma, Arial, sans-serif;
  --fa-header-footer-font: "YekanBakhSite", Tahoma, Arial, sans-serif;
}

html[lang="fa"] body,
body[data-language="fa"] {
  font-family: var(--fa-body-font) !important;
  letter-spacing: 0 !important;
  word-spacing: 0 !important;
}

html[lang="fa"] body main,
body[data-language="fa"] main,
html[lang="fa"] body main :is(h1, h2, h3, h4, h5, h6, p, a, button, span, strong, em, li, label, input, textarea, small, div),
body[data-language="fa"] main :is(h1, h2, h3, h4, h5, h6, p, a, button, span, strong, em, li, label, input, textarea, small, div),
html[lang="fa"] body :is(.hero-copy, .hero-title, .hero-subtitle, .hero-word, .stream-after-copy, .content-love-copy, .love-card, .feature-copy, .word-demo-card, .quiz-phone, .reviews-motion-section, .pricing-section),
body[data-language="fa"] :is(.hero-copy, .hero-title, .hero-subtitle, .hero-word, .stream-after-copy, .content-love-copy, .love-card, .feature-copy, .word-demo-card, .quiz-phone, .reviews-motion-section, .pricing-section) {
  font-family: tahoma !important;
  letter-spacing: 0 !important;
  word-spacing: 0 !important;
}

html[lang="fa"] body :is(.sale-bar, .site-header, .site-header *, .mobile-drawer, .mobile-drawer *, .site-footer, .site-footer *),
body[data-language="fa"] :is(.sale-bar, .site-header, .site-header *, .mobile-drawer, .mobile-drawer *, .site-footer, .site-footer *) {
  font-family: var(--fa-header-footer-font) !important;
  font-size: 10px !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  word-spacing: 0 !important;
}

html[lang="fa"] body .site-footer :is(.footer-brand-block p, .footer-column a),
body[data-language="fa"] .site-footer :is(.footer-brand-block p, .footer-column a) {
  line-height: 1.8 !important;
}

html[lang="fa"] body .site-footer .footer-column h3,
body[data-language="fa"] .site-footer .footer-column h3 {
  line-height: 1.5 !important;
}

html[lang="fa"] body :is(.brand, .footer-logo, .mobile-drawer-head strong),
body[data-language="fa"] :is(.brand, .footer-logo, .mobile-drawer-head strong) {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: inherit !important;
}

/* ============================================================
   FINAL CLIENT FONT MAP - Persian
   - Header/footer: Yekan Bakh, 16px
   - Hero words "لمس کن / ببین / یاد بگیر / تکرار کن": Javan
   - Screenshot 2 area: Yekan Bakh, 13px
   - Screenshot 3 card titles: Yekan Bakh, 13px
   - Screenshot 4 review cards: Yekan Bakh, 13px
   - All other Persian text: Aviny
   Font files expected in: ./assets/fonts/
============================================================ */
@font-face {
  font-family: "AvinySite";
  font-style: normal;
  font-weight: 100 950;
  font-display: swap;
  src: url("./assets/fonts/aviny web.woff2") format("woff2"),
       url("./assets/fonts/aviny web.woff") format("woff");
}

@font-face {
  font-family: "JavanSite";
  font-style: normal;
  font-weight: 100 950;
  font-display: swap;
  src: url("./assets/fonts/Javanweb.woff2") format("woff2");
}

@font-face {
  font-family: "YekanBakhSite";
  font-style: normal;
  font-weight: 100 950;
  font-display: swap;
  src: url("./assets/fonts/YekanBakhNoEn-RegularSemiCondensed.woff2") format("woff2");
}

body[data-language="fa"],
html[lang="fa"] body {
  --fa-aviny-font: "AvinySite", "Aviny", Tahoma, Arial, sans-serif;
  --fa-javan-font: "JavanSite", "Javan", Tahoma, Arial, sans-serif;
  --fa-yekan-font: "YekanBakhSite", "Yekan Bakh NoEn", "Yekan Bakh", Tahoma, Arial, sans-serif;
  font-family: var(--fa-aviny-font) !important;
  letter-spacing: 0 !important;
  word-spacing: 0 !important;
}

body[data-language="fa"] :is(h1, h2, h3, h4, h5, h6, p, a, button, span, strong, em, li, label, input, textarea, small, div),
html[lang="fa"] body :is(h1, h2, h3, h4, h5, h6, p, a, button, span, strong, em, li, label, input, textarea, small, div) {
  font-family: var(--fa-aviny-font) !important;
  letter-spacing: 0 !important;
  word-spacing: 0 !important;
}

/* Header and footer */
body[data-language="fa"] :is(.sale-bar, .sale-bar *, .site-header, .site-header *, .mobile-drawer, .mobile-drawer *, .site-footer, .site-footer *),
html[lang="fa"] body :is(.sale-bar, .sale-bar *, .site-header, .site-header *, .mobile-drawer, .mobile-drawer *, .site-footer, .site-footer *) {
  font-family: var(--fa-yekan-font) !important;
  font-size: 16px !important;
  letter-spacing: 0 !important;
  word-spacing: 0 !important;
}

/* Main hero words: لمس کن / ببین / یاد بگیر / تکرار کن */
body[data-language="fa"] :is(.hero-title, .hero-title *, .hero-word, .hero-word *, .hero-sticker, .hero-sticker *),
html[lang="fa"] body :is(.hero-title, .hero-title *, .hero-word, .hero-word *, .hero-sticker, .hero-sticker *) {
  font-family: var(--fa-javan-font) !important;
  letter-spacing: 0 !important;
  word-spacing: 0 !important;
}

/* Screenshot 2: subtitle, orange CTA, and language carousel */
body[data-language="fa"] :is(.hero-subtitle, .hero-subtitle *, .hero-cta, .hero-cta *, .language-strip, .language-strip *, .language-item, .language-item *),
html[lang="fa"] body :is(.hero-subtitle, .hero-subtitle *, .hero-cta, .hero-cta *, .language-strip, .language-strip *, .language-item, .language-item *) {
  font-family: var(--fa-yekan-font) !important;
  font-size: 18px !important;
  letter-spacing: 0 !important;
  word-spacing: 0 !important;
}

/* Screenshot 3: content cards */
body[data-language="fa"] .love-card h3,
body[data-language="fa"] .love-card h3 *,
html[lang="fa"] body .love-card h3,
html[lang="fa"] body .love-card h3 * {
  font-family: var(--fa-yekan-font) !important;
  font-size: 13px !important;
  letter-spacing: 0 !important;
  word-spacing: 0 !important;
}

/* Screenshot 4: review bubbles */
body[data-language="fa"] .reviews-motion-section :is(.review-bubble, .review-bubble *, .review-meta, .review-meta *),
html[lang="fa"] body .reviews-motion-section :is(.review-bubble, .review-bubble *, .review-meta, .review-meta *) {
  font-family: var(--fa-yekan-font) !important;
  font-size: 13px !important;
  letter-spacing: 0 !important;
  word-spacing: 0 !important;
}

/* ============================================================
   FINAL CLIENT UPDATE 2026-06-24
   All highlighted Persian content sections use Aviny.
   Header/footer remain Yekan Bakh 16px.
============================================================ */
@font-face {
  font-family: "AvinySite";
  font-style: normal;
  font-weight: 100 950;
  font-display: swap;
  src: url("./assets/fonts/aviny web.woff2") format("woff2"),
       url("./assets/fonts/aviny web.woff") format("woff");
}

@font-face {
  font-family: "YekanBakhSite";
  font-style: normal;
  font-weight: 100 950;
  font-display: swap;
  src: url("./assets/fonts/YekanBakhNoEn-RegularSemiCondensed.woff2") format("woff2");
}

@font-face {
  font-family: "JavanSite";
  font-style: normal;
  font-weight: 100 950;
  font-display: swap;
  src: url("./assets/fonts/Javanweb.woff2") format("woff2");
}

body[data-language="fa"],
html[lang="fa"] body {
  --fa-aviny-font: "AvinySite", "Aviny", Tahoma, Arial, sans-serif;
  --fa-yekan-font: "YekanBakhSite", "Yekan Bakh NoEn", "Yekan Bakh", Tahoma, Arial, sans-serif;
  --fa-javan-font: "JavanSite", "Javan", Tahoma, Arial, sans-serif;
  font-family: var(--fa-aviny-font) !important;
  letter-spacing: 0 !important;
  word-spacing: 0 !important;
}

/* Keep header/footer as requested before */
body[data-language="fa"] :is(.sale-bar, .sale-bar *, .site-header, .site-header *, .mobile-drawer, .mobile-drawer *, .site-footer, .site-footer *),
html[lang="fa"] body :is(.sale-bar, .sale-bar *, .site-header, .site-header *, .mobile-drawer, .mobile-drawer *, .site-footer, .site-footer *) {
  font-family: var(--fa-yekan-font) !important;
  font-size: 16px !important;
  letter-spacing: 0 !important;
  word-spacing: 0 !important;
}

/* The shown Persian content sections: Aviny */
body[data-language="fa"] main :is(
  .carousel-copy,
  .carousel-copy *,
  .stream-copy-fa,
  .stream-copy-fa *,
  .stream-after-love,
  .stream-after-love *,
  .stream-after-copy,
  .stream-after-copy *,
  .content-love-section,
  .content-love-section *,
  .feature-stack,
  .feature-stack *,
  .orange-scroll-panel,
  .orange-scroll-panel *,
  .feature-card,
  .feature-card *,
  .feature-copy,
  .feature-copy *,
  .orange-visual,
  .orange-visual *,
  .word-demo-card,
  .word-demo-card *,
  .quiz-phone,
  .quiz-phone *,
  .streaming-study-hero,
  .streaming-study-hero *,
  .reviews-motion-section,
  .reviews-motion-section *,
  .pricing-section,
  .pricing-section *
),
html[lang="fa"] body main :is(
  .carousel-copy,
  .carousel-copy *,
  .stream-copy-fa,
  .stream-copy-fa *,
  .stream-after-love,
  .stream-after-love *,
  .stream-after-copy,
  .stream-after-copy *,
  .content-love-section,
  .content-love-section *,
  .feature-stack,
  .feature-stack *,
  .orange-scroll-panel,
  .orange-scroll-panel *,
  .feature-card,
  .feature-card *,
  .feature-copy,
  .feature-copy *,
  .orange-visual,
  .orange-visual *,
  .word-demo-card,
  .word-demo-card *,
  .quiz-phone,
  .quiz-phone *,
  .streaming-study-hero,
  .streaming-study-hero *,
  .reviews-motion-section,
  .reviews-motion-section *,
  .pricing-section,
  .pricing-section *
) {
  font-family: var(--fa-aviny-font) !important;
  letter-spacing: 0 !important;
  word-spacing: 0 !important;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* Keep only the opening hero words with Javan, as previously requested. */
body[data-language="fa"] main :is(.hero-title, .hero-title *, .hero-word, .hero-word *),
html[lang="fa"] body main :is(.hero-title, .hero-title *, .hero-word, .hero-word *) {
  font-family: var(--fa-javan-font) !important;
  letter-spacing: 0 !important;
  word-spacing: 0 !important;
}

/* ============================================================
   FINAL RESPONSIVE + MOBILE MENU FIX — 2026-06-24
   - Mobile/tablet first scroll scene is shorter to remove the large blank gap.
   - Purple section starts immediately after the hero/card animation.
   - Hamburger menu shows a language title and flags only.
   - Persian labels inside header/menu stay on Yekan Bakh even in EN/DE.
============================================================ */

/* Header/menu Persian-safe font variables for all active languages */
body[data-language="en"],
body[data-language="de"] {
  --fa-yekan-font: "YekanBakhSite", "Yekan Bakh NoEn", "Yekan Bakh", Tahoma, Arial, sans-serif;
  --fa-aviny-font: "AvinySite", "Aviny", Tahoma, Arial, sans-serif;
}

/* Persian-looking texts inside header controls must not fall back to Tahoma. */
body[data-language="en"] :is(.header-language-option[data-language-code="fa"], .header-language-option[data-language-code="fa"] *, .mobile-language-option[data-mobile-lang="fa"], .mobile-language-option[data-mobile-lang="fa"] *, .mobile-drawer-language-title),
body[data-language="de"] :is(.header-language-option[data-language-code="fa"], .header-language-option[data-language-code="fa"] *, .mobile-language-option[data-mobile-lang="fa"], .mobile-language-option[data-mobile-lang="fa"] *, .mobile-drawer-language-title) {
  font-family: var(--fa-yekan-font) !important;
  letter-spacing: 0 !important;
  word-spacing: 0 !important;
}

/* Mobile hamburger language selector: title + flags only. */
.mobile-drawer-language-wrap {
  display: grid !important;
  gap: 10px !important;
  padding: 14px !important;
  border-radius: 18px !important;
  background: rgba(0,0,0,.045) !important;
}

.mobile-drawer-language-title {
  margin: 0 !important;
  color: #111 !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  line-height: 1.35 !important;
  text-align: start !important;
}

.mobile-drawer[dir="rtl"] .mobile-drawer-language-title {
  text-align: right !important;
}

.mobile-drawer-language {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 10px !important;
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.mobile-drawer[dir="rtl"] .mobile-drawer-language {
  justify-content: flex-end !important;
}

.mobile-language-option {
  width: 50px !important;
  height: 42px !important;
  min-width: 50px !important;
  min-height: 42px !important;
  padding: 0 !important;
  border: 1px solid rgba(0,0,0,.08) !important;
  border-radius: 14px !important;
  display: inline-grid !important;
  place-items: center !important;
  background: #fff !important;
  color: #111 !important;
  cursor: pointer !important;
  box-shadow: none !important;
}

.mobile-language-option .flag-img {
  width: 27px !important;
  height: 19px !important;
  margin: 0 !important;
  flex: 0 0 auto !important;
}

.mobile-language-option.is-active {
  background: rgba(255,122,61,.16) !important;
  border-color: rgba(255,122,61,.55) !important;
  box-shadow: 0 8px 18px rgba(255,122,61,.16) !important;
}

/* Remove the large mobile/tablet blank area after the first animated hero. */
@media (max-width: 980px) {
  .scroll-scene {
    height: 172vh !important;
    min-height: 1120px !important;
    margin-bottom: 0 !important;
  }

  .sticky-stage {
    height: 100svh !important;
    min-height: 640px !important;
  }

  .carousel-copy.stream-intro,
  .carousel-copy.stream-intro.stream-intro-english {
    top: calc(var(--row-top) + var(--card-height) + 20px) !important;
    width: min(92vw, 680px) !important;
    padding-bottom: 0 !important;
  }

  .carousel-copy.stream-intro h2,
  .carousel-copy.stream-intro.stream-intro-english h2 {
    font-size: clamp(30px, 7.2vw, 54px) !important;
    line-height: 1.12 !important;
  }

  .carousel-copy.stream-intro p,
  .carousel-copy.stream-intro.stream-intro-english p {
    font-size: clamp(13px, 2.7vw, 16px) !important;
    line-height: 1.55 !important;
    margin-top: 14px !important;
  }

  .content-love-section {
    margin-top: 0 !important;
    padding-top: clamp(46px, 7vh, 68px) !important;
  }
}

@media (max-width: 560px) {
  .scroll-scene {
    height: 152vh !important;
    min-height: 980px !important;
  }

  .sticky-stage {
    min-height: 620px !important;
  }

  .hero-title {
    font-size: clamp(42px, 13.2vw, 70px) !important;
    line-height: .96 !important;
  }

  .hero-subtitle {
    width: min(92vw, 340px) !important;
    font-size: 13px !important;
    line-height: 1.45 !important;
    margin-top: 18px !important;
  }

  .hero-cta {
    width: 190px !important;
    height: 60px !important;
    margin-top: 24px !important;
  }

  .carousel-copy.stream-intro,
  .carousel-copy.stream-intro.stream-intro-english {
    top: calc(var(--row-top) + var(--card-height) + 14px) !important;
    width: min(92vw, 370px) !important;
  }

  .content-love-section {
    margin-top: 0 !important;
    padding-top: 44px !important;
  }
}

@media (max-width: 390px) {
  .scroll-scene {
    height: 145vh !important;
    min-height: 900px !important;
  }

  .sticky-stage {
    min-height: 590px !important;
  }

  .carousel-copy.stream-intro,
  .carousel-copy.stream-intro.stream-intro-english {
    top: calc(var(--row-top) + var(--card-height) + 10px) !important;
  }
}

/* General responsive tightening for later cards so fixed header does not visually cover content. */
@media (max-width: 980px) {
  .feature-stack {
    padding-top: clamp(28px, 5vh, 52px) !important;
  }

  .feature-card {
    width: min(100% - 26px, 720px) !important;
    margin-inline: auto !important;
    padding-top: clamp(70px, 10vh, 92px) !important;
    padding-inline: clamp(20px, 5vw, 46px) !important;
    border-radius: clamp(26px, 6vw, 48px) !important;
  }
}

@media (max-width: 430px) {
  .feature-card {
    width: calc(100% - 18px) !important;
    padding-top: 62px !important;
    padding-inline: 16px !important;
  }
}

/* ============================================================
   4K / ULTRA-WIDE READABILITY FIX — 2026-06-24
   Bigger text on 1800px+ layouts and tighter transition from
   the first stream headline into the purple content block.
============================================================ */
@media (min-width: 1800px) {
  :root {
    --header-height: 82px;
    --sale-height: 58px;
    --card-gap: 24px;
  }

  /* Shorter first scroll scene = less empty white space after the
     “محتوای جهانی...” headline before the purple section starts. */
  .scroll-scene {
    height: 235vh !important;
    margin-bottom: 0 !important;
  }

  .sticky-stage {
    height: 100vh !important;
  }

  /* Header + sale bar readability on 4K */
  .sale-bar,
  .sale-bar * {
    font-size: 22px !important;
    line-height: 1.25 !important;
  }

  .site-header .nav-shell {
    width: min(1760px, calc(100% - 120px)) !important;
    height: 70px !important;
    margin-top: 10px !important;
    padding-inline: 28px !important;
  }

  .brand {
    font-size: 36px !important;
  }

  .nav-links,
  .nav-links *,
  .nav-actions,
  .nav-actions *,
  .language-button,
  .login-link,
  .header-language-option,
  .dropdown-link {
    font-size: 15px !important;
    line-height: 1.35 !important;
  }



  .nav-cta {
    font-size: 16px !important;
  }

  .header-language-menu {
    width: 230px !important;
    padding: 14px !important;
  }

  .header-language-option {
    min-height: 52px !important;
  }

  .flag-img {
    width: 29px !important;
    height: 20px !important;
  }

  /* First carousel/cards: make small labels readable. */
  .country-pill {
    height: 36px !important;
    padding-inline: 16px !important;
    font-size: 17px !important;
  }

  .country-pill .flag-img {
    width: 24px !important;
    height: 17px !important;
  }

  .movie-card h2,
  .video-cover h2 {
    font-size: clamp(44px, 2.45vw, 70px) !important;
  }


  .carousel-copy.stream-intro.stream-intro-english {
    top: calc(var(--row-top) + var(--card-height) + clamp(20px, 3vh, 44px)) !important;
    width: min(1200px, calc(100vw - 120px)) !important;
    padding-bottom: 0 !important;
  }


  .carousel-copy.stream-intro.stream-intro-english p {
    max-width: 1120px !important;
    font-size: clamp(25px, 1.35vw, 34px) !important;
    line-height: 1.5 !important;
    margin-top: clamp(24px, 2.4vw, 42px) !important;
  }

  /* Pull purple block closer and increase its typography. */
  .content-love-section {
    margin-top: clamp(34px, 4.4vh, 72px) !important;
    margin-bottom: clamp(54px, 6vh, 96px) !important;
    padding-top: clamp(78px, 8vh, 118px) !important;
    padding-bottom: clamp(94px, 10vh, 142px) !important;
  }

  .content-love-copy {
    width: min(1280px, calc(100% - 90px)) !important;
    margin-bottom: clamp(54px, 6vh, 86px) !important;
  }

  .content-love-copy h2 {
    font-size: clamp(96px, 6.4vw, 158px) !important;
    line-height: .92 !important;
  }

  .content-love-copy p {
    max-width: 1160px !important;
    font-size: clamp(26px, 1.45vw, 38px) !important;
    line-height: 1.5 !important;
    margin-top: 36px !important;
  }

  .content-love-track {
    gap: clamp(30px, 2vw, 46px) !important;
    padding-inline: clamp(70px, 5vw, 130px) !important;
  }

  .love-card {
    flex-basis: clamp(390px, 18.6vw, 500px) !important;
    height: clamp(520px, 45vh, 670px) !important;
    border-radius: 22px !important;
  }

  .love-card h3 {
    padding: 34px 34px 0 !important;
    font-size: clamp(31px, 1.55vw, 44px) !important;
    line-height: 1.12 !important;
  }

  /* After-love video/text section */
  .stream-after-love {
    padding-top: clamp(90px, 9vh, 140px) !important;
    padding-bottom: clamp(92px, 10vh, 150px) !important;
  }

  .stream-after-love-inner {
    width: min(1540px, calc(100% - 120px)) !important;
    gap: clamp(70px, 6vw, 130px) !important;
  }

  .stream-after-copy h2 {
    font-size: clamp(86px, 5.2vw, 142px) !important;
    line-height: .92 !important;
  }

  .stream-after-copy p {
    font-size: clamp(25px, 1.35vw, 35px) !important;
    line-height: 1.5 !important;
    max-width: 900px !important;
  }

  .stream-after-video-frame {
    max-width: 700px !important;
  }

  /* Orange / purple / lime feature panels */
  .feature-stack {
    --feature-card-w: min(1540px, calc(100% - 120px)) !important;
    --feature-card-h: min(820px, calc(100vh - 150px)) !important;
  }

  .feature-card-orange,
  .feature-card-purple,
  .feature-card-lime {
    gap: clamp(54px, 4.8vw, 110px) !important;
    padding: clamp(74px, 5vw, 104px) clamp(74px, 5.4vw, 118px) !important;
  }

  .feature-kicker,
  .feature-card-orange .feature-kicker {
    min-height: 48px !important;
    padding-inline: 24px !important;
    font-size: 21px !important;
  }

  .feature-copy h2,
  .feature-card-orange .feature-copy h2 {
    max-width: 760px !important;
    font-size: clamp(82px, 5.35vw, 136px) !important;
    line-height: .98 !important;
  }

  .feature-copy p,
  .feature-card-orange .feature-copy p {
    max-width: 820px !important;
    font-size: clamp(26px, 1.28vw, 34px) !important;
    line-height: 1.5 !important;
  }

  .quiz-word {
    font-size: clamp(44px, 2.6vw, 62px) !important;
  }

  .quiz-question,
  .quiz-feedback {
    font-size: 24px !important;
  }

  .quiz-option {
    font-size: 27px !important;
  }

  /* Review/testimonial typography */
  .streaming-study-bg h2 {
    font-size: clamp(92px, 6.8vw, 168px) !important;
  }

  .reviews-motion-section {
    padding-top: clamp(100px, 10vh, 160px) !important;
    padding-bottom: clamp(120px, 13vh, 190px) !important;
  }

  .reviews-heading {
    font-size: clamp(96px, 6.4vw, 160px) !important;
    line-height: .92 !important;
  }

  .review-bubble {
    flex-basis: clamp(460px, 29vw, 730px) !important;
    min-height: 174px !important;
    padding: 34px 38px 30px !important;
    border-radius: 24px !important;
  }

  .review-bubble.small {
    flex-basis: clamp(300px, 18vw, 420px) !important;
  }

  .review-bubble.wide {
    flex-basis: clamp(560px, 36vw, 860px) !important;
  }

  .review-bubble p {
    font-size: clamp(23px, 1.08vw, 31px) !important;
    line-height: 1.48 !important;
  }

  .review-meta,
  .review-meta * {
    font-size: 18px !important;
    line-height: 1.3 !important;
  }

  .review-meta img {
    width: 56px !important;
    height: 56px !important;
  }

  /* Pricing readability */
  .pricing-section {
    padding-top: clamp(78px, 8vh, 124px) !important;
    padding-bottom: clamp(96px, 10vh, 160px) !important;
  }

  .pricing-heading h2 {
    font-size: clamp(60px, 4.2vw, 104px) !important;
  }

  .pricing-eyebrow {
    font-size: 21px !important;
    min-height: 52px !important;
    padding-inline: 28px !important;
  }

  .pricing-card h3 {
    font-size: clamp(36px, 2vw, 52px) !important;
  }

  .price strong {
    font-size: clamp(54px, 3.2vw, 82px) !important;
  }

  .price span,
  .pricing-button,
  .discount,
  .plan-badge {
    font-size: 20px !important;
  }

  .pricing-button {
    height: 66px !important;
    width: min(100%, 270px) !important;
  }

  /* Footer readability */
  .site-footer {
    padding-top: clamp(58px, 6vh, 90px) !important;
    padding-bottom: clamp(58px, 6vh, 90px) !important;
  }

  .site-footer-inner {
    width: min(1480px, 100%) !important;
    max-width: 1480px !important;
  }

  .site-footer .footer-logo {
    font-size: clamp(42px, 2.4vw, 64px) !important;
  }

  .site-footer .footer-column h3 {
    font-size: clamp(27px, 1.45vw, 38px) !important;
  }

  .site-footer .footer-column a,
  .site-footer .footer-brand-block p {
    font-size: 19px !important;
    line-height: 1.55 !important;
  }

  .site-footer .social-icon {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
    min-height: 50px !important;
  }

  .site-footer .social-icon svg {
    width: 24px !important;
    height: 24px !important;
  }
}

@media (min-width: 2300px) {
  /* Extra correction for the exact 2560px preview: larger labels and even less dead space. */
  .scroll-scene {
    height: 220vh !important;
  }

  .content-love-section {
    margin-top: clamp(0px, 0vh, 54px) !important;
  }

  .carousel-copy.stream-intro.stream-intro-english h2 {
    font-size: clamp(108px, 5.2vw, 150px) !important;
  }

  .carousel-copy.stream-intro.stream-intro-english p {
    font-size: clamp(31px, 1.32vw, 40px) !important;
  }

  .content-love-copy h2 {
    font-size: clamp(118px, 6.2vw, 170px) !important;
  }

  .content-love-copy p {
    font-size: clamp(32px, 1.38vw, 42px) !important;
  }
}

/* ============================================================
   CLIENT UPDATE 2026-06-24 v7
   - Stable hamburger language flag layout across FA/EN/DE.
   - Yekan Bakh for Persian header/menu labels in every active language.
   - Bigger stream-after video, more vertical breathing space.
   - Sound toggle for the muted autoplay video.
   - Visible localized CTA under the stream-after text on every viewport.
============================================================ */

/* Keep the flag selector stable. It must not jump left/right when the site language changes. */
.mobile-drawer-language-wrap,
.mobile-drawer[dir="rtl"] .mobile-drawer-language-wrap,
.mobile-drawer[dir="ltr"] .mobile-drawer-language-wrap {
  text-align: center !important;
}

.mobile-drawer-language-title,
.mobile-drawer[dir="rtl"] .mobile-drawer-language-title,
.mobile-drawer[dir="ltr"] .mobile-drawer-language-title {
  text-align: center !important;
}

.mobile-drawer-language,
.mobile-drawer[dir="rtl"] .mobile-drawer-language,
.mobile-drawer[dir="ltr"] .mobile-drawer-language {
  justify-content: center !important;
  direction: ltr !important;
}

.mobile-language-option,
.mobile-drawer[dir="rtl"] .mobile-language-option,
.mobile-drawer[dir="ltr"] .mobile-language-option {
  justify-content: center !important;
  text-align: center !important;
}

/* Persian label inside header/dropdowns must use Yekan Bakh even while the page is EN/DE. */
:root {
  --fa-yekan-font: "YekanBakhSite", "Yekan Bakh NoEn", "Yekan Bakh", Tahoma, Arial, sans-serif;
}

.site-header :is(.header-language-option[data-language-code="fa"], .header-language-option[data-language-code="fa"] *, .mobile-drawer-language-title),
.mobile-drawer :is(.mobile-language-option[data-mobile-lang="fa"], .mobile-language-option[data-mobile-lang="fa"] *, .mobile-drawer-language-title) {
  font-family: var(--fa-yekan-font) !important;
  letter-spacing: 0 !important;
  word-spacing: 0 !important;
}

/* Stream/video + text section: more air, larger video, visible CTA. */
.stream-after-love {
  padding-top: clamp(112px, 13vh, 190px) !important;
  padding-bottom: clamp(118px, 14vh, 205px) !important;
}

.stream-after-love-inner {
  width: min(1420px, calc(100% - 84px)) !important;
  gap: clamp(58px, 6.2vw, 128px) !important;
  grid-template-columns: minmax(480px, 1.04fr) minmax(420px, .92fr) !important;
}

.stream-after-video-frame {
  position: relative !important;
  width: min(100%, 760px) !important;
  max-width: 760px !important;
  justify-self: center !important;
  overflow: hidden !important;
}

.stream-after-video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.stream-after-copy {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}

.stream-after-copy h2,
.stream-after-copy p {
  width: 100% !important;
}

.stream-after-cta {
  display: inline-grid !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  place-items: center !important;
  width: auto !important;
  min-width: 214px !important;
  height: 62px !important;
  margin: clamp(24px, 2.5vw, 38px) auto 0 !important;
  padding: 0 32px !important;
  border-radius: 999px !important;
  background: var(--orange) !important;
  color: #050505 !important;
  box-shadow: 0 18px 42px rgba(255,122,61,.24) !important;
  font-family: var(--fa-yekan-font) !important;
  font-size: 16px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease !important;
}

.stream-after-cta:hover {
  background: var(--hover-yellow) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 22px 48px rgba(253,185,0,.22) !important;
}

.stream-sound-toggle {
  position: absolute !important;
  right: clamp(16px, 1.6vw, 26px) !important;
  bottom: clamp(16px, 1.6vw, 26px) !important;
  z-index: 8 !important;
  min-width: 122px !important;
  height: 46px !important;
  padding: 0 16px !important;
  border: 1px solid rgba(255,255,255,.42) !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  background: rgba(255,255,255,.84) !important;
  color: #050505 !important;
  box-shadow: 0 14px 34px rgba(0,0,0,.18) !important;
  backdrop-filter: blur(14px) saturate(1.15) !important;
  -webkit-backdrop-filter: blur(14px) saturate(1.15) !important;
  cursor: pointer !important;
  font-family: var(--fa-yekan-font) !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease !important;
}

.stream-sound-toggle:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 18px 42px rgba(0,0,0,.22) !important;
}

.stream-sound-toggle.is-on {
  background: var(--orange) !important;
  border-color: rgba(0,0,0,.08) !important;
}

.stream-sound-toggle .sound-icon {
  font-size: 18px !important;
  line-height: 1 !important;
}

body[data-language="en"] .stream-after-cta,
body[data-language="de"] .stream-after-cta {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 16px !important;
}

body[data-language="fa"] .stream-after-cta,
html[lang="fa"] body .stream-after-cta,
body[data-language="fa"] .stream-sound-toggle,
html[lang="fa"] body .stream-sound-toggle {
  font-family: var(--fa-yekan-font) !important;
}

@media (min-width: 1800px) {
  .stream-after-love {
    padding-top: clamp(128px, 12vh, 210px) !important;
    padding-bottom: clamp(132px, 13vh, 220px) !important;
  }

  .stream-after-love-inner {
    width: min(1680px, calc(100% - 132px)) !important;
    grid-template-columns: minmax(660px, 1.05fr) minmax(560px, .95fr) !important;
  }

  .stream-after-video-frame {
    width: min(100%, 860px) !important;
    max-width: 860px !important;
  }

  .stream-after-cta {
    min-width: 244px !important;
    height: 70px !important;
    padding-inline: 38px !important;
    font-size: 19px !important;
  }

  .stream-sound-toggle {
    min-width: 146px !important;
    height: 54px !important;
    font-size: 17px !important;
  }
}

@media (max-width: 980px) {
  .stream-after-love {
    padding-top: clamp(88px, 11vh, 128px) !important;
    padding-bottom: clamp(92px, 12vh, 140px) !important;
  }

  .stream-after-love-inner {
    width: min(92vw, 760px) !important;
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }

  .stream-after-video-frame {
    width: min(92vw, 640px) !important;
    max-width: 640px !important;
  }

  .stream-after-copy {
    align-items: center !important;
    text-align: center !important;
  }

  .stream-after-cta {
    min-width: 204px !important;
    height: 58px !important;
    margin-top: 26px !important;
    padding-inline: 28px !important;
  }
}

@media (max-width: 560px) {
  .stream-after-love {
    padding-top: 76px !important;
    padding-bottom: 92px !important;
  }

  .stream-after-love-inner {
    width: min(94vw, 520px) !important;
    gap: 28px !important;
  }

  .stream-after-video-frame {
    width: min(94vw, 520px) !important;
  }

  .stream-after-cta {
    min-width: 184px !important;
    height: 54px !important;
    font-size: 14px !important;
  }

  .stream-sound-toggle {
    right: 12px !important;
    bottom: 12px !important;
    min-width: 44px !important;
    width: 44px !important;
    height: 44px !important;
    padding: 0 !important;
    border-radius: 50% !important;
  }

  .stream-sound-toggle .sound-label {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
  }
}

/* ------------------------------------------------------------
   USER UPDATE: replace Stream headline with animated movie rails
   - The first hero Stream global text block was removed from index.html.
   - Two infinite movie-card rows reveal around the Spider-Man cover.
------------------------------------------------------------ */
.movie-marquee {
  --marquee-reveal: 0;
  --movie-marquee-gap: var(--card-gap);
  position: absolute !important;
  inset: 0 !important;
  z-index: 5 !important;
  opacity: 0;
  pointer-events: none !important;
  overflow: hidden !important;
  will-change: opacity;
}

.movie-marquee-row {
  position: absolute !important;
  left: 0 !important;
  width: 100vw !important;
  height: var(--card-height) !important;
  overflow: hidden !important;
  opacity: calc(.28 + (var(--marquee-reveal) * .72));
  filter: blur(calc((1 - var(--marquee-reveal)) * 7px)) saturate(calc(.65 + (var(--marquee-reveal) * .55)));
  transform: translateY(calc((1 - var(--marquee-reveal)) * 18px));
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 9%, #000 91%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 9%, #000 91%, transparent 100%);
  will-change: opacity, filter, transform;
}

.movie-marquee-row-top {
  top: calc(var(--row-top) - var(--card-height) - clamp(18px, 2.6vh, 34px)) !important;
}

.movie-marquee-row-bottom {
  top: calc(var(--row-top) + var(--card-height) + clamp(18px, 2.6vh, 34px)) !important;
}



.movie-marquee-track {
  display: flex !important;
  align-items: center !important;
  gap: 0 !important;
  width: max-content !important;
  height: 100% !important;
  animation-timing-function: linear !important;
  animation-iteration-count: infinite !important;
  will-change: transform;
}

.movie-marquee-row-top .movie-marquee-track {
  animation: movieRailRight 34s linear infinite !important;
  -webkit-animation: movieRailRight 34s linear infinite !important;
}

.movie-marquee-row-bottom .movie-marquee-track {
  animation: movieRailLeft 38s linear infinite !important;
  -webkit-animation: movieRailLeft 38s linear infinite !important;
}

@keyframes movieRailLeft {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

@keyframes movieRailRight {
  from { transform: translate3d(-50%, 0, 0); }
  to { transform: translate3d(0, 0, 0); }
}

@-webkit-keyframes movieRailLeft {
  from { -webkit-transform: translate3d(0, 0, 0); }
  to { -webkit-transform: translate3d(-50%, 0, 0); }
}

@-webkit-keyframes movieRailRight {
  from { -webkit-transform: translate3d(-50%, 0, 0); }
  to { -webkit-transform: translate3d(0, 0, 0); }
}


.movie-marquee-set {
  display: flex !important;
  align-items: center !important;
  gap: var(--movie-marquee-gap) !important;
  padding-right: var(--movie-marquee-gap) !important;
  width: max-content !important;
  height: 100% !important;
}

.marquee-card {
  position: relative !important;
  flex: 0 0 var(--card-width) !important;
  width: var(--card-width) !important;
  height: var(--card-height) !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  background-image: linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.08) 60%, rgba(0,0,0,.34)), var(--image) !important;
  background-size: cover !important;
  background-position: center !important;
  box-shadow:
    0 14px 35px rgba(0,0,0,.13),
    inset 0 0 0 1px rgba(255,255,255, calc(.08 + (var(--marquee-reveal) * .08))) !important;
  transform: scale(calc(.985 + (var(--marquee-reveal) * .015)));
  isolation: isolate;
}

.marquee-card::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  background: rgba(255,255,255, calc((1 - var(--marquee-reveal)) * .28)) !important;
  backdrop-filter: blur(calc((1 - var(--marquee-reveal)) * 11px)) saturate(1.22) !important;
  -webkit-backdrop-filter: blur(calc((1 - var(--marquee-reveal)) * 11px)) saturate(1.22) !important;
  pointer-events: none !important;
}

.marquee-card::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.30)) !important;
  pointer-events: none !important;
}

.marquee-card .country-pill {
  left: 16px !important;
  top: 14px !important;
  z-index: 4 !important;
}

.marquee-card h2 {
  position: absolute !important;
  z-index: 4 !important;
  left: 22px !important;
  bottom: 22px !important;
  margin: 0 !important;
  color: #fff !important;
  font-size: clamp(30px, 2.8vw, 54px) !important;
  line-height: .9 !important;
  font-weight: 950 !important;
  letter-spacing: -.06em !important;
  text-shadow: 0 3px 0 rgba(0,0,0,.22) !important;
}

.marquee-card h2 em {
  display: block !important;
  margin-top: 8px !important;
  font-family: Georgia, serif !important;
  font-size: .48em !important;
  font-weight: 700 !important;
  letter-spacing: .01em !important;
}



@media (max-width: 980px) {
  .movie-marquee-row {
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  }

  .movie-marquee-row-top {
    top: calc(var(--row-top) - var(--card-height) - clamp(14px, 2vh, 22px)) !important;
  }

  .movie-marquee-row-bottom {
    top: calc(var(--row-top) + var(--card-height) + clamp(14px, 2vh, 22px)) !important;
  }

  .movie-marquee-row-top .movie-marquee-track { animation-duration: 30s; }
  .movie-marquee-row-bottom .movie-marquee-track { animation-duration: 34s; }

  .marquee-card,
  .marquee-card .country-pill,
  .marquee-card h2 {
    border-radius: 14px !important;
  }

  .marquee-card .country-pill {
    left: 12px !important;
    top: 11px !important;
    height: 27px !important;
    padding: 0 10px !important;
    font-size: 12px !important;
  }

  .marquee-card .country-pill .flag-img {
    width: 18px !important;
    height: 12px !important;
  }

  .marquee-card h2 {
    left: 16px !important;
    bottom: 16px !important;
    font-size: clamp(22px, 4.6vw, 40px) !important;
  }
}

@media (max-width: 560px) {
  .movie-marquee {
    --movie-marquee-gap: 12px;
  }

  .movie-marquee-row-top {
    top: calc(var(--row-top) - var(--card-height) - 12px) !important;
  }

  .movie-marquee-row-bottom {
    top: calc(var(--row-top) + var(--card-height) + 12px) !important;
  }

  .marquee-card,
  .marquee-card .country-pill,
  .marquee-card h2 {
    border-radius: 12px !important;
  }

  .marquee-card h2 {
    left: 14px !important;
    bottom: 14px !important;
    font-size: clamp(20px, 7vw, 32px) !important;
    line-height: .92 !important;
  }

  .marquee-card h2 em {
    margin-top: 5px !important;
  }
}


body[data-language="fa"] #contentLove .love-card h3,
html[lang="fa"] body #contentLove .love-card h3,
body[data-language="fa"] #contentLove .love-card h3 .fa-editable-text,
html[lang="fa"] body #contentLove .love-card h3 .fa-editable-text {
  font-size: clamp(24px, 1.8vw, 34px) !important;
  line-height: 1.15 !important;
  letter-spacing: 0 !important;
  word-spacing: 0 !important;
}

/* ============================================================
   CLIENT OVERRIDE 2026-06-24 v8
   Re-applied footer / hamburger consistency on the current CSS.
   Visual-only responsive pass for feature block images on tablet/mobile.
============================================================ */

/* ---------- Footer: one stable centered layout in every language ---------- */
.site-footer,
.site-footer[dir="rtl"],
.site-footer[dir="ltr"],
body[data-language="fa"] .site-footer,
body[data-language="en"] .site-footer,
body[data-language="de"] .site-footer,
html[lang="fa"] body .site-footer,
html[lang="en"] body .site-footer,
html[lang="de"] body .site-footer {
  direction: ltr !important;
  text-align: center !important;
}

.site-footer-inner,
.site-footer[dir="rtl"] .site-footer-inner,
.site-footer[dir="ltr"] .site-footer-inner,
body[data-language="fa"] .site-footer-inner,
body[data-language="en"] .site-footer-inner,
body[data-language="de"] .site-footer-inner,
html[lang="fa"] body .site-footer-inner,
html[lang="en"] body .site-footer-inner,
html[lang="de"] body .site-footer-inner {
  width: min(980px, 100%) !important;
  max-width: 980px !important;
  margin-inline: auto !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  grid-auto-rows: auto !important;
  justify-items: center !important;
  align-items: start !important;
  gap: clamp(24px, 4vw, 42px) !important;
  direction: ltr !important;
  text-align: center !important;
}

.site-footer-inner > .footer-brand-block,
.site-footer-inner > nav[aria-label="About Lingopie"],
.site-footer-inner > nav[aria-label="Contact and support"],
.site-footer-inner > .footer-column,
.site-footer[dir="rtl"] .site-footer-inner > .footer-brand-block,
.site-footer[dir="rtl"] .site-footer-inner > nav[aria-label="About Lingopie"],
.site-footer[dir="rtl"] .site-footer-inner > nav[aria-label="Contact and support"],
.site-footer[dir="ltr"] .site-footer-inner > .footer-brand-block,
.site-footer[dir="ltr"] .site-footer-inner > nav[aria-label="About Lingopie"],
.site-footer[dir="ltr"] .site-footer-inner > nav[aria-label="Contact and support"] {
  grid-column: 1 !important;
  grid-row: auto !important;
  justify-self: center !important;
  align-self: start !important;
  width: min(100%, 460px) !important;
  max-width: 460px !important;
  margin-inline: auto !important;
  text-align: center !important;
}

.site-footer .footer-column,
.site-footer[dir="rtl"] .footer-column,
.site-footer[dir="ltr"] .footer-column {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  text-align: center !important;
}

.site-footer .footer-column h3,
.site-footer .footer-column a,
.site-footer .footer-brand-block p {
  text-align: center !important;
}

.site-footer .footer-socials,
.site-footer[dir="rtl"] .footer-socials,
.site-footer[dir="ltr"] .footer-socials {
  justify-content: center !important;
  align-items: center !important;
}

/* Footer logo follows the header-logo sizing/style when the logo image exists. */
.site-footer .footer-logo {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  margin-inline: auto !important;
  text-align: center !important;
  color: var(--orange) !important;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: clamp(30px, 2.2vw, 42px) !important;
  font-weight: 950 !important;
  line-height: 1 !important;
  letter-spacing: -.055em !important;
}

.site-footer .footer-logo .brand-logo,
.site-footer .brand-logo {
  display: block !important;
  width: auto !important;
  height: clamp(38px, 3vw, 50px) !important;
  max-width: 190px !important;
  object-fit: contain !important;
}

/* ---------- Hamburger drawer: logo fixed on the right in FA/EN/DE ---------- */
.mobile-drawer,
.mobile-drawer[dir="rtl"],
.mobile-drawer[dir="ltr"] {
  direction: ltr !important;
}

.mobile-drawer-head,
.mobile-drawer[dir="rtl"] .mobile-drawer-head,
.mobile-drawer[dir="ltr"] .mobile-drawer-head {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  direction: ltr !important;
  text-align: right !important;
}

.mobile-drawer-head strong,
.mobile-drawer-head .brand,
.mobile-drawer-head .drawer-logo,
.mobile-drawer-head .mobile-drawer-logo,
.mobile-drawer-head .brand-logo {
  order: 2 !important;
  margin-left: auto !important;
  margin-right: 0 !important;
  justify-self: flex-end !important;
  text-align: right !important;
}

.mobile-drawer-close {
  order: 1 !important;
  margin-right: auto !important;
  margin-left: 0 !important;
}

.mobile-drawer-head strong,
body[data-language="fa"] .mobile-drawer-head strong,
body[data-language="en"] .mobile-drawer-head strong,
body[data-language="de"] .mobile-drawer-head strong,
html[lang="fa"] body .mobile-drawer-head strong,
html[lang="en"] body .mobile-drawer-head strong,
html[lang="de"] body .mobile-drawer-head strong {
  color: var(--orange) !important;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 25px !important;
  font-weight: 950 !important;
  line-height: 1 !important;
  letter-spacing: -.03em !important;
  word-spacing: 0 !important;
}

.mobile-drawer-head .brand-logo {
  height: 42px !important;
  width: auto !important;
  object-fit: contain !important;
}

.mobile-drawer-language-wrap,
.mobile-drawer-language-title,
.mobile-drawer-language,
.mobile-language-option,
.mobile-drawer[dir="rtl"] .mobile-drawer-language-wrap,
.mobile-drawer[dir="rtl"] .mobile-drawer-language-title,
.mobile-drawer[dir="rtl"] .mobile-drawer-language,
.mobile-drawer[dir="rtl"] .mobile-language-option,
.mobile-drawer[dir="ltr"] .mobile-drawer-language-wrap,
.mobile-drawer[dir="ltr"] .mobile-drawer-language-title,
.mobile-drawer[dir="ltr"] .mobile-drawer-language,
.mobile-drawer[dir="ltr"] .mobile-language-option {
  direction: ltr !important;
  text-align: center !important;
  justify-content: center !important;
}

/* ---------- Feature block visuals only: responsive images/UI on tablet ---------- */
@media (min-width: 621px) and (max-width: 980px) {
  .feature-card :is(.orange-visual, .word-demo-card, .quiz-phone),
  .feature-card-orange :is(.orange-visual, .word-demo-card, .quiz-phone),
  .feature-card-purple :is(.orange-visual, .word-demo-card, .quiz-phone),
  .feature-card-lime :is(.orange-visual, .word-demo-card, .quiz-phone) {
    max-width: 100% !important;
  }

  .orange-visual {
    width: 100% !important;
    min-height: clamp(360px, 54vw, 470px) !important;
    overflow: hidden !important;
  }

  .orange-shot,
  .orange-shot img,
  .orange-phone img {
    max-width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
  }

  .shot-video,
  .orange-slide-movies .shot-movies-video,
  .orange-slide-music .shot-music-video,
  .orange-slide-books .shot-books-grid {
    width: min(100%, 560px) !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
  }

  .orange-slide-shows .tv-interface,
  .tv-interface {
    width: min(100%, 560px) !important;
    max-width: 100% !important;
    height: clamp(290px, 43vw, 360px) !important;
    overflow: hidden !important;
  }

  .orange-phone,
  .orange-slide-music .lyrics-phone,
  .orange-slide-books .shot-books-text,
  .shot-genres {
    width: min(210px, 36%) !important;
    max-width: 36% !important;
    height: auto !important;
  }

  .orange-slide-movies .movie-library-phone {
    left: clamp(24px, 5vw, 42px) !important;
    top: clamp(84px, 15vw, 116px) !important;
  }

  .orange-slide-music .lyrics-phone {
    left: clamp(28px, 6vw, 58px) !important;
    top: clamp(58px, 12vw, 78px) !important;
  }

  .orange-slide-books .shot-books-text {
    left: clamp(28px, 6vw, 62px) !important;
    top: clamp(72px, 13vw, 98px) !important;
  }

  .shot-artists {
    width: min(320px, 48%) !important;
    right: clamp(18px, 4vw, 34px) !important;
    bottom: clamp(60px, 12vw, 94px) !important;
  }

  .word-demo-card {
    width: 100% !important;
    min-height: clamp(340px, 54vw, 440px) !important;
    overflow: hidden !important;
  }

  .word-demo-image {
    width: min(100%, 560px) !important;
    max-width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    aspect-ratio: 4 / 3 !important;
    margin-inline: auto !important;
    background-size: cover !important;
    background-position: center !important;
  }

  .quiz-phone {
    width: min(380px, 88%) !important;
    max-width: 100% !important;
    min-height: auto !important;
    height: auto !important;
    margin-inline: auto !important;
    padding: 46px 32px 30px !important;
    border-radius: 40px 40px 14px 40px !important;
  }

  .quiz-progress {
    left: 40px !important;
    right: 40px !important;
    top: 38px !important;
    height: 8px !important;
  }

  .quiz-word {
    margin-top: 62px !important;
    margin-bottom: 6px !important;
  }

  .quiz-question {
    margin: 10px 0 26px !important;
  }

  .quiz-options {
    gap: 12px !important;
  }

  .quiz-option {
    min-height: clamp(78px, 13vw, 96px) !important;
  }
}

/* ---------- Feature block visuals only: responsive images/UI on mobile ---------- */
@media (max-width: 620px) {
  .orange-visual {
    width: 100% !important;
    min-height: clamp(300px, 84vw, 390px) !important;
    overflow: hidden !important;
  }

  .orange-shot,
  .orange-shot img,
  .orange-phone img {
    max-width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
  }

  .shot-video,
  .orange-slide-movies .shot-movies-video,
  .orange-slide-music .shot-music-video,
  .orange-slide-books .shot-books-grid {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
  }

  .orange-slide-shows .tv-interface,
  .tv-interface {
    width: 100% !important;
    max-width: 100% !important;
    height: clamp(240px, 68vw, 300px) !important;
    overflow: hidden !important;
  }

  .orange-phone,
  .orange-slide-music .lyrics-phone,
  .orange-slide-books .shot-books-text,
  .shot-genres {
    width: min(176px, 38%) !important;
    max-width: 38% !important;
    height: auto !important;
    transform: scale(.84) !important;
    transform-origin: left top !important;
  }

  .orange-slide-movies .movie-library-phone {
    left: 20px !important;
    top: clamp(70px, 21vw, 96px) !important;
  }

  .orange-slide-music .lyrics-phone {
    left: 24px !important;
    top: clamp(48px, 16vw, 70px) !important;
  }

  .orange-slide-books .shot-books-text {
    left: 24px !important;
    top: clamp(58px, 18vw, 86px) !important;
  }

  .shot-artists {
    width: min(250px, 50%) !important;
    right: 16px !important;
    bottom: clamp(48px, 14vw, 72px) !important;
  }

  .word-demo-card {
    width: 100% !important;
    min-height: clamp(300px, 82vw, 360px) !important;
    overflow: hidden !important;
  }

  .word-demo-image {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    aspect-ratio: 4 / 3 !important;
    margin-inline: auto !important;
    background-size: cover !important;
    background-position: center !important;
  }

  .quiz-phone {
    width: min(100%, 340px) !important;
    max-width: 100% !important;
    min-height: auto !important;
    height: auto !important;
    margin-inline: auto !important;
    padding: 42px 22px 26px !important;
    border-radius: 34px 34px 12px 34px !important;
  }

  .quiz-progress {
    left: 30px !important;
    right: 30px !important;
    top: 34px !important;
    height: 7px !important;
  }

  .quiz-word {
    margin-top: 56px !important;
    margin-bottom: 6px !important;
  }

  .quiz-question {
    margin: 10px 0 22px !important;
  }

  .quiz-options {
    gap: 10px !important;
  }

  .quiz-option {
    min-height: clamp(70px, 24vw, 92px) !important;
  }
}

/* ============================================================
   USER FIX 2026-06-24: tablet-only feature visual correction
   Scope: 621px–860px only. Mobile styles below 620px remain unchanged.
   Keeps the same block behavior; only scales/repositions visual assets.
   ============================================================ */
@media (min-width: 621px) and (max-width: 860px) {
  .feature-card-orange {
    gap: 20px !important;
    padding: 34px 28px 40px !important;
  }

  .feature-card-orange .feature-kicker {
    margin-bottom: 18px !important;
  }

  .feature-card-orange .feature-copy h2 {
    font-size: clamp(48px, 9.2vw, 68px) !important;
    line-height: .92 !important;
  }

  .feature-card-orange .feature-copy p {
    margin-top: 18px !important;
    font-size: clamp(16px, 2.05vw, 19px) !important;
    line-height: 1.3 !important;
  }

  .orange-visual {
    width: 100% !important;
    min-height: clamp(305px, 42vw, 350px) !important;
    height: clamp(305px, 42vw, 350px) !important;
    overflow: hidden !important;
  }

  .orange-slide {
    inset: 0 !important;
    padding-bottom: 0 !important;
    overflow: hidden !important;
  }

  .shot-video,
  .orange-slide-movies .shot-movies-video,
  .orange-slide-music .shot-music-video,
  .orange-slide-books .shot-books-grid {
    width: min(100%, 500px) !important;
    max-width: 100% !important;
    height: clamp(245px, 35vw, 292px) !important;
    object-fit: cover !important;
    top: 0 !important;
    right: 0 !important;
    border-radius: 30px !important;
  }

  .orange-phone,
  .orange-slide-music .lyrics-phone,
  .orange-slide-books .shot-books-text,
  .shot-genres {
    width: min(178px, 31%) !important;
    max-width: 31% !important;
    height: auto !important;
  }

  .orange-slide-movies .movie-library-phone {
    left: clamp(22px, 4.4vw, 34px) !important;
    top: clamp(66px, 11.5vw, 84px) !important;
  }

  .orange-slide-music .lyrics-phone {
    left: clamp(24px, 5vw, 40px) !important;
    top: clamp(42px, 8vw, 60px) !important;
  }

  .orange-slide-books .shot-books-text {
    left: clamp(24px, 5vw, 42px) !important;
    top: clamp(52px, 9.2vw, 72px) !important;
  }

  .shot-artists {
    width: min(260px, 43%) !important;
    right: clamp(14px, 3vw, 26px) !important;
    bottom: clamp(42px, 8.5vw, 64px) !important;
  }

  .orange-slide-shows .tv-interface,
  .tv-interface {
    width: min(100%, 500px) !important;
    max-width: 100% !important;
    height: clamp(245px, 35vw, 292px) !important;
    padding: 20px 22px !important;
    overflow: hidden !important;
    border-radius: 30px 30px 0 30px !important;
  }

  .tv-row-title {
    margin-top: 18px !important;
  }

  .tv-row-title.second {
    margin-top: 14px !important;
  }

  .tv-poster-row,
  .tv-poster-grid {
    gap: 9px !important;
  }

  .tv-poster-row span {
    min-height: 58px !important;
    font-size: 16px !important;
    padding: 8px !important;
  }

  .tv-poster-grid span {
    height: 58px !important;
  }
}


/* ============================================================
   FINAL iOS/TABLET FIX 2026-06-24
   - On mobile/tablet Safari, CSS keyframe animations inside the sticky hero
     can stay frozen until a language switch forces a DOM rebuild.
   - The existing JavaScript fallback already calculates pixel offsets.
     These rules connect that fallback to the actual transform.
============================================================ */
@media (max-width: 1100px) {
  .movie-marquee-row-top .movie-marquee-track,
  .movie-marquee-row-bottom .movie-marquee-track {
    animation: none !important;
    -webkit-animation: none !important;
    will-change: transform !important;
    backface-visibility: hidden !important;
    -webkit-backface-visibility: hidden !important;
  }

  .movie-marquee-row-top .movie-marquee-track {
    transform: translate3d(var(--mobile-rail-x-top, -50%), 0, 0) !important;
    -webkit-transform: translate3d(var(--mobile-rail-x-top, -50%), 0, 0) !important;
  }

  .movie-marquee-row-bottom .movie-marquee-track {
    transform: translate3d(var(--mobile-rail-x-bottom, 0px), 0, 0) !important;
    -webkit-transform: translate3d(var(--mobile-rail-x-bottom, 0px), 0, 0) !important;
  }
}

@supports (-webkit-touch-callout: none) {
  @media (max-width: 1100px) {
    .movie-marquee,
    .movie-marquee-row,
    .movie-marquee-track,
    .marquee-card {
      transform-style: preserve-3d !important;
      -webkit-transform-style: preserve-3d !important;
    }
  }
}
