/* ===== Asoslar ===== */
:root {
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --ink: #0f172a;
  --gray: #64748b;
  --line: #e2e8f0;
  --bg-soft: #f8fafc;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 760px; }

a { text-decoration: none; color: inherit; }

h1, h2, h3 { line-height: 1.2; letter-spacing: -0.02em; }

/* ===== Tugmalar ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.05s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--bg-soft); }
.btn-white { background: #fff; color: var(--blue); }
.btn-white:hover { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18); }
.btn-lg { padding: 14px 26px; font-size: 16px; }
.btn-block { width: 100%; }

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; gap: 20px; height: 64px; }
.brand { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 18px; }
.brand img { width: 30px; height: 30px; border-radius: 7px; }
.nav-links { display: flex; gap: 26px; margin-left: 18px; }
.nav-links a { color: var(--gray); font-weight: 500; font-size: 15px; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { margin-left: auto; }
.nav-toggle { display: none; background: none; border: none; font-size: 24px; cursor: pointer; margin-left: auto; }

/* ===== Hero ===== */
.hero { padding: 70px 0 40px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.badge-pill {
  display: inline-block;
  background: #eff6ff;
  color: var(--blue);
  font-weight: 600;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero h1 { font-size: 52px; font-weight: 800; margin-bottom: 18px; }
.hero h1 .hl { color: var(--blue); }
.lead { font-size: 19px; color: var(--gray); margin-bottom: 28px; max-width: 520px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; }
.hero-meta { display: flex; gap: 10px; flex-wrap: wrap; color: var(--gray); font-size: 14px; }
.hero-meta span:first-child { color: #f59e0b; font-weight: 700; }

/* Hero mockup */
.hero-visual { position: relative; }
.browser {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 320px;
}
.browser-bar { display: flex; gap: 7px; padding: 13px 16px; background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.browser-bar i { width: 11px; height: 11px; border-radius: 50%; background: #cbd5e1; }
.browser-bar i:nth-child(1) { background: #f87171; }
.browser-bar i:nth-child(2) { background: #fbbf24; }
.browser-bar i:nth-child(3) { background: #34d399; }
.board { padding: 14px; }
.board-row {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px 10px;
  border-bottom: 1px solid var(--bg-soft);
  font-size: 14px;
}
.board-row b { color: #15803d; font-weight: 700; }
.board-row span { color: var(--ink); }
.board-row em { color: var(--gray); font-style: normal; font-size: 12px; background: #eff6ff; padding: 2px 8px; border-radius: 999px; }

/* Floating Load Profit card */
.lp-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 200px;
  background: #0f172a;
  color: #e2e8f0;
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 16px 40px rgba(2, 6, 23, 0.4);
}
.lp-head { font-size: 13px; font-weight: 700; margin-bottom: 10px; }
.lp-profit { background: rgba(34, 197, 94, 0.14); border: 1px solid rgba(34, 197, 94, 0.3); border-radius: 10px; padding: 10px; margin-bottom: 8px; }
.lp-profit span { display: block; font-size: 11px; color: #94a3b8; }
.lp-profit b { font-size: 22px; color: #4ade80; }
.lp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.lp-grid div { background: rgba(37, 99, 235, 0.16); border-radius: 8px; padding: 8px; }
.lp-grid small { display: block; font-size: 10px; color: #94a3b8; }
.lp-grid b { font-size: 15px; }

/* ===== Logos strip ===== */
.logos { padding: 28px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-soft); }
.logos p { text-align: center; color: var(--gray); font-size: 14px; margin-bottom: 14px; }
.logo-row { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.logo-row span { font-weight: 800; font-size: 20px; color: #94a3b8; letter-spacing: -0.02em; }

/* ===== Sections ===== */
.section { padding: 80px 0; }
.section.alt { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 48px; }
.section-head h2 { font-size: 36px; font-weight: 800; margin-bottom: 12px; }
.section-head p { font-size: 18px; color: var(--gray); }

/* Feature cards */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-icon { font-size: 30px; margin-bottom: 14px; }
.card h3 { font-size: 18px; margin-bottom: 8px; }
.card p { color: var(--gray); font-size: 15px; }

/* Detail */
.detail { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.eyebrow { color: var(--blue); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 0.04em; }
.detail h2 { font-size: 32px; font-weight: 800; margin: 10px 0 16px; }
.detail p { color: var(--gray); font-size: 17px; margin-bottom: 18px; }
.checklist { list-style: none; display: grid; gap: 10px; }
.checklist li { position: relative; padding-left: 30px; color: var(--ink); }
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background: #dcfce7;
  color: #16a34a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.detail-visual { display: flex; justify-content: center; }
.mini-card { width: 100%; max-width: 340px; background: #0f172a; color: #e2e8f0; border-radius: 16px; padding: 20px; box-shadow: var(--shadow); }
.mini-profit { background: rgba(34, 197, 94, 0.14); border: 1px solid rgba(34, 197, 94, 0.3); border-radius: 12px; padding: 16px; margin-bottom: 12px; }
.mini-profit span { display: block; font-size: 13px; color: #94a3b8; }
.mini-profit b { font-size: 30px; color: #4ade80; }
.mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mini-grid div { background: rgba(37, 99, 235, 0.16); border-radius: 10px; padding: 12px; }
.mini-grid small { display: block; font-size: 11px; color: #94a3b8; }
.mini-grid b { font-size: 18px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step { text-align: center; padding: 10px; }
.step-num {
  width: 48px; height: 48px; margin: 0 auto 16px;
  background: var(--blue); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800;
}
.step h3 { font-size: 19px; margin-bottom: 8px; }
.step p { color: var(--gray); }

/* Pricing */
.price-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 340px)); gap: 24px; justify-content: center; }
.price-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px;
}
.price-card.featured { border-color: var(--blue); box-shadow: var(--shadow); }
.ribbon { position: absolute; top: 18px; right: 18px; background: #eff6ff; color: var(--blue); font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 999px; }
.price-card h3 { font-size: 20px; margin-bottom: 10px; }
.price { margin-bottom: 20px; }
.price b { font-size: 40px; font-weight: 800; }
.price span { color: var(--gray); }
.price-card .checklist { margin-bottom: 24px; }

/* FAQ */
.faq { display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.faq-q {
  width: 100%;
  text-align: left;
  background: #fff;
  border: none;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
}
.faq-q::after { content: "+"; color: var(--blue); font-size: 22px; font-weight: 400; }
.faq-item.open .faq-q::after { content: "−"; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.faq-item.open .faq-a { max-height: 200px; }
.faq-a p { padding: 0 20px 18px; color: var(--gray); }

/* CTA band */
.cta-band { background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color: #fff; text-align: center; padding: 70px 0; }
.cta-band h2 { font-size: 34px; font-weight: 800; margin-bottom: 10px; }
.cta-band p { font-size: 18px; opacity: 0.9; margin-bottom: 26px; }

/* Footer */
.footer { padding: 40px 0; border-top: 1px solid var(--line); }
.footer-inner { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer .brand img { width: 26px; height: 26px; }
.footer-links { display: flex; gap: 22px; }
.footer-links a { color: var(--gray); font-size: 15px; }
.footer-links a:hover { color: var(--ink); }
.copy { margin-left: auto; color: var(--gray); font-size: 14px; }

/* ===== Responsive ===== */
@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-links.show {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 16px 24px;
    gap: 14px;
  }
  .nav-cta { display: none; }
  .nav-toggle { display: block; }

  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero h1 { font-size: 38px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .detail { grid-template-columns: 1fr; gap: 30px; }
  .steps { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .copy { margin-left: 0; }
}

@media (max-width: 480px) {
  .cards { grid-template-columns: 1fr; }
  .hero h1 { font-size: 32px; }
  .section-head h2 { font-size: 28px; }
}
