/* ── Hero Section ────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #f5f3ff 0%, #eff6ff 50%, #e0f2fe 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.14) 0%, transparent 70%);
  pointer-events: none;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: #111827;
}

.hero-title span {
  background: linear-gradient(135deg, #7c3aed, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: #6b7280;
  max-width: 520px;
  line-height: 1.7;
}

.btn-get-started {
  background: linear-gradient(135deg, #7c3aed, #2563eb);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 14px 36px;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.28);
  transition: opacity 0.2s, transform 0.15s;
  text-decoration: none;
  display: inline-block;
}

.btn-get-started:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  color: #fff;
}

/* Hero canvas preview mockup */
.hero-mockup {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.mockup-toolbar {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.mockup-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.mockup-canvas-area {
  border-radius: 12px;
  background: #f9fafb;
  border: 1.5px dashed #d1d5db;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.mockup-shape {
  position: absolute;
  border-radius: 8px;
}

/* ── Features Section ───────────────────────────────── */
.section-features {
  background: #fff;
  padding: 96px 0;
}

.section-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #7c3aed, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.25;
}

.section-subtitle {
  max-width: 540px;
}

.section-body {
  color: #6b7280;
  font-size: 1.05rem;
  line-height: 1.75;
}

.feature-card {
  border: none;
  border-radius: 20px;
  background: #f9fafb;
  padding: 2rem;
  height: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.1);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #7c3aed, #2563eb);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: #6b7280;
  font-size: 0.97rem;
  line-height: 1.65;
  margin-bottom: 0;
}

/* ── CTA Section ─────────────────────────────────────────────── */
.section-cta {
  background: linear-gradient(135deg, #7c3aed, #2563eb);
  padding: 80px 0;
}

.section-cta h2 {
  color: #fff;
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.section-cta p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
}

.btn-cta-white {
  background: #fff;
  color: #7c3aed;
  border-radius: 14px;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 14px 36px;
  border: none;
  transition: opacity 0.2s, transform 0.15s;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn-cta-white:hover {
  opacity: 0.93;
  transform: translateY(-2px);
  color: #5b21b6;
}
