/* DanikShop marketing landing — Axsis-inspired SaaS layout */
:root {
  --bg: #0b1220;
  --bg-2: #111827;
  --card: #162033;
  --line: rgba(255, 255, 255, 0.08);
  --text: #eef3fb;
  --muted: #93a4c0;
  --primary: #2eb5e8;
  --primary-2: #7c6cff;
  --accent: #22c55e;
  --warn: #f59e0b;
  --radius: 18px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --max: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Vazirmatn", Tahoma, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
}
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
.container { width: min(var(--max), calc(100% - 32px)); margin-inline: auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), #1a8bb8);
  color: #06202b;
  box-shadow: 0 10px 28px rgba(46, 181, 232, 0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}
.btn-light {
  background: #fff;
  color: #0b1220;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(11, 18, 32, 0.78);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.2rem;
}
.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  display: grid;
  place-items: center;
  font-weight: 900;
}
.nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-weight: 600;
}
.nav a:hover { color: #fff; }
.header-actions { display: flex; gap: 10px; }
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: #fff;
  border-radius: 10px;
  padding: 8px 12px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 40px;
}
.hero::before {
  content: "";
  position: absolute;
  inset-inline-start: -120px;
  top: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(46, 181, 232, 0.22), transparent 70%);
}
.hero::after {
  content: "";
  position: absolute;
  inset-inline-end: -80px;
  bottom: 0;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(124, 108, 255, 0.2), transparent 70%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.eyebrow {
  display: inline-flex;
  gap: 8px;
  background: rgba(46, 181, 232, 0.12);
  color: var(--primary);
  border: 1px solid rgba(46, 181, 232, 0.25);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.25;
  margin-bottom: 16px;
}
.hero h1 span {
  background: linear-gradient(90deg, var(--primary), #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p { color: var(--muted); font-size: 1.05rem; margin-bottom: 18px; max-width: 580px; }
.hero .lead { margin-bottom: 28px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.hero-meta { display: flex; gap: 22px; color: var(--muted); font-size: 0.92rem; }
.hero-meta strong { color: #fff; display: block; }

.browser {
  background: #0f172a;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #1e293b;
}
.dot { width: 9px; height: 9px; border-radius: 50%; }
.dot.r { background: #f87171; }
.dot.y { background: #fbbf24; }
.dot.g { background: #34d399; }
.browser-url {
  flex: 1;
  background: #0b1220;
  border-radius: 8px;
  padding: 4px 10px;
  color: var(--muted);
  font-size: 0.78rem;
  direction: ltr;
  text-align: left;
}
.browser-body { padding: 16px; }
.mock-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.mock-card {
  background: linear-gradient(180deg, #1e293b, #162033);
  border: 1px solid var(--line);
  border-radius: 12px;
  min-height: 92px;
  padding: 10px;
}
.mock-card b { display: block; font-size: 0.82rem; }
.mock-card span { color: var(--muted); font-size: 0.75rem; }
.mock-wide {
  margin-top: 10px;
  height: 72px;
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(46,181,232,.25), rgba(124,108,255,.25));
}

.slogans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 36px 0 10px;
  position: relative;
  z-index: 1;
}
.slogan {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.slogan q {
  display: block;
  font-weight: 700;
  font-size: 1.02rem;
  quotes: none;
  margin-bottom: 8px;
}
.slogan p { color: var(--muted); font-size: 0.9rem; }

.prose { color: var(--muted); font-size: 1rem; max-width: 820px; margin: 0 auto 28px; text-align: center; }
.prose.right { text-align: right; margin-inline: 0 0; max-width: none; }
.feature.wide { grid-column: span 1; }
.feature h3 + p { margin-bottom: 6px; }
.contact-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-top: 28px;
}
.contact-bar a.phone {
  color: var(--primary);
  font-weight: 800;
  font-size: 1.15rem;
  direction: ltr;
}

.section { padding: 72px 0; }
.section.alt { background: linear-gradient(180deg, rgba(22,32,51,0.55), transparent); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.section-head h2 { font-size: 2rem; margin-bottom: 10px; }
.section-head p { color: var(--muted); }

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  min-height: 100%;
}
.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  background: rgba(46, 181, 232, 0.14);
  color: var(--primary);
  font-size: 1.3rem;
}
.feature h3 { font-size: 1.05rem; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 0.92rem; }
.feature ul { margin-top: 10px; padding-inline-start: 18px; color: var(--muted); font-size: 0.88rem; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.checklist { list-style: none; }
.checklist li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--muted);
}
.checklist li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 800;
}

.channels {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.channel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 10px;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
}
.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 12px;
}

.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 18px;
  margin-bottom: 10px;
}
.faq summary { cursor: pointer; font-weight: 700; }
.faq p { color: var(--muted); margin-top: 8px; }

.cta {
  background: linear-gradient(135deg, #1a8bb8, #5b4dff);
  border-radius: 28px;
  padding: 42px 28px;
  text-align: center;
  box-shadow: var(--shadow);
}
.cta h2 { margin-bottom: 10px; }
.cta p { opacity: 0.92; margin-bottom: 22px; }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  color: var(--muted);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .nav, .header-actions .btn-ghost { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    inset-inline: 16px;
    top: 74px;
    background: #162033;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px;
  }
  .menu-toggle { display: inline-flex; }
  .hero-grid, .split, .features, .slogans, .steps, .channels {
    grid-template-columns: 1fr;
  }
  .channels { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: 1fr; }
}
