:root {
  --bg: #ffffff;
  --ink: #0a0a0d;
  --muted: #5c5f6b;
  --soft: #f6f6f8;
  --soft-2: #fbf0f7;
  --line: #e7e7ec;
  --dark: #07070a;
  --dark-2: #111118;
  --magenta: #e500c3;
  --magenta-2: #ff3bd8;
  --gold: #c9a44c;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(12, 12, 18, 0.12);
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 6% 12%, rgba(229, 0, 195, 0.10), transparent 24rem),
    linear-gradient(180deg, #fff, #fff 34rem, #fbfbfc);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
.slim { width: min(860px, calc(100% - 40px)); }
.section { padding: 112px 0; }
.section-dark {
  color: #fff;
  background:
    radial-gradient(circle at 78% 14%, rgba(229, 0, 195, 0.22), transparent 22rem),
    linear-gradient(135deg, var(--dark), var(--dark-2));
}
.section h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0;
}
.section p { color: var(--muted); margin: 18px 0 0; font-size: 1.05rem; }
.section-dark p { color: rgba(255,255,255,.74); }
.section-head {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  width: min(1180px, calc(100% - 28px));
  margin: 14px auto 0;
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 14px;
  border: 1px solid rgba(10, 10, 13, .08);
  border-radius: 24px;
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 18px 60px rgba(10, 10, 13, .10);
  backdrop-filter: blur(22px);
}
.brand { width: 122px; flex: 0 0 auto; background: transparent; }
.brand img {
  width: 100%;
  height: auto;
  background: transparent;
  mix-blend-mode: multiply;
}
.nav { display: flex; align-items: center; justify-content: center; gap: 6px; margin-inline: auto; }
.nav a {
  padding: 10px 12px;
  color: #303039;
  font-size: .94rem;
  font-weight: 650;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}
.nav a:hover, .nav a:focus-visible { color: var(--ink); background: #f2f2f5; outline: none; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.lang-toggle {
  min-width: 78px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
}
.lang-toggle b { color: #a7a7b1; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 800;
  font-size: .95rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible, .lang-toggle:focus-visible, .nav-toggle:focus-visible { outline: 3px solid rgba(229, 0, 195, .32); outline-offset: 2px; }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--magenta), #8b22ff);
  box-shadow: 0 14px 34px rgba(229, 0, 195, .28);
}
.btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
}
.nav-toggle { display: none; background: transparent; border: 0; padding: 10px; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 2px; margin: 5px 0; background: var(--ink); border-radius: 99px; }

.hero {
  margin-top: -86px;
  padding: 190px 0 92px;
  min-height: 770px;
}
.hero-grid, .split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}
.hero h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(3rem, 7vw, 6.85rem);
  line-height: .9;
  letter-spacing: 0;
}
.hero p { max-width: 660px; font-size: clamp(1.05rem, 1.6vw, 1.25rem); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.trust-row span, .tag-cloud span {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.84);
  font-size: .9rem;
  font-weight: 750;
}

.mock-window {
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.07));
  box-shadow: 0 34px 120px rgba(0,0,0,.42);
  overflow: hidden;
}
.window-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.window-bar span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.34); }
.window-bar span:first-child { background: var(--magenta); }
.window-bar b { margin-inline-start: auto; font-size: .78rem; color: rgba(255,255,255,.68); }
.dashboard { display: grid; grid-template-columns: 86px 1fr; min-height: 460px; }
.dash-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px 18px;
  border-inline-end: 1px solid rgba(255,255,255,.12);
}
.dash-side strong { font-size: 1rem; }
.dash-side span { height: 34px; border-radius: 12px; background: rgba(255,255,255,.11); }
.dash-main {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 14px;
  padding: 18px;
}
.dash-card {
  min-height: 116px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  padding: 17px;
  background: rgba(255,255,255,.10);
}
.calendar-card { grid-row: span 2; min-height: 250px; }
.mini-title, .dash-card span { display: block; color: rgba(255,255,255,.64); font-size: .82rem; font-weight: 800; }
.calendar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 18px; }
.calendar-grid i {
  min-height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,.10);
}
.calendar-grid i:nth-child(3n), .calendar-grid i:nth-child(7) {
  background: linear-gradient(135deg, rgba(229,0,195,.86), rgba(139,34,255,.70));
}
.dash-card strong { display: block; margin-top: 10px; font-size: 1.55rem; }
.dash-card em { display: block; width: 74%; height: 10px; margin-top: 26px; border-radius: 99px; background: rgba(229,0,195,.82); }
.progress { height: 10px; margin-top: 26px; border-radius: 99px; background: rgba(255,255,255,.12); overflow: hidden; }
.progress i { display: block; height: 100%; width: 87%; border-radius: inherit; background: var(--magenta); }
.bars { display: flex; align-items: end; gap: 8px; height: 74px; margin-top: 14px; }
.bars i { flex: 1; border-radius: 10px 10px 0 0; background: rgba(255,255,255,.2); }
.bars i:nth-child(1) { height: 46%; }
.bars i:nth-child(2) { height: 68%; background: rgba(229,0,195,.68); }
.bars i:nth-child(3) { height: 82%; }
.bars i:nth-child(4) { height: 58%; background: rgba(229,0,195,.86); }

.problem { background: #fff; }
.section-copy { max-width: 640px; }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.pain-grid article, .feature-card, .control-card, .price-card, .why-card, .faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.84);
  box-shadow: var(--shadow);
}
.pain-grid article { padding: 24px; min-height: 150px; }
.pain-grid span {
  color: var(--magenta);
  font-weight: 900;
}
.pain-grid h3 { margin: 16px 0 0; font-size: 1.12rem; line-height: 1.3; }

.features, .control, .why, .faq { background: var(--soft); }
.feature-grid, .why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card, .why-card { padding: 24px; box-shadow: 0 16px 44px rgba(12,12,18,.07); }
.feature-card:hover, .price-card:hover { border-color: rgba(229,0,195,.3); }
.icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: var(--magenta);
  background: #fff2fc;
}
.icon svg { width: 22px; height: 22px; stroke: currentColor; stroke-width: 2.1; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.feature-card h3, .control-card h3, .why-card h3 { margin: 18px 0 8px; font-size: 1.08rem; line-height: 1.25; }
.feature-card p, .control-card p, .why-card p { margin: 0; font-size: .95rem; }

.check-list { display: grid; gap: 12px; padding: 0; margin: 28px 0 0; list-style: none; }
.check-list li { display: flex; gap: 10px; color: rgba(255,255,255,.86); }
.check-list li::before {
  content: "";
  flex: 0 0 18px;
  height: 18px;
  margin-top: 4px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #fff 0 23%, var(--magenta) 24% 100%);
}
.flow-panel {
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 32px;
  padding: 26px;
  background: rgba(255,255,255,.08);
  box-shadow: 0 30px 90px rgba(0,0,0,.35);
}
.flow-step {
  padding: 20px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px;
  background: rgba(255,255,255,.11);
  font-weight: 850;
}
.flow-step:nth-child(5) { background: linear-gradient(135deg, rgba(229,0,195,.7), rgba(139,34,255,.42)); }
.flow-line { width: 2px; height: 26px; margin: 0 auto; background: rgba(255,255,255,.22); }

.control-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.control-card { padding: 30px; min-height: 250px; }
.control-card::before {
  content: "";
  display: block;
  width: 100%;
  height: 112px;
  border-radius: 20px;
  background:
    linear-gradient(90deg, rgba(229,0,195,.16), transparent),
    repeating-linear-gradient(90deg, #ececf1 0 1px, transparent 1px 16px),
    linear-gradient(#fff, #fff);
}

.growth { background: #fff; }
.growth-panel {
  min-height: 480px;
  position: relative;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(229,0,195,.11), rgba(255,255,255,0)),
    #f8f8fb;
  border: 1px solid var(--line);
  overflow: hidden;
}
.phone-card {
  position: absolute;
  left: 42px;
  top: 42px;
  width: min(270px, 58%);
  padding: 22px;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}
.phone-top { height: 154px; border-radius: 22px; background: linear-gradient(135deg, #111, #2a0927); }
.phone-card h3 { margin: 18px 0 6px; }
.phone-card p { font-size: .92rem; margin: 0; }
.phone-list { display: grid; gap: 10px; margin-top: 22px; }
.phone-list span { height: 12px; border-radius: 99px; background: #eeeef3; }
.phone-list span:nth-child(2) { width: 74%; background: #ffe1f8; }
.qr-card {
  position: absolute;
  right: 44px;
  bottom: 44px;
  width: 168px;
  height: 168px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 16px;
  border-radius: 28px;
  background: var(--dark);
  box-shadow: var(--shadow);
}
.qr-card i { border-radius: 8px; background: #fff; }
.qr-card i:nth-child(2n) { background: var(--magenta); }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.tag-cloud span {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.report-board {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
}
.chart-card {
  min-height: 210px;
  padding: 22px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.09);
}
.chart-card.small { min-height: 120px; }
.chart-card span { color: rgba(255,255,255,.64); font-weight: 800; }
.chart-card strong { display: block; margin-top: 10px; font-size: 2rem; }
.chart-head { display: flex; align-items: center; justify-content: space-between; }
.line-chart { display: flex; align-items: end; gap: 12px; height: 118px; margin-top: 20px; }
.line-chart i { flex: 1; border-radius: 14px 14px 4px 4px; background: rgba(255,255,255,.16); }
.line-chart i:nth-child(1) { height: 36%; }
.line-chart i:nth-child(2) { height: 58%; }
.line-chart i:nth-child(3) { height: 46%; background: rgba(229,0,195,.72); }
.line-chart i:nth-child(4) { height: 74%; }
.line-chart i:nth-child(5) { height: 92%; background: var(--magenta); }
.chart-card.bars { grid-column: 1 / -1; min-height: 140px; display: flex; align-items: end; gap: 14px; }
.chart-card.bars i { flex: 1; border-radius: 12px 12px 0 0; background: rgba(255,255,255,.17); }
.chart-card.bars i:nth-child(1) { height: 54%; }
.chart-card.bars i:nth-child(2) { height: 78%; }
.chart-card.bars i:nth-child(3) { height: 44%; }
.chart-card.bars i:nth-child(4) { height: 88%; background: rgba(229,0,195,.82); }
.chart-card.bars i:nth-child(5) { height: 64%; }

.pricing { background: #fff; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.price-card {
  position: relative;
  padding: 30px;
  box-shadow: 0 20px 60px rgba(12,12,18,.08);
}
.price-card.featured {
  border-color: rgba(229,0,195,.44);
  background: linear-gradient(180deg, #fff, #fff4fc);
}
.price-card.elite { border-color: rgba(201,164,76,.38); }
.popular {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #fff;
  background: var(--magenta);
  font-size: .78rem;
  font-weight: 900;
}
.price-card h3 { margin: 0; font-size: 1.6rem; }
.price-card .subtitle { min-height: 54px; margin-top: 8px; color: var(--muted); }
.price { display: flex; align-items: baseline; gap: 8px; margin: 24px 0 4px; }
.price strong { font-size: 2.4rem; line-height: 1; }
.price span { color: var(--muted); font-weight: 800; }
.was { color: var(--muted); text-decoration: line-through; }
.price-card ul { display: grid; gap: 11px; margin: 24px 0 0; padding: 0; list-style: none; }
.price-card li { display: flex; gap: 10px; color: #303039; font-size: .95rem; }
.price-card li::before {
  content: "";
  flex: 0 0 17px;
  height: 17px;
  margin-top: 4px;
  border: 5px solid var(--magenta);
  border-radius: 50%;
  background: #fff;
}

.why-grid { grid-template-columns: repeat(4, 1fr); }
.faq-list { display: grid; gap: 12px; }
.faq .slim { width: min(980px, calc(100% - 40px)); }
.faq .section-head { margin-bottom: 34px; }
.faq-item { overflow: hidden; box-shadow: 0 12px 40px rgba(12,12,18,.06); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border: 0;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  text-align: start;
  font-weight: 850;
}
.faq-question svg { width: 20px; flex: 0 0 auto; transition: transform .2s ease; }
.faq-item.is-open .faq-question svg { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 24px 22px;
  color: var(--muted);
}
.faq-item.is-open .faq-answer { display: block; }

.final-cta { padding: 96px 0; }
.cta-panel {
  text-align: center;
  padding: 64px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 36px;
  background: rgba(255,255,255,.08);
}
.cta-panel h2 { max-width: 860px; margin: 0 auto; }
.cta-panel p { max-width: 660px; margin-inline: auto; }
.cta-panel .hero-actions { justify-content: center; }

.footer { padding: 58px 0 28px; background: #050507; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr 1fr; gap: 36px; }
.footer strong { font-size: 2rem; }
.footer p, .footer a { color: rgba(255,255,255,.68); }
.footer h3 { margin: 0 0 12px; font-size: .98rem; }
.footer a { display: block; margin: 8px 0; }
.footer a:hover { color: #fff; }
.copyright {
  width: min(1180px, calc(100% - 40px));
  margin: 38px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.52);
  font-size: .9rem;
}

.reveal { animation: rise .7s ease both; }
@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

[dir="rtl"] body { text-align: right; }
[dir="rtl"] .nav, [dir="rtl"] .header-actions, [dir="rtl"] .hero-actions, [dir="rtl"] .trust-row, [dir="rtl"] .tag-cloud { direction: rtl; }
[dir="rtl"] .section-head, [dir="rtl"] .cta-panel { text-align: center; }
[dir="rtl"] .phone-card { left: auto; right: 42px; }
[dir="rtl"] .qr-card { right: auto; left: 44px; }
[dir="rtl"] .chart-head { direction: rtl; }

@media (max-width: 980px) {
  .site-header { flex-wrap: wrap; }
  .nav-toggle { display: block; margin-inline-start: auto; }
  .nav, .header-actions { display: none; }
  .site-header.is-open .nav,
  .site-header.is-open .header-actions {
    display: flex;
    width: 100%;
  }
  .site-header.is-open .nav { flex-direction: column; align-items: stretch; order: 3; }
  .site-header.is-open .header-actions { order: 4; justify-content: space-between; }
  .header-cta { flex: 1; }
  .hero { padding-top: 160px; }
  .hero-grid, .split { grid-template-columns: 1fr; gap: 44px; }
  .feature-grid, .pricing-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .control-grid { grid-template-columns: 1fr; }
  .report-board { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .shell, .slim { width: min(100% - 28px, 1180px); }
  .section { padding: 76px 0; }
  .site-header { top: 8px; width: calc(100% - 16px); margin-top: 8px; border-radius: 20px; }
  .brand { width: 96px; }
  .hero { margin-top: -74px; padding: 142px 0 72px; min-height: auto; }
  .hero h1 { font-size: clamp(2.65rem, 14vw, 4.2rem); }
  .hero-actions .btn, .cta-panel .btn { width: 100%; }
  .trust-row span { flex: 1 1 calc(50% - 10px); text-align: center; }
  .dashboard { grid-template-columns: 1fr; }
  .dash-side { display: none; }
  .dash-main { grid-template-columns: 1fr; }
  .calendar-card { min-height: 210px; }
  .pain-grid, .feature-grid, .pricing-grid, .why-grid { grid-template-columns: 1fr; }
  .growth-panel { min-height: 420px; }
  .phone-card { left: 22px; top: 22px; width: calc(100% - 84px); }
  .qr-card { right: 22px; bottom: 22px; width: 132px; height: 132px; }
  [dir="rtl"] .phone-card { right: 22px; }
  [dir="rtl"] .qr-card { left: 22px; }
  .cta-panel { padding: 36px 22px; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
