:root {
  --pd: #2A1F4A;
  --pp: #4A3D7A;
  --pl: #7B62B5;
  --pl2: #A48BD6;
  --gold: #F2B95C;
  --gold-d: #B8821F;
  --gold-l: #FBE5B6;
  --gold-ll: #FEF6E4;
  --ink: #15102A;
  --ink2: #3D3458;
  --ink3: #6B6485;
  --bg: #FDFBF6;
  --bg2: #F6F1E8;
  --bg3: #EDE6D6;
  --white: #ffffff;
  --green: #2E7D32;
  --green-l: #E8F5E9;
  --red: #C62828;
  --red-l: #FFEBEE;
  --border: rgba(42, 31, 74, 0.1);
  --border2: rgba(42, 31, 74, 0.18);
  --shadow-sm: 0 2px 12px rgba(42, 31, 74, 0.06);
  --shadow-md: 0 8px 32px rgba(42, 31, 74, 0.1);
  --shadow-lg: 0 20px 60px rgba(42, 31, 74, 0.16);
  --shadow-gold: 0 8px 32px rgba(184, 130, 31, 0.35);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Vazirmatn', sans-serif;
  background: var(--bg);
  color: var(--ink);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.7;
  font-feature-settings: "ss02";
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
}

/* ─────────────  NAV  ───────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 251, 246, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-mark {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--pd), var(--pp));
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.logo-mark svg {
  width: 22px;
  height: 22px;
}

.logo-mark::after {
  content: '';
  position: absolute;
  top: -3px;
  right: -3px;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  border: 2px solid var(--bg);
}

.logo-name {
  font-size: 21px;
  font-weight: 900;
  color: var(--pd);
  letter-spacing: -0.5px;
}

.logo-name em {
  font-style: normal;
  color: var(--gold-d);
}

.logo-sub {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: var(--ink3);
  letter-spacing: 1px;
  margin-top: -2px;
}

.nav-cta {
  background: var(--pd);
  color: white;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 26px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all .25s;
}

.nav-cta:hover {
  background: var(--pp);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(42, 31, 74, 0.25);
}

/* ─────────────  HERO  ───────────── */
.hero {
  min-height: 100vh;
  background: radial-gradient(ellipse at 50% 0%, var(--gold-ll) 0%, var(--bg) 45%, var(--bg2) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 1100px;
  height: 1100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 98, 181, 0.05) 0%, transparent 60%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(42, 31, 74, 0.04) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 980px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1.5px solid var(--border2);
  border-radius: 100px;
  padding: 9px 22px;
  font-size: 13px;
  font-weight: 700;
  color: var(--pp);
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
  animation: fadeUp .7s ease both;
}

.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--gold-d);
  border-radius: 50%;
  position: relative;
}

.hero-badge .pulse-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--gold-d);
  opacity: 0.3;
  animation: pulse 2s infinite;
}

.hero h1 {
  font-size: clamp(34px, 6.5vw, 78px);
  font-weight: 900;
  line-height: 1.12;
  color: var(--pd);
  animation: fadeUp .7s .1s ease both;
  letter-spacing: -1.5px;
  margin-bottom: 8px;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold-d), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}

.hero h1 em::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-d));
  border-radius: 2px;
  opacity: 0.6;
}

.hero-sub {
  font-size: clamp(16px, 2.4vw, 22px);
  color: var(--ink2);
  max-width: 720px;
  margin: 32px auto 14px;
  font-weight: 400;
  line-height: 1.65;
  animation: fadeUp .7s .2s ease both;
}

.hero-sub strong {
  color: var(--pd);
  font-weight: 700;
}

.hero-mini {
  font-size: 14px;
  color: var(--ink3);
  margin-bottom: 44px;
  animation: fadeUp .7s .25s ease both;
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp .7s .3s ease both;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-d) 100%);
  color: var(--ink);
  font-family: inherit;
  font-size: 17px;
  font-weight: 800;
  padding: 18px 44px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: all .25s;
  position: relative;
  overflow: hidden;
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left .6s;
}

.btn-gold:hover::before {
  left: 100%;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(184, 130, 31, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--pd);
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  padding: 18px 32px;
  border-radius: 100px;
  border: 2px solid var(--border2);
  cursor: pointer;
  transition: all .25s;
}

.btn-outline:hover {
  border-color: var(--pp);
  background: rgba(123, 98, 181, 0.06);
  transform: translateY(-1px);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 52px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp .7s .4s ease both;
}

.proof-avatars {
  display: flex;
}

.proof-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2.5px solid var(--bg);
  margin-left: -12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.proof-av:nth-child(1) {
  background: linear-gradient(135deg, #A48BD6, #4A3D7A);
  color: white;
}

.proof-av:nth-child(2) {
  background: linear-gradient(135deg, #F2B95C, #B8821F);
  color: #15102A;
}

.proof-av:nth-child(3) {
  background: linear-gradient(135deg, #4A3D7A, #2A1F4A);
  color: white;
}

.proof-av:nth-child(4) {
  background: linear-gradient(135deg, #2A1F4A, #7B62B5);
  color: white;
}

.proof-av:nth-child(5) {
  background: linear-gradient(135deg, #B8821F, #F2B95C);
  color: #15102A;
}

.proof-text {
  font-size: 14px;
  color: var(--ink3);
  text-align: right;
}

.proof-text strong {
  color: var(--pd);
  font-weight: 800;
}

.stars-small {
  color: var(--gold-d);
  font-size: 14px;
  letter-spacing: 3px;
  display: block;
  line-height: 1;
  margin-bottom: 3px;
}

.hero-divider {
  width: 1px;
  height: 36px;
  background: var(--border2);
}

/* ─────────────  TRUST STRIP  ───────────── */
.trust-strip {
  background: var(--pd);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.trust-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.02) 50%, rgba(255, 255, 255, 0.02) 75%, transparent 75%);
  background-size: 40px 40px;
  pointer-events: none;
}

.trust-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.trust-item {
  padding: 28px 20px;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-item:last-child {
  border-left: none;
}

.trust-num {
  font-size: 38px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -1px;
}

.trust-num small {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 700;
}

.trust-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 6px;
  font-weight: 600;
}

/* ─────────────  SECTIONS / TYPOGRAPHY  ───────────── */
section {
  padding: 100px 24px;
  position: relative;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
}

.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-ll);
  border: 1px solid rgba(184, 130, 31, 0.3);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 12.5px;
  font-weight: 800;
  color: var(--gold-d);
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

.sec-title {
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 900;
  line-height: 1.18;
  color: var(--pd);
  margin-bottom: 18px;
  letter-spacing: -0.8px;
}

.sec-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold-d), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sec-title u {
  text-decoration: none;
  border-bottom: 4px solid var(--gold);
  padding-bottom: 2px;
}

.sec-sub {
  font-size: 18px;
  color: var(--ink3);
  font-weight: 400;
  max-width: 680px;
  line-height: 1.8;
}

/* ─────────────  ORDER BUMP  ───────────── */
.order-bump {
  background: linear-gradient(135deg, #FFF9E6, #FEF6E4);
  border: 2px dashed var(--gold-d);
  border-radius: 18px;
  padding: 22px;
  margin-bottom: 20px;
  position: relative;
  animation: bumpPulse 2.5s ease-in-out infinite;
}

.order-bump::before {
  content: '⚡ پیشنهاد ویژه';
  position: absolute;
  top: -12px;
  right: 18px;
  background: linear-gradient(90deg, var(--gold-d), var(--gold));
  color: white;
  font-size: 11px;
  font-weight: 900;
  padding: 5px 14px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}

.bump-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  cursor: pointer;
}

.bump-row input {
  width: 22px;
  height: 22px;
  accent-color: var(--gold-d);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 3px;
}

.bump-content {
  flex: 1;
}

.bump-title {
  font-size: 15.5px;
  font-weight: 800;
  color: var(--pd);
  margin-bottom: 6px;
  line-height: 1.5;
}

.bump-desc {
  font-size: 13.5px;
  color: var(--ink2);
  line-height: 1.7;
}

.bump-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 10px;
}

.bump-price-old {
  font-size: 13px;
  color: var(--ink3);
  text-decoration: line-through;
}

.bump-price-new {
  font-size: 18px;
  font-weight: 900;
  color: var(--gold-d);
}

.bump-price-tag {
  background: #C62828;
  color: white;
  font-size: 10px;
  font-weight: 900;
  padding: 3px 9px;
  border-radius: 6px;
  letter-spacing: 0.3px;
}

@keyframes bumpPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(184, 130, 31, 0.3)
  }

  50% {
    box-shadow: 0 0 0 8px rgba(184, 130, 31, 0)
  }
}

/* ─────────────  EXIT INTENT MODAL  ───────────── */
.exit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 16, 42, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}

.exit-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.exit-modal {
  background: var(--white);
  border-radius: 24px;
  max-width: 480px;
  width: 100%;
  padding: 42px 32px;
  text-align: center;
  position: relative;
  transform: scale(0.92);
  transition: transform .4s cubic-bezier(.34, 1.56, .64, 1);
  box-shadow: 0 30px 80px rgba(15, 16, 42, 0.5);
  max-height: 90vh;
  overflow-y: auto;
}

.exit-overlay.show .exit-modal {
  transform: scale(1);
}

.exit-close {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg);
  border: none;
  color: var(--ink3);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}

.exit-close:hover {
  background: var(--border);
  color: var(--pd);
}

.exit-icon {
  font-size: 54px;
  margin-bottom: 12px;
  animation: wiggle 1.2s ease;
}

.exit-modal h3 {
  font-size: 24px;
  font-weight: 900;
  color: var(--pd);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
  line-height: 1.3;
}

.exit-modal h3 em {
  font-style: normal;
  color: var(--gold-d);
}

.exit-modal p {
  font-size: 14.5px;
  color: var(--ink3);
  line-height: 1.7;
  margin-bottom: 22px;
}

.exit-offers {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
  text-align: right;
}

.exit-offer-item {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 13.5px;
  color: var(--ink2);
}

.exit-offer-item::before {
  content: '✓';
  color: var(--green);
  font-weight: 900;
  font-size: 15px;
}

.exit-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.exit-form input {
  font-family: inherit;
  font-size: 14.5px;
  padding: 14px 16px;
  border: 1.5px solid var(--border2);
  border-radius: 12px;
  background: var(--bg);
  outline: none;
  text-align: right;
}

.exit-form input:focus {
  border-color: var(--pp);
  background: var(--white);
}

.exit-form button {
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  padding: 15px;
  background: linear-gradient(135deg, var(--gold), var(--gold-d));
  color: var(--ink);
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all .2s;
}

.exit-form button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.exit-note {
  font-size: 11.5px;
  color: var(--ink3);
  margin-top: 12px;
}

@keyframes wiggle {

  0%,
  100% {
    transform: rotate(0deg)
  }

  25% {
    transform: rotate(-8deg)
  }

  75% {
    transform: rotate(8deg)
  }
}

/* ─────────────  LIVE ACTIVITY TOAST  ───────────── */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: min(360px, calc(100% - 32px));
  background: rgba(255, 255, 255, .96);
  border: 1.5px solid rgba(42, 31, 74, .10);
  border-radius: 20px;
  padding: 15px 18px;
  display: flex;
  gap: 13px;
  align-items: center;
  box-shadow: 0 18px 55px rgba(20, 15, 45, .20);
  z-index: 8000;
  transform: translateY(24px);
  opacity: 0;
  pointer-events: none;
  transition: all .45s cubic-bezier(.34, 1.56, .64, 1);
  direction: rtl;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  font-weight: 900;
  flex-shrink: 0;
}

.toast-text {
  font-size: 13.5px;
  color: var(--ink2);
  line-height: 1.75;
  flex: 1;
}

.toast-text strong {
  color: var(--pd);
  font-weight: 900;
}

.toast-product {
  color: var(--gold-d);
  font-weight: 900;
}

.toast-time {
  font-size: 11.5px;
  color: var(--ink3);
  margin-top: 3px;
}

.toast-dot {
  width: 8px;
  height: 8px;
  background: #4CAF50;
  border-radius: 50%;
  flex-shrink: 0;
  animation: livePulse 1.5s infinite;
}

@media(max-width:640px) {
  .toast {
    left: 16px;
    right: 16px;
    bottom: 80px;
    max-width: none;
  }
}

/* ─────────────  STICKY BOTTOM CTA (mobile)  ───────────── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1.5px solid var(--border);
  padding: 12px 16px;
  box-shadow: 0 -8px 24px rgba(15, 16, 42, 0.08);
  z-index: 7000;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.95);
}

.sticky-cta-info {
  flex: 1;
}

.sticky-cta-price {
  font-size: 11px;
  color: var(--ink3);
  font-weight: 600;
}

.sticky-cta-price strong {
  color: var(--pd);
  font-size: 15px;
  font-weight: 900;
  display: block;
  line-height: 1.2;
}

.sticky-cta-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-d));
  color: var(--ink);
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  padding: 12px 22px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.sticky-cta.show {
  display: flex;
}

@media(min-width:768px) {
  .sticky-cta.show {
    display: none;
  }
}

/* ─────────────  SCROLL PROGRESS BAR  ───────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  z-index: 200;
  pointer-events: none;
}

.scroll-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-d));
  transition: width .15s ease;
  box-shadow: 0 0 12px rgba(184, 130, 31, 0.6);
}

/* ─────────────  PAIN  ───────────── */
.pain-section {
  background: var(--white);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 52px;
}

.pain-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(242, 185, 92, 0.12), transparent 70%);
  pointer-events: none;
}

.pain-card:hover {
  border-color: var(--pp);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pain-num {
  font-family: 'Vazirmatn';
  font-size: 48px;
  font-weight: 900;
  color: var(--pl2);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 12px;
}

.pain-card h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--pd);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.pain-card p {
  font-size: 15px;
  color: var(--ink3);
  line-height: 1.75;
}

/* ─────────────  STORY (EPIPHANY)  ───────────── */
.story-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  position: relative;
}

.story-section::before {
  content: '';
  position: absolute;
  top: 60px;
  right: 5%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(242, 185, 92, 0.2), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.story-wrap {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.story-quote-mark {
  font-size: 120px;
  color: var(--gold);
  opacity: 0.25;
  line-height: 0.8;
  font-weight: 900;
  display: block;
  margin-bottom: -30px;
}

.story-lead {
  font-size: clamp(20px, 2.6vw, 30px);
  color: var(--pd);
  font-weight: 600;
  line-height: 1.55;
  margin: 24px 0;
  letter-spacing: -0.3px;
}

.story-lead em {
  font-style: normal;
  color: var(--gold-d);
}

.story-body {
  font-size: 17px;
  color: var(--ink2);
  line-height: 1.95;
  text-align: right;
  max-width: 720px;
  margin: 32px auto;
}

.story-body p {
  margin-bottom: 18px;
}

.story-body strong {
  color: var(--pd);
  font-weight: 700;
}

.story-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.story-pill {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 24px 18px;
  text-align: center;
  transition: all .3s;
}

.story-pill:hover {
  border-color: var(--pl);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.story-pill-icon {
  font-size: 32px;
  display: block;
  margin-bottom: 10px;
}

.story-pill h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--pd);
  margin-bottom: 6px;
}

.story-pill p {
  font-size: 13px;
  color: var(--ink3);
  line-height: 1.6;
}

/* ─────────────  CLASS SCREENSHOTS  ───────────── */
.screenshots-section {
  background: var(--bg2);
}

.screens-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 48px;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1.5px solid rgba(46, 125, 50, 0.4);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
}

.live-dot {
  width: 9px;
  height: 9px;
  background: #4CAF50;
  border-radius: 50%;
  display: inline-block;
  animation: livePulse 1.5s infinite;
}

.screens-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.screen-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .3s;
}

.screen-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.screen-top {
  padding: 14px 18px;
  background: linear-gradient(135deg, var(--pd), var(--pp));
  display: flex;
  align-items: center;
  gap: 10px;
}

.screen-dots {
  display: flex;
  gap: 5px;
}

.screen-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.screen-title-bar {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.screen-body {
  padding: 20px;
}

.screen-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.online-count {
  font-size: 11px;
  color: var(--green);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
}

.online-dot {
  width: 6px;
  height: 6px;
  background: #4CAF50;
  border-radius: 50%;
}

.chat-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.chat-av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}

.chat-av.t {
  background: linear-gradient(135deg, var(--pp), var(--pl));
  color: white;
}

.chat-av.s {
  background: var(--gold-ll);
  color: var(--gold-d);
}

.chat-bubble {
  background: var(--bg);
  border-radius: 0 12px 12px 12px;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.5;
  flex: 1;
}

.chat-bubble.teacher {
  background: var(--pd);
  color: white;
  border-radius: 12px 0 12px 12px;
}

.msg-time {
  font-size: 10px;
  color: var(--ink3);
  margin-top: 4px;
  text-align: left;
}

.reactions-row {
  display: flex;
  gap: 6px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.react-pill {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.react-pill span {
  font-size: 11px;
  color: var(--ink3);
  font-weight: 600;
}

/* ─────────────  PATH  ───────────── */
.path-section {
  background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%);
}

.path-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: 56px 0 32px;
  overflow-x: auto;
  padding-bottom: 8px;
  justify-content: center;
}

.path-item {
  flex: 1;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.path-circle {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 14px;
  border: 3px solid transparent;
  transition: all .3s;
}

.path-item:hover .path-circle {
  transform: translateY(-4px) scale(1.05);
}

.pc1 {
  background: rgba(123, 98, 181, 0.15);
  border-color: var(--pl);
  color: var(--pp);
}

.pc2 {
  background: rgba(74, 61, 122, 0.2);
  border-color: var(--pp);
  color: var(--pp);
}

.pc3 {
  background: rgba(42, 31, 74, 0.25);
  border-color: var(--pd);
  color: var(--pd);
}

.pc4 {
  background: var(--pd);
  border-color: var(--pd);
  color: white;
}

.pc5 {
  background: linear-gradient(135deg, var(--gold), var(--gold-d));
  border-color: var(--gold-d);
  color: var(--ink);
}

.path-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--pd);
}

.path-dur {
  font-size: 12px;
  color: var(--ink3);
  margin-top: 4px;
}

.path-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-d);
  margin-top: 6px;
}

.path-arrow {
  padding-bottom: 40px;
  font-size: 24px;
  font-weight: 900;
  color: var(--pl);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
}

.path-arrow.final {
  color: var(--gold-d);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.feat {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  gap: 14px;
  transition: all .3s;
}

.feat:hover {
  border-color: var(--pl);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.feat-icon {
  font-size: 28px;
  flex-shrink: 0;
  line-height: 1;
}

.feat h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--pd);
  margin-bottom: 5px;
}

.feat p {
  font-size: 13px;
  color: var(--ink3);
  line-height: 1.65;
}

/* ─────────────  WHO IS THIS FOR  ───────────── */
.forwho-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  position: relative;
  overflow: hidden;
}

.forwho-section::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 5%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(123, 98, 181, 0.1), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.forwho-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: 5%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(242, 185, 92, 0.15), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.forwho-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}

.forwho-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 24px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all .3s;
}

.forwho-card:hover {
  border-color: var(--pp);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.forwho-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(242, 185, 92, 0.12), transparent 70%);
  pointer-events: none;
}

.forwho-icon {
  font-size: 42px;
  margin-bottom: 12px;
  display: block;
  line-height: 1;
}

.forwho-num {
  position: absolute;
  top: 24px;
  left: 28px;
  font-size: 48px;
  font-weight: 900;
  color: var(--pl2);
  opacity: 0.25;
  line-height: 1;
  letter-spacing: -2px;
}

.forwho-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--pd);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
  line-height: 1.4;
}

.forwho-card p {
  font-size: 14.5px;
  color: var(--ink3);
  line-height: 1.8;
  margin-bottom: 18px;
}

.forwho-card p strong {
  color: var(--pd);
  font-weight: 700;
}

.forwho-tick {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-l);
  color: var(--green);
  font-size: 12.5px;
  font-weight: 800;
  padding: 7px 14px;
  border-radius: 100px;
}

.forwho-cta {
  background: var(--pd);
  border-radius: 20px;
  padding: 24px 32px;
  text-align: center;
  color: white;
}

.forwho-cta p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}

.forwho-cta p strong {
  color: var(--gold);
}

/* ─────────────  CONVERSATION RHYTHM  ───────────── */
.rhythm-section {
  background: var(--white);
}

.rhythm-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.rhythm-stats {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.rhythm-stat {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 18px 22px;
  transition: all .3s;
}

.rhythm-stat:hover {
  border-color: var(--pp);
  transform: translateX(-4px);
}

.rhythm-stat-num {
  font-size: 38px;
  font-weight: 900;
  color: var(--gold-d);
  line-height: 1;
  letter-spacing: -1px;
  flex-shrink: 0;
  min-width: 50px;
  text-align: center;
}

.rhythm-stat-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink2);
}

.rhythm-right {
  background: linear-gradient(135deg, var(--gold-ll), var(--bg2));
  border: 2px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.rhythm-week-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--gold-d);
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.rhythm-day {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 8px;
  border: 1px solid var(--border);
  transition: all .2s;
}

.rhythm-day:hover {
  border-color: var(--pp);
  transform: translateX(-2px);
}

.rhythm-day:last-child {
  margin-bottom: 0;
}

.rhythm-day-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink3);
}

.rhythm-day-act {
  font-size: 14px;
  font-weight: 700;
  color: var(--pd);
}

/* ─────────────  5-WEEK CYCLE  ───────────── */
.cycle-section {
  background: linear-gradient(180deg, var(--bg2), var(--bg));
  padding-bottom: 120px;
}

.cycle-box {
  max-width: 840px;
  margin: 0 auto;
  background: var(--white);
  border: 2px solid var(--pp);
  border-radius: 32px;
  padding: 48px 44px;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.cycle-box::before {
  content: '';
  position: absolute;
  top: -2px;
  right: -2px;
  left: -2px;
  height: 6px;
  background: linear-gradient(90deg, var(--pp), var(--pl), var(--gold), var(--gold-d));
  border-radius: 32px 32px 0 0;
}

.cycle-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--pp), var(--pd));
  color: white;
  font-size: 13px;
  font-weight: 800;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

.cycle-title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 900;
  color: var(--pd);
  margin-bottom: 18px;
  line-height: 1.2;
  letter-spacing: -0.8px;
}

.cycle-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold-d), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cycle-desc {
  font-size: 16px;
  color: var(--ink2);
  line-height: 2;
  margin-bottom: 36px;
}

.cycle-desc strong {
  color: var(--pd);
  font-weight: 700;
}

.cycle-timeline {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.cycle-week {
  background: var(--bg);
  border-right: 4px solid var(--gold-d);
  border-radius: 0 14px 14px 0;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.cycle-week-num {
  font-size: 14px;
  font-weight: 900;
  color: var(--gold-d);
  min-width: 120px;
}

.cycle-week-text {
  font-size: 14.5px;
  color: var(--ink2);
  font-weight: 500;
}

.cycle-arrow {
  font-size: 22px;
  color: var(--pl);
  text-align: center;
  font-weight: 900;
  line-height: 0.6;
  margin: 2px 0;
}

.cycle-final {
  background: var(--gold-ll);
  border: 1.5px solid rgba(184, 130, 31, 0.3);
  border-radius: 16px;
  padding: 18px 22px;
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.8;
  text-align: center;
}

.cycle-final strong {
  color: var(--gold-d);
  font-weight: 800;
}

@media(max-width:900px) {
  .forwho-grid {
    grid-template-columns: 1fr;
  }

  .rhythm-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media(max-width:640px) {

  .forwho-card,
  .cycle-box {
    padding: 28px 22px;
  }

  .rhythm-right {
    padding: 22px;
  }

  .cycle-week {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .cycle-week-num {
    min-width: auto;
  }
}

/* ─────────────  REVIEWS  ───────────── */
.reviews-section {
  background: var(--white);
}

.reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
}

.google-score {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 18px 26px;
}

.g-logo {
  font-size: 26px;
  font-weight: 900;
  background: linear-gradient(135deg, #4285F4, #34A853, #FBBC04, #EA4335);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.g-num {
  font-size: 38px;
  font-weight: 900;
  color: var(--pd);
  line-height: 1;
}

.g-stars {
  color: #FBBC04;
  font-size: 19px;
  letter-spacing: 3px;
}

.g-count {
  font-size: 12px;
  color: var(--ink3);
  margin-top: 4px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.review-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 26px;
  transition: all .3s;
  position: relative;
}

.review-card:hover {
  border-color: var(--pp);
  box-shadow: var(--shadow-md);
}

.review-placeholder {
  background: repeating-linear-gradient(45deg, var(--bg), var(--bg) 10px, var(--bg2) 10px, var(--bg2) 20px);
  border: 1.5px dashed var(--border2);
}

.review-placeholder::after {
  content: '⚙️ اسلات آماده، تستیمونیال واقعی';
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10px;
  font-weight: 700;
  color: var(--ink3);
  background: var(--white);
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid var(--border);
}

.rv-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.rv-av {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
}

.rv-av-empty {
  background: var(--border);
  color: var(--ink3);
}

.rv-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--pd);
}

.rv-name-empty {
  height: 14px;
  width: 120px;
  background: var(--border);
  border-radius: 4px;
  margin-bottom: 6px;
}

.rv-loc {
  font-size: 13px;
  color: var(--ink3);
  margin-top: 2px;
}

.rv-loc-empty {
  height: 10px;
  width: 60px;
  background: var(--border);
  border-radius: 4px;
}

.rv-stars {
  color: #FBBC04;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.rv-text {
  font-size: 14.5px;
  color: var(--ink2);
  line-height: 1.8;
}

.rv-text strong {
  color: var(--pd);
  font-weight: 800;
}

.rv-text-empty {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.rv-text-empty span {
  height: 10px;
  background: var(--border);
  border-radius: 4px;
}

.rv-text-empty span:nth-child(1) {
  width: 100%;
}

.rv-text-empty span:nth-child(2) {
  width: 92%;
}

.rv-text-empty span:nth-child(3) {
  width: 78%;
}

.rv-verified {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--ink3);
  margin-top: 16px;
}

.verified-icon {
  color: #4285F4;
  font-size: 13px;
  font-weight: 900;
}

/* ─────────────  STACK / OFFER  ───────────── */
.stack-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--white) 100%);
}

.stack-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.stack-intro {
  text-align: center;
  margin-bottom: 36px;
}

.stack-tabs {
  display: flex;
  gap: 8px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 6px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.stack-tab {
  flex: 1;
  min-width: 120px;
  padding: 12px 18px;
  border-radius: 12px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all .25s;
  color: var(--ink3);
  background: transparent;
}

.stack-tab:hover {
  color: var(--pd);
  background: rgba(255, 255, 255, 0.5);
}

.stack-tab.active {
  background: var(--pd);
  color: white;
  box-shadow: 0 4px 14px rgba(42, 31, 74, 0.18);
}

.stack-box {
  background: var(--white);
  border: 2px solid var(--pd);
  border-radius: 28px;
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.stack-header {
  background: linear-gradient(135deg, var(--pd), var(--pp));
  padding: 28px 32px;
  text-align: center;
  color: white;
}

.stack-header h3 {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.stack-header p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

.stack-list {
  padding: 32px;
}

.stack-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px dashed var(--border);
}

.stack-item:last-of-type {
  border-bottom: none;
}

.stack-tick {
  width: 32px;
  height: 32px;
  background: var(--green-l);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
  flex-shrink: 0;
}

.stack-item-text {
  flex: 1;
}

.stack-item-text h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--pd);
  margin-bottom: 3px;
  letter-spacing: -0.2px;
}

.stack-item-text p {
  font-size: 13px;
  color: var(--ink3);
  line-height: 1.6;
}

.stack-value {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink3);
  text-align: left;
  flex-shrink: 0;
}

.stack-value s {
  color: var(--ink3);
  opacity: 0.7;
}

.stack-totals {
  background: var(--bg);
  padding: 28px 32px;
  border-top: 2px dashed var(--border2);
}

.stack-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 16px;
}

.stack-total-row.muted {
  color: var(--ink3);
  font-weight: 500;
}

.stack-total-row.muted s {
  text-decoration: line-through;
}

.stack-total-row.final {
  padding-top: 18px;
  border-top: 2px solid var(--pd);
  margin-top: 8px;
}

.stack-total-row.final span:first-child {
  font-size: 18px;
  font-weight: 800;
  color: var(--pd);
}

.stack-total-row.final span:last-child {
  font-size: 32px;
  font-weight: 900;
  color: var(--gold-d);
  letter-spacing: -1px;
}

.stack-saving {
  display: inline-block;
  background: var(--green-l);
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 100px;
  margin-top: 8px;
}

/* ─────────────  PRICING  ───────────── */
.pricing-section {
  background: var(--white);
}

.price-tabs {
  display: flex;
  gap: 8px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 6px;
  width: fit-content;
  margin: 36px 0;
}

.ptab {
  padding: 11px 26px;
  border-radius: 100px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all .25s;
  color: var(--ink3);
  background: transparent;
}

.ptab.active {
  background: var(--pd);
  color: white;
  box-shadow: 0 4px 14px rgba(42, 31, 74, 0.18);
}

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.pkg-card {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  position: relative;
  transition: all .3s;
  display: flex;
  flex-direction: column;
}

.pkg-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.pkg-card.featured {
  background: linear-gradient(160deg, var(--pd), var(--pp));
  border-color: var(--pd);
  color: white;
  transform: scale(1.02);
}

.pkg-card.featured:hover {
  transform: scale(1.02) translateY(-4px);
}

.featured-label {
  position: absolute;
  top: -14px;
  right: 50%;
  transform: translateX(50%);
  background: linear-gradient(90deg, var(--gold), var(--gold-d));
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  padding: 6px 22px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(184, 130, 31, 0.4);
  letter-spacing: 0.3px;
}

.lvl-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 14px;
}

.lb1 {
  background: rgba(123, 98, 181, 0.15);
  color: var(--pp);
}

.lb2 {
  background: rgba(74, 61, 122, 0.15);
  color: var(--pp);
}

.lb3 {
  background: rgba(42, 31, 74, 0.12);
  color: var(--pd);
}

.lb4 {
  background: var(--gold-ll);
  color: var(--gold-d);
}

.lb4f {
  background: rgba(242, 185, 92, 0.25);
  color: var(--gold);
}

.pkg-name {
  font-size: 20px;
  font-weight: 900;
  color: var(--pd);
  margin-bottom: 4px;
  letter-spacing: -0.3px;
}

.featured .pkg-name {
  color: white;
}

.leila-credit {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-d);
  font-style: italic;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.leila-credit::before {
  content: '✍️';
  font-style: normal;
}

.pkg-old {
  font-size: 14px;
  color: var(--ink3);
  text-decoration: line-through;
}

.featured .pkg-old {
  color: rgba(255, 255, 255, 0.45);
}

.discount-strip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(242, 185, 92, 0.2);
  border: 1px solid rgba(184, 130, 31, 0.3);
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 800;
  color: var(--gold-d);
  margin: 6px 0;
}

.featured .discount-strip {
  background: rgba(242, 185, 92, 0.2);
  border-color: rgba(242, 185, 92, 0.4);
  color: var(--gold);
}

.pkg-price {
  font-size: 32px;
  font-weight: 900;
  color: var(--pd);
  line-height: 1;
  letter-spacing: -1px;
}

.pkg-price small {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink3);
}

.featured .pkg-price {
  color: var(--gold);
}

.featured .pkg-price small {
  color: rgba(255, 255, 255, 0.55);
}

.pkg-dur {
  font-size: 13px;
  color: var(--ink3);
  margin: 6px 0 18px;
}

.featured .pkg-dur {
  color: rgba(255, 255, 255, 0.6);
}

.pkg-feats {
  list-style: none;
  margin: 18px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}

.pkg-feats li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13.5px;
  color: var(--ink2);
  line-height: 1.55;
}

.featured .pkg-feats li {
  color: rgba(255, 255, 255, 0.92);
}

.pkg-feats li::before {
  content: '✓';
  color: var(--gold-d);
  font-weight: 900;
  flex-shrink: 0;
  font-size: 14px;
}

.featured .pkg-feats li::before {
  color: var(--gold);
}

.pkg-btn {
  width: 100%;
  padding: 13px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  border-radius: 100px;
  cursor: pointer;
  transition: all .25s;
  border: none;
}

.pkg-btn-outline {
  background: transparent;
  color: var(--pd);
  border: 2px solid var(--pd);
}

.pkg-btn-outline:hover {
  background: var(--pd);
  color: white;
}

.pkg-btn-solid {
  background: linear-gradient(135deg, var(--gold), var(--gold-d));
  color: var(--ink);
}

.pkg-btn-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 130, 31, 0.4);
}

.intermediate-spotlight {
  background: linear-gradient(135deg, var(--gold-ll), var(--bg));
  border: 1.5px solid rgba(184, 130, 31, 0.3);
  border-radius: 18px;
  padding: 22px 26px;
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.spotlight-mark {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pd), var(--pp));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: white;
  font-weight: 900;
  border: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.spotlight-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.spotlight-text {
  flex: 1;
  min-width: 240px;
}

.spotlight-text h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--pd);
  margin-bottom: 4px;
}

.spotlight-text p {
  font-size: 13.5px;
  color: var(--ink2);
  line-height: 1.7;
}

.spotlight-text strong {
  color: var(--gold-d);
}

/* ─────────────  CALCULATOR  ───────────── */
.calc-box {
  background: linear-gradient(135deg, var(--bg2), var(--bg));
  border: 2px solid var(--border);
  border-radius: 28px;
  padding: 36px;
  margin-top: 48px;
}

.calc-title {
  font-size: 24px;
  font-weight: 900;
  color: var(--pd);
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.calc-sub {
  font-size: 15px;
  color: var(--ink3);
  margin-bottom: 24px;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  align-items: start;
}

.calc-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pkg-selector {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pkg-check {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 14px 18px;
  cursor: pointer;
  transition: all .2s;
}

.pkg-check:hover {
  border-color: var(--pp);
}

.pkg-check.selected {
  border-color: var(--pp);
  background: rgba(123, 98, 181, 0.06);
}

.pkg-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--pp);
  cursor: pointer;
}

.pkg-check-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--pd);
  flex: 1;
}

.pkg-check-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-d);
}

.support-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--gold-ll);
  border: 1.5px solid rgba(184, 130, 31, 0.3);
  border-radius: 14px;
  padding: 14px 18px;
  cursor: pointer;
  transition: all .2s;
  margin-top: 8px;
}

.support-row:hover {
  border-color: var(--gold-d);
}

.support-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--gold-d);
}

.support-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink2);
  flex: 1;
}

.support-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-d);
}

.calc-right {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 26px;
  position: sticky;
  top: 88px;
}

.calc-result-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink3);
  margin-bottom: 18px;
}

.calc-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.calc-row-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
}

.calc-row-item span:first-child {
  color: var(--ink3);
}

.calc-row-item span:last-child {
  font-weight: 700;
  color: var(--pd);
}

.calc-divider {
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}

.calc-bundle-tag {
  background: var(--gold-ll);
  border: 1px solid rgba(184, 130, 31, 0.3);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-d);
  text-align: center;
  margin-bottom: 16px;
}

.calc-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calc-total-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink2);
}

.calc-total-price {
  font-size: 28px;
  font-weight: 900;
  color: var(--pd);
  letter-spacing: -1px;
}

.calc-saving {
  font-size: 12.5px;
  color: var(--green);
  font-weight: 700;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 18px;
}

.calc-cta {
  width: 100%;
  padding: 15px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold-d));
  color: var(--ink);
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all .25s;
}

.calc-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ─────────────  ADDON  ───────────── */
.addon-section {
  background: var(--bg2);
}

.addon-inner {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 28px;
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 44px;
  align-items: center;
  margin-top: 44px;
  box-shadow: var(--shadow-sm);
}

.addon-feats {
  list-style: none;
  margin: 22px 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.addon-feats li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--ink2);
}

.addon-feats li::before {
  content: '✓';
  color: var(--gold-d);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}

.highlight-box {
  background: var(--gold-ll);
  border-right: 4px solid var(--gold-d);
  border-radius: 0 12px 12px 0;
  padding: 16px 20px;
  margin: 18px 0;
  font-size: 14.5px;
  color: var(--ink2);
  font-weight: 600;
  line-height: 1.7;
}

.addon-price-box {
  text-align: center;
  min-width: 220px;
}

.addon-big {
  font-size: 48px;
  font-weight: 900;
  color: var(--pd);
  line-height: 1;
  letter-spacing: -1.5px;
}

.addon-big small {
  font-size: 20px;
}

.addon-per {
  font-size: 13px;
  color: var(--ink3);
  margin: 6px 0 24px;
}

.addon-note {
  font-size: 12.5px;
  color: var(--ink3);
  margin-top: 12px;
}

/* ─────────────  PROMISE (Guarantee)  ───────────── */
.promise-section {
  background: var(--white);
}

.promise-box {
  max-width: 840px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--gold-ll), var(--bg));
  border: 2px solid rgba(184, 130, 31, 0.35);
  border-radius: 28px;
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.promise-box::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(242, 185, 92, 0.3), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.promise-seal {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--gold), var(--gold-d));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 38px;
  box-shadow: var(--shadow-gold);
  position: relative;
}

.promise-seal::before {
  content: '';
  position: absolute;
  inset: -6px;
  border: 2px dashed var(--gold-d);
  border-radius: 50%;
  opacity: 0.4;
}

.promise-title {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 900;
  color: var(--pd);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.promise-body {
  font-size: 16px;
  color: var(--ink2);
  line-height: 1.85;
  max-width: 640px;
  margin: 0 auto 18px;
}

.promise-body strong {
  color: var(--gold-d);
  font-weight: 800;
}

.promise-cond {
  font-size: 13px;
  color: var(--ink3);
  font-style: italic;
  margin-top: 18px;
}

/* ─────────────  SCARCITY  ───────────── */
.scarcity-section {
  background: var(--pd);
  position: relative;
  overflow: hidden;
}

.scarcity-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(242, 185, 92, 0.08), transparent 50%), radial-gradient(circle at 80% 30%, rgba(123, 98, 181, 0.1), transparent 50%);
  pointer-events: none;
}

.scarcity-inner {
  text-align: center;
  padding: 80px 24px;
  position: relative;
}

.sc-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(242, 185, 92, 0.18);
  border: 1px solid rgba(242, 185, 92, 0.4);
  border-radius: 100px;
  padding: 8px 22px;
  font-size: 13px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 28px;
  letter-spacing: 0.3px;
}

.sc-title {
  font-size: clamp(28px, 5vw, 54px);
  font-weight: 900;
  color: white;
  margin-bottom: 12px;
  letter-spacing: -0.8px;
}

.sc-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0;
  font-weight: 400;
}

.countdown-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 40px 0;
  flex-wrap: wrap;
}

.cd-unit {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 22px 28px;
  min-width: 96px;
  text-align: center;
  backdrop-filter: blur(8px);
}

.cd-num {
  font-size: 48px;
  font-weight: 900;
  color: var(--gold);
  display: block;
  line-height: 1;
  letter-spacing: -2px;
}

.cd-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
  font-weight: 600;
}

.bonus-banner {
  background: rgba(242, 185, 92, 0.1);
  border: 1px solid rgba(242, 185, 92, 0.3);
  border-radius: 18px;
  padding: 18px 24px;
  max-width: 560px;
  margin: 0 auto 32px;
}

.bonus-banner-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 6px;
}

.bonus-banner-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* ─────────────  FAQ  ───────────── */
.faq-section {
  background: var(--bg);
}

.faq-wrap {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all .25s;
}

.faq-item:hover {
  border-color: var(--border2);
}

.faq-item.open {
  border-color: var(--pp);
  box-shadow: var(--shadow-sm);
}

.faq-q {
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 700;
  color: var(--pd);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
}

.faq-toggle {
  font-size: 22px;
  color: var(--pp);
  transition: transform .25s;
  font-weight: 300;
  flex-shrink: 0;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  padding: 0 24px;
}

.faq-item.open .faq-a {
  max-height: 800px;
  padding-bottom: 20px;
}

.faq-a p {
  font-size: 14.5px;
  color: var(--ink3);
  line-height: 1.85;
}

/* ─────────────  FORM (multi-step)  ───────────── */
.form-section {
  background: linear-gradient(180deg, var(--bg2), var(--white));
}

.form-wrap {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 28px;
  padding: 44px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.form-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--pd), var(--pp), var(--gold-d), var(--gold));
}

.form-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 28px;
}

.form-prog-step {
  flex: 1;
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  transition: background .4s;
}

.form-prog-step.done {
  background: var(--gold-d);
}

.form-prog-step.active {
  background: var(--pp);
}

.form-step {
  display: none;
  animation: fadeIn .4s ease both;
}

.form-step.active {
  display: block;
}

.form-step-num {
  font-size: 12px;
  font-weight: 800;
  color: var(--gold-d);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.form-step h3 {
  font-size: 24px;
  font-weight: 900;
  color: var(--pd);
  margin-bottom: 6px;
  letter-spacing: -0.4px;
}

.form-step .form-sub {
  font-size: 14px;
  color: var(--ink3);
  margin-bottom: 24px;
}

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink2);
  margin-bottom: 7px;
}

.form-field label .req {
  color: var(--red);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  padding: 13px 16px;
  border: 1.5px solid var(--border2);
  border-radius: 12px;
  background: var(--bg);
  color: var(--ink);
  transition: all .2s;
  outline: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--pp);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(123, 98, 181, 0.1);
}

.form-radio-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.form-radio {
  flex: 1;
  min-width: 120px;
}

.form-radio input {
  display: none;
}

.form-radio label {
  display: block;
  padding: 13px 16px;
  border: 1.5px solid var(--border2);
  border-radius: 12px;
  background: var(--bg);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink2);
  cursor: pointer;
  text-align: center;
  transition: all .2s;
  margin: 0;
}

.form-radio input:checked+label {
  border-color: var(--pp);
  background: rgba(123, 98, 181, 0.08);
  color: var(--pp);
  box-shadow: inset 0 0 0 1px var(--pp);
}

.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
}

.form-btn {
  flex: 1;
  padding: 15px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all .25s;
}

.form-btn-back {
  background: transparent;
  color: var(--ink3);
  border: 1.5px solid var(--border2);
}

.form-btn-back:hover {
  border-color: var(--pp);
  color: var(--pp);
}

.form-btn-next {
  background: var(--pd);
  color: white;
}

.form-btn-next:hover {
  background: var(--pp);
  transform: translateY(-1px);
}

.form-btn-submit {
  background: linear-gradient(135deg, var(--gold), var(--gold-d));
  color: var(--ink);
}

.form-btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.form-summary {
  background: var(--bg);
  border: 1.5px dashed var(--border2);
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 18px;
}

.form-summary-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--gold-d);
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

.form-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  font-size: 14px;
}

.form-summary-row span:first-child {
  color: var(--ink3);
}

.form-summary-row span:last-child {
  color: var(--pd);
  font-weight: 700;
}

.form-summary-total {
  border-top: 1.5px solid var(--border2);
  margin-top: 10px;
  padding-top: 12px;
  font-size: 16px;
}

.form-summary-total span:last-child {
  color: var(--gold-d);
  font-size: 18px;
  font-weight: 900;
}

.form-success {
  text-align: center;
  padding: 20px 0;
}

.form-success-icon {
  width: 80px;
  height: 80px;
  background: var(--green-l);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  margin: 0 auto 18px;
}

.form-success h3 {
  font-size: 24px;
  color: var(--pd);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--ink3);
  font-size: 15px;
  margin-bottom: 20px;
}

.form-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 12px;
  color: var(--ink3);
}

/* ─────────────  TERMS  ───────────── */
.terms-section {
  background: var(--white);
}

.terms-box {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 24px;
  padding: 36px;
  margin-top: 36px;
}

.terms-warning {
  display: flex;
  gap: 14px;
  background: rgba(242, 185, 92, 0.12);
  border: 1.5px solid rgba(184, 130, 31, 0.3);
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 26px;
  align-items: flex-start;
}

.terms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 22px;
}

.term-i {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.term-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.term-i h4 {
  font-size: 14.5px;
  font-weight: 800;
  color: var(--pd);
  margin-bottom: 5px;
}

.term-i p {
  font-size: 13.5px;
  color: var(--ink3);
  line-height: 1.7;
}

/* ─────────────  FINAL CTA  ───────────── */
.finalcta {
  background: linear-gradient(135deg, var(--gold-ll) 0%, var(--bg2) 100%);
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.finalcta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 50%, rgba(242, 185, 92, 0.15), transparent 50%), radial-gradient(circle at 70% 50%, rgba(123, 98, 181, 0.1), transparent 50%);
  pointer-events: none;
}

.finalcta-inner {
  position: relative;
  z-index: 2;
}

.finalcta h2 {
  font-size: clamp(30px, 5vw, 58px);
  font-weight: 900;
  color: var(--pd);
  max-width: 820px;
  margin: 0 auto 18px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.finalcta h2 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold-d), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.finalcta p {
  font-size: 18px;
  color: var(--ink2);
  margin-bottom: 38px;
}

.guarantee-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}

.guar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--ink3);
  font-weight: 600;
}

.guar-icon {
  font-size: 16px;
}

/* ─────────────  FOOTER  ───────────── */
footer {
  background: var(--pd);
  padding: 48px 24px 32px;
  text-align: center;
  color: white;
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-bottom: 18px;
}

.footer-logo-mark {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: white;
  font-size: 16px;
}

.footer-logo-name {
  font-size: 18px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.95);
}

.footer-logo-name em {
  font-style: normal;
  color: var(--gold);
}

.footer-eco {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 24px;
}

.footer-eco a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
}

.footer-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.8;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ─────────────  ANIMATIONS  ───────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0)
  }

  50% {
    transform: translateX(-50%) translateY(10px)
  }
}

@keyframes livePulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .5;
    transform: scale(.8)
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.3
  }

  100% {
    transform: scale(2.5);
    opacity: 0
  }
}

/* ─────────────  RESPONSIVE  ───────────── */
@media(max-width:900px) {

  .calc-grid,
  .addon-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .screens-grid {
    grid-template-columns: 1fr 1fr;
  }

  .story-pillars {
    grid-template-columns: 1fr;
  }

  .trust-inner {
    grid-template-columns: 1fr 1fr;
  }

  .trust-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .trust-item:nth-child(2n) {
    border-left: none;
  }
}

@media(max-width:640px) {
  section {
    padding: 64px 16px;
  }

  .calc-right {
    position: static;
  }

  .addon-price-box {
    text-align: right;
  }

  .addon-inner,
  .form-wrap,
  .promise-box,
  .terms-box {
    padding: 28px 22px;
  }

  .stack-list {
    padding: 22px;
  }

  .stack-totals {
    padding: 22px;
  }

  .stack-item {
    flex-wrap: wrap;
  }

  .stack-value {
    width: 100%;
    text-align: right;
    padding-right: 50px;
  }

  .reviews-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-proof {
    gap: 14px;
  }

  .hero-divider {
    display: none;
  }
}

@media(max-width:500px) {
  .screens-grid {
    grid-template-columns: 1fr;
  }

  .trust-num {
    font-size: 30px;
  }

  .trust-num small {
    font-size: 14px;
  }

  .form-radio {
    min-width: 100%;
  }
}

.pain-icon {
  width: 62px;
  height: 62px;
  color: #b29ad8;
  margin-bottom: 24px;
  opacity: 0.95;
}

.pain-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.pain-card {
  position: relative;
}

/* رنگ تب‌ها بر اساس رنگ کتاب‌ها */

/* A1 / Basic - آبی */
.stack-tab[data-level="0"] {
  background: #eef3ff !important;
  color: #5f83c8 !important;
  border-color: #5f83c8 !important;
}

.stack-tab.active[data-level="0"] {
  background: #5f83c8 !important;
  color: #ffffff !important;
  border-color: #5f83c8 !important;
}

/* A2 / Elementary - سبز */
.stack-tab[data-level="1"] {
  background: #eaf8f4 !important;
  color: #70c7b1 !important;
  border-color: #70c7b1 !important;
}

.stack-tab.active[data-level="1"] {
  background: #70c7b1 !important;
  color: #ffffff !important;
  border-color: #70c7b1 !important;
}

/* A2+ / Pre-Int - زرد */
.stack-tab[data-level="2"] {
  background: #fff6d8 !important;
  color: #f5ad00 !important;
  border-color: #f5ad00 !important;
}

.stack-tab.active[data-level="2"] {
  background: #ffbd18 !important;
  color: #ffffff !important;
  border-color: #ffbd18 !important;
}

/* B1 / Intermediate - صورتی */
.stack-tab[data-level="3"] {
  background: #fff0f5 !important;
  color: #eb4d83 !important;
  border-color: #eb4d83 !important;
}

.stack-tab.active[data-level="3"] {
  background: #eb4d83 !important;
  color: #ffffff !important;
  border-color: #eb4d83 !important;
}

.stack-tab:hover {
  filter: brightness(0.97);
}

/* فقط رنگ لیبل سطح‌ها */

/* Basic / A1 - آبی */
.lvl-badge.lb1 {
  background: #eef3ff !important;
  color: #5f83c8 !important;
}

.lvl-badge.lb1::after {
  background: #5f83c8 !important;
}

/* Elementary / A2 - سبز */
.lvl-badge.lb2 {
  background: #eaf8f4 !important;
  color: #70c7b1 !important;
}

.lvl-badge.lb2::after {
  background: #70c7b1 !important;
}

/* Pre-Int / A2+ - زرد */
.lvl-badge.lb3 {
  background: #fff6d8 !important;
  color: #f5ad00 !important;
}

.lvl-badge.lb3::after {
  background: #ffbd18 !important;
}

/* Intermediate / B1 - صورتی */
.lvl-badge.lb4 {
  background: #fff0f5 !important;
  color: #eb4d83 !important;
}

.lvl-badge.lb4::after {
  background: #eb4d83 !important;
}

/* نقطه رنگی کنار متن */
.lvl-badge {
  position: relative;
  padding-left: 28px !important;
}

.lvl-badge::after {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 50%;
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}

/* Badge لینک تعیین سطح */
.placement-link-badge {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(242, 185, 92, 0.14), rgba(123, 98, 181, 0.08));
  border: 1.5px solid rgba(111, 87, 166, 0.28);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(42, 31, 74, 0.06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.placement-link-badge:hover {
  transform: translateY(-1px);
  border-color: var(--purple);
  box-shadow: 0 14px 34px rgba(42, 31, 74, 0.10);
}

.placement-link-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  line-height: 1.8;
}

.placement-link-action {
  background: linear-gradient(135deg, var(--gold), var(--gold-d));
  color: var(--ink);
  text-decoration: none;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(184, 130, 31, 0.22);
}

.current-level-field {
  animation: fadeIn .25s ease both;
}

@media (max-width: 640px) {
  .placement-link-badge {
    flex-direction: column;
    align-items: flex-start;
  }

  .placement-link-badge a {
    width: 100%;
    text-align: center;
  }
}

.rv-av {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.rv-av-letter {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4efff;
  color: var(--purple);
  font-size: 20px;
  font-weight: 900;
}

.rv-name {
  display: block;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
}

.rv-name:hover {
  color: var(--gold-d);
}

.rv-loc {
  margin-top: 4px;
  color: var(--ink3);
  font-size: 12px;
}

.rv-text {
  margin: 14px 0 0;
  color: var(--ink2);
  font-size: 14px;
  line-height: 2;
}

.rv-stars {
  color: #ffb400;
  letter-spacing: 2px;
  margin-top: 14px;
}


.path-circle.pc6 {
  color: #312848;
  border-color: #2d2c2f;
  background-color: #a3a3a3;
  box-shadow: 0 10px 24px rgba(75, 55, 120, 0.14);
}



/* FOOTER */

.pt-footer {
  position: relative;
  overflow: hidden;
  background: #241940;
  color: #ffffff;
  padding: 72px 24px 28px;
}

.pt-footer-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(242, 185, 92, 0.18), transparent 32%),
    radial-gradient(circle at 85% 70%, rgba(164, 139, 214, 0.14), transparent 34%),
    linear-gradient(135deg, #2A1F4A 0%, #1A1232 100%);
  pointer-events: none;
}

.pt-footer-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.055) 1px, transparent 0);
  background-size: 28px 28px;
  opacity: 0.7;
}

.pt-footer-inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
}

.pt-footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.75fr 0.75fr 1fr;
  gap: 34px;
  align-items: start;
}

.pt-footer-brand {
  max-width: 380px;
}

.pt-footer-logo {
  display: inline-flex;
  align-items: center;
  width: 168px;
  min-height: 54px;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
  transition: transform .25s ease, box-shadow .25s ease;
}

.pt-footer-logo:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.32);
}

.pt-footer-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.pt-footer-desc {
  margin-top: 20px;
  font-size: 14.5px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.72);
}

.pt-footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.pt-footer-badges span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 700;
}

.pt-footer-col h4,
.pt-footer-cta h4 {
  font-size: 15.5px;
  font-weight: 900;
  color: #F2B95C;
  margin-bottom: 16px;
}

.pt-footer-col {
  display: flex;
  flex-direction: column;
}

.pt-footer-col a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.70);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 11px;
  transition: color .2s ease, transform .2s ease;
}

.pt-footer-col a:hover {
  color: #F2B95C;
  transform: translateX(-4px);
}

.pt-footer-cta {
  padding: 24px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.055));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.pt-footer-cta p {
  font-size: 13.5px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.70);
  margin-bottom: 18px;
}

.pt-footer-cta button {
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 13px 18px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  color: #15102A;
  background: linear-gradient(135deg, #F2B95C, #B8821F);
  box-shadow: 0 14px 34px rgba(184, 130, 31, 0.32);
  transition: transform .25s ease, box-shadow .25s ease;
}

.pt-footer-cta button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(184, 130, 31, 0.45);
}

.pt-footer-bottom {
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.pt-footer-bottom p {
  margin: 0;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.46);
  line-height: 1.8;
}

.pt-footer-bottom a {
  color: #F2B95C;
  text-decoration: none;
  font-weight: 800;
}

.pt-footer-bottom a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .pt-footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .pt-footer-brand,
  .pt-footer-cta {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .pt-footer {
    padding: 56px 18px 26px;
  }

  .pt-footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .pt-footer-brand,
  .pt-footer-cta {
    grid-column: span 1;
  }

  .pt-footer-logo {
    width: 150px;
  }

  .pt-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* ─────────────  HERO SECTION  ───────────── */

.hero {
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 86px;
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #15102A;
}

.hero-bg {
  position: relative;
  background-image:
    linear-gradient(180deg,
      rgba(21, 16, 42, 0.45) 0%,
      rgba(21, 16, 42, 0.58) 45%,
      rgba(21, 16, 42, 0.72) 100%),
    url("https://picktalkenglish.com/wp-content/uploads/2024/10/img-b90fdignk.jpg");
  background-size: cover;
  background-position: 72% center;
  background-repeat: no-repeat;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;

  backdrop-filter: blur(1.5px);
  -webkit-backdrop-filter: blur(1.5px);

  background: rgba(21, 16, 42, 0.12);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      rgba(21, 16, 42, 0.88) 0%,
      rgba(21, 16, 42, 0.76) 28%,
      rgba(21, 16, 42, 0.58) 52%,
      rgba(21, 16, 42, 0.42) 76%,
      rgba(21, 16, 42, 0.34) 100%);
}

.hero::before {
  z-index: 1;
}

.hero::after {
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 980px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  padding: 9px 22px;
  font-size: 13px;
  font-weight: 800;
  color: #3E326B;
  margin-bottom: 30px;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background: #D39A2B;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.hero-badge .pulse-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: #D39A2B;
  opacity: 0.28;
  animation: pulse 2s infinite;
}

.hero h1 {
  font-size: clamp(42px, 6.5vw, 82px);
  font-weight: 900;
  line-height: 1.10;
  color: #ffffff;
  text-shadow: 0 14px 42px rgba(0, 0, 0, 0.28);
  letter-spacing: -1.8px;
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: normal;
  color: #E3A936;
  display: inline-block;
  position: relative;
  text-shadow: 0 8px 24px rgba(184, 130, 31, 0.28);
}

.hero h1 em::after {
  content: "";
  position: absolute;
  right: 2%;
  left: 2%;
  bottom: -8px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #E3A936, #C78C1F, transparent);
  opacity: 0.95;
}

.hero-sub {
  font-size: clamp(15px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.92);
  max-width: 780px;
  margin: 0 auto 16px;
  font-weight: 500;
  line-height: 1.95;
  text-shadow: 0 5px 18px rgba(0, 0, 0, 0.26);
}

.hero-sub strong {
  color: #ffffff;
  font-weight: 900;
}

.hero-mini {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: 34px;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.24);
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-gold {
  background: linear-gradient(135deg, #F0B744 0%, #D39A2B 100%);
  color: #201537;
  font-family: inherit;
  font-size: 16px;
  font-weight: 900;
  padding: 17px 42px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 18px 44px rgba(184, 130, 31, 0.34);
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 56px rgba(184, 130, 31, 0.45);
}

.btn-outline,
.hero-outline {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.96);
  font-family: inherit;
  font-size: 16px;
  font-weight: 800;
  padding: 17px 32px;
  border-radius: 999px;
  border: 1.6px solid rgba(255, 255, 255, 0.30);
  cursor: pointer;
  transition: all .25s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-outline:hover,
.hero-outline:hover {
  color: #ffffff;
  border-color: rgba(242, 185, 92, 0.72);
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-2px);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 42px;
  flex-wrap: wrap;
  justify-content: center;
}

.proof-avatars {
  display: flex;
}

.proof-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2.5px solid rgba(255, 255, 255, 0.42);
  margin-left: -12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.proof-av:nth-child(1) {
  background: linear-gradient(135deg, #9B83D9, #5B4B93);
  color: #fff;
}

.proof-av:nth-child(2) {
  background: linear-gradient(135deg, #F0B744, #D39A2B);
  color: #201537;
}

.proof-av:nth-child(3) {
  background: linear-gradient(135deg, #5E4A96, #34245C);
  color: #fff;
}

.proof-av:nth-child(4) {
  background: linear-gradient(135deg, #6E5BA7, #8B75C0);
  color: #fff;
}

.proof-av:nth-child(5) {
  background: linear-gradient(135deg, #D39A2B, #F0B744);
  color: #201537;
}

.proof-text {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.76);
  text-align: right;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
}

.proof-text strong {
  color: #ffffff;
  font-weight: 900;
}

.stars-small {
  color: #F0B744;
  font-size: 14px;
  letter-spacing: 3px;
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.18);
}

/* animation helpers */
@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.35;
  }

  70% {
    transform: scale(1.5);
    opacity: 0;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* mobile */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 88px 18px 68px;
  }

  .hero-bg {
    background-position: 64% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg,
        rgba(21, 16, 42, 0.52) 0%,
        rgba(21, 16, 42, 0.34) 40%,
        rgba(21, 16, 42, 0.56) 100%);
  }

  .hero-badge {
    font-size: 11.5px;
    padding: 8px 16px;
    margin-bottom: 24px;
  }

  .hero h1 {
    font-size: clamp(34px, 10vw, 52px);
    line-height: 1.18;
    letter-spacing: -1px;
  }

  .hero-sub {
    font-size: 15px;
    line-height: 1.9;
  }

  .hero-mini {
    font-size: 13px;
    margin-bottom: 28px;
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-gold,
  .btn-outline,
  .hero-outline {
    width: 100%;
  }

  .hero-proof {
    gap: 14px;
  }

  .hero-divider {
    display: none;
  }

  .proof-text {
    font-size: 12.5px;
  }
}

/* ─────────────  PAIN CARDS FIX  ───────────── */

.pain-card {
  text-align: center;
}

.pain-icon {
  width: 62px;
  height: 62px;
  color: #F2B95C !important;
  margin: 0 auto 24px !important;
  opacity: 1 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pain-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}


.pain-card {
  text-align: justify;
  text-align-last: right;
  direction: rtl;
  word-spacing: -0.5px;
}



/* ─────────────  SCREENS SLIDER  ───────────── */

.screens-slider-wrap {
  position: relative;
  margin-top: 10px;
}

.screens-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 18px;
  scrollbar-width: none;
}

.screens-slider::-webkit-scrollbar {
  display: none;
}

.screens-slider .screen-card {
  flex: 0 0 calc((100% - 40px) / 3);
  scroll-snap-align: start;
}

.screens-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(42, 31, 74, 0.14);
  background: rgba(255, 255, 255, 0.94);
  color: var(--pd);
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 34px rgba(42, 31, 74, 0.16);
  transition: all .22s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.screens-nav:hover {
  background: var(--pd);
  color: #fff;
  transform: translateY(-50%) scale(1.06);
}

.screens-prev {
  right: -22px;
}

.screens-next {
  left: -22px;
}

@media(max-width: 900px) {
  .screens-slider .screen-card {
    flex-basis: calc((100% - 20px) / 2);
  }

  .screens-prev {
    right: -10px;
  }

  .screens-next {
    left: -10px;
  }
}

@media(max-width: 640px) {
  .screens-slider {
    gap: 14px;
    padding-inline: 2px;
  }

  .screens-slider .screen-card {
    flex-basis: 88%;
  }

  .screens-nav {
    width: 38px;
    height: 38px;
    font-size: 26px;
  }

  .screens-prev {
    right: 2px;
  }

  .screens-next {
    left: 2px;
  }
}

.pte-highlight {
  display: inline-block;
  padding: 0 6px;
  font-size: 1.30em;
  font-weight: 950;
  line-height: 1.1;
  color: var(--pd);
}

.cycle-week-text {
  flex: 1 1 auto;
  text-align: center !important;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  color: #2d2353;
  line-height: 1.8;
}


/* Cycle section - final fix */

.cycle-timeline {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}

.cycle-week {
  display: grid;
  grid-template-columns: 120px 1fr 120px;
  align-items: center;
  background: #fbfaf6;
  border: 1px solid #eee7d7;
  border-right: 4px solid #c9921e;
  border-radius: 0 18px 18px 0;
  padding: 20px 24px;
}

.cycle-week-num {
  grid-column: 1;
  font-weight: 800;
  font-size: 15px;
  color: #c9921e;
  white-space: nowrap;
  text-align: right;
}

.cycle-week-text {
  grid-column: 2;
  text-align: center !important;
  font-weight: 800;
  font-size: 20px;
  color: #2d2353;
  line-height: 1.8;
}

.cycle-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 18px;
  margin: -2px 0;
  color: #6c5aa0;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

/* اگر فلش داخل span بود */
.cycle-arrow span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Mobile */
@media (max-width: 768px) {
  .cycle-week {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px;
  }

  .cycle-week-num {
    grid-column: 1;
    text-align: center;
    font-size: 14px;
  }

  .cycle-week-text {
    grid-column: 1;
    text-align: center !important;
    font-size: 17px;
  }

  .cycle-arrow {
    height: 18px;
    font-size: 22px;
  }
}


/* Google reviews manual slider */

.google-reviews-slider-wrap {
  position: relative;
  margin-top: 24px;
}

.reviews-slider {
  display: flex !important;
  grid-template-columns: unset !important;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 18px;
  scrollbar-width: none;
}

.reviews-slider::-webkit-scrollbar {
  display: none;
}

.reviews-slider .review-card {
  flex: 0 0 calc((100% - 40px) / 3);
  scroll-snap-align: start;
  min-height: 285px;
}

.review-card {
  background: #fff;
  border: 1px solid rgba(42, 31, 74, 0.10);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 18px 44px rgba(42, 31, 74, 0.08);
}

.rv-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.rv-av {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #f4f0ff;
  border: 2px solid rgba(242, 185, 92, 0.45);
}

.rv-av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rv-name {
  font-size: 14px;
  font-weight: 900;
  color: var(--pd);
  line-height: 1.4;
}

.rv-source {
  font-size: 11.5px;
  color: var(--ink3);
  margin-top: 3px;
}

.rv-stars {
  color: #F2B95C;
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.rv-text {
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--ink2);
  text-align: left;
  direction: ltr;
}

.rv-text[dir="rtl"] {
  text-align: right;
  direction: rtl;
}

.reviews-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(42, 31, 74, 0.14);
  background: rgba(255, 255, 255, 0.96);
  color: var(--pd);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 34px rgba(42, 31, 74, 0.16);
  transition: all .22s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviews-nav:hover {
  background: var(--pd);
  color: #fff;
  transform: translateY(-50%) scale(1.06);
}

.reviews-prev {
  right: -22px;
}

.reviews-next {
  left: -22px;
}

@media(max-width: 900px) {
  .reviews-slider .review-card {
    flex-basis: calc((100% - 20px) / 2);
  }

  .reviews-prev {
    right: -10px;
  }

  .reviews-next {
    left: -10px;
  }
}

@media(max-width: 640px) {
  .reviews-slider {
    gap: 14px;
  }

  .reviews-slider .review-card {
    flex-basis: 88%;
    min-height: auto;
  }

  .reviews-nav {
    width: 38px;
    height: 38px;
    font-size: 26px;
  }

  .reviews-prev {
    right: 2px;
  }

  .reviews-next {
    left: 2px;
  }
}

/* Google reviews manual slider */



/* Footer RTL Fix */

.pt-footer {
  direction: rtl;
  text-align: right;
}

.pt-footer-main {
  direction: rtl;
  text-align: right;
  display: grid;
  grid-template-columns: 1.25fr 0.7fr 0.7fr 1fr;
  gap: 34px;
  align-items: start;
}

.pt-footer-brand {
  text-align: right;
}

.pt-footer-logo {
  margin-right: 0;
  margin-left: auto;
}

.pt-footer-desc {
  text-align: right;
}

.pt-footer-badges {
  justify-content: flex-start;
  direction: rtl;
}

.pt-footer-badges span {
  direction: rtl;
}

.pt-footer-col {
  text-align: right;
  align-items: flex-start;
}

.pt-footer-col h4 {
  text-align: right;
}

.pt-footer-col a {
  text-align: right;
}

.pt-footer-cta {
  text-align: right;
}

.pt-footer-cta h4,
.pt-footer-cta p {
  text-align: right;
}

.pt-footer-bottom {
  direction: rtl;
  text-align: right;
  justify-content: flex-start;
}

.pt-footer-bottom p {
  text-align: right;
}

@media (max-width: 900px) {
  .pt-footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .pt-footer-brand,
  .pt-footer-cta {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .pt-footer-main {
    grid-template-columns: 1fr;
  }

  .pt-footer-brand,
  .pt-footer-cta {
    grid-column: span 1;
  }

  .pt-footer-logo {
    margin-left: auto;
    margin-right: 0;
  }
}