/* Lenix — Marketing sahifalar (About, FAQ, Pricing, …) */

body.marketing-page {
  background: var(--bg-0);
}

.marketing-page__main {
  padding: 0 0 80px;
}

.mkt-hero {
  position: relative;
  padding: 56px 0 48px;
  overflow: hidden;
}

.mkt-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 20% -10%, rgba(47, 91, 255, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 0%, rgba(124, 92, 255, 0.1), transparent 50%);
  pointer-events: none;
}

.mkt-hero__inner {
  position: relative;
  z-index: 1;
}

.mkt-hero .eyebrow {
  margin-bottom: 12px;
}

.mkt-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.mkt-hero__lead {
  max-width: 640px;
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.mkt-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.mkt-section {
  padding: 48px 0;
}

.mkt-section--alt {
  background: var(--bg-1);
  border-block: 1px solid var(--border);
}

.mkt-section__head {
  margin-bottom: 28px;
}

.mkt-section__head h2 {
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.mkt-section__head p {
  margin: 0;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.6;
}

.mkt-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.mkt-stat {
  padding: 22px 20px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.mkt-stat strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.mkt-stat span {
  display: block;
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 0.86rem;
  font-weight: 600;
}

.mkt-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.mkt-card {
  padding: 22px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}

.mkt-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.mkt-card__icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 800;
}

.mkt-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 700;
}

.mkt-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.mkt-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.mkt-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.mkt-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text-muted);
  line-height: 1.55;
}

.mkt-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
}

.mkt-faq {
  display: grid;
  gap: 10px;
}

.mkt-faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-1);
  overflow: hidden;
}

.mkt-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  background: none;
  border: 0;
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  color: var(--ink);
}

.mkt-faq__q:hover {
  background: var(--bg-2);
}

.mkt-faq__q[aria-expanded="true"] {
  color: var(--primary);
}

.mkt-faq__icon {
  flex: 0 0 auto;
  font-size: 1.2rem;
  line-height: 1;
  transition: transform var(--t-fast) var(--ease);
}

.mkt-faq__q[aria-expanded="true"] .mkt-faq__icon {
  transform: rotate(45deg);
}

.mkt-faq__a {
  padding: 0 18px 16px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.mkt-faq__a[hidden] {
  display: none;
}

.mkt-pricing-card {
  padding: 28px 24px;
  background: linear-gradient(165deg, var(--bg-1), var(--bg-2));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.mkt-pricing-card h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.mkt-pricing-card .price-note {
  margin: 0 0 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.mkt-contact-form {
  display: grid;
  gap: 14px;
}

.mkt-contact-form label {
  display: grid;
  gap: 6px;
  font-size: 0.86rem;
  font-weight: 600;
}

.mkt-contact-form input,
.mkt-contact-form select,
.mkt-contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-0);
  color: var(--ink);
  font: inherit;
}

.mkt-contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.mkt-contact-form input:focus,
.mkt-contact-form select:focus,
.mkt-contact-form textarea:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--primary) 40%, transparent);
  border-color: var(--primary);
}

.mkt-contact-aside {
  padding: 24px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.mkt-contact-aside h3 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.mkt-contact-aside p {
  margin: 0 0 16px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.mkt-status {
  padding: 12px 14px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
}

.mkt-status--ok {
  color: var(--green);
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.mkt-status--err {
  color: var(--red);
  background: color-mix(in srgb, var(--red) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--red) 22%, transparent);
}

.mkt-cta {
  padding: 40px 32px;
  text-align: center;
  background: linear-gradient(135deg, #0b0e13 0%, #111a3c 100%);
  border-radius: var(--radius-xl);
  color: #fff;
}

.mkt-cta h2 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 800;
}

.mkt-cta p {
  margin: 0 auto 22px;
  max-width: 480px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.mkt-cta .btn--primary {
  background: #fff;
  color: #0b0e13;
}

.mkt-press-box {
  padding: 20px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: ui-monospace, "JetBrains Mono", monospace;
  font-size: 0.82rem;
  line-height: 1.6;
  white-space: pre-wrap;
  color: var(--text-muted);
}

.mkt-logo-preview {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.mkt-logo-preview img {
  width: 64px;
  height: 64px;
  border-radius: 16px;
}

@media (max-width: 900px) {
  .mkt-stats,
  .mkt-grid {
    grid-template-columns: 1fr;
  }

  .mkt-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .mkt-hero {
    padding: 40px 0 32px;
  }

  .mkt-stats {
    grid-template-columns: 1fr;
  }
}
