/* ── Hero ───────────────────────────────────────────────────── */
.features-hero {
  padding: 100px 0 60px;
  text-align: center;
}

.features-hero-inner {
  max-width: 760px;
  margin: auto;
}


.features-hero h1 {
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.features-hero h1 span {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.features-hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
}

/* ── Feature rows ───────────────────────────────────────────── */
.features-section {
  padding: 40px 0 80px;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.feature-row:last-child {
  border-bottom: none;
}

.feature-row.reverse .feature-text { order: 2; }
.feature-row.reverse .feature-visual { order: 1; }

/* ── Feature text ───────────────────────────────────────────── */
.feature-number {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}

.feature-text h2 {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.feature-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.feature-text strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.feature-text em {
  color: rgba(255, 255, 255, 0.85);
  font-style: normal;
  font-weight: 500;
}

.feature-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  font-weight: 500;
}

.feature-points li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gradient-brand);
  opacity: 0.85;
}

/* ── Visual column ──────────────────────────────────────────── */
.feature-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-visual .iphone {
  width: 340px;
  height: 700px;
}

/* ── CTA ────────────────────────────────────────────────────── */
.cta-section {
  padding: 40px 0 100px;
}

.cta-box {
  background: linear-gradient(135deg, rgba(88, 101, 242, 0.15), rgba(0, 209, 178, 0.1));
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 70px 40px;
  text-align: center;
}

.cta-box h2 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-box p {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.8;
  font-size: 1.05rem;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .features-hero h1 {
    font-size: 2.6rem;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 0;
  }

  .feature-row.reverse .feature-text { order: 1; }
  .feature-row.reverse .feature-visual { order: 2; }

  .visual-placeholder {
    max-width: 240px;
    margin: auto;
  }

  .feature-text h2 {
    font-size: 1.8rem;
  }
}
