/* ============================================================
   نبض (Nabz) — Landing
   Style: Swiss / Minimalism · Brand: Emerald pulse · RTL Persian
   ============================================================ */

/* ---------- Fonts ----------
   Kahroba → display only (h1/h2, brand, price)
   Pelak FA → UI/body; static weights, so every weight below is a real cut
   (no fake bold). The browser fetches only the weights actually used.
   -------------------------------------------- */
@font-face {
  font-family: "Kahroba";
  src: url("assets/fonts/kahroba/Kahroba-VF[wght,wdth,CNTR].woff2") format("woff2-variations");
  font-weight: 100 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Pelak";
  src: url("assets/fonts/pelak/PelakFA-light.woff2") format("woff2");
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Pelak";
  src: url("assets/fonts/pelak/PelakFA-Regular.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Pelak";
  src: url("assets/fonts/pelak/PelakFA-Medium.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Pelak";
  src: url("assets/fonts/pelak/PelakFA-SemiBold.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Pelak";
  src: url("assets/fonts/pelak/PelakFA-Bold.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Pelak";
  src: url("assets/fonts/pelak/PelakFA-ExtraBold.woff2") format("woff2");
  font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Pelak";
  src: url("assets/fonts/pelak/PelakFA-Black.woff2") format("woff2");
  font-weight: 900; font-style: normal; font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  /* brand emerald (from logo gradient) */
  --emerald-300: #6ee7b7;
  --emerald-400: #34d399;
  --emerald-500: #10b981;
  --emerald-600: #059669;
  --emerald-700: #047857;

  --primary: var(--emerald-600);
  --primary-hover: var(--emerald-700);
  --on-primary: #ffffff;

  /* accents — urgency & strike-through pricing */
  --warn: #f59e0b;        /* fills / bars on dark */
  --warn-ink: #b45309;    /* icons & text on light — passes 3:1 */
  --danger: #e11d48;

  /* neutrals (slate) */
  --ink: #0f172a;
  --ink-2: #1e293b;
  --slate: #475569;
  --muted: #64748b;
  --line: #e2e8f0;
  --line-soft: #f1f5f9;
  --surface: #ffffff;
  --bg: #f8fafc;
  --bg-tint: #ecfdf5;     /* emerald-50 */

  /* dark band — slate, so emerald actually pops on it */
  --dark: #0f172a;
  --dark-2: #1e293b;

  /* text on the dark band */
  --on-dark: #e2e8f0;
  --on-dark-muted: #94a3b8;
  --on-dark-soft: #cbd5e1;

  /* type */
  --font-ui: "Pelak", "Vazirmatn", system-ui, "Segoe UI", Tahoma, sans-serif;
  --font-display: "Kahroba", "Pelak", "Vazirmatn", system-ui, sans-serif;

  --radius-sm: 8px;
  --radius: 8px;
  --radius-lg: 8px;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06), 0 1px 3px rgba(15, 23, 42, .04);
  --shadow: 0 8px 24px rgba(15, 23, 42, .08);
  --shadow-lg: 0 24px 60px -12px rgba(15, 23, 42, .22);

  --container: 1180px;
  --ease: cubic-bezier(.22, 1, .36, 1);

  --t: 220ms;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 84px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-ui);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-ui); line-height: 1.3; margin: 0; font-weight: 700; letter-spacing: -.01em; }
/* display face: only where type is large enough to carry it */
h1, h2, .brand__name, .kpi__value, .stat__num, .offer__new b { font-family: var(--font-display); }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul, ol { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 3px solid var(--emerald-400); outline-offset: 3px; border-radius: 8px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }

.skip-link {
  position: absolute; right: -9999px; top: 8px; z-index: 1000;
  background: var(--ink); color: #fff; padding: 10px 18px; border-radius: 8px;
}
.skip-link:focus { right: 16px; }

.grad {
  background: linear-gradient(120deg, var(--emerald-400), var(--emerald-600));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 9px; --pad-x: 16px;
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  font-family: inherit; font-weight: 600; font-size: 14px; cursor: pointer;
  padding: var(--pad-y) var(--pad-x); border-radius: 8px; border: 1px solid transparent;
  transition: background var(--t) var(--ease), color var(--t) var(--ease),
              border-color var(--t) var(--ease), transform var(--t) var(--ease),
              box-shadow var(--t) var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn--lg { --pad-y: 11px; --pad-x: 22px; font-size: 15px; }
.btn--block { display: flex; width: 100%; }

.btn--primary {
  background: var(--primary); color: var(--on-primary);
  box-shadow: 0 6px 18px -4px rgba(5, 150, 105, .5);
}
.btn--primary:hover { background: var(--primary-hover); box-shadow: 0 10px 26px -6px rgba(5, 150, 105, .58); transform: translateY(-1px); }

.btn__play {
  display: block; flex: none; width: 18px; height: 18px; background-color: currentColor;
  -webkit-mask: center / contain no-repeat url("assets/img/play-circle-svgrepo-com.svg");
  mask: center / contain no-repeat url("assets/img/play-circle-svgrepo-com.svg");
}
.btn--lg .btn__play { width: 20px; height: 20px; }
.btn--outline {
  background: var(--surface); color: var(--ink);
  border-width: 1.5px; border-color: #94a3b8;
  padding: calc(var(--pad-y) - .5px) calc(var(--pad-x) - .5px);
}
.btn--outline:hover { border-color: var(--emerald-500); color: var(--emerald-700); background: var(--bg-tint); }

.btn--ghost { background: transparent; color: var(--ink); border-color: transparent; }
.btn--ghost:hover { background: var(--line-soft); }
.btn--on-dark { color: var(--on-dark); }
.btn--on-dark:hover { background: rgba(255, 255, 255, .1); }


/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248, 250, 252, .82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
}
.nav.is-scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); background: rgba(255, 255, 255, .82); }
.nav__inner { display: flex; align-items: center; gap: 24px; height: 68px; justify-content: space-around;}

.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; }
.brand__mark { border-radius: 8px; }
.brand__text { display: inline-flex; flex-direction: column; line-height: 1.2; }
.brand__name { font-size: 20px; letter-spacing: -.02em; }
.brand__tagline { font-size: 13px; font-weight: 400; color: var(--muted); margin-top: 2px; }

.nav__links { display: flex; gap: 2px; margin-inline-start: 12px; margin-inline-end: auto; }
.nav__links a {
  padding: 8px 11px; border-radius: 8px; color: var(--slate); font-size: 14.5px; font-weight: 500;
  white-space: nowrap;  /* Pelak runs wide — never let a link break in two */
  transition: color var(--t), background var(--t);
}
.nav__links a:hover { color: var(--ink); background: var(--line-soft); }

.nav__actions { display: flex; gap: 8px; align-items: center; }

.nav__toggle {
  display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px;
  align-items: center; justify-content: center; background: transparent; border: 1px solid var(--line);
  border-radius: 8px; cursor: pointer;
}
.nav__toggle span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform var(--t), opacity var(--t); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column; gap: 4px; padding: 12px 24px 22px;
  border-bottom: 1px solid var(--line); background: var(--surface);
}
.mobile-menu a { padding: 12px 8px; font-weight: 500; color: var(--slate); border-radius: 8px; }
.mobile-menu a:hover { background: var(--line-soft); color: var(--ink); }
.mobile-menu .btn { margin-top: 8px; }
.mobile-menu a.btn--primary, .mobile-menu a.btn--primary:hover { color: var(--on-primary); }

/* ---------- Section helpers ---------- */
section { position: relative; }
.kicker {
  display: inline-block; font-size: 13px; font-weight: 600; letter-spacing: .04em;
  color: var(--emerald-700); background: var(--bg-tint); border: 1px solid #d1fae5;
  padding: 5px 12px; border-radius: 8px; margin-bottom: 18px;
}
.kicker--light { color: var(--emerald-300); background: rgba(52, 211, 153, .12); border-color: rgba(52, 211, 153, .22); }

.section-head { max-width:  720px; margin: 0 auto 56px; text-align: center; }
.section-head--start { text-align: start; margin-inline: 0; }
.section-head h2 { font-size: clamp(28px, 4vw, 34px); }
.section-head p { color: var(--muted); margin-top: 16px; font-size: 17px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: 64px 0 80px; overflow: hidden; }
.hero__glow {
  position: absolute; inset-block-start: -200px; inset-inline-start: 50%; transform: translateX(50%);
  width: 900px; height: 600px; pointer-events: none;
  background: radial-gradient(closest-side, rgba(16, 185, 129, .16), transparent 70%);
  filter: blur(10px);
}
.hero__inner {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
  position: relative;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--emerald-700);
  background: var(--bg-tint); border: 1px solid #d1fae5; padding: 6px 14px; border-radius: 8px;
}
.eyebrow__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--emerald-500); box-shadow: 0 0 0 0 rgba(16, 185, 129, .5); animation: ping 2s var(--ease) infinite; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, .5); } 70%, 100% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); } }

.hero__title { font-size: clamp(24px, 3.4vw, 38px); line-height: 1.25; margin: 22px 0 0; letter-spacing: -.025em; }
.hero__title-line { display: block; }
.hero__lede { color: var(--slate); font-size: clamp(14px, 1.6vw, 16px); margin-top: 22px; max-width: 540px; text-align: justify; }
.hero__lede strong { color: var(--ink); font-weight: 700; }

.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.hero__trust { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 28px; }
.hero__trust li { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; color: var(--slate); font-weight: 500; }
.hero__trust svg { color: var(--emerald-600); }

.hero__scope {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 16px;
  font-size: 14px; font-weight: 600; color: var(--slate);
  background: rgba(135, 62, 255, .07); border: 1px solid rgba(135, 62, 255, .22);
  padding: 6px 12px; border-radius: 10px;
}
.hero__scope-logo { width: auto; height: 20px; display: block; }

/* hero visual */
.hero__visual { position: relative; }

.dash {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.dash__bar {
  display: flex; align-items: center; gap: 7px; padding: 14px 18px;
  border-bottom: 1px solid var(--line-soft); background: #f8fafc;
}
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot--r { background: #f87171; } .dot--y { background: #fbbf24; } .dot--g { background: var(--emerald-400); }
.dash__bar-title { margin-inline-start: auto; font-size: 13px; color: var(--muted); font-weight: 600; }

.dash__body { padding: 24px; }

.kpi { display: grid; grid-template-columns: auto auto 1fr; align-items: baseline; gap: 8px 8px; }
.kpi__label { grid-column: 1 / -1; font-size: 13px; color: var(--muted); font-weight: 500; }
.kpi__value { font-size: clamp(28px, 5vw, 38px); font-weight: 700; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.kpi__unit { font-size: 15px; color: var(--slate); font-weight: 600; }
.kpi__delta { grid-column: 1 / -1; font-size: 13px; color: var(--emerald-700); font-weight: 600; }

.pulse { width: 100%; height: 70px; margin: 4px 0 18px; }
.pulse__track { stroke: var(--line); stroke-width: 2; }
.pulse__line {
  stroke: var(--emerald-500); stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 620; stroke-dashoffset: 620; animation: trace 3.4s var(--ease) infinite;
  filter: drop-shadow(0 0 6px rgba(16, 185, 129, .35));
}
@keyframes trace { 0% { stroke-dashoffset: 620; } 55%, 100% { stroke-dashoffset: 0; } }

.dash__rows { display: grid; gap: 12px; }
.seg-row { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 6px 12px; font-size: 14px; }
.seg-row__name { display: inline-flex; align-items: center; gap: 8px; color: var(--slate); font-weight: 500; }
.seg-row__count { font-weight: 700; font-variant-numeric: tabular-nums; }
.seg-row__bar { grid-column: 1 / -1; height: 7px; background: var(--line-soft); border-radius: 8px; overflow: hidden; }
.seg-row__bar i { display: block; height: 100%; border-radius: 8px; background: linear-gradient(90deg, var(--emerald-400), var(--emerald-600)); }
.seg { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.seg--whale { background: #0ea5e9; } .seg--loyal { background: var(--emerald-500); }
.seg--risk { background: #f59e0b; } .seg--sleep { background: #94a3b8; }

.float-card {
  position: absolute; inset-block-end: -26px; inset-inline-end: -22px;
  width: 270px; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 16px;
  animation: float 5s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.float-card__head { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--emerald-700); margin-bottom: 8px; }
.float-card__icon { display: inline-flex; color: var(--emerald-600); }
.float-card__text { font-size: 14px; color: var(--slate); line-height: 1.6; }
.float-card__actions { display: flex; gap: 8px; margin-top: 12px; }
.chip { font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 8px; background: var(--line-soft); color: var(--slate); }
.chip--go { background: var(--emerald-600); color: #fff; }

/* ============================================================
   STATS
   ============================================================ */
.stats { padding: 28px 0; border-block: 1px solid var(--line); background: var(--surface); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 12px; }
.stat + .stat { border-inline-start: 1px solid var(--line-soft); }
.stat__num { display: block; font-size: clamp(30px, 4.4vw, 44px); font-weight: 700; color: var(--emerald-600); letter-spacing: -.02em; }
.stat__txt { display: block; font-size: 14px; color: var(--muted); margin-top: 6px; line-height: 1.6; }
.stats__lead { max-width: 760px; margin: 28px auto 0; padding-top: 24px; border-top: 1px solid var(--line-soft); text-align: center; font-size: clamp(16px, 2vw, 19px); line-height: 1.9; color: var(--ink); }
.stats__lead strong { color: var(--emerald-600); font-weight: 700; }

/* ============================================================
   PROBLEM
   ============================================================ */
.problem { padding: 100px 0; }
.problem .section-head p { text-align: justify; text-align-last: center; }
.cmp { display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: stretch; max-width: 940px; margin-inline: auto; }
.cmp__col { padding: 30px; border-radius: var(--radius-lg); }
.cmp__col h3 { font-size: 18px; margin-bottom: 18px; }
.cmp__col ul { display: grid; gap: 12px; }
.cmp__col li { position: relative; padding-inline-start: 28px; color: var(--slate); font-size: 15px; }
.cmp__col li::before { position: absolute; inset-inline-start: 0; top: 2px; font-weight: 700; }
.cmp__col--bad { background: #f8fafc; border: 1px solid var(--line); }
.cmp__col--bad h3 { color: var(--muted); }
.cmp__col--bad li::before { content: "✕"; color: #cbd5e1; }
.cmp__col--good { background: var(--dark); color: var(--on-dark-soft); border: 1px solid #334155; }
.cmp__col--good h3 { color: #fff; }
.cmp__col--good li { color: var(--on-dark-soft); }
.cmp__col--good li::before { content: "✓"; color: var(--emerald-400); }
.cmp__arrow { display: grid; place-items: center; color: var(--emerald-500); }
.cmp__arrow svg { transform: scaleX(-1); }

/* ============================================================
   FEATURES
   ============================================================ */
.features { padding: 100px 0; background: var(--surface); border-block: 1px solid var(--line); }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feat {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px; transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t);
}
.feat:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #d4f3e3; }
.feat__icon {
  display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 8px;
  background: var(--bg-tint); color: var(--emerald-600); border: 1px solid #d1fae5; margin-bottom: 18px; flex: none;
}
.feat__icon .ico {
  width: 26px; height: 26px; background: currentColor;
  -webkit-mask: var(--ico) center / contain no-repeat;
          mask: var(--ico) center / contain no-repeat;
}
.feat h3 { font-size: 18px; margin-bottom: 10px; }
.feat p { color: var(--muted); font-size: 15px; }

/* full-width reliability banner */
.feat--full { grid-column: 1 / -1; display: flex; align-items: center; gap: 24px; }
.feat--full .feat__icon { margin-bottom: 0; width: 60px; height: 60px; }
.feat--full .feat__full-text h3 { margin-bottom: 6px; }
.feat--full .feat__full-text p { max-width: 760px; }

/* ============================================================
   SHOWCASE (product screenshots) — bento + lightbox
   ============================================================ */
.showcase { padding: 100px 0; background: var(--bg); }
.shots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
/* the two "headline" tiles span the full row and show a wider crop */
.shot--feature, .shot--wide { grid-column: 1 / -1; }

.shot { margin: 0; display: flex; flex-direction: column; }

.shot__btn {
  display: block; width: 100%; padding: 0; cursor: zoom-in;
  font: inherit; color: inherit; text-align: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.shot__btn:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: #a7e8cd; }

/* fake browser/app chrome bar */
.shot__chrome {
  display: flex; align-items: center; gap: 7px;
  padding: 11px 14px;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  border-bottom: 1px solid var(--line);
}
.shot__chrome .dot { width: 10px; height: 10px; border-radius: 50%; }
.shot__chrome-title {
  margin-inline-start: 10px; font-size: 12.5px; font-weight: 600; color: var(--muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* viewport crops the tall screenshot from the top so detail stays crisp */
.shot__view { position: relative; display: block; }
.shot__viewport {
  display: block; position: relative;
  height: 360px; overflow: hidden;
  background: #f1f5f9;
}
.shot--feature .shot__viewport, .shot--wide .shot__viewport { height: 440px; }
.shot__viewport img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  transition: object-position 5.5s var(--ease), transform var(--t) var(--ease);
}
/* on hover, slowly pan down so visitors glimpse more of the page */
.shot__btn:hover .shot__viewport img { object-position: bottom center; }

/* fade + "view full" pill */
.shot__view::after {
  content: ""; position: absolute; inset-inline: 0; bottom: 0; height: 96px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.85));
  pointer-events: none;
}
.shot__zoom {
  position: absolute; inset-block-end: 14px; inset-inline-end: 14px; z-index: 1;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 600; color: var(--emerald-700);
  background: rgba(255, 255, 255, .92);
  border: 1px solid #d1fae5;
  box-shadow: 0 6px 18px -6px rgba(15, 23, 42, .25);
  backdrop-filter: blur(4px);
  opacity: 0; transform: translateY(6px);
  transition: opacity var(--t) var(--ease), transform var(--t) var(--ease);
}
.shot__zoom svg { color: var(--emerald-600); }
.shot__btn:hover .shot__zoom, .shot__btn:focus-visible .shot__zoom { opacity: 1; transform: none; }

.shot__cap { padding: 18px 6px 0; }
.shot__cap-title { display: block; font-weight: 700; font-size: 16px; color: var(--ink); }
.shot__cap-desc { display: block; margin-top: 5px; font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ---------- Image lightbox ---------- */
.imodal { position: fixed; inset: 0; z-index: 1200; display: grid; place-items: center; padding: 24px; }
.imodal[hidden] { display: none; }
.imodal__backdrop { position: absolute; inset: 0; background: rgba(15, 23, 42, .82); backdrop-filter: blur(6px); animation: imodal-fade var(--t) var(--ease); }
.imodal__close {
  position: absolute; top: 18px; inset-inline-end: 18px; z-index: 2;
  width: 44px; height: 44px; border-radius: 50%; cursor: pointer;
  font-size: 26px; line-height: 1; color: #fff;
  background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .22);
  transition: background var(--t) var(--ease);
}
.imodal__close:hover { background: rgba(255, 255, 255, .24); }
.imodal__dialog {
  position: relative; z-index: 1;
  width: min(940px, 100%); max-height: 90vh;
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 40px 90px -20px rgba(0, 0, 0, .6);
  animation: imodal-pop var(--t) var(--ease);
}
.imodal__scroll {
  max-height: 90vh; overflow: auto;
  background: #fff;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.imodal__img { width: 100%; height: auto; display: block; }
@keyframes imodal-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes imodal-pop { from { opacity: 0; transform: translateY(12px) scale(.985); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .imodal__backdrop, .imodal__dialog { animation: none; }
}

/* ---------- Floating activation CTA ---------- */
.fab {
  position: fixed; z-index: 1100; right: 20px; bottom: 20px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 18px; border-radius: 8px; /* same radius as .btn (شروع کنید) */
  font-size: 15px; font-weight: 700; color: #fff; text-decoration: none;
  background: linear-gradient(135deg, var(--emerald-600), var(--emerald-700));
  box-shadow: 0 14px 30px -10px rgba(4, 120, 87, .55);
  opacity: 0; visibility: hidden; transform: translateY(14px) scale(.96);
  transition: opacity var(--t) var(--ease), transform var(--t) var(--ease), visibility var(--t) var(--ease);
}
.fab.is-visible { opacity: 1; visibility: visible; transform: none; }
.fab:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -10px rgba(4, 120, 87, .6); }
.fab__pulse {
  position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, .5);
  animation: ping 2.4s var(--ease) infinite;
}
@media (max-width: 640px) {
  .fab { right: 14px; bottom: 14px; padding: 11px 15px; font-size: 14px; }
}
@media (prefers-reduced-motion: reduce) {
  .fab { transition: none; }
  .fab__pulse { animation: none; }
}

/* ---------- Support widget (bottom-left) ---------- */
.support {
  position: fixed; z-index: 1100; left: 20px; bottom: 20px;
  direction: ltr; display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
}
.support__items {
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity var(--t) var(--ease), transform var(--t) var(--ease), visibility var(--t) var(--ease);
}
.support.is-open .support__items { opacity: 1; visibility: visible; transform: none; }
.support__item { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }
.support__ico {
  display: grid; place-items: center; flex: none;
  width: 44px; height: 44px; border-radius: 50%; overflow: hidden;
  background: var(--surface); border: 1px solid var(--line);
  box-shadow: 0 10px 24px -12px rgba(15, 23, 42, .45);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.support__ico img { width: 100%; height: 100%; display: block; }
.support__ico--phone { color: var(--emerald-700); }
/* black-filled SVG assets are masked so they inherit the current color */
.support__glyph {
  display: block; background-color: currentColor;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
  -webkit-mask-size: contain; mask-size: contain;
}
.support__glyph--phone {
  width: 22px; height: 22px;
  -webkit-mask-image: url("assets/img/phone-svgrepo-com.svg");
  mask-image: url("assets/img/phone-svgrepo-com.svg");
}
.support__glyph--headset {
  width: 26px; height: 26px;
  -webkit-mask-image: url("assets/img/support-svgrepo-com.svg");
  mask-image: url("assets/img/support-svgrepo-com.svg");
}
.support__item:hover .support__ico { transform: translateY(-2px); box-shadow: 0 14px 28px -12px rgba(15, 23, 42, .55); }
.support__label {
  order: 2;
  background: var(--surface); border: 1px solid var(--line); border-radius: 999px;
  padding: 7px 13px; font-size: 13px; font-weight: 700; color: var(--ink);
  white-space: nowrap; box-shadow: 0 10px 24px -14px rgba(15, 23, 42, .5);
  opacity: 0; transform: translateX(-8px); pointer-events: none;
  transition: opacity var(--t) var(--ease), transform var(--t) var(--ease);
}
.support__item:hover .support__label,
.support__item:focus-visible .support__label { opacity: 1; transform: none; }
.support__toggle {
  display: grid; place-items: center; cursor: pointer;
  width: 50px; height: 50px; border-radius: 50%; border: 0; color: #fff;
  background: linear-gradient(135deg, var(--emerald-600), var(--emerald-700));
  box-shadow: 0 14px 30px -10px rgba(4, 120, 87, .55);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.support__toggle:hover { transform: translateY(-2px); }
.support.is-open .support__toggle { transform: rotate(-8deg) scale(1.03); }
@media (max-width: 640px) {
  .support { left: 14px; bottom: 14px; }
  .support__toggle { width: 46px; height: 46px; }
  .support__ico { width: 40px; height: 40px; }
  /* touch devices have no hover: labels are always visible once opened */
  .support__label { opacity: 1; transform: none; }
}
@media (hover: none) {
  .support__label { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .support__items, .support__label, .support__ico, .support__toggle { transition: none; }
}

/* ---------- Telegram redirect modal ---------- */
.tgmodal { position: fixed; inset: 0; z-index: 1300; display: grid; place-items: center; padding: 16px; }
.tgmodal[hidden] { display: none; }
.tgmodal__backdrop { position: absolute; inset: 0; background: rgba(15, 23, 42, .55); backdrop-filter: blur(3px); animation: imodal-fade var(--t) var(--ease); }
.tgmodal__dialog {
  position: relative; z-index: 1;
  width: min(520px, 100%);
  max-height: calc(100vh - 32px); max-height: calc(100dvh - 32px); overflow-y: auto;
  overscroll-behavior: contain; -webkit-overflow-scrolling: touch;
  background: var(--surface, #fff); border-radius: 14px;
  padding: clamp(16px, 4vw, 24px);
  box-shadow: 0 30px 70px -20px rgba(15, 23, 42, .45);
  animation: imodal-pop var(--t) var(--ease);
}
.tgmodal__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.tgmodal__title {
  display: inline-flex; align-items: center; gap: 9px; margin: 0;
  font-size: clamp(15px, 4vw, 17px); font-weight: 700; color: var(--ink); line-height: 1.5;
}
.tgmodal__icon { width: clamp(26px, 7vw, 32px); height: auto; display: block; flex: none; }
.tgmodal__close {
  flex: none; width: 36px; height: 36px; border-radius: 8px; cursor: pointer;
  font-size: 22px; line-height: 1; color: var(--muted);
  background: transparent; border: 0;
  transition: background var(--t) var(--ease), color var(--t) var(--ease);
}
.tgmodal__close:hover { background: rgba(15, 23, 42, .06); color: var(--ink); }
.tgmodal__text {
  margin: 14px 0 0; font-size: clamp(13px, 3.6vw, 14px); line-height: 1.9;
  color: var(--slate); text-align: justify;
}
.tgmodal__actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-start; margin-top: 20px; }
.tgmodal__copy { display: inline-flex; align-items: center; gap: 7px; min-width: 0; }
.tgmodal__copy svg { flex: none; }
.tgmodal__copy-label { min-width: 0; overflow-wrap: anywhere; }
.tgmodal__copy.is-copied { color: var(--emerald-700); border-color: var(--emerald-600); }
@media (max-width: 560px) {
  .tgmodal__actions { flex-direction: column-reverse; gap: 8px; margin-top: 18px; }
  .tgmodal__actions .btn {
    width: 100%; justify-content: center; white-space: normal;
    min-height: 46px; padding: 10px 14px; text-align: center;
  }
  .tgmodal__copy { border: 1px solid var(--line); }
}
@media (prefers-reduced-motion: reduce) {
  .tgmodal__backdrop, .tgmodal__dialog { animation: none; }
}

/* ============================================================
   ROI (dark band)
   ============================================================ */
.roi { padding: 100px 0; background: linear-gradient(160deg, var(--dark), var(--dark-2)); color: var(--on-dark); overflow: hidden; }
.roi__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.roi__copy h2 { font-size: clamp(26px, 3.6vw, 38px); color: #fff; }
.roi__copy p { color: var(--on-dark-muted); margin-top: 16px; font-size: 17px; }
.roi__list { display: grid; gap: 12px; margin-top: 26px; }
.roi__list li { display: flex; align-items: flex-start; gap: 10px; color: var(--on-dark-soft); font-size: 15px; }
.roi__list svg { color: var(--emerald-400); flex: none; margin-top: 3px; }

.roi__panel {
  background: rgba(255, 255, 255, .04); border: 1px solid rgba(110, 231, 183, .18);
  border-radius: var(--radius-lg); padding: 26px; backdrop-filter: blur(6px);
}
.roi__panel-head { display: flex; align-items: center; justify-content: space-between; font-weight: 700; color: #fff; font-size: 16px; }
.badge { font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 8px; }
.badge--ok { background: rgba(52, 211, 153, .16); color: var(--emerald-300); border: 1px solid rgba(52, 211, 153, .3); }
.roi__metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 22px 0; }
.roi__metrics > div { background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .07); border-radius: var(--radius); padding: 16px; text-align: center; }
.roi__m-num { display: block; font-size: 26px; font-weight: 700; color: #fff; font-variant-numeric: tabular-nums; }
.roi__m-lbl { display: block; font-size: 13px; color: var(--on-dark-muted); margin-top: 4px; }
.roi__revenue {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  padding: 18px 20px; border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(16, 185, 129, .18), rgba(5, 150, 105, .1));
  border: 1px solid rgba(52, 211, 153, .28);
}
.roi__rev-lbl { color: var(--on-dark-soft); font-size: 14px; font-weight: 600; }
.roi__rev-num { font-size: clamp(20px, 3vw, 28px); font-weight: 700; color: #fff; font-variant-numeric: tabular-nums; }
.roi__rev-num em { font-size: 14px; font-style: normal; color: var(--on-dark-muted); font-weight: 600; }
.roi__chart { display: flex; align-items: flex-end; gap: 8px; height: 84px; margin-top: 22px; }
.roi__chart i { flex: 1; border-radius: 8px 8px 0 0; background: linear-gradient(180deg, var(--emerald-400), rgba(5, 150, 105, .35)); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how { padding: 100px 0; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 28px 24px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.step__num {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 8px;
  background: var(--dark); color: var(--emerald-300); font-weight: 700; font-size: 18px; margin-bottom: 16px;
}
.step h3 { font-size: 17px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14.5px; }

/* ============================================================
   PRICING
   ============================================================ */
/* sits directly under .features, which is also white — one continuous band,
   so no top border (it would double up) and a tighter top pad */
.pricing { padding: 80px 0 100px; background: var(--surface); border-bottom: 1px solid var(--line); }

.offer {
  position: relative; max-width: 1000px; margin-inline: auto;
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 30px; overflow: hidden;
}
.offer__glow {
  position: absolute; inset-block-start: -140px; inset-inline-start: -120px;
  width: 420px; height: 420px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(16, 185, 129, .14), transparent 68%);
}

.offer__head {
  position: relative; display: flex; flex-wrap: wrap; align-items: center;
  gap: 10px; margin-bottom: 26px;
}
.offer__ribbon {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: #04130d;
  background: linear-gradient(120deg, var(--emerald-300), var(--emerald-500));
  padding: 7px 16px; border-radius: 8px;
}
.offer__ribbon svg { flex: none; }

.offer__grid { position: relative; display: grid; grid-template-columns: 1.25fr 1fr; gap: 26px; align-items: stretch; }

/* ---- license side ---- */
.offer__main { display: flex; flex-direction: column; justify-content: center; }
.offer__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; color: var(--emerald-700);
  background: var(--bg-tint); border: 1px solid #c7ebd9; border-radius: 8px; padding: 6px 14px;
}
.offer__eyebrow svg { flex: none; }

.offer__price { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 14px; margin: 20px 0 6px; }
.offer__old { display: inline-flex; align-items: baseline; gap: 5px; color: var(--muted); font-size: 19px; font-weight: 600; }
.offer__old s { text-decoration-thickness: 2px; text-decoration-color: var(--danger); font-variant-numeric: tabular-nums; }
.offer__old em { font-size: 13px; font-style: normal; }
.offer__new { display: inline-flex; align-items: baseline; gap: 7px; }
.offer__new b { font-size: clamp(34px, 6vw, 46px); font-weight: 700; letter-spacing: -.03em; line-height: 1.1; color: var(--ink); font-variant-numeric: tabular-nums; }
.offer__new em { font-size: 16px; font-style: normal; font-weight: 700; color: var(--slate); }
.offer__save {
  font-size: 13px; font-weight: 700; color: #fff; background: var(--emerald-600);
  padding: 5px 12px; border-radius: 8px; box-shadow: 0 6px 16px -6px rgba(5, 150, 105, .6);
}
.offer__per { color: var(--muted); font-size: 14px; }

.offer__cta { align-self: flex-start; margin-top: 26px; }

/* ---- gift side ---- */
.offer__gift {
  position: relative; display: flex; flex-direction: column;
  background: linear-gradient(160deg, var(--dark), var(--dark-2));
  border: 1px solid #334155; border-radius: var(--radius-lg); color: var(--on-dark-soft); padding: 26px 24px;
}
.offer__gift-plus {
  position: absolute; inset-block-start: -15px; inset-inline-start: -15px;
  width: 34px; height: 34px; display: grid; place-items: center;
  background: var(--emerald-500); color: #04130d; border: 3px solid var(--bg);
  border-radius: 50%; font-size: 20px; font-weight: 700; line-height: 1;
}
.offer__gift-ico { display: inline-flex; color: var(--emerald-300); margin-bottom: 14px; }
.offer__gift-title { font-size: 18px; color: #fff; }
.offer__gift-desc { font-size: 14px; color: var(--on-dark-muted); margin-top: 10px; line-height: 1.8; }

.offer__gift-metric {
  display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 4px 10px;
  margin: 20px 0 auto; padding: 16px; border-radius: var(--radius);
  background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .09);
}
.offer__gift-ico-sm { display: inline-flex; color: var(--emerald-300); }
.offer__gift-num { font-size: 20px; font-weight: 700; color: #fff; font-variant-numeric: tabular-nums; }
.offer__gift-sub { grid-column: 1 / -1; font-size: 12.5px; color: var(--on-dark-muted); line-height: 1.7; }
.offer__gift-foot { font-size: 12.5px; color: #7c8ba1; margin-top: 16px; }

/* ---- scarcity ---- */
.offer__seats {
  position: relative; margin-top: 26px; padding-top: 22px; border-top: 1px dashed var(--line);
}
.offer__seats-top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px 16px; }
.offer__seats-lbl { display: inline-flex; align-items: center; gap: 8px; font-size: 14.5px; color: var(--slate); }
.offer__seats-lbl svg { flex: none; color: var(--warn-ink); }
.offer__seats-lbl b { color: var(--ink); font-weight: 700; }
.offer__seats-num { font-size: 13px; font-weight: 700; color: var(--muted); font-variant-numeric: tabular-nums; }
.offer__seats-bar { height: 9px; margin-top: 12px; background: var(--line-soft); border-radius: 8px; overflow: hidden; }
.offer__seats-bar i {
  display: block; height: 100%; border-radius: 8px;
  background: linear-gradient(90deg, var(--emerald-400), var(--emerald-600));
}
.offer__seats-note { display: flex; align-items: flex-start; gap: 7px; margin-top: 12px; font-size: 13px; color: var(--muted); line-height: 1.8; }
.offer__seats-note svg { flex: none; margin-top: 6px; color: var(--emerald-600); }

@media (max-width: 860px) {
  .offer { padding: 24px; }
  .offer__grid { grid-template-columns: 1fr; }
  .offer__gift-plus { inset-inline-start: auto; inset-inline-end: 18px; }
}
@media (max-width: 560px) {
  .offer__cta { align-self: stretch; }
  .offer__seats-top { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: 100px 0; }
.faq__inner { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: start; }
.accordion { display: grid; gap: 12px; }
.ac { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color var(--t), box-shadow var(--t); }
.ac[open] { border-color: #c7ebd9; box-shadow: var(--shadow-sm); }
.ac summary {
  list-style: none; cursor: pointer; padding: 20px 22px; font-weight: 600; font-size: 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.ac summary::-webkit-details-marker { display: none; }
.ac summary::after {
  content: "+"; font-size: 22px; font-weight: 400; color: var(--emerald-600); transition: transform var(--t) var(--ease); line-height: 1;
}
.ac[open] summary::after { transform: rotate(45deg); }
.ac p { padding: 0 22px 22px; color: var(--muted); font-size: 15px; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-final { padding: 40px 0 100px; }
.cta-final__box {
  position: relative; overflow: hidden; text-align: center;
  background: linear-gradient(160deg, var(--dark), var(--dark-2));
  border: 1px solid #334155; border-radius: 8px; padding: 72px 32px; color: var(--on-dark);
}
.cta-final__glow {
  position: absolute; inset-block-start: -160px; inset-inline-start: 50%; transform: translateX(50%);
  width: 600px; height: 400px; pointer-events: none;
  background: radial-gradient(closest-side, rgba(16, 185, 129, .35), transparent 70%); filter: blur(6px);
}
.cta-final__box h2 { font-size: clamp(28px, 4.4vw, 44px); color: #fff; position: relative; }
.cta-final__box p { color: var(--on-dark-muted); font-size: 18px; margin-top: 16px; max-width: 560px; margin-inline: auto; position: relative; }
.cta-final__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 32px; position: relative; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--surface); border-top: 1px solid var(--line); padding: 56px 0 28px; }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
.footer__brand p { color: var(--muted); font-size: 14px; margin-top: 14px; max-width: 260px; }
.footer__enamad { margin-top: 16px; }
.footer__enamad img { width: 88px; height: auto; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 6px; }
.footer__col h4 { font-size: 14px; margin-bottom: 14px; color: var(--ink); }
.footer__col a { display: block; color: var(--muted); font-size: 14px; padding: 5px 0; transition: color var(--t); }
.footer__col a:hover { color: var(--emerald-700); }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line-soft);
  color: var(--muted); font-size: 13px;
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .pulse__line, .eyebrow__dot, .float-card { animation: none; }
  .pulse__line { stroke-dashoffset: 0; }
  .btn, .feat, .ac, .nav { transition: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { max-width: 520px; margin-inline: auto; width: 100%; }
  .roi__inner { grid-template-columns: 1fr; gap: 40px; }
  .faq__inner { grid-template-columns: 1fr; gap: 28px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav__links, .nav__actions { display: none; }
  .nav__toggle { display: flex; position: relative; z-index: 100; }
  .mobile-menu {
    display: flex; position: fixed; top: 0; right: 0; left: auto; z-index: 95;
    height: 100dvh; width: min(82vw, 320px); padding: 84px 20px 24px;
    border-bottom: 0; border-inline-start: 1px solid var(--line);
    box-shadow: -14px 0 44px rgba(15, 23, 42, .16);
    transform: translateX(100%); visibility: hidden;
    transition: transform var(--t) var(--ease), visibility var(--t) var(--ease);
    overflow-y: auto;
  }
  .mobile-menu:not([hidden]) { transform: translateX(0); visibility: visible; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat:nth-child(odd) { border-inline-start: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line-soft); padding-top: 22px; }
  .feat-grid { grid-template-columns: 1fr; }
  .shots { grid-template-columns: 1fr; gap: 20px; }
  .shot__viewport, .shot--feature .shot__viewport, .shot--wide .shot__viewport { height: 300px; }
  .shot__zoom { opacity: 1; transform: none; }
  .feat--full { flex-direction: column; align-items: flex-start; gap: 16px; grid-column: auto; }
}

@media (max-width: 560px) {
  .container { padding-inline: 18px; }
  .hero { padding: 56px 0 128px; }
  .hero__cta { flex-wrap: nowrap; gap: 10px; }
  .hero__cta .btn { flex: 1 1 0; min-width: 0; --pad-x: 12px; font-size: 14px; white-space: normal; text-align: center; }
  .problem, .features, .showcase, .roi, .how, .pricing, .faq { padding: 72px 0; }
  .shot__viewport, .shot--feature .shot__viewport, .shot--wide .shot__viewport { height: 240px; }
  .imodal { padding: 14px; }
  .imodal__close { top: 10px; inset-inline-end: 10px; }
  .cmp { grid-template-columns: 1fr; }
  .cmp__arrow svg { transform: rotate(90deg); }
  .steps { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .float-card { inset-inline: auto; left: 50%; right: auto; transform: translateX(-50%); inset-block-end: -44px; width: min(240px, calc(100vw - 48px)); }
  @keyframes float { 0%,100% { transform: translateX(-50%) translateY(0);} 50% { transform: translateX(-50%) translateY(-8px);} }
  .cta-final { padding: 32px 0 72px; }
  .cta-final__box { padding: 48px 22px; margin-inline: 6px; }
}

/* ============================================================
   VIDEO MODAL
   ============================================================ */
.vmodal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 24px; }
.vmodal[hidden] { display: none; }
.vmodal__backdrop { position: absolute; inset: 0; background: rgba(15, 23, 42, .72); backdrop-filter: blur(4px); }
.vmodal__dialog {
  position: relative; width: min(960px, 100%); border-radius: 14px; overflow: hidden;
  background: #000; box-shadow: var(--shadow-lg);
}
.vmodal__video { display: block; width: 100%; height: auto; max-height: 82vh; background: #000; }
.vmodal__close {
  position: absolute; top: 10px; inset-inline-end: 10px; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%; border: none; cursor: pointer;
  font-size: 26px; line-height: 1; color: #fff; background: rgba(0, 0, 0, .55);
  transition: background var(--t);
}
.vmodal__close:hover { background: rgba(0, 0, 0, .85); }
