/* ==============================================
   Marketing Features Page
   Depends on: marketing.css (shared foundation)
   ============================================== */

/* ---- Hero ---- */

.mk-feat-hero {
  padding: 80px 0 60px;
  text-align: center;
}

.mk-feat-hero h1 {
  font-family: var(--mk-serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--mk-bg-dark);
  margin: 0 0 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.mk-feat-hero-subtitle {
  font-size: 17px;
  color: var(--mk-text-secondary);
  line-height: 1.7;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- Feature Spotlight ---- */

.mk-feat-spot {
  padding: 80px 0;
  border-top: 1px solid var(--mk-border);
}

.mk-feat-spot:nth-child(even) {
  background-color: var(--mk-bg-white);
}

.mk-feat-spot-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.mk-feat-spot:nth-child(odd) .mk-feat-spot-inner {
  grid-template-columns: 1.2fr 1fr;
}

.mk-feat-spot:nth-child(odd) .mk-feat-spot-text {
  order: 2;
}

.mk-feat-spot:nth-child(odd) .mk-feat-spot-visual {
  order: 1;
}

.mk-feat-spot-text h2 {
  font-family: var(--mk-serif);
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 400;
  color: var(--mk-bg-dark);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.mk-feat-spot-text > p {
  font-size: 16px;
  color: var(--mk-text-secondary);
  line-height: 1.7;
  margin: 0 0 24px;
}

.mk-feat-details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mk-feat-details li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--mk-text-secondary);
  line-height: 1.5;
}

.mk-feat-details li svg {
  width: 16px;
  height: 16px;
  color: #28c840;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---- Responsive ---- */

@media (max-width: 900px) {
  .mk-feat-hero {
    padding: 56px 0 40px;
  }

  .mk-feat-spot {
    padding: 56px 0;
  }

  .mk-feat-spot-inner,
  .mk-feat-spot:nth-child(odd) .mk-feat-spot-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .mk-feat-spot:nth-child(odd) .mk-feat-spot-text,
  .mk-feat-spot:nth-child(odd) .mk-feat-spot-visual {
    order: 0;
  }
}

@media (max-width: 600px) {
  .mk-feat-hero {
    padding: 40px 0 32px;
  }

  .mk-feat-hero h1 {
    font-size: 28px;
  }

  .mk-feat-spot {
    padding: 48px 0;
  }

  .mk-feat-spot-inner {
    padding: 0 20px;
  }
}
